
/* drybox acc styles*/

 

/* Styling the component list container */
.component-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Individual component item */
.component-item {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

/* Image inside the component item */
.component-item img {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    border-radius: 5px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Text link inside the component item */
.component-item a {
    font-weight: bold;
    font-size: 16px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

/* Hover effect */
.component-item:hover {
    background: #eaeaea;
    transform: translateX(5px);
}

.component-item:hover img {
    transform: scale(1.1);
}

.component-item a:hover {
    color: #c50022;
}

 
    .crafto-accordion .ac-item {
        border-bottom: 1px solid transparent; /* Remove default line */
        padding: 10px 0;
    }

    .crafto-accordion .ac-title {
        font-size: 18px;
        font-weight: 600;
        cursor: pointer;
        color: #000; /*#c50022 */
        margin-bottom: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        background: #ededed;
        border-radius: 5px;
        letter-spacing: 0.5px;
       /*added new */
        padding-left:20px;
        padding-right:20px;
        
    }

    .crafto-accordion .ac-title:hover {
        background-color: #dcdcdc;
        
    }

    .crafto-accordion .ac-content {
        display: none;
        padding: 10px;
        background: #fff;
        border-radius: 5px;
    }

    .crafto-accordion .ac-item.active .ac-content {
        display: block;
    }

    .crafto-accordion .ac-item.active .icon {
        transform: rotate(180deg);
    }

    .crafto-accordion .icon {
        font-size: 18px;
        font-weight: bold;
        transition: transform 0.3s ease;
    }

    .crafto-accordion .item-link {
        color: #c50022;
        text-decoration: none;
        font-weight: 600;
    }

    .crafto-accordion .item-link i {
        margin-left: 5px;
    }

    .accordion-container {
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }
    
    .hero-heading-2 {
    background-color: #f5f5f5; /* Light gray background */
    color: #333; /* Dark text */
    padding: 10px; /* Optional: Adjust padding for better spacing */
    border-radius: 5px; /* Optional: Add rounded corners */
}

 


 
 
  
     
.header img {
    max-width: 100%;
    height: auto;
}

 .post-thumbnail {
    padding-left: 20px; /* Adjust for proper left alignment */
}



.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

/* new gap */



  