        html {
            /* scroll-behavior: smooth; */ /* Disabled for Lenis smooth scroll compatibility */
        }

        /* Lenis smooth scroll core styles */
        html.lenis, html.lenis body {
            height: auto;
        }

        .lenis.lenis-smooth {
            scroll-behavior: auto !important;
        }

        .lenis.lenis-smooth [data-lenis-prevent] {
            overflow: clip;
        }

        .lenis.lenis-prevent {
            overflow: hidden;
        }

        .lenis.lenis-smooth iframe {
            pointer-events: none;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            color-scheme: only light !important;
            --primary-blue: #2D4BC8;
            --text-dark: #222327;
            --text-light: #FCFCFC;
            --bg-light: #FAFAFA;
            --footer-bg: #DAE1F6;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
            background-color: var(--bg-light);
        }

        /* Header Styles */
        .navbar {
            z-index: 1060;
            background-color: rgba(255, 255, 255, 0.5);
            border: 1px solid rgba(246, 246, 246, 0.48);
            border-radius: 12px;
            backdrop-filter: blur(10px);
            box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.04);
            padding: 12px 16px;
            width: calc(100% - 32px);
            max-width: 1320px;
            margin: 0 auto;
            left: 0;
            right: 0;
            transform: none;
        }

        @media (min-width: 1200px) and (max-width: 1399px) {
            .navbar {
                max-width: 1140px;
            }
        }

        @media (min-width: 992px) and (max-width: 1199px) {
            .navbar {
                max-width: 960px;
            }
        }

        @media (min-width: 768px) and (max-width: 991px) {
            .navbar {
                max-width: 720px;
            }
        }

        @media (min-width: 576px) and (max-width: 767px) {
            .navbar {
                max-width: 540px;
            }
        }

        @media (max-width: 575px) {
            .navbar {
                width: calc(100% - 16px);
                max-width: none;
                left: 8px;
                right: 8px;
            }
        }

        .navbar-brand {
            display: flex;
            align-items: center;
        }

        .navbar-brand img {
            height: 23px;
        }

        .navbar .container-fluid {
            padding-left: 0;
            padding-right: 0;
        }

        .navbar-nav {
            padding-left: 16px;
            padding-right: 16px;
            gap: 16px;
            /* add space between tabs */
        }

        .navbar-nav .nav-link {
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            font-weight: 500;
            color: var(--text-dark);
            padding: 10px 16px;
            border-radius: 12px;
            transition: background-color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            background-color: #f4f4f4;
        }

        .contact-btn-nav {
            background-color: var(--primary-blue);
            color: #FFFFFF;
            font-size: 13px;
            font-weight: 500;
            padding: 11px 20px;
            border-radius: 12px;
            border: none;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }

        .contact-btn-nav:hover {
            background-color: #1e3ba8;
            color: #FFFFFF;
        }

        /* Mobile Menu Styles */
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
            color: var(--text-dark);
        }

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

        .navbar-toggler i {
            font-size: 24px;
        }


        .offcanvas {
            background-color: rgba(255, 255, 255, 0.5) !important;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(246, 246, 246, 0.48);
        }

        .offcanvas.offcanvas-bottom {
            /* Height: 100vh - (Header Top 16px + Header Height 56px + Header Vertical Padding 24px + Gap 24px) = 120px approx */
            /* Header visual bottom is roughly 80-90px. Let's aim for 110px from top */
            height: calc(100vh - 110px) !important;
            bottom: 0 !important;
            top: auto !important;
            border-top-left-radius: 12px;
            border-top-right-radius: 12px;
            /* Match Navbar Width & Positioning Logic */
            width: calc(100% - 32px);
            max-width: 1320px;
            margin: 0 auto;
            left: 0;
            right: 0;
        }

        /* Responsive Widths for Offcanvas (Matching Navbar) */
        @media (min-width: 1200px) and (max-width: 1399px) {
            .offcanvas.offcanvas-bottom {
                max-width: 1140px;
            }
        }

        @media (min-width: 992px) and (max-width: 1199px) {
            .offcanvas.offcanvas-bottom {
                max-width: 960px;
            }
        }

        @media (min-width: 768px) and (max-width: 991px) {
            .offcanvas.offcanvas-bottom {
                max-width: 720px;
            }
        }

        @media (min-width: 576px) and (max-width: 767px) {
            .offcanvas.offcanvas-bottom {
                max-width: 540px;
            }
        }

        @media (max-width: 575px) {
            .offcanvas.offcanvas-bottom {
                width: calc(100% - 16px);
                max-width: none;
                left: 8px;
                right: 8px;
            }
        }

        .offcanvas-header {
            border-bottom: 2px solid rgba(246, 246, 246, 0.48);
            padding: 24px 20px;
        }

        .offcanvas-title-menu {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            font-size: 14px;
            color: #191a1c;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }



        .offcanvas-body .nav-link {
            padding: 16px 0;
            font-size: 18px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .offcanvas-body .nav-link:hover {
            background-color: transparent;
        }

        /* Hero Section */
        .hero {
            min-height: calc(100vh - 24px);
            margin: 8px 16px 16px 16px;
            border-radius: 12px;
            background-color: #C1C8E6;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: 80% 15%;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 120px 0;
            color: #122148;
            max-width: 480px;
            width: 100%;
        }

        .hero-tag {
            display: inline-block;
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            font-weight: 600;
            line-height: 16px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 6px 12px;
            border-radius: 8px;
            background-color: rgba(153, 164, 183, 0.35);
            color: #122148;
            margin-bottom: 16px;
            margin-top: 0;
        }

        .hero-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            font-size: 72px;
            line-height: 80px;
            letter-spacing: -0.02em;
            color: #122148;
            margin-top: 0;
            margin-bottom: 24px;
        }

        .hero-text {
            font-size: clamp(14px, 1.5vw, 16px);
            line-height: 24px;
            color: #122148;
            margin-bottom: 40px;
            max-width: 615px;
        }

        .btn-primary-custom {
            display: inline-flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
            padding-left: 24px;
            padding-right: 8px;
            background-color: #2e43d0;
            border-radius: 16px;
            color: white;
            font-weight: 500;
            font-size: 15px;
            line-height: 20px;
            text-decoration: none;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: background-color 0.3s ease;
        }

        .btn-primary-custom:hover {
            background-color: #1e3ba8;
            color: white;
        }

        .arrow-container {
            position: relative;
            width: 44px;
            height: 48px;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 12px;
            flex-shrink: 0;
        }

        .arrow-icon {
            position: absolute;
            font-size: 24px;
            color: black;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .arrow-1 {
            transform: translateX(0);
            opacity: 1;
        }

        .arrow-2 {
            transform: translateX(-30px);
            /* Start from left */
            opacity: 0;
        }

        .btn-primary-custom:hover .arrow-1 {
            transform: translateX(30px);
            /* Move to right */
            opacity: 0;
        }

        .btn-primary-custom:hover .arrow-2 {
            transform: translateX(0);
            opacity: 1;
        }

        /* About Section */
        .about-section {
            padding: 80px 0;
        }

        .section-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            font-size: clamp(32px, 4vw, 48px);
            line-height: 1.2;
            color: #242D49;
            margin-bottom: 16px;
        }

        .section-text {
            font-size: clamp(14px, 1.5vw, 16px);
            line-height: 24px;
            color: rgba(34, 35, 39, 0.88);
            max-width: 600px;
            margin: 0 auto 64px;
        }

        .product-card {
            margin-bottom: 32px;
        }

        .product-image {
            width: 100%;
            height: 480px;
            border-radius: 12px;
            object-fit: cover;
            margin-bottom: 24px;
        }

        .product-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 600;
            font-size: 16px;
            line-height: 21px;
            color: #22262E;
            margin-bottom: 8px;
        }

        .product-subtitle {
            font-size: 14px;
            line-height: 17px;
            color: #777E90;
        }

        .view-more-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            font-weight: 700;
            font-size: 14px;
            line-height: 17px;
            color: #22262E;
            border: 2px solid #E5E8EB;
            border-radius: 12px;
            padding: 10px 16px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .view-more-btn:hover {
            background-color: #f8f9fa;
            color: #22262E;
        }

        /* Export Solutions Section */
        .export-solutions {
            padding: 80px 0;
        }

        .export-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            font-size: clamp(32px, 4vw, 48px);
            line-height: 1.2;
            color: #242D49;
            margin-bottom: 32px;
        }

        .export-text {
            font-size: clamp(14px, 1.5vw, 16px);
            line-height: 24px;
            color: rgba(34, 35, 39, 0.88);
            margin-bottom: 40px;
        }

        .export-image {
            width: 100%;
            height: auto;
            border-radius: 12px;
            object-fit: cover;
        }

        /* Why Choose Section */
        .why-choose {
            padding: 80px 0;
        }

        .feature-card {
            background-color: #F2F4F9;
            border-radius: 12px;
            padding: 24px;
            height: 100%;
        }

        .feature-icon-container {
            background-color: #FFFFFF;
            width: 64px;
            height: 64px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 32px;
        }

        .feature-icon {
            width: 24px;
            height: 24px;
        }

        .feature-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            font-size: clamp(20px, 2.5vw, 24px);
            line-height: 1.3;
            color: #242D49;
            margin-bottom: 8px;
        }

        .feature-text {
            font-size: clamp(14px, 1.5vw, 16px);
            font-weight: 500;
            line-height: 25px;
            color: #5D6985;
        }

        /* Product Collection */
        .product-collection {
            padding: 80px 0;
        }

        .collection-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            font-size: clamp(32px, 4vw, 48px);
            line-height: 1.2;
            color: #242D49;
        }

        .collection-text {
            font-size: clamp(16px, 2vw, 20px);
            font-weight: 500;
            line-height: 32px;
            color: #5D6985;
        }

        .collection-grid-wrapper {
            overflow: hidden;
            padding-bottom: 20px;
        }

        .collection-grid {
            display: flex;
            gap: 24px;
            min-width: fit-content;
        }

        .collection-card {
            flex: 0 0 auto;
            width: calc((100% - 72px) / 3.5);
            max-width: 443px;
            min-width: 280px;
            height: 533px;
            border-radius: 12px;
            overflow: hidden;
            border: 4px solid #FFFFFF;
            box-shadow: 0px 16px 32px rgba(36, 46, 73, 0.05);
        }

        @media (min-width: 1200px) {
            .collection-card {
                width: calc((1224px - 72px) / 3.5);
            }
        }

        @media (max-width: 991.98px) {
            .collection-grid {
                gap: 16px;
            }
            .collection-card {
                width: calc((100% - 32px) / 2.5);
                height: 420px;
            }
        }

        @media (max-width: 767.98px) {
            .collection-card {
                width: calc((100% - 16px) / 1.5);
                height: 340px;
            }
        }

        .collection-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }

        .collection-controls {
            display: flex;
            justify-content: flex-end;
            gap: 8px;
            margin-top: 20px;
        }

        .collection-btn {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            background-color: transparent;
            border: 1px solid #B6C3CD;
            transition: all 0.3s ease;
        }

        .collection-btn.next {
            border-color: #4A5E6D;
        }

        .collection-btn:hover:not(:disabled) {
            background-color: #f8f9fa;
        }

        .collection-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            pointer-events: none;
        }

        .collection-btn i {
            font-size: 20px;
            color: #222327;
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            position: relative;
            /* Overflow hidden removed to allow image to extend if needed, 
               but usually 'contain' fits it. If it's being cropped by the container's 
               bounding box, we might need to increase padding or remove overflow. 
               Lets try visible overflow first or ensure height is sufficient.
            */
            overflow: visible;
        }

        @media (min-width: 992px) {
            .cta-section {
                padding: 120px 0 80px;
                margin-top: 60px;
            }
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-bold {
            font-weight: 600;
            font-size: clamp(36px, 5vw, 56px);
            line-height: 1.2;
            color: var(--primary-blue);
        }

        .cta-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 400;
            font-size: clamp(36px, 5vw, 56px);
            line-height: 1.2;
            color: #242D49;
        }

        .cta-text {
            font-size: clamp(16px, 2vw, 18px);
            line-height: 24px;
            color: #737784;
            margin-bottom: 32px;
            padding-top: 16px;
            max-width: 556px;
        }

        .cta-btn {
            background-color: var(--primary-blue);
            color: #FFFFFF;
            font-size: 15px;
            font-weight: 500;
            padding: 22px 24px;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: background-color 0.3s ease;
        }

        .cta-btn:hover {
            background-color: #1e3ba8;
            color: #FFFFFF;
        }

        .cta-image {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 650px;
            /* Increased width significantly */
            max-width: 50vw;
            /* Responsive constraint */
            height: auto;
            object-fit: contain;
            z-index: 2;
            display: none;
        }

        .cta-imageCircle {
            position: absolute;
            right: -100px;
            bottom: -100px;
            width: 500px;
            height: 500px;
            object-fit: contain;
            z-index: 1;
            display: none;
        }

        .cta-imageLine {
            position: absolute;
            width: 100%;
            height: auto;
            left: 0;
            bottom: -20px;
            /* Adjusted to sit at bottom */
            object-fit: cover;
            z-index: 1;
            display: none;
        }

        @media (min-width: 992px) {

            .cta-image,
            .cta-imageCircle,
            .cta-imageLine {
                display: block;
            }
        }

        /* Footer */
        .footer {
            background-color: var(--footer-bg);
            padding: 80px 0 60px;
            border-radius: 12px;
            margin: 24px;
            margin-top: 80px;
        }

        .footer-logo {
            display: flex;
            justify-content: center;
            margin-bottom: 24px;
        }

        .footer-logo img {
            height: 49px;
            width: auto;
        }

        .footer-text {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 500;
            font-size: clamp(16px, 2vw, 20px);
            line-height: 32px;
            color: #1B326D;
            text-align: center;
            max-width: 686px;
            margin: 0 auto;
            padding-top: 16px;
        }

        .footer-download {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 64px;
            margin-bottom: 64px;
        }

        .download-brochure-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            font-size: clamp(18px, 2.5vw, 24px);
            line-height: 31px;
            color: #1B326D;
            text-decoration: none;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .download-brochure-btn img {
            width: 24px;
            height: 24px;
            object-fit: contain;
            display: block;
        }

        .download-brochure-btn:hover {
            color: #1B326D;
            transform: translateY(-2px);
            opacity: 0.85;
        }

        .footer-nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 32px;
            margin-bottom: 40px;
            padding-top: 0;
            padding-bottom: 32px;
        }

        .footer-link {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            font-size: clamp(18px, 2.5vw, 24px);
            line-height: 31px;
            color: rgba(27, 50, 109, 0.8);
            text-decoration: none;
            position: relative;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: #1B326D;
        }

        .footer-link.active {
            color: #1B326D;
        }

        .footer-link.active::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 8px;
            height: 8px;
            background-color: #1B326D;
            border-radius: 2px;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-bottom: 64px;
        }

        .social-link {
            transition: transform 0.3s ease;
        }

        .social-link:hover {
            transform: translateY(-5px);
        }

        .footer-bottom {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 24px;
        }

        .copyright {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 600;
            font-size: 14px;
            line-height: 18px;
            color: #1B326D;
        }

        .divider {
            width: 6px;
            height: 6px;
            background-color: #818BA0;
            border-radius: 50%;
        }

        .footer-policy {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 600;
            font-size: 14px;
            line-height: 18px;
            color: #1B326D;
            text-decoration: none;
        }

        .footer-policy:hover {
            color: #1B326D;
            text-decoration: underline;
        }

        /* Responsive Adjustments */
        @media (max-width: 991.98px) {
            .hero {
                min-height: calc(80vh - 24px);
            }

            .hero-content {
                padding: 100px 0 60px;
            }

            .hero-title {
                font-size: 48px;
                line-height: 56px;
            }

            .about-section,
            .export-solutions,
            .why-choose,
            .product-collection {
                padding: 60px 0;
            }

            .product-image {
                height: 400px;
            }

            .collection-card {
                width: 350px;
                height: 420px;
            }

            .footer {
                margin: 12px;
                padding: 60px 0 40px;
            }
        }

        @media (max-width: 767.98px) {
            .navbar {
                max-width: calc(100% - 16px);
                left: 8px;
                right: 8px;
                transform: none;
            }

            .offcanvas.offcanvas-bottom {
                top: 103px !important;
                height: calc(100vh - 103px) !important;
            }

            .offcanvas-body {
                display: flex;
                flex-direction: column;
                padding-bottom: 24px !important;
            }

            .mobile-menu-footer {
                margin-top: 24px;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                width: 100%;
            }

            .btn-menu-custom {
                width: fit-content !important;
                display: inline-flex !important;
                margin-bottom: 0;
            }

            .hero {
                height: 804px;
                min-height: auto;
                align-items: flex-start;
                align-content: flex-start;
                margin: 0;
                border-radius: 0;
            }

            .hero-bg {
                object-position: center bottom;
            }

            .hero-content {
                padding: 144px 0 40px;
                align-content: flex-start;
            }

            .hero-tag {
                font-size: 11px;
                font-weight: 600;
                line-height: 14px;
                letter-spacing: 0.08em;
                margin-bottom: 8px;
            }

            .hero-title {
                font-size: 36px;
                font-weight: 800;
                line-height: 44px;
                letter-spacing: -0.02em;
                margin-bottom: 16px;
            }

            .hero-text {
                margin-bottom: 24px;
            }

            .product-image {
                height: 300px;
            }

            .collection-card {
                width: 280px;
                height: 340px;
            }

            .footer-download {
                margin-top: 40px;
                margin-bottom: 40px;
            }

            .footer-nav {
                flex-direction: column;
                gap: 16px;
                align-items: center;
                /* Center tabs in mobile view */
                margin-bottom: 0px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 16px;
            }

            .social-links {
                margin-bottom: 40px;
            }

            /* Mobile Button Resize */
            .btn-primary-custom {
                height: 48px;
                padding-left: 16px;
                padding-right: 6px;
                font-size: 13px;
                border-radius: 12px;
            }

            .arrow-container {
                width: 36px;
                height: 36px;
                border-radius: 8px;
                margin-left: 8px;
            }

            .arrow-svg {
                width: 16px;
                height: 16px;
            }

            .footer-link.active::after {
                display: none;
            }

            /* ── Section spacing: 80px total gap between sections ──
               Each section gets 40px top + 40px bottom = 80px combined gap */
            .about-section,
            .export-solutions,
            .why-choose,
            .product-collection,
            .cta-section,
            .story-section,
            .standards-section,
            .form-section,
            .map-section,
            .product-hero-section,
            .products-details-section,
            .hero-section {
                padding-top: 40px !important;
                padding-bottom: 40px !important;
            }

            .product-hero-section {
                padding-top: 96px !important;
            }

            /* Footer top gap (margin-top) stays consistent */
            .footer {
                margin: 8px;
                margin-top: 40px;
                padding: 48px 0 32px;
            }

            /* ── Section title → body gap: 24px on mobile ──
               Applies to all section-level headings across every page */

            /* Home page */
            .section-title,
            .export-title {
                margin-bottom: 24px !important;
            }

            .collection-title {
                margin-bottom: 0px !important;
            }

            /* section-text sits between title and cards; reduce its bottom push too */
            .section-text {
                margin-bottom: 24px !important;
            }

            /* Export / Why Choose intro text */
            .export-text {
                margin-bottom: 24px !important;
            }

            /* CTA section */
            .cta-text {
                margin-bottom: 24px !important;
                padding-top: 12px !important;
            }

            /* About Us page */
            .story-title {
                margin-bottom: 24px !important;
            }
            .story-intro {
                margin-bottom: 24px !important;
            }
            .story-banner-container {
                margin-bottom: 24px !important;
            }

            /* Standards / Privacy section */
            .standards-heading {
                margin-top: 24px !important;
                margin-bottom: 12px !important;
            }

            /* Product / About hero sections */
            .product-hero-title {
                margin-bottom: 8px !important;
            }
            .product-hero-description {
                margin-bottom: 24px !important;
            }

            /* Contact page — hero title and description */
            .hero-section .hero-title {
                margin-bottom: 24px !important;
            }
            .hero-description {
                margin-bottom: 24px !important;
            }

            /* Contact form title */
            .form-title {
                margin-bottom: 24px !important;
            }

            /* Map / global reach section */
            .map-title {
                margin-bottom: 24px !important;
            }
            .map-description {
                margin-bottom: 24px !important;
            }

            /* ── Title → Card gap: 40px ──
               Bootstrap mb-5 (48px) is used on title wrappers before card grids.
               Override to exactly 40px for the Why Choose, About, and Collection sections */
            .why-choose .mb-5,
            .about-section .mb-5,
            .product-collection .mb-5 {
                margin-bottom: 16px !important;
            }

            /* ── Why Choose cards: 8px gap between cards on mobile ── */
            .why-choose .row.g-4 {
                --bs-gutter-x: 8px;
                --bs-gutter-y: 8px;
            }

            /* Our Products Section title & gap overrides */
            .products-details-section .section-title {
                font-size: 32px !important;
                margin-bottom: 40px !important;
            }
        }

        /* ============================
           Contact Us Page Styles
           ============================ */

        .hero-section {
            display: flex;
            padding: 80px 142px;
            position: relative;
        }

        .hero-section .hero-content {
            max-width: 527px;
            height: 650px;
            align-content: center;
        }

        /* Note: .hero-title conflict with Home resolved by cascade or specific usage */
        .hero-section .hero-title {
            font-size: 72px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            line-height: 80px;
            color: #242d49;
            margin-bottom: 30px;
        }

        .hero-description {
            font-size: 20px;
            font-weight: 500;
            line-height: 30px;
            color: #5d6985;
            margin-bottom: 40px;
        }

        .contact-info {
            display: flex;
            width: 100%;
            gap: 60px;
            margin-bottom: 40px;
        }

        .info-item {
            display: flex;
            flex-direction: column;
        }

        .info-icon {
            margin-bottom: 24px;
        }

        .info-title {
            font-size: 18px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            color: #242d49;
            margin-bottom: 8px;
        }

        .info-text {
            font-size: 18px;
            font-weight: 500;
            line-height: 30px;
            color: #5d6985;
        }

        .hero-image {
            position: absolute;
            right: 0;
            top: 176px;
        }

        /* Form Section */
        .form-section {
            padding: 60px 0;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .form-title {
            font-size: 60px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            line-height: 76px;
            color: #242d49;
            margin-bottom: 50px;
            text-align: center;
        }

        .contact-form {
            width: 100%;
            max-width: 1000px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            padding: 0 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full-width {
            grid-column: span 2;
        }

        .form-label {
            font-size: 14px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            margin-bottom: 8px;
            color: #242d49;
        }

        .form-input {
            width: 100%;
            background-color: #f2f4f9;
            border: 1px solid transparent;
            border-radius: 12px;
            height: 56px;
            padding: 16px 16px 16px 48px;
            font-size: 16px;
            font-weight: 600;
            color: #242d49;
            transition: border-color 0.3s ease;
            position: relative;
        }

        .form-input:focus {
            border-color: #0f66fe;
            outline: none;
        }

        .form-input::placeholder {
            color: #242d49;
        }

        .form-textarea {
            width: 100%;
            background-color: #f2f4f9;
            border: 1px solid transparent;
            border-radius: 12px;
            height: 137px;
            padding: 16px 16px 16px 48px;
            font-size: 16px;
            font-weight: 600;
            color: #242d49;
            resize: none;
            transition: border-color 0.3s ease;
        }

        .form-textarea:focus {
            border-color: #0f66fe;
            outline: none;
        }

        .input-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
            z-index: 10;
        }

        .textarea-icon {
            position: absolute;
            left: 16px;
            top: 16px;
            pointer-events: none;
            z-index: 10;
        }

        .input-wrapper {
            position: relative;
        }

        .submit-btn {
            margin-top: 0;
            width: fit-content;
        }

        /* Map Section */
        .map-section {
            background-color: #f2f4f9;
            padding: 96px 0;
            border-radius: 12px;
            margin: 24px;
        }

        @media (min-width: 992px) {
            .map-section {
                margin: 24px 108px;
            }
        }

        .map-title {
            font-size: 48px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            line-height: 61px;
            color: #242d49;
            text-align: center;
            margin-bottom: 8px;
        }

        .map-description {
            font-size: 20px;
            font-weight: 500;
            line-height: 32px;
            color: #5d6985;
            text-align: center;
            max-width: 888px;
            margin: 0 auto 64px;
        }

        .world-map {
            display: flex;
            justify-content: center;
            position: relative;
        }

        .map-stats-container {
            display: flex;
            justify-content: space-around;
            align-items: center;
            margin-top: 64px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
            gap: 32px;
            padding: 0 24px;
        }

        .map-stat-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            flex: 1;
        }

        .map-stat-icon-wrapper {
            width: 48px;
            height: 48px;
            background-color: #FFFFFF;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0px 4px 12px rgba(45, 75, 200, 0.05);
            margin-bottom: 24px;
        }

        .map-stat-icon-wrapper i {
            font-size: 20px;
            color: #2D4BC8;
        }

        .map-stat-value {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            font-size: 40px;
            line-height: 48px;
            color: #242D49;
            margin-bottom: 8px;
        }

        .map-stat-label {
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            font-size: 16px;
            line-height: 24px;
            color: #5D6985;
        }

        .map-marker {
            position: absolute;
            width: 12px;
            height: 12px;
            background-color: #2d4bc8;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(0.8);
                box-shadow: 0 0 0 0 rgba(45, 75, 200, 0.7);
            }

            70% {
                transform: scale(1);
                box-shadow: 0 0 0 10px rgba(45, 75, 200, 0);
            }

            100% {
                transform: scale(0.8);
                box-shadow: 0 0 0 0 rgba(45, 75, 200, 0);
            }
        }

        @media (max-width: 1200px) {
            .hero-section {
                padding: 60px 80px;
            }

            .hero-image {
                width: 450px;
            }
        }

        @media (max-width: 992px) {
            .hero-section {
                flex-direction: column;
                padding: 60px 40px;
            }

            .hero-section .hero-content {
                max-width: 100%;
                height: auto;
                margin-bottom: 40px;
            }

            .hero-image {
                position: static;
                width: 100%;
                max-width: 500px;
                margin: 0 auto;
            }

            .contact-form {
                grid-template-columns: 1fr;
            }

            .form-group.full-width {
                grid-column: span 1;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                padding-top: 0px !important;
            }

            .hero-section .hero-content {
                margin-bottom: 24px;
            }

            .hero-section .hero-title {
                font-size: 48px;
                line-height: 60px;
            }

            .form-title {
                font-size: 40px;
                line-height: 50px;
            }

            .map-title {
                font-size: 36px;
                line-height: 46px;
            }

            .contact-info {
                flex-direction: column;
                gap: 12px;
            }

            .world-map img {
                width: 100%;
            }

            .map-stats-container {
                flex-direction: column;
                gap: 40px;
                margin-top: 48px;
            }
        }

        @media (max-width: 576px) {
            .hero-section {
                padding: 128px 20px 40px 20px;
            }

            .hero-section .hero-title {
                font-size: 36px;
                line-height: 46px;
            }

            .hero-description {
                font-size: 16px;
                line-height: 24px;
            }

            .form-title {
                font-size: 32px;
                line-height: 40px;
            }

            .map-section {
                padding: 40px 24px;
                margin: 24px 16px;
                border-radius: 20px;
                background-color: #F2F4F9;
                /* Ensure background color matches design */
            }

            .map-title {
                font-size: 28px;
                line-height: 36px;
                margin-bottom: 16px;
                padding: 0 10px;
            }

            .map-description {
                font-size: 15px;
                line-height: 24px;
                margin-bottom: 40px;
                padding: 0 10px;
                color: #5D6985;
            }

            .world-map {
                width: 100%;
                overflow: hidden;
            }

            .world-map img {
                width: 100%;
                height: auto;
                object-fit: contain;
                filter: brightness(0.6) contrast(1.2);
                /* Darken the map image/dots */
            }

            /* Adjust markers for mobile if necessary, or hide them if they clutter the small view. 
               The user image shows blue dots which might be part of the image or markers. 
               Let's keep them but ensure they don't break layout. 
               Since absolute positioning is percentage based, they should scale. */
            .map-marker {
                width: 8px;
                height: 8px;
                background-color: #1e3ba8;
                /* Darker blue for better visibility */
            }
        }


        /* ============================
           Product Page Styles
           ============================ */

        .product-hero-section {
            padding: 172px 0 80px;
            text-align: center;
        }

        .product-hero-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            font-size: 64px;
            line-height: 1.2;
            color: #242D49;
            margin-bottom: 24px;
        }

        .product-hero-description {
            font-family: 'Inter', sans-serif;
            font-size: 18px;
            line-height: 28px;
            color: #5D6985;
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .product-hero-image-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            border-radius: 24px;
            overflow: hidden;
        }

        .product-hero-image {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 24px;
        }

        @media (max-width: 992px) {
            .product-hero-title {
                font-size: 48px;
            }

            .product-hero-section {
                padding: 100px 20px 60px;
            }

            .product-hero-image {
                height: 260px;
                object-fit: cover;
            }
        }

        @media (max-width: 768px) {
            .product-hero-title {
                font-size: 40px;
            }

            .product-hero-description {
                font-size: 16px;
                line-height: 24px;
            }
        }

        @media (max-width: 576px) {
            .product-hero-title {
                font-size: 32px;
            }
        }

        /* Product Details Section Styles */
        .products-details-section {
            padding-bottom: 80px;
        }

        .products-details-section .section-title {
            font-size: 48px;
        }

        .product-tabs {
            border-bottom: none;
            gap: 32px;
            padding-left: 0;
            margin-bottom: 0 !important;
        }

        .product-tabs .nav-link {
            background: none;
            border: none;
            color: #9C9C9C;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 600;
            font-size: 16px;
            padding: 16px 60px;
            border-radius: 12px 12px 0 0;
            transition: all 0.3s ease;
        }

        .product-tabs .nav-link:hover {
            color: #242D49;
        }

        .product-tabs .nav-link.active {
            color: #242D49;
            background-color: #F2F4F9;
            font-weight: 700;
        }

        .tab-content-wrapper {
            background-color: #F2F4F9;
            border-radius: 24px;
            padding: 24px 88px;
            margin-top: -1px;
            /* Ensure visual overlap to close any sub-pixel gaps */
        }

        .product-detail-card {
            background-color: #FFFFFF;
            border-radius: 24px;
            overflow: hidden;
            margin-bottom: 16px;
            padding: 24px;
            height: 580px;
            display: flex;
            flex-direction: column;
        }

        .product-detail-card .row {
            height: 100%;
            flex-grow: 1;
        }

        .product-detail-card .col-lg-6 {
            height: 100%;
        }

        .card-content-p {
            padding: 0 24px 0 0;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .card-title-p {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            font-size: 32px;
            color: #242D49;
            margin-bottom: 16px;
        }

        .card-desc-p {
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            line-height: 26px;
            color: #5D6985;
            margin-bottom: 24px;
        }

        .card-controls-p {
            display: flex;
            align-items: center;
            margin-top: auto;
            width: 100%;
        }

        .dots-indicator {
            display: flex;
            gap: 6px;
            margin-left: auto;
        }

        .dots-indicator .dot {
            width: 6px;
            height: 6px;
            background-color: #cbd0d6;
            border-radius: 50%;
            display: inline-block;
        }

        .dots-indicator .dot.active {
            background-color: #242D49;
        }

        .card-image-wrapper {
            height: 100%;
            aspect-ratio: 1 / 1;
            /* Square based on height */
            width: auto;
            /* Let width adjust */
            max-width: 100%;
            /* Ensure it doesn't overflow column */
            border-radius: 24px;
            overflow: hidden;
            margin-left: auto;
        }

        .card-img-p {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .card-controls-p .collection-btn {
            width: 44px;
            height: 44px;
            border-radius: 8px;
            margin-right: 12px;
        }

        @media (max-width: 992px) {
            .product-tabs {
                display: none !important;
            }

            .custom-mobile-dropdown-container {
                display: block !important;
                margin-bottom: 16px;
                position: relative;
                z-index: 1000;
            }

            .custom-dropdown {
                background-color: #DAE1F6;
                border-radius: 16px;
                width: 100%;
                position: relative;
                user-select: none;
            }

            .dropdown-selected {
                padding: 16px 24px;
                font-family: 'Plus Jakarta Sans', sans-serif;
                font-weight: 700;
                font-size: 18px;
                color: #242D49;
                display: flex;
                justify-content: space-between;
                align-items: center;
                cursor: pointer;
            }

            .dropdown-list {
                list-style: none;
                padding: 8px 0;
                margin: 0;
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: #F2F4F9;
                border-radius: 16px;
                margin-top: 8px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                overflow: hidden;
            }

            .custom-dropdown.open .dropdown-list {
                display: block;
            }

            .custom-dropdown.open .ri-arrow-down-s-line {
                transform: rotate(180deg);
            }

            .dropdown-item {
                padding: 12px 24px;
                font-family: 'Plus Jakarta Sans', sans-serif;
                font-weight: 600;
                font-size: 16px;
                color: #5D6985;
                cursor: pointer;
                transition: all 0.2s;
            }

            .dropdown-item:hover,
            .dropdown-item.active {
                color: #242D49;
                background-color: rgba(36, 45, 73, 0.05);
            }

            .product-detail-card {
                height: 700px !important;
                padding: 16px;
                display: flex;
                flex-direction: column;
                border-radius: 20px;
            }

            .product-detail-card .row {
                flex-direction: column !important;
                display: flex !important;
                flex-wrap: nowrap !important;
                height: 100% !important;
                margin: 0 !important;
            }

            .product-detail-card .col-lg-6 {
                width: 100% !important;
                max-width: 100% !important;
                flex: none !important;
                padding: 0 !important;
                height: auto !important;
            }

            /* Content Column - Second visually, but first in DOM */
            .product-detail-card .col-lg-6:first-child {
                order: 2 !important;
                flex: 1 1 auto !important;
                height: auto !important;
                min-height: 0 !important;
                display: flex;
                flex-direction: column;
            }

            /* Image Column - First visually, but last in DOM */
            .product-detail-card .col-lg-6:last-child {
                order: 1 !important;
                flex: 0 0 auto !important;
                height: auto !important;
            }

            .card-image-wrapper {
                height: 272px;
                width: 100%;
                border-radius: 12px;
                margin-bottom: 32px;
                flex-shrink: 0;
            }

            .card-controls-p {
                margin-top: auto;
                padding-top: 10px;
                min-height: 50px;
                /* Reserve space for controls */
            }

            .card-controls-p .collection-btn {
                width: 40px;
                height: 40px;
                border-radius: 8px;
                /* Squircle */
                border: 1px solid #E5E7EB;
                background: transparent;
                color: #6B7280;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-right: 8px;
                transition: all 0.2s;
            }

            .card-controls-p .collection-btn:hover {
                border-color: #242D49;
                color: #242D49;
            }

            .card-title-p {
                font-size: 24px;
                margin-bottom: 12px;
            }

            .card-content-p {
                padding: 0;
                height: 100%;
                flex-grow: 1;
            }

            .card-img-p {
                min-height: 0;
                border-radius: 16px;
            }

            .card-controls-p .collection-btn {
                background: transparent;
                border: 1px solid #D1D5DB;
                color: #5D6985;
            }

            .tab-content-wrapper {
                padding: 24px 16px;
                border-radius: 24px !important;
            }

            .tab-content-wrapper.round-corner-o {
                border-radius: 24px !important;
            }

            .footer-text {
                padding-top: 0px;
                margin-bottom: 0px;
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .tab-content-wrapper.round-corner-o {
            border-top-left-radius: 0;
        }

        @media (min-width: 992px) {
            .product-detail-card .row {
                flex-wrap: nowrap;
                gap: 32px;
            }

            .product-detail-card .col-lg-6 {
                width: auto;
                max-width: none;
            }

            .product-detail-card .col-lg-6:first-child {
                flex: 1 1 auto;
            }

            .product-detail-card .col-lg-6:last-child {
                flex: 0 0 auto;
            }

            .card-content-p {
                padding-right: 0;
            }
        }

        /* ============================
           About Us Page Styles
           ============================ */
        .story-section {
            padding: 80px 0;
            background-color: #FFFFFF;
        }

        .story-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            font-size: clamp(32px, 4vw, 48px);
            line-height: 1.2;
            color: #242D49;
            text-align: center;
            margin-bottom: 24px;
        }

        .story-intro {
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            line-height: 28px;
            color: #5D6985;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .story-banner-container {
            position: relative;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto 60px;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0px 16px 40px rgba(36, 46, 73, 0.08);
        }

        .story-banner-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
        }

        .story-overlay-box {
            position: absolute;
            bottom: 0;
            left: 0;
            background-color: #1b73e8;
            /* Blue accent matching the design */
            color: #FFFFFF;
            padding: 32px 40px;
            max-width: 540px;
            border-top-right-radius: 24px;
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            line-height: 26px;
            font-weight: 500;
            text-align: left;
        }

        @media (max-width: 767.98px) {
            .story-banner-image {
                height: 350px;
            }

            .story-overlay-box {
                position: relative;
                max-width: 100%;
                border-top-right-radius: 0;
                padding: 24px;
            }
        }

        .story-grid-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            text-align: left;
            height: 100%;
        }

        .story-icon-circle {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .story-icon-circle.heart {
            background-color: #e6f6f1;
            color: #00b074;
        }

        .story-icon-circle.flash {
            background-color: #fff4ec;
            color: #ff8a00;
        }

        .story-item-text {
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            line-height: 24px;
            color: #5D6985;
            margin: 0;
        }

        .standards-section {
            background-color: #FFFFFF;
            /* Pure white background like the image */
            padding: 80px 0;
            border-top: 1px solid #E5E8EB;
        }

        .standards-content {
            max-width: 680px;
            /* Centered narrow width for readability */
            margin: 0 auto;
            text-align: left;
            padding: 0 24px;
        }

        .standards-heading {
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            font-size: 18px;
            line-height: 26px;
            color: #242D49;
            margin-top: 40px;
            margin-bottom: 16px;
        }

        .standards-heading:first-of-type {
            margin-top: 0;
        }

        .standards-text {
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            font-size: 15px;
            line-height: 26px;
            color: #5D6985;
            margin-bottom: 24px;
        }

        .standards-list {
            list-style-type: none;
            padding-left: 0;
            margin-bottom: 24px;
        }

        .standards-list-item {
            position: relative;
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            font-size: 15px;
            line-height: 26px;
            color: #5D6985;
            padding-left: 20px;
            margin-bottom: 12px;
        }

        .standards-list-item::before {
            content: "•";
            position: absolute;
            left: 4px;
            color: #242D49;
            font-weight: bold;
        }

        .standards-btn {
            display: inline-block;
            background-color: #FF725E;
            /* Orange/peach color from the Envato image */
            color: #FFFFFF !important;
            padding: 14px 28px;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none !important;
            transition: all 0.2s ease-in-out;
            border: none;
            margin-top: 20px;
            box-shadow: 0px 4px 12px rgba(255, 114, 94, 0.2);
            text-align: center;
        }

        .standards-btn:hover {
            background-color: #E05F4D;
            transform: translateY(-1px);
            box-shadow: 0px 6px 16px rgba(255, 114, 94, 0.3);
        }

        .standards-btn:active {
            transform: translateY(0);
        }

        .about-page,
        .privacy-page {
            background-color: #FFFFFF !important;
        }

        .about-page .cta-section,
        .privacy-page .cta-section {
            background-color: #FFFFFF !important;
        }