 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            background: #ffffff;
            color: #2d3748;
        }

        /* ====================================================
NAVBAR (PROFESSIONAL & MODERN)
==================================================== */

        .custom-navbar {
            width: 100%;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 9999;
            padding: 0px 0;
            background: rgba(248, 248, 248, 0.836);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            box-shadow: 0 15px 35px rgba(3, 3, 3, 0.178);
            border-bottom: 1px solid rgba(0, 0, 0, 0.041);

            transition: all 0.4s ease;
        }

        .custom-navbar .navbar-brand img {
            width: 210px;
            height: auto;
        }

        .custom-navbar .nav-link {
            color: #2d3748;
            font-size: 16px;
            font-weight: 600;
            margin: 0 16px;
            position: relative;
            transition: 0.3s;
        }

        .custom-navbar .nav-link:hover,
        .custom-navbar .nav-link.active {
            color: #5a9e2a;
        }

        /* Bottom line hover effect for menu */
        .custom-navbar .nav-link::after {
            content: ' ';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: #5a9e2a;
            transition: width 0.3s ease;
        }

        .custom-navbar .nav-link:hover::after,
        .custom-navbar .nav-link.active::after {
            width: 100%;
        }

        .custom-navbar .dropdown-menu {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            padding: 8px;
            background: #fff;
        }

        .custom-navbar .dropdown-item {
            padding: 10px 16px;
            border-radius: 8px;
            font-weight: 500;
            font-size: 15px;
            color: #4a5568;
            transition: 0.2s;
        }

        .custom-navbar .dropdown-item:hover {
            background: #eef8e8;
            color: #5a9e2a;
        }

        /* --- PROFESSIONAL BUTTONS CONTAINER --- */
        .nav-btns {
            display: flex;
            gap: 15px !important;
            /* Professional sleek gap */
            align-items: center;
            width: 100%;
            /* Pure row area cover karne ke liye */
            max-width: 450px;
            /* Desktop par buttons zyada khiche na dikhein, isliye max limits */
        }

        /* --- EQUAL WIDTH PROFESSIONAL BUTTONS --- */
        .nav-btn {
            flex: 1;
            /* Crtical Step: Yeh teeno buttons ko barabar equal width me baant dega */
            text-align: center;
            /* Text center me rahega */
            background: transparent;
            color: #4a5568;
            text-decoration: none;
            padding: 10px 15px;
            /* Up-down breathing spaces */
            border-radius: 30px;
            /* Soft premium rounded edges */
            font-weight: 600;
            /* Font thoda crisp aur dynamic dikhne ke liye */
            font-size: 14px;

            border: 1px solid #cbd5e1;
            white-space: nowrap;
            /* Text break hokar niche na aaye */
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.24);
        }

        /* Base hover behavior */
        .nav-btn:hover {
            background: #5a9e2aa8;
            color: #fff !important;
            border-color: #5a9e2a;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(90, 158, 42, 0.25);
        }

        /* --- SPECIFIC INDIVIDUAL STYLES (As per your design) --- */

        /* 1st Button: Sign In (Outline look with rich dark text) */
        .nav-btns .nav-btn:nth-child(1) {
            background: #46970b;
            border-color: #05912f;
            color: white;
            background: rgb(10, 128, 45);
        }

        /* 2nd Button: Sign Up (Active Pill Accent) */
        .nav-btns .nav-btn:nth-child(2) {
            background: #3f860c;
            color: #fff;
            border-color: #5a9e2a;
            box-shadow: 0 4px 12px rgba(90, 158, 42, 0.2);
        }

        .nav-btns .nav-btn:nth-child(2):hover {
            background: #1a202c;
            border-color: #1a202c;
            box-shadow: 0 6px 15px rgba(26, 32, 44, 0.25);
        }

        /* 3rd Button: Franchisee (Elegant Secondary Shade) */
        .nav-btns .nav-btn:nth-child(3) {
            background: #29860c;
            color: #fff;
            border-color: #3d7a70;
            box-shadow: 0 4px 12px rgba(61, 122, 112, 0.15);
        }

        .nav-btns .nav-btn:nth-child(3):hover {
            background: #25524b;
            border-color: #25524b;
            box-shadow: 0 6px 15px rgba(37, 82, 75, 0.3);
        }

        /* --- MOBILE RESPONSIVE --- */
        @media (max-width: 991.98px) {
            .nav-btns {
                flex-direction: column;
                /* Mobile dropdown menu me full responsive list view stack */
                width: 100%;
                max-width: 100%;
                gap: 10px !important;
            }

            .nav-btn {
                width: 100%;
                /* Mobile me responsive tap zones full block width ban jayenge */
                flex: none;
                padding: 12px 20px;
            }
        }

        .navbar-toggler {
            border: none;
            box-shadow: none !important;
            padding: 4px;
        }

        .navbar-toggler-icon {
            filter: brightness(0.2);
        }

        /* ====================================================
HERO SECTION
==================================================== */

        .hero {
            width: 100%;
            height: 100vh;
        }

        .carousel-item {
            height: 100vh;
            position: relative;
        }

        .carousel-item img {
            width: 100%;
            height: 100vh;
            object-fit: cover;
            animation: zoom 10s ease-out infinite;
        }

        @keyframes zoom {
            0% {
                transform: scale(1);
            }

            100% {
                transform: scale(1.10);
            }
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.233), rgba(0, 0, 0, 0.3));
        }

        .hero-contents {
            position: absolute;
            top: 60%;
            left: 10%;
            transform: translateY(-50%);
            z-index: 10;
            color: #fff;
            max-width: 700px;
            width: 100%;
            padding: 0 15px;
            box-sizing: border-box;
        }

        .hero-contents img {
            margin-top: 250px;
            margin-left: -130px;

            width: 100%;
            max-width: 400px;
            height: auto;
            display: block;
        }

        /* Tablet */
        @media (max-width: 992px) {

            .hero-contents {
                left: 6%;
                top: 75%;
            }

            .hero-contents img {
                max-width: 260px;
                margin-top: 180px;
                margin-left: -60px;
            }
        }

        /* Mobile */
        @media (max-width: 576px) {

            .hero-contents {
                position: absolute;
                left: 0;
                bottom: -180px;
                top: auto;
                transform: none;
                width: 100%;
                padding-left: 10px;
                z-index: 10;

            }

            .hero-contents img {
                width: 270px;
                max-width: 100%;
                height: auto;

                margin-top: 100% !important;
                margin-left: 0;

                object-fit: contain;
                display: block;
            }
        }

        .hero-content {
            position: absolute;
            top: 68%;
            right: 8%;
            transform: translateY(-50%);
            z-index: 10;
            color: #fff;
            max-width: 700px;
        }

        .hero-content h1 {
            font-size: 35px;
            line-height: 1.15;
            font-weight: 600;
            letter-spacing: -1px;
        }

        .hero-content h1 span {
            color: #a3e635;
            font-style: italic;
            font-weight: 400;
        }

        .hero-content p {
            margin-top: 24px;
            line-height: 1.8;
            font-size: 19px;
            color: #f3f4f6;
            font-weight: 300;
        }

        /* PROFESSIONAL BUTTON DESIGN */
        .main-btn {
            border: none;
            background: linear-gradient(135deg, #79c44d 0%, #5a9e2a 100%);
            color: #fff;
            text-decoration: none;
            padding: 14px 38px;
            border-radius: 50px;
            margin-top: 32px;
            font-weight: 600;
            font-size: 16px;
            letter-spacing: 0.5px;
            box-shadow: 0 6px 20px rgba(90, 158, 42, 0.3);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .main-btn:hover {
            background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
            transform: translateY(-3px);
            color: #fff;
        }

        /* ====================================================
WELCOME SECTION
==================================================== */

        .welcome-section {
            padding: 120px 0;
        }

        .welcome-images img {
            width: 100%;
            border-radius: 14px;
            transition: all 0.4s ease;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
        }

        .welcome-images img:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .welcome-content {
            padding-left: 40px;
        }

        .welcome-content small {
            background: #eef8e8;
            color: #5a9e2a;
            padding: 8px 18px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .welcome-content h2 {
            margin-top: 25px;
            font-size: 52px;
            font-weight: 800;
            line-height: 1.2;
            color: #1a202c;
        }

        .welcome-content h2 span {
            color: #5a9e2a;
            font-style: italic;
            font-weight: 500;
        }

        .welcome-content p {
            margin-top: 20px;
            line-height: 1.8;
            color: #4a5568;
            font-size: 16px;
        }

        .tick {
            color: #5a9e2a;
            margin-right: 12px;
            background: #eef8e8;
            padding: 6px;
            border-radius: 50%;
            font-size: 12px;
        }

        /* ====================================================
CEO SECTION
==================================================== */

        .ceo-section {
            background: linear-gradient(rgba(0, 0, 0, 0.158), rgba(235, 232, 232, 0.267)), url('img/3.webp') center/cover;
            padding: 170px 0;
            color: #fff;


        }

        .ceo-box {
            
            position: relative;
            z-index: 2;
           
        }

.ceo-img img {
  
    width: 199px;
    height: 290px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top; /* Face upar ki taraf rahega */
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(189, 189, 189, 0);
}
        .ceo-text {
           
            padding-left: 30px;
        }

        .ceo-text h4 {
            color: #04b813;
            margin-bottom: 20px;
            font-size: 26px;
            font-weight: 700;
        }

        .ceo-text p {
            line-height: 1.8;
            color: #e2e8f0;
            font-size: 16px;
        }

        /* ====================================================
PRODUCTS
==================================================== */

        .products {
            padding: 120px 0;
            background: #f8fafc;
        }

        .section-title {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-title small {
            background: #eef8e8;
            color: #5a9e2a;
            padding: 8px 18px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title h2 {
            margin-top: 20px;
            font-size: 52px;
            font-weight: 800;
            color: #1a202c;
        }

        .section-title h2 span {
            color: #5a9e2a;
            font-style: italic;
            font-weight: 500;
        }

        .section-title p {
            margin-top: 18px;
            color: #64748b;
            font-size: 16px;
        }




        /* ======================================================
   IMAGE WRAPPER
====================================================== */
        .img-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
        }

        /* Overlay */
        .img-wrapper::after {
            content: "";
            position: absolute;
            inset: 0;

            background: rgba(0, 0, 0, 0.28);

            opacity: 0;
            visibility: hidden;

            transition: all 0.4s ease;
            z-index: 1;
        }

        /* ======================================================
   PRODUCT IMAGE
====================================================== */
        .product-img {
            width: 100%;
            height: auto;
            display: block;

            transition: transform 0.5s ease;
        }

        /* ======================================================
   VIEW PRODUCT BUTTON
====================================================== */
        .view-product-btn {
            position: absolute;

            left: 50%;
            top: 60%;

            transform: translate(-50%, 40px);

            background: #04b813;
            color: #fff;

            text-decoration: none;

            padding: 12px 26px;

            border-radius: 50px;

            font-size: 15px;
            font-weight: 600;
            letter-spacing: 0.5px;

            white-space: nowrap;

            opacity: 0;
            visibility: hidden;

            z-index: 5;

            transition: all 0.45s ease;
        }

        /* ======================================================
   HOVER EFFECT
====================================================== */
        .img-wrapper:hover .view-product-btn {
            opacity: 1;
            visibility: visible;

            top: 50%;
            transform: translate(-50%, -50%);
        }

        .img-wrapper:hover::after {
            opacity: 1;
            visibility: visible;
        }

        .img-wrapper:hover .product-img {
            transform: scale(1.08);
        }

        /* ======================================================
   TABLET RESPONSIVE
====================================================== */
        @media (max-width: 992px) {

            .view-product-btn {

                padding: 10px 22px;

                font-size: 14px;
            }
        }

        /* ======================================================
   MOBILE RESPONSIVE
====================================================== */
        @media (max-width: 576px) {

            .img-wrapper {
                border-radius: 14px;
            }

            .view-product-btn {

                padding: 8px 18px;

                font-size: 13px;

                border-radius: 30px;
            }

            .img-wrapper:hover .product-img {
                transform: scale(1.04);
            }
        }




        .product-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            transition: all 0.4s ease;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.02);
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        }

        .product-img {
            position: relative;
            overflow: hidden;
            background: #f1f5f9;
        }

        .product-img img {
            width: 100%;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .product-card:hover .product-img img {
            transform: scale(1.08);
        }

        .product-overlay {
            position: absolute;
            inset: 0;
            background: rgba(26, 32, 44, 0.4);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            backdrop-filter: blur(4px);
            transition: 0.3s;
        }

        .product-card:hover .product-overlay {
            opacity: 1;
            visibility: visible;
        }

        .view-btn {
            background: #fff;
            color: #1a202c;
            text-decoration: none;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: 0.3s;
        }

        .view-btn:hover {
            background: #5a9e2a;
            color: #fff;
        }

        .product-content {
            padding: 24px;
            text-align: center;
        }

        .product-content h4 {
            font-size: 20px;
            font-weight: 700;
            color: #2d3748;
        }

        .price {
            color: #5a9e2a;
            font-size: 24px;
            font-weight: 800;
            margin-top: 10px;
        }

        /* ====================================================
COUNTER
==================================================== */

        .counter-section {
            background: linear-gradient(rgba(45, 55, 72, 0.034), rgba(45, 55, 72, 0)), url('img/3.webp') center/cover;
            padding: 60px 0;
            color: #fff;
        }

        .counter-box {
            text-align: center;
        }

        .counter-box h2 {
            font-size: 25px;
            font-weight: 700;
            color: #fdfdfd;
            margin-bottom: 5px;
        }

        .counter-box p {
            font-size: 15px;
            color: #e2e8f0;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* ====================================================
FAQ
==================================================== */
        /* --- FAQ SECTION WRAPPER --- */
        .by-faq-section {
            padding: 90px 0;
            background-color: #ffffff;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .by-faq-section .badge-faq {
            background: #e8f5e9;
            color: #2e7d32;
            padding: 6px 18px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 15px;
            letter-spacing: 0.5px;
        }

        .by-faq-section .section-title h2 {
            font-size: clamp(2.2rem, 4vw, 2.8rem);
            color: #1a1a1a;
            font-weight: 700;
            line-height: 1.2;
        }

        .by-faq-section .cursive-text {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-weight: 500;
            color: #66bb6a;
        }

        /* --- PREMIUM ACCORDION STYLING --- */
        .by-faq-section .custom-faq-accordion {
            max-width: 1150px;
            margin: 0 auto;
        }

        .by-faq-section .accordion-item {
            border-bottom: 1px solid rgba(0, 0, 0, 0.452) !important;
            border-radius: 14px !important;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
            transition: all 0.3s ease;
        }

        /* Hover state animation */
        .by-faq-section .accordion-item:hover {
            box-shadow: 0 8px 25px rgba(46, 125, 50, 0.06);
            border-color: rgba(46, 125, 50, 0.15) !important;
        }

        /* Accordion Header/Button base style */
        .by-faq-section .accordion-button {
            font-size: 1.05rem;
            font-weight: 600;
            color: #2c3e50;
            background-color: #ffffff;
            padding: 20px 25px;
            box-shadow: none !important;
            /* Removes default bootstrap blue glow */
            transition: all 0.3s ease;
        }

        /* When the item is closed (Collapsed) */
        .by-faq-section .accordion-button.collapsed {
            color: #2c3e50;
            background-color: #ffffff;
        }

        /* When the item is active/clicked (Open state) */
        .by-faq-section .accordion-button:not(.collapsed) {
            color: #2e7d32;
            background-color: #f1f8f3;
            /* Mild soft green background tint */
        }

        /* Customizing Bootstrap Accordion Arrow Icon */
        .by-faq-section .accordion-button::after {
            transition: transform 0.3s ease;
        }

        .by-faq-section .accordion-button:not(.collapsed)::after {
            filter: invert(41%) sepia(34%) saturate(986%) hue-rotate(85deg) brightness(93%) contrast(83%);
            /* Turns default arrow icon to matching green */
        }

        /* Body Content Area */
        .by-faq-section .accordion-body {
            font-size: 0.98rem;
            color: #555555;
            line-height: 1.7;
            padding: 25px;
            background-color: #f1f8f3;
            /* Merges container background with open tab */
            border-top: 1px solid rgba(46, 125, 50, 0.08);
        }

        /* --- RESPONSIVE FIXES --- */
        @media (max-width: 767.98px) {
            .by-faq-section {
                padding: 60px 0;
            }

            .by-faq-section .accordion-button {
                font-size: 0.95rem;
                padding: 16px 20px;
            }

            .by-faq-section .accordion-body {
                font-size: 0.9rem;
                padding: 20px;
            }
        }

        /* ====================================================
CONTACT STRIP
==================================================== */

        .contact-strip {
            background: linear-gradient(135deg, #5a9e7c 0%, #5a9e7c 100%);
            padding: 50px 0;
            color: #fff;
        }

        .contact-box {
            text-align: center;

        }

        .contact-box i {
            font-size: 28px;
            margin-bottom: 12px;
            color: #a3e635;
        }

        .contact-box h5 {
            font-size: 18px;
            font-weight: 600;

        }

        .contact-box p {
            color: #f1f5f9;
            font-size: 13px;
            margin-bottom: 0;

        }

        .contact-strip .main-btn {
            margin-top: 0;
            background: #83cc61;
            font-size: 11px !important;
            color: #ffffff;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .contact-strip .main-btn:hover {
            background: #1a202c;
            color: #fff;
        }

        /* ====================================================
FOOTER
==================================================== */

        .footer {
            background: #f3f3f3;
            color: #181818;
            padding: 100px 0 40px;
        }

        .footer-logo {
            width: 220px;
            margin-bottom: 25px;
        }

        .footer p {
            font-size: 13px;
            line-height: 1.7;
            color: #2c3e50;

        }

        .footer h4 {
            margin-bottom: 25px;
            font-weight: 500;
            font-size: 17px;
            color: #0f0f0f;
            position: relative;
            padding-bottom: 8px;
        }

        .footer h4::after {
            content: '';
            position: absolute;
            width: 30px;
            height: 2px;
            background: #387c07;
            bottom: 0;
            left: 0;
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer ul li {
            margin-bottom: 17px;
            color: #5e5e5e;
            font-size: 13px;
            transition: 0.2s;
            cursor: pointer;
        }

        .footer ul li:hover {
            color: #08b656;
            padding-left: 4px;
        }

        .footer-bottom {
            border-top: 1px solid #1351bb;
            margin-top: 50px;
            padding-top: 24px;
            text-align: left;
            color: #718096;
            font-size: 14px;
        }

        .footer-bottom span {

            margin-top: 50px;
            padding-top: 34px;
            margin-left: 185px;
            font-weight: 500;
            color: #585858;
            font-size: 15px;
        }

        /* ====================================================
RESPONSIVE
==================================================== */

        @media(max-width:991px) {

            .custom-navbar {
                background: #fff;
                padding: 12px 0;
            }

            .custom-navbar .navbar-collapse {
                background: #fff;
                margin-top: 12px;
                padding: 20px;
                border-radius: 12px;
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            }

            .custom-navbar .nav-link {
                margin: 8px 0;
            }

            .custom-navbar .nav-link::after {
                display: none;
            }

            .nav-btns {
                flex-direction: column;
                margin-top: 16px;
                width: 100%;
            }

            .nav-btn {
                width: 100%;
                text-align: center;
            }

            .hero-content h1 {
                font-size: 44px;
            }

            .welcome-content {
                padding-left: 0;
                margin-top: 40px;
            }

            .section-title h2,
            .welcome-content h2 {
                font-size: 38px;
            }

            .ceo-text {
                padding-left: 0;
                margin-top: 24px;
            }

            .contact-box {
                margin-bottom: 24px;
            }

        }

        @media(max-width:576px) {

            .hero,
            .carousel-item,
            .carousel-item img {
                height: 85vh;
            }

            .hero-content {
                left: 6%;
                right: 6%;
            }

            .hero-content h1 {
                font-size: 34px;
            }

            .hero-content p {
                font-size: 16px;
            }

            .section-title h2,
            .welcome-content h2 {
                font-size: 30px;
            }

            .custom-navbar .navbar-brand img {
                width: 160px;
            }


        }



        /* --- PRODUCTS SECTION WRAPPER --- */
        .by-products-section {
            padding: 80px 0;
            background-color: #ffffff57;
            font-family: 'Plus Jakarta Sans', sans-serif;
            position: relative;
        }

        /* Background aesthetic leaf vector graphic touch placeholder (Top-Left of Image) */
        .by-products-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 390px;
            height: 390px;
            background-image: url('img/flowers-crop-2.webp');
            background-size: contain;
            background-repeat: no-repeat;
            pointer-events: none;
        }

        /* Section Header Badges */
        .by-products-section .badge-products {
            background: #e8f5e9;
            color: #2e7d32;
            padding: 6px 18px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 15px;
            letter-spacing: 0.5px;
        }

        .by-products-section .section-title {
            font-size: clamp(2rem, 4vw, 2.8rem);
            color: #1a1a1a;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .by-products-section .cursive-text {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-weight: 500;
            color: #66bb6a;
            /* Aesthetic green shade */
        }

        .by-products-section .section-subtitle {
            color: #666666;
            font-size: 1rem;
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto;
        }

        /* --- PREMIUM PRODUCT CARD --- */
        .by-products-section .product-card {
            background: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.151);
            border: 1px solid rgba(0, 0, 0, 0.03);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .by-products-section .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(80, 82, 80, 0.342);
            border-color: rgba(46, 125, 50, 0.1);
        }

        /* Image Wrapper & Badges */
        .by-products-section .img-wrapper {
            position: relative;
            padding: 15px;
            background: #fdfdfd;
            overflow: hidden;
            aspect-ratio: 1.1 / 1;
            /* Clean landscape alignment similar to screenshot */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .by-products-section .product-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
            transition: transform 0.5s ease;
        }

        .by-products-section .product-card:hover .product-img {
            transform: scale(1.04);
        }

        .by-products-section .discount-badge {
            position: absolute;
            top: 25px;
            left: 25px;
            background: #e53935;
            /* Crisp red tag */
            color: #ffffff;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 4px;
            z-index: 2;
            box-shadow: 0 2px 8px rgba(229, 57, 53, 0.3);
        }

        /* Product Info Text Details */
        .by-products-section .product-info {
            padding: 20px;
            text-align: left;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .by-products-section .product-name {
            font-size: 1rem;
            font-weight: 700;
            color: #1a1a1a;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
            line-height: 1.4;
            transition: color 0.3s ease;
        }

        .by-products-section .product-card:hover .product-name {
            color: #2e7d32;
        }

        /* Prices */
        .by-products-section .price-box {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 8px;
        }

        .by-products-section .current-price {
            font-size: 1.15rem;
            font-weight: 700;
            color: #2e7d32;
            /* NandPravah active color */
        }

        .by-products-section .old-price {
            font-size: 0.9rem;
            color: #999999;
            text-decoration: line-through;
        }

        /* Business SP Points */
        .by-products-section .sp-points {
            font-size: 0.85rem;
            color: #777777;
            font-weight: 500;
        }

        /* --- VIEW ALL BUTTON --- */
        .by-products-section .btn-view-all {
            display: inline-block;
            padding: 12px 40px;
            background: linear-gradient(135deg, #519872, #3b7052);
            color: #ffffff !important;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            border-radius: 30px;
            box-shadow: 0 4px 15px rgba(59, 112, 82, 0.2);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .by-products-section .btn-view-all:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(59, 112, 82, 0.35);
            opacity: 0.95;
        }

        /* --- RESPONSIVE ADJUSTMENTS --- */
        @media (max-width: 767.98px) {
            .by-products-section {
                padding: 50px 0;
            }

            .by-products-section .product-info {
                padding: 15px;
            }

            .by-products-section .product-name {
                font-size: 0.95rem;
            }
        }



         /* --- ABOUT / WELCOME SECTION WRAPPER --- */
        .by-about-section {
            padding: 100px 0;
            background-color: #f9fbf9;
            /* Ultra-light fresh herbal background */
            font-family: 'Plus Jakarta Sans', sans-serif;
            position: relative;
            overflow: hidden;
        }

        /* --- LEFT SIDE: COLLAGE GALLERY --- */
        .by-about-section .about-gallery-wrapper {
            position: relative;
            z-index: 2;
        }

        /* Floating decorative leaf at top right of the section */
        .by-about-section .floating-bg-leaf {
            position: absolute;
            top: -40px;
            margin-left: 1010px;
            width: 120px;
            height: 120px;
            background-image: url('img/leaf.webp');
            background-size: contain;
            background-repeat: no-repeat;
            animation: gentleFloat 6s ease-in-out infinite;
        }

        .by-about-section .floating-bg-leafs {
            position: absolute;
            top: -40px;
            margin-left: 1010px;
            width: 120px;
            height: 120px;
            background-image: url('img/moringaleaf.png');
            background-size: contain;
            background-repeat: no-repeat;
            animation: gentleFloat 6s ease-in-out infinite;
        }

        @keyframes gentleFloat {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-10px) rotate(5deg);
            }
        }

        /* Aesthetic Image Cards Setup */
        .by-about-section .gallery-card {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
            border: 4px solid #ffffff;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .by-about-section .gallery-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Maintaining uneven grid alignment like screenshot */
        .by-about-section .small-card {
            height: 580px;
            width: 400px;
        }

        .by-about-section .large-card {
            height: 650px;
        }

        .by-about-section .ultra-large-card {
            height: 620px;
        }

        .by-about-section .gallery-card:hover {
            transform: scale(1.03) translateY(-5px);
            box-shadow: 0 20px 40px rgba(46, 125, 50, 0.12);
        }

        /* --- RIGHT SIDE: CONTENT BOX --- */
        .by-about-section .about-content-box {
            padding-left: 20px;
        }

        .by-about-section .badge-welcome {
            background: #e8f5e9;
            color: #2e7d32;
            padding: 6px 18px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }

        .by-about-section .about-title {
            font-size: clamp(2.2rem, 4.5vw, 3.2rem);
            color: #1a1a1a;
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 22px;
        }

        .by-about-section .cursive-text {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-weight: 500;
            color: #66bb6a;
        }

        .by-about-section .about-desc {
            color: #555555;
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 30px;
            font-weight: 400;
        }

        /* Trust Items & Ratings styling */
        .by-about-section .trust-item {
            font-size: 0.95rem;
            font-weight: 600;
            color: #2c3e50;
            display: flex;
            align-items: center;
        }

        .by-about-section .trust-item i {
            font-size: 1.15rem;
        }

        .by-about-section .rating-box-container {
            border-left: 2px solid #e0e0e0;
            padding-left: 25px;
        }

        .by-about-section .rating-headline {
            font-size: 1.1rem;
            font-weight: 700;
            color: #1a1a1a;
            display: block;
        }

        .by-about-section .stars-row i {
            font-size: 0.9rem;
            margin-right: 2px;
        }

        /* --- ACTION BUTTON --- */
        .by-about-section .btn-about-us {
            display: inline-block;
            padding: 12px 42px;
            background: linear-gradient(135deg, #519872, #3b7052);
            color: #ffffff !important;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            border-radius: 30px;
            box-shadow: 0 4px 15px rgba(59, 112, 82, 0.2);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            margin-top: 10px;
        }

        .by-about-section .btn-about-us:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(59, 112, 82, 0.35);
        }

        /* --- RESPONSIVE FIXES --- */
        @media (max-width: 991.98px) {
            .by-about-section {
                padding: 60px 0;
            }

            .by-about-section .about-content-box {
                padding-left: 0;
                text-align: center;
                margin-bottom: 20px;
            }

            .by-about-section .rating-box-container {
                border-left: none;
                border-top: 1px solid #e0e0e0;
                padding-left: 0;
                padding-top: 15px;
                margin-top: 15px;
            }

            .by-about-section .trust-item {
                justify-content: center;
            }

            .by-about-section .pt-4 {
                padding-top: 0 !important;
                /* Reset layout offset on small mobiles */
            }
        }




        /* --- ABOUT / WELCOME SECTION WRAPPER --- */
        .by-about-section {
            padding: 100px 0;
            background-color: #f9fbf9;
            /* Ultra-light fresh herbal background */
            font-family: 'Plus Jakarta Sans', sans-serif;
            position: relative;
            overflow: hidden;
        }

        /* --- LEFT SIDE: COLLAGE GALLERY --- */
        .by-about-section .about-gallery-wrapper {
            position: relative;
            z-index: 2;
        }

        /* Floating decorative leaf at top right of the section */
        .by-about-section .floating-bg-leaf {
            position: absolute;
            top: -40px;
            margin-left: 1010px;
            width: 120px;
            height: 120px;
            background-image: url('img/leaf.webp');
            background-size: contain;
            background-repeat: no-repeat;
            animation: gentleFloat 6s ease-in-out infinite;
        }

        .by-about-section .floating-bg-leafs {
            position: absolute;
            top: -40px;
            margin-left: 1010px;
            width: 120px;
            height: 120px;
            background-image: url('img/moringaleaf.png');
            background-size: contain;
            background-repeat: no-repeat;
            animation: gentleFloat 6s ease-in-out infinite;
        }

        @keyframes gentleFloat {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-10px) rotate(5deg);
            }
        }

        /* Aesthetic Image Cards Setup */
        .by-about-section .gallery-card {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
            border: 4px solid #ffffff;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .by-about-section .gallery-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Maintaining uneven grid alignment like screenshot */
        .by-about-section .small-card {
            height: 580px;
            width: 400px;
        }

        .by-about-section .large-card {
            height: 650px;
        }

        .by-about-section .ultra-large-card {
            height: 620px;
        }

        .by-about-section .gallery-card:hover {
            transform: scale(1.03) translateY(-5px);
            box-shadow: 0 20px 40px rgba(46, 125, 50, 0.12);
        }

        /* --- RIGHT SIDE: CONTENT BOX --- */
        .by-about-section .about-content-box {
            padding-left: 20px;
        }

        .by-about-section .badge-welcome {
            background: #e8f5e9;
            color: #2e7d32;
            padding: 6px 18px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }

        .by-about-section .about-title {
            font-size: clamp(2.2rem, 4.5vw, 3.2rem);
            color: #1a1a1a;
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 22px;
        }

        .by-about-section .cursive-text {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-weight: 500;
            color: #66bb6a;
        }

        .by-about-section .about-desc {
            color: #555555;
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 30px;
            font-weight: 400;
        }

        /* Trust Items & Ratings styling */
        .by-about-section .trust-item {
            font-size: 0.95rem;
            font-weight: 600;
            color: #2c3e50;
            display: flex;
            align-items: center;
        }

        .by-about-section .trust-item i {
            font-size: 1.15rem;
        }

        .by-about-section .rating-box-container {
            border-left: 2px solid #e0e0e0;
            padding-left: 25px;
        }

        .by-about-section .rating-headline {
            font-size: 1.1rem;
            font-weight: 700;
            color: #1a1a1a;
            display: block;
        }

        .by-about-section .stars-row i {
            font-size: 0.9rem;
            margin-right: 2px;
        }

        /* --- ACTION BUTTON --- */
        .by-about-section .btn-about-us {
            display: inline-block;
            padding: 12px 42px;
            background: linear-gradient(135deg, #519872, #3b7052);
            color: #ffffff !important;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            border-radius: 30px;
            box-shadow: 0 4px 15px rgba(59, 112, 82, 0.2);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            margin-top: 10px;
        }

        .by-about-section .btn-about-us:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(59, 112, 82, 0.35);
        }

        /* --- RESPONSIVE FIXES --- */
        @media (max-width: 991.98px) {
            .by-about-section {
                padding: 60px 0;
            }

            .by-about-section .about-content-box {
                padding-left: 0;
                text-align: center;
                margin-bottom: 20px;
            }

            .by-about-section .rating-box-container {
                border-left: none;
                border-top: 1px solid #e0e0e0;
                padding-left: 0;
                padding-top: 15px;
                margin-top: 15px;
            }

            .by-about-section .trust-item {
                justify-content: center;
            }

            .by-about-section .pt-4 {
                padding-top: 0 !important;
                /* Reset layout offset on small mobiles */
            }
        }




             /* ==========================================
IMAGE SHOWCASE SECTION
========================================== */

        .image-showcase-section {
            width: 100%;
            padding: 90px 20px 60px;
            background: #ffffff;
        }

        .image-showcase-wrapper {
            width: 100%;
            max-width: 1600px;
            margin: 0 auto;

            border: 2px solid #d9d9d9;
            border-radius: 20px;

            overflow: hidden;

            background: #fff;

            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.226);
        }

        .image-showcase-wrapper img {
            width: 100%;
            height: auto;

            display: block;

            object-fit: cover;
            object-position: center;
        }

        /* Tablet */
        @media (max-width:992px) {

            .image-showcase-section {
                padding: 100px 15px 50px;
            }

            .image-showcase-wrapper {
                border-width: 3px;
                border-radius: 16px;
            }
        }

        /* Mobile */
        @media (max-width:576px) {

            .image-showcase-section {
                padding: 7px 10px 40px;
            }

            .image-showcase-wrapper {
                border-width: 2px;
                border-radius: 12px;
            }
        }







          /* ==========================================
            SECTION
        ========================================== */

        .products-section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 42px;
            font-weight: 700;
            color: #222;
            margin-bottom: 15px;
        }

        .section-subtitle {
            color: #777;
            font-size: 16px;
            max-width: 700px;
            margin: auto;
            line-height: 1.8;
        }

        /* ==========================================
            PRODUCT CARD
        ========================================== */

        .product-card {
            background: #fff;
            border-radius: 22px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);

            transition: 0.4s ease;
            position: relative;

            height: 100%;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        /* ==========================================
            IMAGE WRAPPER
        ========================================== */

        .img-wrapper {
            position: relative;
            overflow: hidden;
            background: #f9f9f9;
        }

        .product-img {
            width: 100%;
            height: 320px;
            object-fit: cover;

            transition: 0.5s ease;
        }

        .product-card:hover .product-img {
            transform: scale(1.08);
        }

        /* ==========================================
            OVERLAY
        ========================================== */

        .img-wrapper::after {
            content: "";
            position: absolute;
            inset: 0;

            background: rgba(0, 0, 0, 0.28);

            opacity: 0;
            visibility: hidden;

            transition: 0.4s ease;
        }

        .product-card:hover .img-wrapper::after {
            opacity: 1;
            visibility: visible;
        }

        /* ==========================================
            DISCOUNT BADGE
        ========================================== */

        .discount-badge {
            position: absolute;
            top: 18px;
            right: 18px;

            background: #ff5c7a;
            color: #fff;

            padding: 8px 14px;

            border-radius: 40px;

            font-size: 13px;
            font-weight: 600;

            z-index: 5;
        }

        /* ==========================================
            VIEW BUTTON
        ========================================== */

        .view-btn {
            position: absolute;

            top: 60%;
            left: 50%;

            transform: translate(-50%, 40px);

            background: #04b813;
            color: #fff;

            text-decoration: none;

            padding: 12px 28px;

            border-radius: 50px;

            font-size: 14px;
            font-weight: 600;

            z-index: 10;

            opacity: 0;
            visibility: hidden;

            transition: 0.45s ease;

            white-space: nowrap;
        }

        .product-card:hover .view-btn {
            opacity: 1;
            visibility: visible;

            top: 50%;
            transform: translate(-50%, -50%);
        }

        /* ==========================================
            CONTENT
        ========================================== */

        .product-content {
            padding: 25px;
        }

        .health-badge {
            display: inline-block;

            background: #0ea34a;
            color: #fff;

            padding: 6px 14px;

            border-radius: 30px;

            font-size: 12px;
            font-weight: 600;

            margin-bottom: 16px;
        }

        .product-title {
            font-size: 28px;
            font-weight: 700;

            color: #222;

            margin-bottom: 16px;
        }

        /* ==========================================
            RATING
        ========================================== */

        .rating {
            margin-bottom: 16px;
        }

        .rating i {
            color: #ffb400;
            font-size: 14px;
        }

        .rating span {
            margin-left: 8px;
            color: #777;
            font-size: 14px;
        }

        /* ==========================================
            PRICE
        ========================================== */

        .price-box {
            display: flex;
            align-items: center;
            gap: 10px;

            margin-bottom: 18px;

            flex-wrap: wrap;
        }

        .current-price {
            color: #0ea34a;
            font-size: 22px;
            font-weight: 700;
        }

        .old-price {
            color: #999;
            text-decoration: line-through;
            font-size: 16px;
        }

        .divider {
            border-top: 1px solid #eee;
            margin: 20px 0;
        }

        /* ==========================================
            FOOTER
        ========================================== */

        .product-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;

            margin-bottom: 20px;

            color: #777;
            font-size: 14px;
        }

        .details-btn {
            width: 100%;

            background: #07680f;
            color: #fff;

            border: none;
            border-radius: 12px;

            padding: 14px;

            font-size: 15px;
            font-weight: 600;

            transition: 0.3s ease;
        }

        .details-btn:hover {
            background: #03990f;
        }

        /* ==========================================
            RESPONSIVE
        ========================================== */

        @media(max-width:992px) {

            .section-title {
                font-size: 34px;
            }

            .product-img {
                height: 280px;
            }

            .product-title {
                font-size: 24px;
            }
        }

        @media(max-width:768px) {

            .products-section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 28px;
            }

            .section-subtitle {
                font-size: 14px;
            }

            .product-img {
                height: 240px;
            }

            .product-content {
                padding: 20px;
            }

            .current-price {
                font-size: 20px;
            }
        }

        @media(max-width:576px) {

            .section-title {
                font-size: 24px;
            }

            .product-img {
                height: 220px;
            }

            .view-btn {
                padding: 10px 22px;
                font-size: 13px;
            }

            .product-title {
                font-size: 20px;
            }

            .details-btn {
                padding: 12px;
                font-size: 14px;
            }
        }







        /* ==========================================
PDF SHOWCASE SECTION
========================================== */

.pdf-showcase-section{
    width:100%;
    padding:120px 20px 60px;
    background:#ffffff;
}

.pdf-showcase-wrapper{
    width:100%;
    max-width:1600px;
    margin:0 auto;

    border:4px solid #d9d9d9;
    border-radius:20px;

    overflow:hidden;

    background:#fff;

    box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.pdf-showcase-viewer{
    width:100%;
    height:1000px;

    border:none;
    display:block;
}

/* Laptop */
@media (max-width:1200px){

    .pdf-showcase-viewer{
        height:850px;
    }
}

/* Tablet */
@media (max-width:992px){

    .pdf-showcase-section{
        padding:100px 15px 50px;
    }

    .pdf-showcase-wrapper{
        border-width:3px;
        border-radius:16px;
    }

    .pdf-showcase-viewer{
        height:700px;
    }
}

/* Mobile */
@media (max-width:576px){

    .pdf-showcase-section{
        padding:90px 10px 40px;
    }

    .pdf-showcase-wrapper{
        border-width:2px;
        border-radius:12px;
    }

    .pdf-showcase-viewer{
        height:500px;
    }
}