*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}
/* body {
    background: linear-gradient(to right, #ffffff, #ffedee);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
} */
.btn {
    border-radius:7px!important;
}

.bootstrap-select .dropdown-menu li a span.text {
color:black !important;

}

.la-shopping-cart {
    font-size: 2.0rem !important;
}
.la-shopping-bag {
    font-size: 2.0rem !important;
}

        /* navbar */
        :root {
            --primary-purple: #006d36;
            --hover-purple: #26975f;
        }

        /* Top Banner Styles */
        .top-banner {
            background-color: var(--primary-purple);
            padding: 8px 0;
        }

        .announcement-text {
            color: white;
            font-size: 14px;
            margin-right: 10px;
        }

        .shop-now-btn {
            background: white;
            color: var(--primary-purple);
            padding: 3px 15px;
            border-radius: 4px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .shop-now-btn:hover {
            background: #f0f0f0;
            transform: translateY(-1px);
        }

        .auth-links {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .auth-links a {
            color: white;
            text-decoration: none;
            font-size: 14px;
            transition: opacity 0.3s ease;
        }

        .auth-links a:hover {
            opacity: 0.8;
        }

          /* Main Selector */
          .country-selector {
              display: flex;
              align-items: center;
              gap: 5px;
              color: white;
              cursor: pointer;
              padding: 4px 8px;
              border-radius: 4px;
              transition: background-color 0.3s ease;
              position: relative;
     
          }
    
          .country-selector:hover {
              background-color: var(--hover-purple);
          }
    
          /* Dropdown Menu */
          .language-dropdown {
              position: absolute;
              top: 100%;
              right: 0;
              margin-top: 8px;
              background-color: white;
              border-radius: 4px;
              box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
              min-width: 150px;
              display: none;
              flex-direction: column;
              z-index: 1000;
              overflow: hidden;
          }
    
          .language-dropdown.show {
              display: flex;
          }
    
          /* Language Options */
          .language-option {
              display: flex;
              align-items: center;
              gap: 10px;
              padding: 10px 15px;
              color: #333;
              text-decoration: none;
              transition: background-color 0.2s ease;
          }
    
          .language-option:hover {
              background-color: #f5f5f5;
          }
    
          .language-option img {
              border-radius: 2px;
          }
    
          .language-option span {
              font-size: 14px;
          }
    
          /* Arrow animation */
          .country-selector .fa-chevron-down {
              transition: transform 0.3s ease;
          }
    
          .country-selector.active .fa-chevron-down {
              transform: rotate(180deg);
          }

        /* Main Header Styles */
        .main-header {
            background: white;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar {
            padding: 0;
        }

        .logo {
            max-width: 230px !important;
            height: auto;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.02);
        }

        .nav-links {
            display: flex;
            justify-content: space-between;
        
            list-style: none;
            gap: 40px;
        }

        .nav-links a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            padding: 5px 0;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary-purple);
        }

        .nav-links a.active {
            color: var(--primary-purple);
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--primary-purple);
        }

        /* Search and Cart Area */
        .search-cart-container {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-left: auto;
        }

        .search-box {
            position: relative;
            width: 300px;
        }

        .search-input {
            width: 100%;
            padding: 10px 40px 10px 15px;
            border: none;
            border-radius: 5px;
            background-color: #f5f5f5;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .search-input:focus {
            outline: none;
            background-color: #f0f0f0;
            box-shadow: 0 0 0 2px rgba(122, 27, 122, 0.1);
        }

        .search-icon {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #666;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .search-icon:hover {
            color: var(--primary-purple);
        }

        .header-icons {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .header-icons a {
            color: #333;
            /* font-size: 20px; */
            text-decoration: none;
            position: relative;
            transition: all 0.3s ease;
        }

        .header-icons a:hover {
            color: var(--primary-purple);
            transform: scale(1.1);
        }

        .navbar-toggler {
            padding: 6px 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .navbar-toggler:hover {
            background-color: #f5f5f5;
        }

        .navbar-toggler:focus {
            box-shadow: none;
            border-color: var(--primary-purple);
        }

        /* Responsive Styles */
        @media (max-width: 991.98px) {
            .main-header .navbar-collapse {
                background: white;
                padding: 20px;
                margin-top: 15px;
                border-radius: 8px;
                box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            }

            .nav-links {
                flex-direction: column;
                gap: 15px;
                margin-bottom: 15px;
            }

            .search-cart-container {
                flex-direction: column;
                width: 100%;
                gap: 15px;
            }

            .search-box {
                width: 100%;
            }

            .header-icons {
                justify-content: center;
                gap: 30px;
            }

            .header-icons a {
                font-size: 24px;
            }
        }

        @media (max-width: 575.98px) {
            .top-banner .container {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }

            .auth-links {
                justify-content: center;
                flex-wrap: wrap;
                gap: 10px;
            }

            .announcement-text {
                display: block;
                margin-bottom: 8px;
            }

            .search-input {
                padding: 12px 40px 12px 15px;
            }

            .header-icons {
                padding: 10px 0;
                gap: 40px;
            }

            .nav-links a {
                font-size: 16px;
                padding: 8px 0;
            }
        }
        
        .notification-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: #dc3545;
            color: white;
            border-radius: 50%;
            padding: 2px 6px;
            font-size: 10px;
        }
        /* navbar  */


/* register */
.borderless-input {
    border: none;
    border-bottom: 1px solid #dee2e6;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
}

.borderless-input:focus {
    border-color: #000;
    box-shadow: none;
    outline: none;
}

.borderless-input::placeholder {
    color: #6c757d;
}

.image-container {
    height: 100vh;
    background-color: #f8f9fa;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-wrapper {
    width: 100%;
    max-width: 380px;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .image-container {
        height: 300px;
    }
    .form-section {
        height: auto;
        padding: 40px 0;
    }
}
.custom-purple-btn {
    background-color: #2D0A31;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px ;
    font-size: 16px;
    width: 50%;
}

.forgot-password {
    color: #DC3545;
    text-decoration: none;
    font-size: 14px;
}

.forgot-password:hover {
    color: #BB2D3B;
    text-decoration: underline;
}

.login-container {
    max-width: 400px;
 margin: 20px 0px;
}
/* register */

/* dropdownmenu */
dropdown-menu {
    min-width: 220px;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    margin-top: 10px; /* Added space between icon and dropdown */
}

.dropdown-item {
    padding: 10px 20px;
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
}

.dropdown-item i {
    margin-right: 10px;
    width: 20px;
}

.manage-account {
    color: #800080;
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #800080; /* Added hover color */
}

/* User Icon Styles */
.header-icons .dropdown {
    display: inline-block;
}

.header-icons .fa-user {
    cursor: pointer;
    padding: 8px;
}

.header-icons .fa-user:hover {
    color: #800080;
}
/* dropdownmenu */

/* banner */
.carousel {
    position: relative;
    overflow: hidden;
}

.carousel-item {
    height: 500px;
    background-position: center;
    background-size: cover;
    position: relative;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.overlay-content {
    position: absolute;
    top: 50%;
    left: 7%;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
}

.category-label {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
    display: block;
}

.main-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.main-heading .off-text {
    display: block;
    margin-bottom: 5px;
}

.shop-now-btn {
    color: white;
    text-decoration: none;
    display: inline-flex;
    background: transparent;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease-in-out;
}

.shop-now-btn::after {
    content: '→';
    margin-left: 8px;
    font-size: 18px;
    transition: margin-left 0.3s ease-in-out;
}

.shop-now-btn::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 70%;
    height: 2px;
    background-color: rgb(255, 255, 255);
}
.shop-now-btn:hover{
   
    color: black;
}
.shop-now-btn:hover::after {
    margin-left: 12px; 
    color: black;
}


.carousel-indicators {
    margin-bottom: 2rem;
}

.carousel-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    margin: 0 5px !important;
    background-color: white !important;
    opacity: 0.5;
    border: none !important;
}

.carousel-indicators button.active {
    opacity: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

@media (max-width: 768px) {
    .carousel-item {
        height: 400px;
    }

    .main-heading {
        font-size: 36px;
    }

    .category-label {
        font-size: 14px;
    }
}

/* banner */

/* explore */
.header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}
.title-countdown {
    flex-grow: 1;
    display: flex;
}
.countdown {
    font-size: 18px;
    font-weight: 500;
    display: flex;
    gap: 10px;
    margin-left: 30px;
    align-items: center;
}
.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.countdown-value {
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 4px;
    min-width: 40px;
    text-align: center;
}
.flash-count{
    background: none;
}
.countdown-label {
    font-size: 12px;
    color: #666;
}
.nav-arrows {
    display: flex;
    gap: 10px;
    align-items: center;
}
.nav-arrow {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}
.nav-arrow:hover {
    background: #f8f9fa;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.product-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}
.product-row {
    display: flex;
    transition: transform 0.5s ease;
    width: max-content;
}
.product-card {
    flex: 0 0 auto;
    width: calc(25% - 20px);
    margin: 0 10px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.3s;
}
.product-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.product-image-container {
    position: relative;
    overflow: hidden;
}
.product-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s;
}
.product-card:hover .product-image {
    transform: scale(1.05);
}
.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ffc107;
    padding: 5px 10px;
    border-radius: 3px;
    color: #000;
    font-weight: 500;
    z-index: 2;
}
.action-icons {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}
.action-icon {
    background: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.action-icon:hover {
    transform: scale(1.1);
}
.add-to-cart-btn {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: #006d36;
    color: white;
    border: none;
    padding: 10px;
    transition: all 0.3s;
    opacity: 0;
}
.product-card:hover .add-to-cart-btn {
    bottom: 0;
    opacity: 1;
}
.product-info {
    padding: 15px;
}
.product-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}
.price-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.sale-price {
    color: #ffc107;
    font-weight: bold;
    font-size: 1.1em;
}
.original-price {
    text-decoration: line-through;
    color: #999;
}
.rating {
    color: #ffc107;
}
.rating-count {
    color: #666;
    font-size: 0.9em;
}


@media (max-width: 991px) {
    .product-card {
        width: calc(33.333% - 20px);
    }
}

@media (max-width: 768px) {
    .title-countdown {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .product-card {
        width: calc(50% - 20px);
    }
    .countdown {
        margin-left: 0;
    }
    .header-section {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-arrows {
        position: static;
        margin-top: 15px;
        align-self: flex-end;
    }
}

@media (max-width: 576px) {
    .product-card {
        width: 280px; /* Fixed width for mobile */
        min-width: 280px;
        margin: 0 5px; /* Reduced margin */
    }
    .countdown {
        width: 100%;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    /* Changed product image container for mobile */
    .product-image-container {
        padding-top: 120%; /* Taller aspect ratio for mobile */
    }
    .product-info {
        padding: 10px; /* Less padding on mobile */
    }
}

/* explore */


/* arriavel */
/* ========================================
   NEW ARRIVAL SECTION
   ======================================== */
.new-arrival-section {
    padding: 40px 0;
    background-color: #fff;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

/* ========================================
   BRIDAL BANNER (MAIN BANNER)
   ======================================== */
.bridal-banner {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    height: 500px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0, 0.0) 40%, rgba(0, 0, 0, 0.0) 100%),
        url("https://sargeenergy.com/shop/public/assets/img/ac_service_01.jpg");
    background-size: cover;
    background-position: center;
}

.banner-fadeout {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.3), transparent);
}

.bridal-banner-content {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 500px;
}

.banner-description {
    padding: 10px 15px;
    color: #1b1a1a;
    background-color: rgba(238, 238, 238, 0.95);
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 500;
}

.banner-description-rtl {
    text-align: right;
    direction: rtl;
}

/* ========================================
   PRICING CARD
   ======================================== */
.pricing-card {
    background: white;
    width: 200px;
    padding: 25px 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #f0f0f0;
    margin: 20px 0;
}

.discount-tag {
    background-color: #dc0000;
    color: white;
    font-size: 13px;
    font-weight: 700;
    padding: 11px 20px;
    border-radius: 20px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.price-original {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}

.price-original .price-value {
    text-decoration: line-through;
    color: #999;
    font-size: 20px;
    font-weight: 500;
}

.currency-symbol-old {
    width: 20px;
    height: 15px;
    opacity: 0.5;
}

.price-discounted {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-value-new {
    font-weight: 900;
    color: #00c853;
    font-size: 42px;
    line-height: 1;
}

.currency-symbol-new {
    width: 26px;
    height: 19px;
    margin-bottom: 8px;
}

.price-divider {
    width: 130px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00c853, transparent);
    margin: 15px 0 10px 0;
    border-radius: 2px;
}

.limited-offer {
    color: #666;
    font-size: 11px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ========================================
   SHOP BUTTON
   ======================================== */
.shop-btn {
    display: inline-block;
    background-color: #008000;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.shop-btn:hover {
    background-color: #006600;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 128, 0, 0.3);
}

/* ========================================
   CATEGORY CARDS
   ======================================== */
.category-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: white;
}

.category-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.category-description {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 15px;
}

.category-content .shop-btn {
    background-color: transparent;
    border: 2px solid white;
    padding: 8px 20px;
    font-size: 14px;
}

.category-content .shop-btn:hover {
    background-color: white;
    color: #008000;
}

/* ========================================
   BANNER BOTTOM CONTACT BUTTONS
   ======================================== */
.banner-bottom-container {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #008000;
    padding: 12px 18px;
    border-radius: 10px;
    display: flex;
    gap: 12px;
    z-index: 3;
    box-shadow: 0 5px 20px rgba(0, 128, 0, 0.4);
}

.banner-bottom-phone {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.banner-bottom-phone:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.05);
}

/* ========================================
   RESPONSIVE STYLES - MOBILE
   ======================================== */
@media (max-width: 768px) {
    .bridal-banner {
        height: 500px;
        background-image: url("https://sargeenergy.com/shop/public/assets/img/ac_service_03.jpg") !important;
    }

    .bridal-banner-content {
        left: 20px;
        right: 20px;
        top: 50%;
        max-width: calc(100% - 40px);
    }

    .banner-description {
        font-size: 14px;
        padding: 8px 12px;
    }

    .pricing-card {
        width: 180px;
        padding: 20px 15px;
    }

    .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .category-card {
        height: 220px;
    }

    .category-title {
        font-size: 20px;
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 20px;
    }

    .bridal-banner {
        height: 550px;
    }

    .bridal-banner-content {
        left: 15px;
        right: 15px;
        top: 30px;
        transform: none;
    }

    .banner-description {
        font-size: 13px;
    }

    .pricing-card {
        width: 160px;
        padding: 18px 12px;
    }

    .discount-tag {
        font-size: 12px;
        padding: 9px 16px;
    }

    .price-value-new {
        font-size: 36px;
    }

    .shop-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* Banner Bottom Buttons - Mobile */
    .banner-bottom-container {
        bottom: 10px;
        right: 10px;
        left: 10px;
        padding: 8px 10px;
        gap: 8px;
        justify-content: center;
    }

    .banner-bottom-phone {
        font-size: 12px;
        padding: 7px 12px;
        text-align: center;
        flex: 1;
    }
}
/* arriavel */


/* banner count */
.promo-section {
    background: linear-gradient(to right, 
        rgba(0, 0, 0, 0) 0%, 
        rgba(0, 0, 0, 0) 0%, 
        rgba(0, 0, 0, 0) 0%, 
        rgba(0, 0, 0, 0) 0%), 
        url('https://img.freepik.com/free-photo/top-view-make-up-accessories-with-copy-space_23-2148619994.jpg?t=st=1740482658~exp=1740486258~hmac=760dc8de2e59a22ade4190790b2e8ea94c4e0bece0af4d67b110f28b974bc514&w=1380') right center/cover;
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}


        .category-label {
            color: #ffa500;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            display: block;
        }

        .promo-title {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 40px;
            color: #333;
            max-width: 500px;
        }

        .countdown-wrapper {
            display: flex;
            gap: 15px;
            margin-bottom: 40px;
        }

        .countdown-item {
            background-color: #ffb6c1;
            border-radius: 50%;
            width: 80px;
            height: 80px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 10px;
        }

        .countdown-number {
            font-size: 24px;
            font-weight: bold;
            color: #333;
            margin: 0;
            line-height: 1;
        }

        .countdown-label {
            font-size: 12px;
            color: #666;
            margin: 0;
            margin-top: 5px;
        }

        .buy-button {
            background-color: #ffa500;
            border: none;
            padding: 15px 40px;
            border-radius: 5px;
            color: white;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }

        .buy-button:hover {
            background-color: #ff9000;
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .promo-section {
                background: linear-gradient(to bottom,
                    rgba(248, 249, 250, 0.95) 0%,
                    rgba(255, 182, 193, 0.95) 100%),
                    url('/api/placeholder/1920/600') center/cover;
                text-align: center;
                padding: 60px 0;
            }

            .promo-title {
                font-size: 36px;
                margin-left: auto;
                margin-right: auto;
            }

            .countdown-wrapper {
                justify-content: center;
            }

            .countdown-item {
                width: 70px;
                height: 70px;
            }

            .countdown-number {
                font-size: 20px;
            }
        }

        /* banner count */

/* category */
.slide-catg-section {
    padding: 40px 0;
    overflow: hidden;
}

.slide-catg-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.slide-catg-nav-btns {
    display: flex;
    gap: 10px;
}

.slide-catg-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #e0e0e0;
    background: white;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-catg-btn:hover {
    background: #f5f5f5;
}

.slide-catg-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slide-catg-wrapper {
    position: relative;
    transition: transform 0.5s ease;
}

.slide-catg-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-catg-card:hover {
    background: #006d36;
 
}
.slide-catg-card:hover .slide-catg-name {
    color: white; /* Changes text color to white on hover */
}


.slide-catg-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
}

.slide-catg-icon img {
    width: 100%;
    height: 100%;
    fill: #ffffff;
    transition: fill 0.3s ease;
}

.slide-catg-card.active .slide-catg-icon img {
    fill: white;
    color: #ffffff;
}
.slide-catg-card:hover .slide-catg-icon img,
.slide-catg-card.active .slide-catg-icon img {
    filter: brightness(0) invert(1);
}

.slide-catg-name {
    margin: 0;
    font-size: 14px;
    color: #333;
    transition: color 0.3s ease;
}

.slide-catg-card.active .slide-catg-name {
    color: white;
}

.slide-catg-container {
    overflow: hidden;
}

.slide-catg-row {
    display: flex;
    transition: transform 0.5s ease;
}

.slide-catg-item {
    flex: 0 0 auto;
    width: calc(100% / 6);
    padding: 0 10px;
}

/* Desktop - 6 items */
@media (min-width: 993px) {
    .slide-catg-item {
        width: calc(100% / 6) !important;
        min-width: 150px !important;
    }
}

/* Tablet - 4 items */
@media (max-width: 992px) and (min-width: 769px) {
    .slide-catg-item {
        width: calc(100% / 4) !important;
        min-width: 180px !important;
    }
}

/* Mobile landscape - 3 items */
@media (max-width: 768px) and (min-width: 577px) {
    .slide-catg-item {
        width: calc(100% / 3) !important;
        min-width: 200px !important;
    }

    .slide-catg-container {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
    }

    .slide-catg-container::-webkit-scrollbar {
        display: none !important;
    }
}

/* Mobile portrait - 2 items with scroll */
@media (max-width: 576px) {
    .slide-catg-item {
        width: calc(50% - 10px) !important;
        min-width: 140px !important;
        max-width: 180px !important;
    }

    .slide-catg-container {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        scroll-behavior: smooth !important;
    }

    .slide-catg-container::-webkit-scrollbar {
        display: none !important;
    }

    .slide-catg-row {
        gap: 0 !important;
        padding: 0 5px !important;
    }

    .slide-catg-card {
        padding: 20px 10px !important;
    }

    .slide-catg-icon {
        width: 60px !important;
        height: 60px !important;
        margin: 0 auto 10px !important;
    }

    .slide-catg-name {
        font-size: 12px !important;
        line-height: 1.2 !important;
    }
}

/* Extra small mobile - Enhanced scrolling */
@media (max-width: 400px) {
    .slide-catg-item {
        width: calc(50% - 8px) !important;
        min-width: 130px !important;
        max-width: 160px !important;
    }

    .slide-catg-section {
        padding: 30px 0 !important;
    }
}


/* categories */


/* delivery */
.features-section {
    padding: 40px 0;
    background-color: #fff;
}

.feature-item {
    text-align: center;
    padding: 0 15px;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #006d36;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    position: relative;
    /* Added isolation to create new stacking context */
    isolation: isolate;
}

.icon-wrapper::after {
    content: '';
    position: absolute;

    inset: -10px;
    border-radius: 50%;

    background-color: #2F2E30;
opacity: 0.5;
    z-index: -1;
}

.icon-inner {
    color: #ffffff;
    font-size: 24px;
    /* Removed unnecessary z-index as parent has isolation */
}


.feature-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.feature-text {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.4;
    font-weight: 400;
}

@media (max-width: 768px) {
    .feature-item {
        margin-bottom: 30px;
        margin-top: 20px;
    }

    .feature-item:last-child {
        margin-bottom: 0;
    }

    .row > div:last-child .feature-item {
        margin-bottom: 0;
  
    }
}
/* delivery */


/* career section */
.hiring-tag {
    display: inline-block;
    background-color: white;
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
}

.main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.job-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 2rem 0;
}

.filter-btn {
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 14px;
    background-color: white;
    border: 1px solid #e0e0e0;
    transition: all 0.2s;
}

.filter-btn.active {
    background-color: #111827;
    color: white;
}

.filter-btn:hover {
    background-color: #f8f9fa;
}

.job-card {
    border-top: 1px solid #e0e0e0;
    padding: 2rem 0;
    position: relative;
}

.job-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111827;
}

.job-tag {
    display: inline-flex;
    align-items: center;
    background-color: white;
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 14px;
    margin-right: 10px;
    margin-top: 10px;
    border: 1px solid #e0e0e0;
}

.job-tag svg {
    margin-right: 5px;
}

.apply-btn-container {
    position: absolute;
    top: 2rem;
    right: 0;
}

.apply-btn {
    font-weight: 500;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #111827;
}

/* career */



/* ======= Slider Section ======= */

.sareenegery_container {
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
    padding: 40px 0;
    position: relative;
}

.sareenegery_slider-wrapper {
    display: flex;
    animation: sareenegery_slide 20s linear infinite;
    width: fit-content;
}

.sareenegery_slider-wrapper:hover {
    animation-play-state: paused;
}

.sareenegery_logo-item {
    flex: 0 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sareenegery_img {
    height: 80px;
    width: auto;
    object-fit: contain;
    /* filter: grayscale(100%);
    opacity: 0.7; */
    transition: all 0.3s ease;
}

.sareenegery_img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* ======= Animation ======= */

@keyframes sareenegery_slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ======= Heading ======= */

.sareenegery_heading-section {
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
}

.sareenegery_heading-section h2 {
    font-size: 32px;
    color: #333;
    font-weight: 700;
    margin-bottom: 10px;
}

.sareenegery_heading-section p {
    font-size: 16px;
    color: #666;
}

/* ======= Responsive ======= */

@media (max-width: 768px) {
    .sareenegery_img { height: 60px; }
    .sareenegery_logo-item { padding: 0 20px; }
    .sareenegery_heading-section h2 { font-size: 24px; }
}





        /* footer */
        .footer {
            background: linear-gradient(to right, #1a0f1a, #3b1b3b);
            color: white;
            padding: 40px 0 20px;
        }

        .footer h4 {
            color: #fff;
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 20px;
        }

        .footer-subscribe p {
            color: #ffa500;
            font-size: 14px;
            margin-bottom: 15px;
        }

        .email-input-wrapper {
            position: relative;
            max-width: 250px;
        }

        .email-input {
            width: 100%;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 8px 35px 8px 15px;
            color: #fff;
            border-radius: 4px;
            font-size: 14px;
        }

        .email-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .email-input:focus {
            outline: none;
            border-color: rgba(255, 255, 255, 0.5);
        }

        .submit-btn {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: transparent;
            border: none;
            color: #fff;
            padding: 0;
            cursor: pointer;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links li a {
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            opacity: 0.9;
            transition: opacity 0.3s;
        }

        .footer-links li a:hover {
            opacity: 1;
        }

        .download-section {
            text-align: left;
        }

        .download-text {
            font-size: 12px;
            margin-bottom: 10px;
            color: #fff;
        }

        .app-buttons img {
            height: 35px;
            margin-left: 8px;
            margin-bottom: 10px;
        }

        .social-icons {
            text-align: left;
            margin-top: 15px;
        }

        .social-icons a {
            color: #fff;
            text-decoration: none;
            margin-left: 15px;
            font-size: 16px;
            opacity: 0.9;
            transition: opacity 0.3s;
        }

        .social-icons a:hover {
            opacity: 1;
        }

        .horizontal-line {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            margin: 30px 0 20px;
            width: 100%;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 10px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.7);
        }

        @media (max-width: 768px) {
            .download-section,
            .social-icons {
                text-align: left;
                margin-top: 20px;
            }
            
            .social-icons a {
                margin-left: 0;
                margin-right: 15px;
            }
            
            .app-buttons img {
                margin-left: 0;
          
                margin-right: 8px;
            }
            
            .footer [class*="col-"] {
                margin-bottom: 25px;
            }

            .footer {
                padding: 30px 0 20px;
            }
        }
        /* footer */