@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');
        
:root {
    --primary: #2e5708ff;
    --secondary: #e63946;
    --accent: #0077b6;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 180px 20px 120px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 87, 8, 0.3);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    animation: fadeInDown 1s both;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
    animation: fadeInUp 1s both;
    animation-delay: 0.3s;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-buttons {
    animation: fadeIn 1s both;
    animation-delay: 0.6s;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin: 0 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    border: 2px solid var(--primary);
    box-shadow: 0 4px 15px rgba(46, 87, 8, 0.3);
}

.btn-primary:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 87, 8, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(255,255,255,0.2);
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-title h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 20px auto 0;
}

.features {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.features:before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(46, 87, 8, 0.05) 0%, rgba(255,255,255,0) 70%);
    top: -150px;
    left: -150px;
    border-radius: 50%;
}

.features:after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.05) 0%, rgba(255,255,255,0) 70%);
    bottom: -100px;
    right: -100px;
    border-radius: 50%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: rgba(46, 87, 8, 0.1);
}

.feature-img {
    height: 220px;
    background-color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: var(--primary);
    overflow: hidden;
    position: relative;
    transition: all 0.4s;
}

.feature-card:hover .feature-img {
    color: var(--secondary);
    background-color: rgba(46, 87, 8, 0.03);
}

.feature-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.feature-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: 700;
    transition: all 0.3s;
}

.feature-card:hover .feature-content h3 {
    color: var(--secondary);
}

.feature-content p {
    margin-bottom: 20px;
    color: var(--gray);
    flex-grow: 1;
    line-height: 1.8;
}

.feature-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: all 0.3s;
    margin-top: auto;
}

.feature-link i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.feature-link:hover {
    color: var(--secondary);
}

.feature-link:hover i {
    transform: translateX(5px);
}

.counter-section {
    background-image: linear-gradient(rgba(46, 87, 8, 0.9), rgba(35, 70, 6, 0.9)), url('images/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.counter-section:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at bottom right, rgba(230, 57, 70, 0.2), transparent 50%);
}

.counters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.counter-item {
    padding: 20px;
    position: relative;
    transition: all 0.3s;
}

.counter-item:hover {
    transform: translateY(-10px);
}

.counter-item:before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.03);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
}

.counter-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--secondary);
    text-shadow: 0 0 20px rgba(230, 57, 70, 0.5);
}

.counter-number {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(120deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.counter-text {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.categories {
    background-color: #f1f5f9;
    padding: 80px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.category-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.category-card:hover {
    transform: scale(1.05);
}

.category-img {
    height: 160px;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--primary);
}

.category-title {
    padding: 15px;
    font-weight: 600;
    color: var(--dark);
}


/* Mobile Responsive Styles */
@media (max-width: 991px) {
    .section-padding {
        padding: 70px 0;
    }
    
    .hero {
        padding: 120px 20px 80px;
        background-attachment: scroll;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 12px;
        margin: 5px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .section-title p {
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .counters {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .counter-number {
        font-size: 32px;
    }
    
    .counter-icon {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .counter-section {
        background-attachment: scroll;
    }
    
    .counters {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .counter-item:hover {
        transform: none;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
    }
}





 /*CSS for Featured Products Section*/
    .featured-products {
        background-color: #fff;
        position: relative;
        overflow: hidden;
    }
    
    .featured-products:before {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(46, 87, 8, 0.03) 0%, rgba(255,255,255,0) 70%);
        bottom: -150px;
        left: -150px;
        border-radius: 50%;
        z-index: 1;
    }
    
    .featured-slider {
        position: relative;
        margin: 0 -15px;
        padding: 0 15px;
        overflow: hidden;
    }
    
    .featured-track {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        transition: transform 0.5s ease;
    }
    
    .product-card {
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        overflow: hidden;
        position: relative;
        transition: all 0.3s ease;
        border: 1px solid rgba(0,0,0,0.05);
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-color: rgba(46, 87, 8, 0.1);
    }
    
    .product-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        padding: 5px 12px;
        font-size: 12px;
        font-weight: 600;
        border-radius: 20px;
        z-index: 2;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .product-badge.bestseller {
        background-color: #ff9500;
        color: white;
    }
    
    .product-badge.new {
        background-color: #2e5708ff;
        color: white;
    }
    
    .product-badge.sale {
        background-color: #e63946;
        color: white;
    }
    
    .product-image {
        position: relative;
        overflow: hidden;
        height: 220px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #f8f9fa;
    }
    
    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .product-card:hover .product-image img {
        transform: scale(1.08);
    }
    
    .quick-view {
        position: absolute;
        bottom: -50px;
        left: 0;
        width: 100%;
        background: linear-gradient(to top, rgba(46, 87, 8, 0.8), rgba(58, 107, 10, 0.6));
        color: white;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: bottom 0.3s ease;
        cursor: pointer;
    }
    
    .product-card:hover .quick-view {
        bottom: 0;
    }
    
    .product-info {
        padding: 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    
    .product-category {
        color: var(--gray);
        font-size: 13px;
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .product-title {
        font-size: 17px;
        font-weight: 600;
        line-height: 1.4;
        color: var(--dark);
        margin-bottom: 12px;
        transition: color 0.3s;
    }
    
    .product-card:hover .product-title {
        color: var(--primary);
    }
    
    .product-rating {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        color: #ffc107;
        font-size: 14px;
    }
    
    .product-rating span {
        color: var(--gray);
        margin-left: 5px;
        font-size: 13px;
    }
    
    .product-price {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }
    
    .current-price {
        font-size: 20px;
        font-weight: 700;
        color: var(--primary);
    }
    
    .old-price {
        font-size: 15px;
        color: var(--gray);
        text-decoration: line-through;
        margin-left: 8px;
    }
    
    .product-actions {
        display: flex;
        align-items: center;
        margin-top: auto;
        gap: 10px;
    }
    
    .add-to-wishlist {
        width: 38px;
        height: 38px;
        border-radius: 5px;
        border: 1px solid #ddd;
        background-color: white;
        color: var(--gray);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
    }
    
    .add-to-wishlist:hover {
        background-color: #f8f9fa;
        color: var(--secondary);
        border-color: var(--secondary);
    }
    
    .slider-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: white;
        border: 1px solid #eee;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        color: var(--primary);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s;
    }
    
    .prev-arrow {
        left: 5px;
    }
    
    .next-arrow {
        right: 5px;
    }
    
    .slider-arrow:hover {
        background-color: var(--primary);
        color: white;
    }
    
    .featured-footer {
        text-align: center;
        margin-top: 50px;
    }
    
    .view-all-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 30px;
        background-color: transparent;
        border: 2px solid var(--primary);
        color: var(--primary);
        font-weight: 600;
        text-decoration: none;
        border-radius: 30px;
        transition: all 0.3s;
    }
    
    .view-all-btn i {
        transition: transform 0.3s;
    }
    
    .view-all-btn:hover {
        background-color: var(--primary);
        color: white;
    }
    
    .view-all-btn:hover i {
        transform: translateX(5px);
    }
    
    /* Mobile Responsive Styles */
    @media (max-width: 1200px) {
        .featured-track {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    
    @media (max-width: 991px) {
        .featured-track {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
    }
    
    @media (max-width: 767px) {
        .product-image {
            height: 200px;
        }
        
        .featured-track {
            grid-template-columns: repeat(1, 1fr);
            gap: 15px;
        }
        
        .slider-arrow {
            width: 35px;
            height: 35px;
        }
    }





  .faq-accordion .faq-item {
    border-bottom: 1px solid #ddd;
  }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .faq-answer {
    display: none;
    padding: 0 20px 20px;
    color: #444;
    font-size: 16px;
  }

  .faq-item.active .faq-answer {
    display: block;
  }

  .faq-question .icon {
    transition: transform 0.3s ease;
  }

  .faq-item.active .icon {
    transform: rotate(180deg);
  }

 


  /* Professional Category Section Styling */
.categories {
    padding: 70px 0;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 34px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #2e5708ff;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    font-size: 17px;
    color: #5d6778;
    max-width: 700px;
    margin: 15px auto 0;
    line-height: 1.5;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px;
}

.category-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    display: block;
    border: 1px solid #eaecef;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-color: #d9e1ec;
}

.category-card:active {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-img {
    position: relative;
    height: 180px;
    width: 100%;
    overflow: hidden;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover .category-img img {
    transform: scale(1.1);
}

/* Lens hover effect */
.hover-lens {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.15));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.category-card:hover .hover-lens {
    opacity: 1;
}

/* View more button */
.view-more {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    padding: 20px 15px 15px;
    transition: bottom 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.view-more span {
    font-size: 14px;
    text-transform: uppercase;
}

.view-more svg {
    transition: transform 0.2s ease;
}

.category-card:hover .view-more {
    bottom: 0;
}

.category-card:hover .view-more svg {
    transform: translateX(3px);
}

.category-title {
    padding: 18px 20px;
    border-top: 1px solid #eef2f7;
}

.category-title h3 {
    font-size: 17px;
    font-weight: 600;
    color: #2e5708ff;
    margin: 0 0 4px;
    transition: color 0.2s ease;
}

.category-title p {
    font-size: 14px;
    color: #7f8c9c;
    margin: 0;
}

.category-card:hover .category-title h3 {
    color: #2e5708ff;
}

/* Add a subtle indicator to show it's clickable */
.category-card::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-top: 2px solid #3a6b0a;
    border-right: 2px solid #2e5708ff;
    top: 20px;
    right: 20px;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover::after {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
        gap: 20px;
    }
    
    .category-img {
        height: 150px;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    .category-title {
        padding: 15px;
    }
    
    .category-title h3 {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .categories {
        padding: 50px 0;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .category-img {
        height: 130px;
    }
}