        :root{
                --primary-green:#062E1B;
                --brand-orange:#FF1A00  ;
                --banner-bg:#F5EFEB;
                --text-dark:#1F2937;
            }

            body{
                font-family:'Inter',sans-serif;
                background:#FAF7F0;
                color:var(--text-dark);
                margin:0;
                padding:0;
            }
           


            /* =========================
            TOP BAR
            ========================= */

            .top-bar{
                background:var(--primary-green);
                color:#fff;
                font-size:12px;
                font-weight:500;
                padding:10px 0;
            } 

             
            /* Language Dropdown */
            .lang-minimal-dropdown{
                position:relative;
                display:inline-block;
            }

            .lang-btn{
                background:none;
                border:none;
                color:#fff;
                font-size:13px;
                font-weight:500;
                cursor:pointer;
                padding:5px 10px;
                display:flex;
                align-items:center;
            }

            .small-arrow{
                font-size:10px;
                transition:0.3s;
            }

            .lang-menu{
                position:absolute;
                top:100%;
                right:0;
                background:#fff;
                min-width:150px;
                box-shadow:0 4px 12px rgba(0,0,0,0.1);
                border-radius:8px;
                display:none;
                z-index:999;
                overflow:hidden;
            }

            .lang-menu a{
                display:block;
                padding:10px 15px;
                text-decoration:none;
                color:#333;
                font-size:14px;
            }

            .lang-menu a:hover{
                background:#f5f5f5;
            }

            .active-lang{
                color:#FF6B00 !important;
                font-weight:600;
                background:#FAF7F0;
            }

            .lang-minimal-dropdown:hover .lang-menu{
                display:block;
            }

            .lang-minimal-dropdown:hover .small-arrow{
                transform:rotate(180deg);
            }

            .lang-minimal-dropdown:hover .lang-menu {
                display: block;
            }



            
            .top-social{
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .top-social a{
            color:#fff;
            font-size:16px;
            transition:0.3s;
            text-decoration:none;
        }

        .top-social a:hover{
            color:#ffc107;
            transform:translateY(-2px);
        }
        


        /* Mobile par hide kare */
        @media (max-width: 767px){
            .top-social{
                display: none;
            }
        }
    

     /* Language Dropdown */
            .lang-minimal-dropdown{
                position:relative;
                display:inline-block;
            }

            .lang-btn{
                background:none;
                border:none;
                color:#fff;
                font-size:13px;
                font-weight:500;
                cursor:pointer;
                padding:5px 10px;
                display:flex;
                align-items:center;
            }

            .small-arrow{
                font-size:10px;
                transition:0.3s;
            }

            .lang-menu{
                position:absolute;
                top:100%;
                right:0;
                background:#fff;
                min-width:150px;
                box-shadow:0 4px 12px rgba(0,0,0,0.1);
                border-radius:8px;
                display:none;
                z-index:999;
                overflow:hidden;
            }

            .lang-menu a{
                display:block;
                padding:10px 15px;
                text-decoration:none;
                color:#333;
                font-size:14px;
            }

            .lang-menu a:hover{
                background:#f5f5f5;
            }

            .active-lang{
                color:#FF6B00 !important;
                font-weight:600;
                background:#FAF7F0;
            }

            .lang-minimal-dropdown:hover .lang-menu{
                display:block;
            }

            .lang-minimal-dropdown:hover .small-arrow{
                transform:rotate(180deg);
            }

            .lang-minimal-dropdown:hover .lang-menu {
                display: block;
            }





            /* Main Dark Dim Background Layer */
            .ayur-popup-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(4, 30, 18, 0.6); 
                backdrop-filter: blur(8px); 
                z-index: 200000; 
                display: flex;
                align-items: center;
                justify-content: center;
                opacity: 0;
                pointer-events: none;
                transition: opacity 0.4s ease-in-out;
            }

            /* Modal Open State */
            .ayur-popup-overlay.show-modal {
                opacity: 1;
                pointer-events: auto;
            }

            /* Central Box Container */
            .ayur-popup-container {
                background: #ffffff;
                width: 100%;
                max-width: 780px; /* Thoda optimize kiya size taaki balance rahe */
                border-radius: 24px;
                overflow: hidden;
                box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.3);
                position: relative;
                margin: 15px; 
                transform: translateY(20px) scale(0.95);
                transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            }

            .ayur-popup-overlay.show-modal .ayur-popup-container {
                transform: translateY(0) scale(1);
            }

            /* Flexbox Matrix for Sidebar Style */
            .ayur-grid-box {
                display: flex;
                width: 100%;
                height: 100%;
            }

            /* Absolute Floating Close Button */
            .ayur-close-btn {
                position: absolute;
                top: 12px;
                right: 12px;
                background: #ffffff;
                border: 1px solid #E5E7EB;
                width: 32px;
                height: 32px;
                border-radius: 50%;
                font-size: 20px;
                color: #6B7280;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                z-index: 100;
                line-height: 1;
                transition: all 0.2s ease;
                padding-bottom: 3px;
            }
            .ayur-close-btn:hover {
                color: #FF1A00;
                border-color: #FF1A00;
            }

            /* LEFT DESIGN BLOCK */
            .ayur-banner-panel {
                width: 45%; /* Proportion balance */
                background-image: linear-gradient(rgba(6, 46, 27, 0.9), rgba(6, 46, 27, 0.75)), 
                                url('https://images.unsplash.com/photo-1611080626919-7cf5a9dbab5b?auto=format&fit=crop&q=80&w=600'); 
                background-size: cover;
                background-position: center;
                padding: 30px 20px;
                display: flex;
                flex-direction: column;
                justify-content: flex-end;
                color: #ffffff;
            }

            .badge-mini {
                background: rgba(255, 255, 255, 0.15);
                border: 1px solid rgba(255, 255, 255, 0.25);
                padding: 3px 8px;
                border-radius: 30px;
                font-size: 9px;
                letter-spacing: 1px;
                font-weight: 600;
                display: inline-block;
                margin-bottom: 10px;
                width: fit-content;
            }

            .ayur-banner-panel h2 {
                font-family: 'Playfair Display', serif;
                font-size: 22px;
                font-weight: 700;
                margin-bottom: 8px;
                line-height: 1.3;
            }

            .ayur-banner-panel p {
                font-size: 12px;
                line-height: 1.5;
                color: #E5E7EB;
                margin: 0;
            }

            /* RIGHT FORM BLOCK */
            .ayur-form-panel {
                width: 55%;
                padding: 35px 30px;
                background: #ffffff;
            }

            .brand-title {
                font-family: 'Playfair Display', serif;
                font-weight: 700;
                color: #062E1B;
                font-size: 22px;
                letter-spacing: 0.5px;
                margin-bottom: 4px;
            }
            .brand-title span {
                color: #FF1A00;
            }
            .form-subtitle {
                font-size: 12px;
                color: #6B7280;
                margin: 0;
            }

            /* Input Styles */
            .ayur-label {
                font-size: 10px;
                font-weight: 600;
                color: #4B5563;
                text-transform: uppercase;
                letter-spacing: 0.8px;
                margin-bottom: 4px;
                display: block;
            }

            .ayur-input-wrapper {
                position: relative;
                display: flex;
                align-items: center;
                width: 100%;
            }
            .ayur-input-wrapper i {
                position: absolute;
                left: 14px;
                color: #9CA3AF;
                font-size: 14px;
            }
            .ayur-input-wrapper input {
                width: 100%;
                padding: 10px 12px 10px 38px;
                border: 1px solid #E5E7EB;
                border-radius: 10px;
                font-size: 14px;
                outline: none;
                background: #FAF9F5;
                transition: all 0.2s ease;
                font-family: 'Inter', sans-serif;
                color: #1F2937;
            }
            .ayur-input-wrapper input:focus {
                border-color: #062E1B;
                background: #ffffff;
            }

            .ayur-checkbox {
                accent-color: #062E1B;
                width: 14px;
                height: 14px;
                cursor: pointer;
            }

            .cursor-pointer { cursor: pointer; }
            .no-select { user-select: none; }

            .ayur-link {
                color: #062E1B;
                text-decoration: none;
            }
            .ayur-link:hover {
                color: #FF1A00;
            }

            .ayur-submit-btn {
                width: 100%;
                background: #062E1B;
                color: #ffffff;
                border: none;
                padding: 12px;
                border-radius: 10px;
                font-weight: 600;
                font-size: 13px;
                cursor: pointer;
            }

            /* ==========================================
                🌟 ADVANCED SCALING FOR SMALL MOBILE SCREENS
                ========================================== */
            @media (max-width: 576px) {
                .ayur-popup-container {
                    max-width: 100%;
                    margin: 10px;
                    border-radius: 16px;
                }
                
                /* Padding aur spacing thodi tight ki taaki contents squeeze ho sakein */
                .ayur-banner-panel {
                    padding: 20px 12px;
                    width: 40%; /* Image thodi choti par visible rahegi */
                }
                .ayur-form-panel {
                    padding: 25px 15px;
                    width: 60%;
                }
                
                /* Mobile text sizes adjustments */
                .ayur-banner-panel h2 { font-size: 15px; margin-bottom: 4px; }
                .ayur-banner-panel p { font-size: 10px; line-height: 1.3; }
                .badge-mini { display: none; } /* Choti screen par sirf badge hataya hai spacing ke liye */
                
                .brand-title { font-size: 16px; }
                .form-subtitle { font-size: 10px; }
                .ayur-label { font-size: 9px; }
                .ayur-input-wrapper input { font-size: 12px; padding: 8px 10px 8px 32px; border-radius: 8px; }
                .ayur-input-wrapper i { left: 10px; font-size: 12px; }
                
                .remember-text, .forgot-text, .form-footer-box p { font-size: 10px !important; }
                .ayur-submit-btn { padding: 10px; font-size: 11px; border-radius: 8px; }
                .no-wrap-mobile { flex-wrap: nowrap !important; }
            }

            /* Super Chote Mobile Phones Ke Liye Safe Padding Layout */
            @media (max-width: 360px) {
                .ayur-banner-panel {
                    display: none !important; /* Extremely compressed 320px screens par automatic fallback */
                }
                .ayur-form-panel {
                    width: 100%;
                }
            }

            /* =========================
            HEADER
            ========================= */

            .main-header{
                display:flex;
                align-items:center;
                justify-content:space-between;
                gap:20px;
                padding:18px 0;
            }

            .brand-name{
                font-family:'Playfair Display',serif;
                font-size:32px;
                font-weight:700;
                color:var(--brand-orange);
                line-height:1;
            }

            .brand-sub{
                font-size:11px;
                letter-spacing:3px;
                color:var(--primary-green);
                font-weight:700;
            }

            /* =========================
            SEARCH BAR
            ========================= */

/* ==========================================
            SEARCH BAR & AJAX RESULTS
========================================== */

.search-container {
    position: relative; /* CRITICAL: Isse live results bilkul input box ke neeche hi khulenge */
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 500px;
    border: 1px solid #ddd;
    border-radius: 40px;
    background: #fff;
    padding: 4px 6px 4px 18px;
}

.search-container input {
    border: none;
    width: 100%;
    outline: none;
    background: transparent;
}

.search-container select {
    border: none;
    outline: none;
    background: transparent;
    padding: 0 12px;
    border-left: 1px solid #ddd;
    color: #555;
}

.search-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--primary-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0; /* Ensures the button doesn't shrink on smaller widths */
}

/*LIVE SEARCH RESULTS DROPDOWN (Added & Fixed) */
.search-results {
    position: absolute;
    top: calc(100% + 8px); /* Input wrapper se thoda sa gap lekar niche open hoga */
    left: 0;
    width: 100%;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #E5E7EB;
    z-index: 9999; /* Taki kisi bhi slider ya content ke upar layering proper rahe */
    max-height: 280px;
    overflow-y: auto;
}

/* Results Unordered List Reset */
#search-results-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Individual list item separation */
#search-results-list li {
    border-bottom: 1px solid #F3F4F6;
}

#search-results-list li:last-child {
    border-bottom: none;
}

/* Smooth Links layout inside list */
#search-results-list li a {
    display: block;
    padding: 12px 18px !important; /* Overriding your direct element inline paddings */
    text-decoration: none !important;
    color: #374151 !important;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    text-align: left;
}

/* Modern Hover Effect matching Ayurvedic theme */
#search-results-list li a:hover {
    background-color: #FAF9F5 !important; /* Soft premium cream shade */
    color: var(--primary-green) !important; /* Text transforms to your primary green */
    padding-left: 22px !important; /* Micro sliding transition effect */
}

/* Custom minimal scrollbar for live result dropdown */
.search-results::-webkit-scrollbar {
    width: 6px;
}
.search-results::-webkit-scrollbar-track {
    background: transparent;
}
.search-results::-webkit-scrollbar-thumb {
    background: #D1D5DB;
    border-radius: 10px;
}
.search-results::-webkit-scrollbar-thumb:hover {
    background: #9CA3AF;
}
            /* =========================
            ICONS
            ========================= */

            .user-actions{
                display:flex;
                align-items:center;
                gap:20px;
            }

            .header-icon{
                text-decoration:none;
                color:var(--primary-green);
                position:relative;
                display:flex;
                align-items:center;
                gap:5px;
                font-size:14px;
                font-weight:500;
            }

            .icon-badge{
                position:absolute;
                top:-8px;
                right:-10px;
                background:var(--primary-green);
                color:#fff;
                font-size:9px;
                border-radius:50%;
                padding:1px 5px;
            }

            /* =========================
            NAVBAR
            ========================= */

            .category-btn{
                background:var(--primary-green);
                color:#fff;
                border:none;
                padding:10px 18px;
                border-radius:6px;
                font-weight:600;
                display:flex;
                align-items:center;
                gap:8px;
            }

            .navbar-nav .nav-link{
                color:var(--text-dark);
                font-weight:500;
            }

            .navbar-nav .nav-link.active{
                color:var(--primary-green);
            }

            .navbar-toggler:focus{
                box-shadow:none;
            }

            /* =========================
            HERO SECTION
            ========================= */

            

            /* =========================
            MOBILE
            ========================= */

            .mobile-icons .header-icon{
                font-size:18px;
            }

            @media(max-width:991px){

                .main-header{
                    flex-direction:column;
                    gap:18px;
                }

                .search-container{
                    max-width:100%;
                }

                .hero-section-card{
                    padding:35px 25px;
                    min-height:auto;
                }

                .hero-main-title{
                    font-size:48px;
                }

                .navbar-collapse{
                    padding-top:15px;
                }

                .navbar-nav{
                    gap:8px;
                }

                .navbar-nav .nav-link{
                    padding:8px 0;
                }
            }

            /* =========================
            FEATURES STRIP
            ========================= */
            
            .single-feature{
                display:flex;
                align-items:center;
                gap:8px;
                font-size:14px;
                font-weight:600;
                color: var(--primary-green);
            }
              

  /* =========================
PAGE HERO
========================= */

.section-hero{
    padding:100px 0;
    background:
    linear-gradient(rgba(6, 46, 27, 1),rgba(6, 46, 27, 1)),
    url('');

    background-size:cover;
    background-position:center;
    text-align:;
    color:#fff;
}

.section-hero h1{
    font-size:68px;
    font-family:'Playfair Display',serif;
    font-weight:700;
    color: ;
}

.section-hero p{
    max-width:700px;
    margin:auto;
    font-size:17px;
    line-height:1.8;
    opacity:0.95;
    color:  ;
}





            /* =========================
            category section
            ========================= */

            .category-section{
                background:#f8f6ef;
            }

            .sub-title{
                color:#ff6b00;
                font-size:13px;
                font-weight:600;
                letter-spacing:2px;
            }

            .section-title h2{
                color:#014421;
                font-weight:700;
                font-size:32px;
                font-family:'Playfair Display',serif;
            }

            .title-line{
                width:70px;
                height:3px;
                background:#ff6b00;
                margin:15px auto 0;
            }

            .category-card{
                display:block;
                background:#fff;
                padding:35px 25px;
                border-radius:25px;
                text-align:center;
                box-shadow:0 10px 30px rgba(0,0,0,0.08);
                transition:.4s;
                border:2px solid transparent;
                height:100%;
            }

            .category-card:hover{
                transform:translateY(-10px);
                border-color:#ff6b00;
            }

            .category-img{
                width:140px;
                height:140px;
                margin:auto;
                background:#f4f8f1;
                border-radius:50%;
                display:flex;
                align-items:center;
                justify-content:center;
            }

            .category-img img{
                width:105px;
                height:105px;
                object-fit:contain;
            }

            .category-card h4{
                color:#014421;
                font-weight:700;
                margin-top:20px;
            }

            .category-card p{
                color:#666;
                margin-bottom:0;
                font-size:14px;
            }

             

            /* =========================
            NEW SECTION: BEST SELLERS
            ========================= */
            .product-card {
                background: #FFFFFF;
                border-radius: 16px;
                border: 1px solid rgba(0,0,0,0.05);
                padding: 20px;
                position: relative;
                transition: transform 0.3s ease;
                height:100%;
            }
            .product-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 12px 24px rgba(0,0,0,0.06);
            }
            .product-badge {
                position: absolute;
                top: 15px;
                left: 15px;
                font-size: 10px;
                font-weight: 700;
                padding: 4px 10px;
                border-radius: 4px;
                text-transform: uppercase;
                color: #fff;
            }
            .badge-best { background-color: var(--brand-orange); }
            .badge-top { background-color: #10B981; }

            .product-img-holder {
                text-align: center;
                padding: 15px 0;
            }
            .product-img-holder img {
                max-height: 240px;
                object-fit: contain;
            }
            .product-meta-title {
                font-size: 15px;
                font-weight: 700;
                color: var(--primary-green);
                margin: 10px 0 5px 0;
            }
            .rating-stars {
                color: #FBBF24;
                font-size: 13px;
            }
            .rating-count {
                color: #6B7280;
                font-size: 12px;
                margin-left: 4px;
            }
            .price-tag {
                font-size: 16px;
                font-weight: 700;
                color: var(--text-dark);
                margin: 8px 0 15px 0;
            }
            .btn-add-to-cart {
                background-color: var(--primary-green);
                color: #ffffff;
                border: none;
                width: 100%;
                padding: 10px;
                border-radius: 8px;
                font-size: 13.5px;
                font-weight: 600;
                transition: background 0.2s;
            }
            .btn-add-to-cart:hover {
                background-color: #0b4629;
            }

            /* =========================
            NEW SECTION: SLIDER NAV BUTTONS (FIXED)
            ========================= */
            .slider-relative-container {
                position: relative;
            }
            .slider-arrow-btn {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                width: 40px;
                height: 40px;
                background: #fff;
                border: 1px solid #E5E7EB;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--primary-green);
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
                z-index: 10;
                text-decoration: none;
            }
            .slider-arrow-btn:hover {
                background: var(--primary-green);
                color: #fff;
            }
            .slider-arrow-btn.prev-btn { left: -20px; }
            .slider-arrow-btn.next-btn { right: -20px; }

            /* =========================
            NEW SECTION: COMBO BANNER
            ========================= */

            .combo-title {
                font-family: 'Playfair Display', serif;
                font-size: 36px;
                font-weight: 700;
                color: var(--primary-green);
            }

            .combo-banner-card {
                position: relative;
                overflow: hidden;
                border-radius: 24px;
                padding: 60px;
                min-height: 280px;
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;
            }

            .combo-banner-img {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center right;
            }

            .combo-banner-card .row {
                position: relative;
                z-index: 1;
            }


            /* 📱 Mobile */
            @media (max-width: 767px) {

                .combo-banner-img {
                    display: none;
                }

                .combo-banner-card {
                    background-color: #f4efea;
                    padding: 40px 20px;
                    min-height: 320px;
                }
            }


            
            /* =========================
            NEW SECTION: TESTIMONIALS
            ========================= */
            .testimonial-card {
                background: #fff;
                border-radius: 20px;
                padding: 40px 30px 30px 30px;
                text-align: center;
                position: relative;
                margin-top: 40px;
                box-shadow: 0 4px 15px rgba(0,0,0,0.02);
            }
            .testimonial-avatar {
                width: 70px;
                height: 70px;
                border-radius: 50%;
                object-fit: cover;
                position: absolute;
                top: -35px;
                left: 50%;
                transform: translateX(-50%);
                border: 4px solid #FAF7F0;
            }
            .testimonial-text {
                font-style: italic;
                color: #4B5563;
                font-size: 14px;
                line-height: 1.6;
            }
            .slider-dots {
                display: flex;
                justify-content: center;
                gap: 8px;
                margin-top: 25px;
            }
            .dot {
                width: 8px;
                height: 8px;
                background: #D1D5DB;
                border-radius: 50%;
                cursor: pointer;
            }
            .dot.active {
                background: var(--primary-green);
                width: 20px;
                border-radius: 10px;
            }

            /* Small Arrow Buttons */
                .swiper-button-next, .swiper-button-prev {
                    color: white !important;
                    background: rgba(0,0,0,0.3);
                    width: 40px !important; /* Small size */
                    height: 40px !important; /* Small size */
                    border-radius: 50%;
                }

            /* =========================
            RESPONSIVE MEDIA QUERIES
            ========================= */
            @media(max-width:991px){
                .main-header{ flex-direction:column; gap:18px; }
                .search-container{ max-width:100%; }
                
                .hero-main-title{ font-size:42px; }
                .slider-arrow-btn { display: none; } /* मोबाइल पर स्वैप आसान करने के लिए बटन्स छुपाए */
                
            }

            /* =========================
            LATEST BLOGS SECTION (HORIZONTAL LAYOUT)
            ========================= */
            .blog-section {
                padding: 60px 0;
            }
            .section-title-wrap {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 30px;
            }
            .section-main-heading {
                font-size: 22px;
                font-weight: 700;
                color: #062E1B;
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }
            .view-all-link {
                color: #E65A19;
                text-decoration: none;
                font-weight: 600;
                font-size: 14px;
            }
            .view-all-link:hover {
                text-decoration: underline;
            }


            .blog-horizontal-card {
              
                align-items: flex-start;
                gap: 20px; /* इमेज और टेक्स्ट के बीच की दूरी */
                background: transparent;
                border: none;
            }
            .blog-img-box {
                width: 240px;      /* फिगमा के अनुसार फिक्स चौड़ाई */
                height: 150px;     /* फिक्स ऊंचाई */
                flex-shrink: 0;
                border-radius: 16px;
                overflow: hidden;
            }
            .blog-img-box img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            .blog-content-box {
                display: flex;
                flex-direction: column;
                justify-content: center;
            }
            .blog-card-title {
                font-size: 18px;
                font-weight: 700;
                color: #062E1B;
                margin-bottom: 8px;
                line-height: 1.3;
            }
            .blog-card-desc {
                font-size: 13px;
                color: #555555;
                line-height: 1.5;
                margin-bottom: 12px;
            }
            .blog-card-readmore {
                color: #E65A19;
                font-weight: 600;
                font-size: 13px;
                text-decoration: none;
                display: inline-flex;
                align-items: center;
                gap: 4px;
            }

            /* =========================
            PRE-FOOTER FEATURES BAR
            ========================= */
            .pre-footer-features {
                background-color: #F1EDE4; /* लाइट क्रीम बैकग्राउंड */
                border-top: 1px solid rgba(0,0,0,0.04);
                border-bottom: 1px solid rgba(0,0,0,0.04);
                padding: 25px 0;
            }
            .feature-item {
                display: flex;
                align-items: center;
                gap: 12px;
            }
            .feature-icon-wrapper {
                color: #062E1B;
                font-size: 24px;
                display: flex;
                align-items: center;
            }
            .feature-text-bold {
                font-size: 13px;
                font-weight: 700;
                color: #062E1B;
                margin: 0;
            }
            .feature-text-sub {
                font-size: 12px;
                color: #666666;
                margin: 0;
            }

            /* =========================
            MAIN GREEN FOOTER
            ========================= */
            .site-footer {
                background-color: #062E1B; 
                color: #CBD5E1;
                padding: 60px 0 20px 0;
                font-size: 13px;
            }
            .footer-logo-title {
                font-size: 20px;
                font-weight: 700;
                color: #FFFFFF;
                margin-bottom: 15px;
            }
            .footer-logo-title span {
                color: #E65A19;
            }
            .footer-brief-text {
                line-height: 1.6;
                color: #A7BBAF;
            }

            .footer-social-icons a {
                color: #FFFFFF;
                font-size: 22px;
                margin-right: 15px;
                opacity: 0.8;
                text-decoration: none;
            }
            .footer-col-heading {
                color: #FFFFFF;
                font-size: 13px;
                font-weight: 700;
                letter-spacing: 0.5px;
                margin-bottom: 20px;
            }
            .footer-nav-list {
                list-style: none;
                padding: 0;
                margin: 0;
            }
            .footer-nav-list li {
                margin-bottom: 10px;
            }
            .footer-nav-list a {
                color: #A7BBAF;
                text-decoration: none;
            }
            .footer-nav-list a:hover {
                color: #FFFFFF;
            }
            .footer-newsletter-box input {
                background: rgba(255, 255, 255, 0.08);
                border: 1px solid rgba(255, 255, 255, 0.12);
                border-radius: 6px;
                padding: 9px 12px;
                color: #ffffff;
                font-size: 13px;
                width: 100%;
            }
            .footer-newsletter-box input::placeholder {
                color: #6D8A7B;
            }
            .footer-submit-btn {
                background-color: #E65A19;
                color: #ffffff;
                border: none;
                border-radius: 6px;
                padding: 9px 18px;
                font-weight: 600;
                font-size: 13px;
            }
            .footer-payment-icons img {
                max-height: 22px;
                margin-right: 8px;
                background: #fff;
                padding: 2px 5px;
                border-radius: 3px;
            }


            /* PREMIUM SLIDER */

        
        
        /* =========================
    TESTIMONIAL SECTION
    ========================= */

    .testimonialSwiper{
        position:relative;
        padding:50px 10px 70px;
    }

    /* CARD */

    .testimonial-card{
        background:#fff;
        border-radius:20px;
        padding:50px 30px 30px;
        text-align:center;
        position:relative;
        margin-top:20px;
        box-shadow:0 10px 10px rgba(0,0,0,0.05);
        transition:0.3s;
        height:100%;
    }

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

    /* AVATAR */

    .testimonial-avatar{
        width:80px;
        height:80px;
        border-radius:50%;
        object-fit:cover;

        position:absolute;
        top:-40px;
        left:50%;
        transform:translateX(-50%);

        border:5px solid #FAF7F0;
    }

    /* TEXT */

    .testimonial-text{
        font-size:14px;
        line-height:1.8;
        color:#555;
        font-style:italic;
    }

    /* =========================
    BUTTON DESIGN
    ========================= */

    .swiper-button-next,
    .swiper-button-prev{
        width:40px !important;
        height:40px !important;
        background:#fff;
        border:1px solid #E5E7EB;
        border-radius:50%;
        color:var(--primary-green) !important;
        box-shadow:0 4px 10px rgba(0,0,0,0.05);
        transition:0.3s;
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover{
        background:var(--primary-green);
        color:#fff !important;
    }

    /* ICON */

    .swiper-button-next::after,
    .swiper-button-prev::after{
        font-size:14px !important;
        font-weight:700;
    }

    /* POSITION */

    .swiper-button-prev{
        left:0px !important;
        top:45%;
    }

    .swiper-button-next{
        right:0px !important;
        top:45%;
    }

    /* =========================
    PAGINATION DOTS
    ========================= */

    .testimonialSwiper .swiper-pagination{
        position:relative !important;
        margin-top:35px;
        bottom:0 !important;
        left:0 !important;
        transform:none !important;

        display:flex;
        justify-content:center;
        align-items:center;
    }

    .testimonialSwiper .swiper-pagination-bullet{
        width:10px;
        height:10px;
        background:#cfcfcf;
        opacity:1;
        transition:0.3s;
    }

    .testimonialSwiper .swiper-pagination-bullet-active{
        width:28px;
        border-radius:20px;
        background:var(--brand-orange);
    }

    /* =========================
    MOBILE
    ========================= */

    @media(max-width:768px){

        .testimonial-card{
            padding:50px 20px 25px;
        }

        .swiper-button-next,
        .swiper-button-prev{
            display:none !important;
        }

    }

    /* PAGINATION POSITION FIX */

    .testimonialSwiper{
        padding-bottom:70px;
        position:relative;
    }

    .swiper-pagination{
        position:absolute !important;
        bottom:0px !important;
        left:50%;
        transform:translateX(-50%);
        width:auto !important;
    }

    /* TESTIMONIAL SWIPER */

    .testimonialSwiper{
        position: relative;
        padding-bottom: 60px;
    }

    /* PAGINATION */

    .testimonialSwiper .swiper-pagination{
        position: relative !important;
        margin-top: 35px;
        bottom: 0 !important;
        left: 0 !important;
        transform: none !important;

        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* DOT */

    .testimonialSwiper .swiper-pagination-bullet{
        width: 10px;
        height: 10px;
        background: #cfcfcf;
        opacity: 1;
        transition: 0.3s;
    }

    /* ACTIVE DOT */

    .testimonialSwiper .swiper-pagination-bullet-active{
        width: 28px;
        border-radius: 20px;
        background: #ff3b1f;
    }
    /* HIDE BUTTONS DEFAULT */

    .swiper-button-next,
    .swiper-button-prev{
        opacity:0;
        visibility:hidden;
        transition:0.3s ease;
    }

    /* SHOW ON HOVER */

    .testimonialSwiper:hover .swiper-button-next,
    .testimonialSwiper:hover .swiper-button-prev{
        opacity:1;
        visibility:visible;
    }



 

            /* ==========================================
                login page css
                ========================================== */

        /* ===========================
   Login Page
=========================== */

.registration-bg{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:60px 15px;
    background:#faf7f0;
}

.registration-bg .card{
    width:100%;
    max-width:460px;
    border-radius:20px;
    border:none;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    overflow:hidden;
}

.registration-bg .card-body{
    padding:40px;
}

.registration-bg h2{
    color:#062E1B;
    font-size:32px;
    font-weight:700;
    margin-bottom:10px;
}

.registration-bg p{
    color:#6B7280;
    font-size:14px;
}

.registration-bg .form-label{
    font-size:14px;
    color:#062E1B;
    font-weight:600;
    margin-bottom:8px;
}

.registration-bg .form-control{
    height:50px;
    border-radius:10px;
    border:1px solid #e5e7eb;
    background:#f9fafb;
    box-shadow:none;
}

.registration-bg .form-control:focus{
    border-color:#062E1B;
    box-shadow:0 0 0 3px rgba(6,46,27,.1);
}

.registration-bg .btn-success{
    height:52px;
    border-radius:10px;
    background:#062E1B;
    border:none;
    font-weight:600;
    font-size:16px;
}

.registration-bg .btn-success:hover{
    background:#0c472b;
}

.registration-bg a{
    color:#ff1a00;
    text-decoration:none;
}

.registration-bg a:hover{
    text-decoration:underline;
}















/* ========================================================
           HERO BANNER SLIDER CSS
           ======================================================== */
        .hero-slider {
            position: relative;
            height: 100%;
            overflow: hidden;
            width: 100%;
        }

        .hero-slide img {
                width: 100%;
                height: 100%;
                object-fit: cover; /* Isse image stretch nahi hogi aur container mein sahi se fit ho jayegi */
                object-position: center; /* Image center mein aligned rahegi */
            }

        .hero-slide {
            display: flex;
            align-items: center;
            background-size: cover;
            background-position: center;
            height: 100%;
           
        }

        /* Slide Content Styling */
        .hero-content {
            max-width: 600px;
            padding: 20px;
        }

        .pill-badge {
            background: rgba(12, 6, 46, 0.05);
            color: var(--primary-green);
            padding: 7px 15px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 1rem;
        }

        .hero-main-title {
            font-family: 'Playfair Display', serif;
            font-size: 72px;
            font-weight: 700;
            line-height: 1.1;
            color: #000000;
            margin-top: 0;
            margin-bottom: 1rem;
        }

        .hero-main-title span {
            color: #FF6B00;
        }

        .hero-text-p {
            max-width: 420px;
            font-size: 17px;
            line-height: 1.8;
            color: #1f1b1b;
            margin-bottom: 1.5rem;
        }

        /* Buttons Styling */
        .hero-buttons-wrap {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn-dark-green {
            background: #062E1B;
            color: #fff !important;
            padding: 14px 28px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: background 0.3s ease;
        }

        .btn-dark-green:hover {
            background: #0b4629;
        }

        .btn-outline-clear {
            border: 1px solid #062E1B;
            color: #062E1B !important;
            padding: 14px 28px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .btn-outline-clear:hover {
            background: #062E1B;
            color: #fff !important;
        }

        /* Next/Prev Arrow Controls */
        .hero-slider .swiper-button-next,
        .hero-slider .swiper-button-prev {
            width: 40px !important;
            height: 40px !important;
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid #E5E7EB;
            border-radius: 50%;
            color: #000000 !important;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
        }

        /* Hover karne par Arrows dikhenge */
        .hero-slider:hover .swiper-button-next,
        .hero-slider:hover .swiper-button-prev {
            opacity: 1;
            visibility: visible;
        }

        .hero-slider .swiper-button-next:hover,
        .hero-slider .swiper-button-prev:hover {
            background: var(--primary-green);
            color: #fff !important;
        }

        .hero-slider .swiper-button-next::after,
        .hero-slider .swiper-button-prev::after {
            font-size: 16px !important;
        }

        .hero-slider .swiper-button-prev { left: 25px !important; }
        .hero-slider .swiper-button-next { right: 25px !important; }

        /* Pagination Dots (Chinchu Style Pill Shape) */
        .hero-slider .swiper-pagination {
            position: absolute !important;
            bottom: 5px !important;
            left: 50% !important;
            transform: translateX(-50%) !important;
            z-index: 20;
            width: auto !important;
        }

        .hero-slider .swiper-pagination-bullet {
            width: 7px;
            height: 7px;
            background: #fff !important;
            opacity: 0.5;
            transition: all 0.3s ease;
        }

        .hero-slider .swiper-pagination-bullet-active {
            width: 15px !important;
            border-radius: 30px !important;
            opacity: 1 !important;
            background: var(--brand-orange) !important;
        }

        /* Responsive Breakpoint for Mobile Screens */
        @media(max-width: 991px) {
            .hero-slider {
                height: 420px;
            }
            .hero-main-title {
                font-size: 42px;
            }
            .hero-slide {
                padding-left: 5%;
            }
            .hero-slider .swiper-button-next,
            .hero-slider .swiper-button-prev {
                display: none !important; /* Mobile me arrows hide ho jayenge */
            }
        }










        /* =========================
    SLIDER BASE WRAPPER
    ========================= */

    .slider-relative-container{
        position: relative;
    }

    /* =========================
    BEST SELLER SWIPER
    ========================= */

    .bestSellerSwiper{
        padding-bottom: 50px;
        position: relative;
    }

    /* arrows hidden initially */
    .bestSellerSwiper .swiper-button-next,
    .bestSellerSwiper .swiper-button-prev{
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease;
    }

    /* show arrows on hover */
    .bestSellerSwiper:hover .swiper-button-next,
    .bestSellerSwiper:hover .swiper-button-prev{
        opacity: 1;
        visibility: visible;
    }

    /* =========================
    ✔️ PAGINATION FIX (CENTER)
    ========================= */

    .bestSellerSwiper .swiper-pagination{
        position: absolute !important;
        bottom: 0px !important;   /* 👈 main fix */
        left: 50% !important;     /* 👈 center */
        transform: translateX(-50%) !important;

        display: flex;
        justify-content: center;
        align-items: center;
        width: auto !important;
    }

    /* bullets */
    .bestSellerSwiper .swiper-pagination-bullet{
        background: #cfcfcf;
        opacity: 1;
        width: 8px;
        height: 8px;
        transition: 0.3s;
    }

    .bestSellerSwiper .swiper-pagination-bullet-active{
        background: var(--brand-orange);
        width: 25px;
        border-radius: 10px;
    }

    /* =========================
    TESTIMONIAL SWIPER
    ========================= */

    .testimonialSwiper{
        padding-bottom: 50px;
        position: relative;
    }

    /* pagination center fix */
    .testimonialSwiper .swiper-pagination{
        position: relative !important;
        margin-top: 25px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* bullets */
    .testimonialSwiper .swiper-pagination-bullet{
        width: 10px;
        height: 10px;
        background: #cfcfcf;
        opacity: 1;
        transition: 0.3s;
    }

    .testimonialSwiper .swiper-pagination-bullet-active{
        width: 28px;
        border-radius: 20px;
        background: var(--brand-orange);
    }

    /* =========================
    RESPONSIVE
    ========================= */

    @media(max-width:768px){
        .testimonialSwiper .swiper-button-next,
        .testimonialSwiper .swiper-button-prev{
            display: none !important;
        }
    }













    /* =========================
    TESTIMONIAL SECTION
    ========================= */

    .testimonialSwiper{
        position:relative;
        padding:50px 10px 70px;
    }

    /* CARD */

    .testimonial-card{
        background:#fff;
        border-radius:20px;
        padding:50px 30px 30px;
        text-align:center;
        position:relative;
        margin-top:20px;
        box-shadow:0 10px 10px rgba(0,0,0,0.05);
        transition:0.3s;
        height:100%;
    }

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

    /* AVATAR */

    .testimonial-avatar{
        width:80px;
        height:80px;
        border-radius:50%;
        object-fit:cover;

        position:absolute;
        top:-40px;
        left:50%;
        transform:translateX(-50%);

        border:5px solid #FAF7F0;
    }

    /* TEXT */

    .testimonial-text{
        font-size:14px;
        line-height:1.8;
        color:#555;
        font-style:italic;
    }

    /* =========================
    BUTTON DESIGN
    ========================= */

    .swiper-button-next,
    .swiper-button-prev{
        width:40px !important;
        height:40px !important;
        background:#fff;
        border:1px solid #E5E7EB;
        border-radius:50%;
        color:var(--primary-green) !important;
        box-shadow:0 4px 10px rgba(0,0,0,0.05);
        transition:0.3s;
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover{
        background:var(--primary-green);
        color:#fff !important;
    }

    /* ICON */

    .swiper-button-next::after,
    .swiper-button-prev::after{
        font-size:14px !important;
        font-weight:700;
    }

    /* POSITION */

    .swiper-button-prev{
        left:0px !important;
        top:45%;
    }

    .swiper-button-next{
        right:0px !important;
        top:45%;
    }

    /* =========================
    PAGINATION DOTS
    ========================= */

    .testimonialSwiper .swiper-pagination{
        position:relative !important;
        margin-top:35px;
        bottom:0 !important;
        left:0 !important;
        transform:none !important;

        display:flex;
        justify-content:center;
        align-items:center;
    }

    .testimonialSwiper .swiper-pagination-bullet{
        width:10px;
        height:10px;
        background:#cfcfcf;
        opacity:1;
        transition:0.3s;
    }

    .testimonialSwiper .swiper-pagination-bullet-active{
        width:28px;
        border-radius:20px;
        background:var(--brand-orange);
    }

    /* =========================
    MOBILE
    ========================= */

    @media(max-width:768px){

        .testimonial-card{
            padding:50px 20px 25px;
        }

        .swiper-button-next,
        .swiper-button-prev{
            display:none !important;
        }

    }

    /* PAGINATION POSITION FIX */

    .testimonialSwiper{
        padding-bottom:70px;
        position:relative;
    }

    .swiper-pagination{
        position:absolute !important;
        bottom:0px !important;
        left:50%;
        transform:translateX(-50%);
        width:auto !important;
    }

    /* TESTIMONIAL SWIPER */

    .testimonialSwiper{
        position: relative;
        padding-bottom: 60px;
    }

    /* PAGINATION */

    .testimonialSwiper .swiper-pagination{
        position: relative !important;
        margin-top: 35px;
        bottom: 0 !important;
        left: 0 !important;
        transform: none !important;

        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* DOT */

    .testimonialSwiper .swiper-pagination-bullet{
        width: 10px;
        height: 10px;
        background: #cfcfcf;
        opacity: 1;
        transition: 0.3s;
    }

    /* ACTIVE DOT */

    .testimonialSwiper .swiper-pagination-bullet-active{
        width: 28px;
        border-radius: 20px;
        background: var(--brand-orange);
    }
    /* HIDE BUTTONS DEFAULT */

    .swiper-button-next,
    .swiper-button-prev{
        opacity:0;
        visibility:hidden;
        transition:0.3s ease;
    }

    /* SHOW ON HOVER */

    .testimonialSwiper:hover .swiper-button-next,
    .testimonialSwiper:hover .swiper-button-prev{
        opacity:1;
        visibility:visible;
    }
















    /* =========================
NEW SECTION: LATEST BLOGS
========================= */
.blog-card {
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(6,46,27,0.06);
}

.blog-img-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f0f0f0;
    border-radius: 20px;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.05);
}

.blog-category-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--primary-green);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    font-size: 12px;
    color: #6B7280;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-meta i {
    color: var(--brand-orange);
}

.blog-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-title a:hover {
    color: var(--brand-orange);
}

.blog-excerpt {
    font-size: 13.5px;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-readmore-btn {
    color: var(--primary-green);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto; /* Push to bottom of card */
    transition: gap 0.2s, color 0.2s;
}

.blog-readmore-btn:hover {
    color: var(--brand-orange);
    gap: 10px;
}
</style>
<style>
    

/* =========================
BLOG SWIPER CONFIGS
========================= */
.blogSwiper {
    padding-bottom: 50px;
    position: relative;
}



/* Blog Pagination Dot Alignment */
.blogSwiper .swiper-pagination {
    position: absolute !important;
    bottom: 0px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto !important;
}

/* =========================
BLOG SWIPER SECTION
========================= */

.blogSwiper{
    position:relative;
    padding:20px 10px 70px;
}

/* BLOG CARD */

.blog-horizontal-card{
    background:#fff;
    border-radius:20px;
    padding:15px;
    box-shadow:0 10px 20px rgba(0,0,0,0.05);
    transition:0.3s;
    height:100%;
}

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

/* =========================
BUTTON DESIGN
========================= */

.blogSwiper .swiper-button-next,
.blogSwiper .swiper-button-prev{
    width:40px !important;
    height:40px !important;
    background:#fff;
    border:1px solid #E5E7EB;
    border-radius:50%;
    color:var(--primary-green) !important;
    box-shadow:0 4px 10px rgba(0,0,0,0.05);
    transition:0.3s;
}

.blogSwiper .swiper-button-next:hover,
.blogSwiper .swiper-button-prev:hover{
    background:var(--primary-green);
    color:#fff !important;
}

.blogSwiper .swiper-button-next::after,
.blogSwiper .swiper-button-prev::after{
    font-size:14px !important;
    font-weight:700;
}

/* BUTTON POSITION */

.blogSwiper .swiper-button-prev{
    left:0px !important;
    top:45%;
}

.blogSwiper .swiper-button-next{
    right:0px !important;
    top:45%;
}

/* =========================
PAGINATION DOTS
========================= */

.blogSwiper .swiper-pagination{
    position:relative !important;
    margin-top:35px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.blogSwiper .swiper-pagination-bullet{
    width:10px;
    height:10px;
    background:#cfcfcf;
    opacity:1;
    transition:0.3s;
}

.blogSwiper .swiper-pagination-bullet-active{
    width:28px;
    border-radius:20px;
    background:var(--brand-orange);
}

/* =========================
SHOW BUTTONS ON HOVER
========================= */    

.blogSwiper .swiper-button-next,
.blogSwiper .swiper-button-prev{
    opacity:0;
    visibility:hidden;
    transition:0.3s ease;
}

.blogSwiper:hover .swiper-button-next,
.blogSwiper:hover .swiper-button-prev{
    opacity:1;
    visibility:visible;
}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

    .blogSwiper .swiper-button-next,
    .blogSwiper .swiper-button-prev{
        display:none !important;
    }

    .blog-horizontal-card{
        flex-direction:column;
    }

    .blog-img-box{
        width:100%;
        height:220px;
    }
}












        /* =========================
        About us page
        ========================= */

        /* =========================
SECTION COMMON
========================= */

.section-space{
    padding:90px 0;
}

.section-tag{
    display:inline-block;
    background:#fff3ea;
    color:var(--brand-orange);
    padding:8px 18px;
    border-radius:40px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:15px;
}

.section-title{
    font-size:48px;
    font-family:'Playfair Display',serif;
    font-weight:700;
    color:var(--primary-green);
    margin-bottom:20px;
}

.section-title span{
    color:var(--brand-orange);
}

.section-text{
    font-size:16px;
    line-height:1.9;
    color:#555;
}

/* =========================
IMAGE CARD
========================= */

.about-img-wrap{
    position:relative;
}

.about-main-img{
    width:100%;
    border-radius:28px;
    object-fit:cover;
    min-height:400px;
}

.experience-box{
    position:absolute;
    bottom:25px;
    left:-25px;
    background:#fff;
    padding:25px;
    border-radius:24px;
    box-shadow:0 15px 30px rgba(0,0,0,0.08);
    width:210px;
}

.experience-box h2{
    color:var(--brand-orange);
    font-size:42px;
    font-weight:500;
}

.experience-box p{
    margin:0;
    font-weight:500;
    color:var(--primary-green);
}

/* =========================
MISSION CARDS
========================= */

.mission-card{
    background:#fff;
    border-radius:24px;
    padding:40px 30px;
    height:100%;
    transition:0.4s;
    border:1px solid rgba(0,0,0,0.05);
}

.mission-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.06);
}

.mission-icon{
    width:75px;
    height:75px;
    background:#FFF4EC;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--brand-orange);
    font-size:32px;
    margin-bottom:25px;
}

.mission-card h4{
    color:var(--primary-green);
    font-weight:700;
    margin-bottom:15px;
}

    /* =========================
    STATS STRIP
    ========================= */
    .stats-strip {
        background-color: var(--primary-green);
        color: #FFFFFF;
        padding: 50px 0;
    }
    .stat-number {
        font-family: 'Playfair Display', serif;
        font-size: 40px;
        font-weight: 700;
        color: #FFF;
        margin-bottom: 5px;
    }
    .stat-title {
        font-size: 13px;
        letter-spacing: 1px;
        color: #A7BBAF;
        font-weight: 600;
        text-transform: uppercase;
    }

/* =========================
WHY CHOOSE US
========================= */

.why-section{
    background:#fff;
    border-radius:40px;
    padding:70px;
}

.feature-box{
    display:flex;
    gap:18px;
    margin-bottom:35px;
}

.feature-icon{
    width:60px;
    height:60px;
    border-radius:16px;
    background:#FFF4EC;
    color:var(--brand-orange);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    flex-shrink:0;
}

.feature-box h5{
    color:var(--primary-green);
    font-weight:700;
}

/* =========================
TEAM SECTION
========================= */

.team-card{
    text-align:center;
}

.team-card img{
    width:100%;
    border-radius:24px;
    height:450px;
    object-fit:cover;
}

.team-card h5{
    margin-top:20px;
    color:var(--primary-green);
    font-weight:700;
}

.team-card p{
    color:var(--brand-orange);
    font-weight:600;
}

/* =========================
CTA
========================= */

.cta-section{
    background:
    linear-gradient(#062E1B,#062E1B),
    url('e com 3.png');

    background-size:cover;
    background-position:center;

    border-radius:35px;
    padding:30px 20px;
    text-align:center;
    color:#fff;
}

.cta-section h2{
    font-size:50px;
    font-family:'Playfair Display',serif;
    margin-bottom:20px;
}

.cta-btn{
    display:inline-block;
    background:var(--brand-orange);
    color:#fff;
    text-decoration:none;
    padding:14px 35px;
    border-radius:10px;
    font-weight:600;
    margin-top:15px;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

    .about-hero h1{
        font-size:48px;
    }

    .section-title{
        font-size:36px;
    }

    .why-section{
        padding:40px 25px;
    }

    .experience-box{
        position:relative;
        left:0;
        bottom:0;
        margin-top:20px;
        width:100%;
    }

    .cta-section h2{
        font-size:36px;
    }
}











      /* ==========================================
           products page
           ========================================== */

/* ==========================================
           HTML BACKGROUND IMAGE BANNER STYLE
           ========================================== */
        .shop-hero-banner {
            position: relative;
            padding: 80px 0;
            margin-bottom: 40px;
            width: 100%;
            overflow: hidden; /* Image ko banner se bahar jane se rokne ke liye */
        }

        /* HTML Image ko as a background stretch karne ke liye */
        .banner-bg-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            z-index: 1;
        }

        /* Dark Overlay layer (HTML image ke upar text ko clear dikhane ke liye) */
        .shop-hero-banner::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.75); 
            z-index: 2; /* Image ke upar rahega */
        }

        .shop-hero-banner .container {
            position: relative;
            z-index: 3; /* Overlay aur image dono ke upar rahega */
        }

        .shop-banner-title {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: #ffffff; 
            font-size: 3rem;
            line-height: 1.2;
        }

        .shop-banner-subtitle {
            font-size: 1.15rem;
            color: #E2E8F0; 
            line-height: 1.6;
            max-width: 500px;
            margin: 0 auto;
        }

        .banner-divider {
            display: inline-block;
            width: 60px;
            height: 3px;
            background: var(--brand-orange);
            margin-top: 15px;
        }

        /* ==========================================
           PRODUCT CARDS GRID STYLE
           ========================================== */
        .product-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            border: none;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            padding: 4px 10px;
            font-size: 11px;
            font-weight: 600;
            border-radius: 4px;
            color: white;
            z-index: 2;
        }

        .badge-best { background-color: var(--brand-orange); }
        .badge-top { background-color: var(--primary-green); }

        .product-img-holder {
            width: 100%;
            height: 220px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fdfdfd;
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .product-img-holder img {
            max-height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .product-card:hover .product-img-holder img {
            transform: scale(1.05);
        }

        .product-meta-title {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 16px;
            color: var(--text-dark);
            margin-bottom: 8px;
            text-decoration: none;
        }

        .rating-stars { color: #FFB300; font-size: 13px; }
        .rating-count { color: #6B7280; font-size: 12px; margin-left: 5px; }

        .price-tag {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary-green);
            margin: 12px 0;
        }

        .btn-add-to-cart {
            width: 100%;
            background-color: var(--primary-green);
            color: white;
            border: none;
            padding: 10px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            transition: 0.3s;
        }

        .btn-add-to-cart:hover {
            background-color: #0b4d2e;
            color: white;
        }

        .shop-filter-bar {
            background: white;
            padding: 15px 20px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.02);
            margin-bottom: 30px;
        }

        @media (max-width: 767px) {
            .shop-banner-title {
                font-size: 2.2rem;
            }
            .shop-hero-banner {
                padding: 50px 0;
            }
        }







/* =======================================
           PRODUCT DETAIL page
        ======================================= */

/* =======================================
           PRODUCT DETAIL LAYOUT
        ======================================= */
        .breadcrumb-item a {
            color: #6B7280;
            text-decoration: none;
            font-size: 14px;
        }

        .breadcrumb-item.active {
            color: var(--primary-green);
            font-weight: 500;
            font-size: 14px;
        }

        /* Image Gallery System */
        .product-main-img-box {
            background: #ffffff;
            border: 1px solid rgba(0,0,0,0.05);
            border-radius: 16px;
            padding: 20px;
            text-align: center;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 100%;
        }

        .product-main-img-box img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
        }

        .thumb-img-box {
            background: #ffffff;
            border: 1px solid rgba(0,0,0,0.05);
            border-radius: 10px;
            padding: 8px;
            cursor: pointer;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: border-color 0.2s;
        }

        .thumb-img-box:hover, .thumb-img-box.active {
            border-color: var(--brand-orange);
        }

        .thumb-img-box img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
        }

        /* Right Side Content Elements */
        .detail-product-title {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: var(--primary-green);
            font-size: 28px;
            line-height: 1.3;
        }

        @media (min-width: 768px) {
            .detail-product-title {
                font-size: 32px;
            }
        }

        .detail-rating-badge {
            color: #FBBF24;
            font-size: 15px;
        }

        .detail-price-box {
            margin: 20px 0;
            background: rgba(6, 46, 27, 0.03);
            padding: 15px 20px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            width: 100%;
        }

        .current-price {
            font-size: 26px;
            font-weight: 700;
            color: var(--primary-green);
        }

        .old-price {
            font-size: 18px;
            color: #9CA3AF;
            text-decoration: line-through;
        }

        .discount-tag {
            background: var(--brand-orange);
            color: #ffffff;
            font-size: 12px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 6px;
        }

        /* Option Varients Selector (Size/Weight) */
        .variant-btn {
            border: 1px solid #D1D5DB;
            background: #fff;
            padding: 10px 20px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
            transition: all 0.2s;
        }

        .variant-btn:hover, .variant-btn.active {
            border-color: var(--primary-green);
            background: rgba(6, 46, 27, 0.05);
            color: var(--primary-green);
        }

        /* Quantity Block */
        .qty-label {
            font-size: 14px;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 8px;
            text-transform: uppercase;
        }

        .quantity-selector {
            display: flex;
            align-items: center;
            border: 1px solid #D1D5DB;
            border-radius: 8px;
            overflow: hidden;
            width: 120px;
            background: #fff;
        }

        .qty-btn {
            background: transparent;
            border: none;
            width: 35px;
            height: 42px;
            font-size: 16px;
            cursor: pointer;
        }

        .qty-btn:hover {
            background: #F3F4F6;
        }

        .qty-input {
            width: 50px;
            height: 42px;
            border: none;
            border-left: 1px solid #D1D5DB;
            border-right: 1px solid #D1D5DB;
            text-align: center;
            font-weight: 600;
        }

        /* CTA Buttons */
        .btn-add-cart-detail {
            background-color: var(--primary-green);
            color: #ffffff;
            border: none;
            padding: 13px 15px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 15px;
            transition: background 0.2s;
            height: 46px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-add-cart-detail:hover {
            background-color: #0b4629;
            color: #fff;
        }

        .btn-buy-now-detail {
            background-color: var(--brand-orange);
            color: #ffffff;
            border: none;
            padding: 13px 15px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 15px;
            transition: background 0.2s;
            height: 46px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-buy-now-detail:hover {
            background-color: #d61500;
            color: #fff;
        }

        /* Description Tabs Panel */
        .product-info-tabs {
            margin-top: 40px;
            background: #ffffff;
            border-radius: 16px;
            border: 1px solid rgba(0,0,0,0.05);
            padding: 20px;
        }

        @media (min-width: 768px) {
            .product-info-tabs {
                padding: 30px;
            }
        }

        .nav-tabs-custom .nav-link {
            border: none;
            color: #6B7280;
            font-weight: 600;
            padding: 10px 15px;
            font-size: 14px;
            background: transparent;
        }

        @media (min-width: 576px) {
            .nav-tabs-custom .nav-link {
                padding: 12px 24px;
                font-size: 15px;
            }
        }

        .nav-tabs-custom .nav-link.active {
            color: var(--primary-green);
            border-bottom: 3px solid var(--primary-green);
            background: transparent;
        }

        .tab-content-text {
            font-size: 14.5px;
            line-height: 1.7;
            color: #4B5563;
            padding-top: 20px;
        }

        @media (max-width: 768px) {
            .nav-tabs-custom {
                flex-wrap: nowrap;
                overflow-x: auto;
                white-space: nowrap;
            }

            .nav-tabs-custom .nav-link {
                flex: 0 0 auto;
            }
        }

        /* =======================================
           RELATED PRODUCTS (SWIPER SLIDER) STYLES
        ======================================= */
        .section-title {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: var(--primary-green);
            font-size: 24px;
            margin-bottom: 25px;
        }

        @media (min-width: 768px) {
            .section-title {
                font-size: 28px;
            }
        }

        /* Swiper container adjustments */
        .related-products-slider {
            padding: 10px 5px 50px 5px !important; /* Bottom padding badha di taaki dots ko jagah mile */
            position: relative !important;
            overflow: hidden; /* Slide elements block karne ke liye */
        }

        .related-products-slider .swiper-pagination {
            position: absolute !important;
            bottom: 15px !important;
            left: 50% !important;
            transform: translateX(-50%) !important;
            width: auto !important;
            display: flex !important;
            justify-content: center !important;
            align-items: center !important;
            gap: 6px !important;
            z-index: 10 !important;
        }

        .related-product-card {
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.05);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .related-product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(6, 46, 27, 0.08);
            border-color: rgba(6, 46, 27, 0.1);
        }

        .related-card-img-box {
            background: #ffffff;
            padding: 15px;
            /*height: 180px;*/
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .related-card-img-box img {
            /*max-height: 100%;*/
            max-height: 240px;
            max-width: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .related-product-card:hover .related-card-img-box img {
            transform: scale(1.05);
        }

        .related-card-body {
            padding: 15px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .related-card-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-dark);
            line-height: 1.4;
            margin-bottom: 8px;
            text-decoration: none;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            height: 20px;
        }

        .related-card-title:hover {
            color: var(--primary-green);
        }

        .related-card-rating {
            color: #FBBF24;
            font-size: 12px;
            margin-bottom: 8px;
        }

        .related-card-price-row {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: auto;
        }

        .related-card-current-price {
            font-weight: 700;
            color: var(--primary-green);
            font-size: 16px;
        }

        .related-card-old-price {
            color: #9CA3AF;
            text-decoration: line-through;
            font-size: 13px;
        }

        .related-card-discount {
            color: var(--brand-orange);
            font-weight: 700;
            font-size: 11px;
        }

        /* Swiper Dots Custom Color */
        .swiper-pagination-bullet-active {
            background: var(--brand-orange) !important;
            width: 20px !important; /* Active dot ko premium capsule look dene ke liye (Optional) */
            border-radius: 4px !important;
        }















            /* =========================
            Bloge page
            ========================= */
        .Blog-hero{
        padding:100px 0;
        background:
        linear-gradient(rgba(6, 46, 27, 1),rgba(6, 46, 27, 1)),
        url('');

        background-size:cover;
        background-position:center;
        text-align:;
        color:#fff;
    }

    .Blog-hero h1{
        font-size:68px;
        font-family:'Playfair Display',serif;
        font-weight:700;
        color: ;
    }

    .Blog-hero p{
        max-width:700px;
        margin:auto;
        font-size:17px;
        line-height:1.8;
        opacity:0.95;
        color:  ;
    }


    
        /* Featured Blog Card Layout */
        .featured-blog-card {
            background: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.05);
            box-shadow: 0 10px 30px rgba(6,46,27,0.03);
            margin-bottom: 50px;
        }

        .featured-img-holder {
            height: 100%;
            min-height: 100%;
            overflow: hidden;
            border-radius: 20px;
            margin-right: 20px;
            border: 20px;

        }

        .featured-img-holder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            
            
            
        }

        .blog-badge {
            background-color: rgba(6, 46, 27, 0.08);
            color: var(--primary-green);
            font-size: 11px;
            font-weight: 700;
            padding: 5px 12px;
            border-radius: 30px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: inline-block;
        }

        .featured-title {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--primary-green);
            margin: 15px 0;
            line-height: 1.3;
        }

        .blog-meta-info {
            font-size: 13px;
            color: #6B7280;
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
        }

        .btn-read-more {
            color: var(--brand-orange);
            font-weight: 700;
            font-size: 14px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.2s;
        }

        .btn-read-more:hover {
            gap: 10px;
            color: var(--brand-orange);
        }

        /* Standard Blog Card Grid System */
        .standard-blog-card {
            background: #ffffff;
            border-radius: 16px;
            border: 1px solid rgba(0,0,0,0.04);
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .standard-blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.06);
        }

        .blog-grid-img-holder {
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .blog-grid-img-holder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .standard-blog-card:hover .blog-grid-img-holder img {
            transform: scale(1.05);
        }

        .grid-card-body {
            padding: 22px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .grid-blog-title {
            font-family: 'Playfair Display', serif;
            font-size: 19px;
            font-weight: 700;
            color: var(--primary-green);
            margin: 12px 0 10px 0;
            line-height: 1.4;
        }

        /* Sidebar Widgets Design */
        .sidebar-widget {
            background: #ffffff;
            border-radius: 16px;
            border: 1px solid rgba(0,0,0,0.04);
            padding: 24px;
            margin-bottom: 30px;
        }

        .widget-title {
            font-family: 'Playfair Display', serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 8px;
        }

        .widget-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background-color: var(--brand-orange);
        }

        .sidebar-search-box {
            display: flex;
            border: 1px solid #E5E7EB;
            border-radius: 8px;
            overflow: hidden;
            background: #fff;
        }

        .sidebar-search-box input {
            border: none;
            padding: 10px 15px;
            width: 100%;
            outline: none;
            font-size: 14px;
        }

        .sidebar-search-box button {
            background: var(--primary-green);
            color: #fff;
            border: none;
            padding: 0 15px;
        }

        .category-widget-list {
            list-style: none;
            padding: 10px;
            margin: 0px;
        }

        .category-widget-list li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px dashed #E5E7EB;
            font-size: 14px;
        }

        .category-widget-list li:last-child {
            border-bottom: none;
        }

        .category-widget-list a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.2s;
        }

        .category-widget-list a:hover {
            color: var(--brand-orange);
        }

        .recent-post-item {
            display: flex;
            gap: 12px;
            align-items: center;
            margin-bottom: 15px;
        }

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

        .recent-thumb {
            width: 65px;
            height: 65px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .recent-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .recent-post-title {
            font-size: 13.5px;
            font-weight: 600;
            color: var(--primary-green);
            line-height: 1.4;
            margin-bottom: 4px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Custom Pagination Structure */
        .blog-pagination .page-link {
            color: var(--primary-green);
            border: 1px solid #E5E7EB;
            padding: 10px 16px;
            font-weight: 500;
        }

        .blog-pagination .page-item.active .page-link {
            background-color: var(--primary-green);
            border-color: var(--primary-green);
            color: #fff;
        }












            /* =======================================
            BLOG DETAIL PAGE 
            ======================================= */
.breadcrumb-wrapper {
    padding: 20px 0;
    font-size: 14px;
}

.breadcrumb-wrapper a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
}

.blog-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1.3;
}

@media (min-width: 768px) { .blog-main-title { font-size: 38px; } }

.blog-meta-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: var(--text-muted);
    border-top: 1px solid rgba(6,46,27,0.08);
    border-bottom: 1px solid rgba(6,46,27,0.08);
    padding: 12px 0;
}

.blog-category-tag {
    background: rgba(255,107,0,0.1);
    color: var(--brand-orange);
    padding: 3px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.main-featured-image {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

/* Article Core Content Body */
.article-rich-content {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
}

.article-rich-content h2, .article-rich-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-green);
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 15px;
}

.article-rich-content p {
    margin-bottom: 20px;
}

/* Ayurvedic Tip Highlight Callout Box */
.ayurveda-quote-box {
    background: #ffffff;
    border-left: 4px solid var(--brand-orange);
    padding: 25px;
    border-radius: 0 12px 12px 0;
    margin: 35px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.ayurveda-quote-box p {
    font-style: italic;
    color: var(--primary-green);
    font-weight: 500;
    margin-bottom: 0;
}

/* Social Share Icons Strip */
.share-container {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
    padding: 15px 0;
    margin-top: 40px;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: transform 0.2s;
}

.share-btn:hover { transform: translateY(-2px); color: #fff; }
.share-wa { background: #25D366; }
.share-fb { background: #1877F2; }
.share-tw { background: #1DA1F2; }

/* SIDEBAR RE-DESIGN */
.sidebar-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.sidebar-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 18px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(6,46,27,0.06);
}

/* Product Ad Banner In Sidebar */
.shop-ad-banner {
    background: linear-gradient(rgba(6,46,27,0.9), rgba(6,46,27,0.95)), url('cat 1.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
}

.shop-ad-banner h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 12px;
}

.btn-shop-now {
    background: var(--brand-orange);
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.related-post-item {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 15px;
    text-decoration: none;
}

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

.related-thumb {
    width: 65px;
    height: 65px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-thumb img { width: 100%; height: 100%; object-fit: cover; }

.related-title {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary-green);
    line-height: 1.4;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}











        /* =========================
            contect page
            ========================= */

        /* =========================
CONTACT HERO
========================= */

.contact-hero{
    padding:100px 0;
    background:
    linear-gradient(rgba(6, 46, 27, 1),rgba(6, 46, 27, 1)),
    url('');

    background-size:cover;
    background-position:center;
    text-align:;
    color:#fff;
}

.contact-hero h1{
    font-size:68px;
    font-family:'Playfair Display',serif;
    font-weight:700;
}

.contact-hero p{
     max-width:700px;
    margin:auto;
    font-size:17px;
    line-height:1.8;
    opacity:0.95;
    color:  ;
}

/* =========================
SECTION COMMON
========================= */

.section-space{
    padding:90px 0;
}

.section-title{
    font-size:48px;
    font-family:'Playfair Display',serif;
    color:var(--primary-green);
    font-weight:700;
}

.section-title span{
    color:var(--brand-orange);
}

/* =========================
CONTACT BOX
========================= */

.contact-wrapper{
    background:#fff;
    border-radius:35px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
}

/* =========================
LEFT INFO
========================= */

.contact-info{
    background:
    linear-gradient(rgba(6,46,27,0.92),rgba(6,46,27,0.92)),
    url('e com 3.png');

    background-size:cover;
    background-position:center;

    padding:60px 45px;
    height:100%;
    color:#fff;
}

.contact-info h2{
    font-size:42px;
    font-family:'Playfair Display',serif;
    margin-bottom:20px;
}

.contact-info p{
    line-height:1.8;
    opacity:0.9;
}

.info-box{
    display:flex;
    gap:18px;
    margin-top:35px;
}

.info-icon{
    width:60px;
    height:60px;
    background:rgba(255,255,255,0.12);
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    color:var(--brand-orange);
    flex-shrink:0;
}

.info-box h5{
    font-weight:700;
    margin-bottom:6px;
}

/* =========================
FORM SECTION
========================= */

.contact-form{
    padding:60px 50px;
}

.form-control{
    height:58px;
    border-radius:14px;
    border:1px solid #E5E7EB;
    padding-left:18px;
    box-shadow:none !important;
}

textarea.form-control{
    height:160px;
    resize:none;
    padding-top:18px;
}

.form-control:focus{
    border-color:var(--brand-orange);
}

.submit-btn{
    background:var(--brand-orange);
    color:#fff;
    border:none;
    padding:15px 35px;
    border-radius:12px;
    font-weight:600;
    transition:0.3s;
}

.submit-btn:hover{
    background:var(--primary-green);
}

/* =========================
MAP SECTION
========================= */

.map-section{
    border-radius:35px;
    overflow:hidden;
    margin-top:60px;
}

.map-section iframe{
    width:100%;
    height:450px;
    border:none;
}

/* =========================
SOCIAL
========================= */

.social-icons{
    margin-top:40px;
}

.social-icons a{
    width:45px;
    height:45px;
    background:rgba(255,255,255,0.12);
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    margin-right:10px;
    text-decoration:none;
    transition:0.3s;
}

.social-icons a:hover{
    background:var(--brand-orange);
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

    .contact-hero h1{
        font-size:48px;
    }

    .section-title{
        font-size:36px;
    }

    .contact-info{
        padding:45px 30px;
    }

    .contact-form{
        padding:45px 25px;
    }

    .contact-info h2{
        font-size:34px;
    }
}








/* =========================
Category Page
========================= */

/* =========================
SECTION COMMON
========================= */

.category-section-space{
    padding:90px 0;
}

.category-section-tag{
    display:inline-block;
    background:#fff3ea;
    color:var(--brand-orange);
    padding:8px 18px;
    border-radius:40px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:15px;
}

.category-section-title{
    font-size:48px;
    font-family:'Playfair Display',serif;
    font-weight:700;
    color:var(--primary-green);
    margin-bottom:20px;
}

.category-section-title span{
    color:var(--brand-orange);
}

.category-section-text{
    font-size:16px;
    line-height:1.9;
    color:#555;
}

/* =========================
IMAGE CARD
========================= */

.category-img-wrap{
    position:relative;
}

.category-main-img{
    width:100%;
    border-radius:28px;
    object-fit:cover;
    min-height:250px;
}
