/*your custom css goes here*/

/* global  */
.container{
    padding: 0 !important;
}

   .cat-card {
        background: #ffffff; 
        border: 1px solid #ebedf2; 
        border-radius: 10px; 
        transition: all 0.3s ease; 
        box-shadow: 0 2px 5px rgba(0,0,0,0.02); 
    }
    

    .cat-card:hover {
        transform: translateY(-5px); 
        box-shadow: 0 10px 20px rgba(0,0,0,0.08); 
        border-color: var(--primary); /
    }

    .btn-custom-light {
        background: #f2f3f8;
        color: #6c757d;
        font-size: 11px;
        font-weight: 700;
        border: none;
        transition: all 0.3s;
    }
    .cat-card:hover .btn-custom-light {
        background: var(--primary);
        color: #fff;
    }
    .category-gap {

        gap: 15px !important;
    }

    .row.row-cols-1.row-cols-md-2.row-cols-xl-4.category-gap>div {
        padding: 0 !important;
        max-width: 24% !important;
    }

    

    @media only screen and (max-width: 1200px) {
        .row.row-cols-1.row-cols-md-2.row-cols-xl-4.category-gap>div {
            max-width: 31.5% !important;
        }
    }     

     @media only screen and (max-width: 768px) {
          .row.row-cols-1.row-cols-md-2.row-cols-xl-4.category-gap>div {
               max-width: 100% !important;
          }
           .category-gap {
               padding: 20px !important;
          }
     }

     /* this code for home page feature section */

    .promo-box {
        position: relative;
        height: 320px;
        border-radius: 12px;
        overflow: hidden;
        display: block;
        text-decoration: none;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    

    .promo-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    

    .promo-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    .promo-content {
        position: relative;
        z-index: 2;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center; 
        align-items: flex-start; 
        text-align: left;
        
        padding: 40px; 
    }

    .promo-sub {
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        color: #5a6d86;
        margin-bottom: 10px;
        letter-spacing: 1px;
    }

    .promo-title {
        font-size: 28px;
        font-weight: 800;
        color: #1b2942;
        line-height: 1.3;
        margin-bottom: 25px;
    }

    .promo-btn {
        background: #244243;
        color: #fff;
        font-size: 14px;
        font-weight: 700;
        padding: 12px 30px;
        border-radius: 6px;
        transition: 0.3s;
        border: none;
    }
    
    .promo-box:hover .promo-btn {
        background: #2f7375;
        box-shadow: 0 5px 15px rgba(230, 126, 0, 0.3);
    }

    .custom-style {
        padding: 0 !important;
        max-width: 49% !important;
    }

    @media only screen and (max-width: 1024px) {
        .custom-style {
            max-width: 100% !important;
        }
    }
    @media only screen and (max-width: 768px) {
        .promo-box {
            height: 250px;
        }
        .promo-content {
            padding: 20px;
        }
        .promo-title {
            font-size: 22px;
        }
        .custom-style {
            max-width: 100% !important;
        }
    }


