        :root {
            --primary: #1f6b3a;
            /* SOHOOL Green */
            --primary-hover: #154c29;
            --accent: #d2ad35;
            /* SOHOOL Gold */
            --dark: #0A0F14;
            --light: #F4F7F6;
            --text: #4A5568;
            --border: #E2E8F0;
            --section-bg: #FFFFFF;
            --font-head: 'Space Grotesk', sans-serif;
            --font-body: 'DM Sans', sans-serif;
        }

        /* Force Icon Fonts from CDNs */
        .fa,
        .fas,
        .far,
        .fal,
        .fad,
        .fa-solid,
        .fa-regular,
        .fa-light,
        .fa-duotone {
            font-family: "Font Awesome 6 Free" !important;
            font-weight: 900;
        }

        .fa-brands,
        .fab {
            font-family: "Font Awesome 6 Brands" !important;
            display: inline-block !important;
            min-width: 20px;
            text-align: center;
        }

        .bi {
            font-family: "bootstrap-icons" !important;
            display: inline-block !important;
        }

        .progress_indicator {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            cursor: pointer;
            display: block;
            border-radius: 50px;
            box-shadow: inset 0 0 0 2px rgba(28, 105, 56, 0.2);
            z-index: 10001;
            /* Higher than header for overlay cases */
            opacity: 0;
            visibility: hidden;
            transition: all 300ms linear;
            background: rgba(255, 255, 255, 0.05);
            /* Very subtle background */
        }

        .progress_indicator.active-progress {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .progress_indicator::after {
            position: absolute;
            content: "\f106";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            text-align: center;
            line-height: 50px;
            width: 50px;
            height: 50px;
            left: 0;
            top: 0;
            color: var(--primary);
            font-size: 20px;
            transition: 0.3s;
        }

        .progress_indicator svg.progress-circle path {
            fill: none;
            stroke: var(--primary);
            stroke-width: 4;
            box-sizing: border-box;
            transition: all 400ms linear;
        }

        .progress_indicator svg.progress-circle path.background-circle {
            stroke: rgba(28, 105, 56, 0.1);
        }

        .breadcumb-area {
            min-height: 450px !important;
            padding-top: 120px !important; 
            padding-bottom: 80px !important;
            display: flex !important;
            flex-direction: column !important;
            justify-content: center !important;
            align-items: center !important;
            text-align: center !important;
            margin-top: 0 !important;
        }

        @media (max-width: 768px) {
            .breadcumb-title h4 {
                font-size: 28px !important;
                line-height: 1.3 !important;
                padding: 0 15px;
            }

            .breadcumb-area {
                min-height: 250px !important;
                display: flex;
                align-items: center;
                justify-content: center;
            }
        }

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

        body {
            color: var(--text) !important;
            background-color: var(--light) !important;
            line-height: 1.6;
            font-family: var(--font-body) !important;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        html, body {
            overflow-x: clip; /* Prevents horizontal scroll while allowing sticky to work */
            margin: 0;
            padding: 0;
        }

        /* Safer overflow management to ensure stickiness works */
        .main-wrapper {
            position: relative;
            width: 100%;
            overflow: visible !important;
            /* Critical for sticky to work */
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-head) !important;
            color: var(--dark) !important;
        }

        .btn-primary {
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            padding: 15px 30px !important;
            background: #1c6938 !important;
            color: #fff !important;
            text-decoration: none !important;
            border-radius: 0 !important;
            font-weight: 500 !important;
            font-size: 18px !important;
            font-family: "Space Grotesk" !important;
            transition: all 0.3s ease !important;
        }

        .btn-primary:hover {
            background: var(--primary-hover) !important;
            color: #fff !important;
        }

        .btn-outline {
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            padding: 15px 40px !important;
            background: transparent !important;
            color: var(--dark) !important;
            text-decoration: none !important;
            border-radius: 0 !important;
            font-weight: 500 !important;
            border: 2px solid var(--border) !important;
            transition: all 0.3s ease !important;
        }

        .btn-outline:hover {
            border-color: var(--primary) !important;
            color: var(--primary) !important;
        }

        /* Specific fix for roadly_btn */
        .roadly_btn a {
            background: #1c6938 !important;
            color: #fff !important;
            padding: 15px 30px !important;
            border-radius: 0 !important;
            display: inline-flex !important;
            align-items: center !important;
            gap: 10px !important;
            font-weight: 500 !important;
            font-size: 18px !important;
            font-family: "Space Grotesk" !important;
            text-decoration: none !important;
        }

        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Banner Section Styling */
        .banner {
            position: relative;
            width: 100%;
            height: 60vh;
            min-height: 480px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            overflow: hidden;
            background: url('./assets/images/breadcumb-bg.png') center/cover no-repeat;
        }

        .banner::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(8, 18, 35, 0.65), rgba(15, 35, 60, 0.15));
            z-index: 1;
        }

        .banner-content {
            z-index: 2;
            position: relative;
            padding-bottom: 60px;
        }

        .banner h1 {
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 5px;
            color: #ffffff;
            letter-spacing: -0.5px;
            line-height: 1.2;
            text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .breadcrumb span {
            width: 30px;
            height: 1px;
            background: var(--accent);
            opacity: 0.8;
        }

        .breadcrumb {
            font-size: 15px;
            font-weight: 500;
            color: #1f6b3a;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            text-transform: none;
            margin-top: 15px;
        }

        .breadcrumb::before,
        .breadcrumb::after {
            content: "";
            width: 40px;
            height: 6px;
            border-top: 1.5px solid #1c6938;
            border-bottom: 1.5px solid #1c6938;
            opacity: 0.8;
        }

        /* Banner Style Refining */
        .banner h1 {
            font-size: clamp(32px, 5vw, 56px);
            font-weight: 700;
            margin-bottom: 15px;
            color: #ffffff;
            letter-spacing: -0.5px;
        }

        /* Footer */
        .site-footer {
            background-color: #081223;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1000' height='500' opacity='0.1'%3E%3Ccircle cx='100' cy='100' r='1.5' fill='white'/%3E%3Ccircle cx='110' cy='105' r='1.5' fill='white'/%3E%3Ccircle cx='120' cy='115' r='1.5' fill='white'/%3E%3Ccircle cx='300' cy='200' r='1.5' fill='white'/%3E%3Ccircle cx='315' cy='210' r='1.5' fill='white'/%3E%3Ccircle cx='330' cy='190' r='1.5' fill='white'/%3E%3Ccircle cx='500' cy='150' r='1.5' fill='white'/%3E%3Ccircle cx='510' cy='160' r='1.5' fill='white'/%3E%3Ccircle cx='525' cy='145' r='1.5' fill='white'/%3E%3Ccircle cx='540' cy='170' r='1.5' fill='white'/%3E%3Ccircle cx='700' cy='250' r='1.5' fill='white'/%3E%3Ccircle cx='710' cy='240' r='1.5' fill='white'/%3E%3Ccircle cx='720' cy='260' r='1.5' fill='white'/%3E%3Ccircle cx='800' cy='80' r='1.5' fill='white'/%3E%3Ccircle cx='815' cy='75' r='1.5' fill='white'/%3E%3Ccircle cx='830' cy='95' r='1.5' fill='white'/%3E%3Ccircle cx='200' cy='300' r='1.5' fill='white'/%3E%3Ccircle cx='210' cy='310' r='1.5' fill='white'/%3E%3Ccircle cx='220' cy='290' r='1.5' fill='white'/%3E%3Ccircle cx='230' cy='320' r='1.5' fill='white'/%3E%3Ccircle cx='450' cy='350' r='1.5' fill='white'/%3E%3Ccircle cx='460' cy='340' r='1.5' fill='white'/%3E%3Ccircle cx='470' cy='360' r='1.5' fill='white'/%3E%3Ccircle cx='600' cy='380' r='1.5' fill='white'/%3E%3Ccircle cx='610' cy='370' r='1.5' fill='white'/%3E%3Ccircle cx='620' cy='390' r='1.5' fill='white'/%3E%3C/svg%3E");
            background-size: cover;
            background-position: center;
            color: #ffffff;
            padding: 80px 0 40px;
            font-family: var(--font-body);
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .site-footer::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 30% 50%, rgba(28, 105, 56, 0.08) 0%, transparent 70%);
            z-index: 1;
            pointer-events: none;
        }

        .site-footer .logo img {
            filter: brightness(0) invert(1);
            opacity: 0.9;
            margin-bottom: 25px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }

        .site-footer .container,
        .footer-bottom .container {
            max-width: 100%;
            padding: 0 60px;
        }

        .footer-col h4 {
            color: #ffffff;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 30px;
            position: relative;
            font-family: var(--font-head);
        }

        .footer-desc {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin: 25px 0;
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .social-icon {
            width: 38px;
            height: 38px;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            text-decoration: none;
            transition: 0.3s;
            font-size: 14px;
        }

        .social-icon:hover {
            border-color: #ffffff;
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }

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

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

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 15px;
            transition: 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links a::before {
            content: "›";
            color: #ffffff;
            opacity: 0.5;
            font-size: 18px;
            line-height: 0;
            margin-top: -1px;
        }

        .footer-links a:hover {
            color: #ffffff;
            padding-left: 5px;
        }

        .contact-info {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .contact-info li {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 15px;
            line-height: 1.6;
        }

        .contact-info b {
            color: #ffffff;
            display: block;
        }

        .footer-bottom {
            background: transparent;
            padding: 30px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .footer-bottom .container {
            border-top: none;
        }

        .footer-bottom a {
            color: #ffffff;
            text-decoration: none;
        }

        .back-to-top {
            position: fixed;
            bottom: 40px;
            right: 40px;
            width: 44px;
            height: 44px;
            background: #1c6938;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            z-index: 999;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            visibility: hidden;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
            background: #154c29;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .dots-grid {
            position: absolute;
            left: 5%;
            top: 50%;
            transform: translateY(-50%);
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            opacity: 0.8;
            pointer-events: none;
            z-index: 2;
        }

        .dots-grid span {
            width: 4px;
            height: 4px;
            background: #d2ad35;
            border-radius: 50%;
        }

        .wavy-line {
            position: absolute;
            right: 5%;
            bottom: 10%;
            width: 300px;
            opacity: 0.8;
            pointer-events: none;
            z-index: 2;
        }

        @media (max-width: 1024px) {
            .sticky-nav-container {
                top: 60px;
                padding: 10px 0;
            }
        }

        @media (max-width: 600px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .header-content {
                padding: 0 20px;
            }

            .download-btn span {
                display: none;
            }
        }


        /* Product Hero */
        .product-hero {
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
            align-items: center;
            background: #fff;
            padding: clamp(30px, 5vw, 60px);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            margin: 10px auto;
            position: relative;
            z-index: 10;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .product-image {
            flex: 1;
            min-width: 300px;
        }

        .product-image img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .product-info {
            flex: 1.5;
            min-width: 320px;
        }

        .product-info h2 {
            font-size: 40px;
            margin-bottom: 24px;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .content-scrollable {
            max-height: 200px;
            overflow: hidden;
            position: relative;
            transition: max-height 0.5s ease;
            font-size: 17px;
        }

        .content-scrollable::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 80px;
            background: linear-gradient(transparent, #fff);
            pointer-events: none;
            transition: opacity 0.5s ease;
        }

        .content-scrollable.expanded {
            max-height: 600px;
            overflow-y: auto;
            padding-right: 15px;
        }

        .content-scrollable.expanded::after {
            opacity: 0;
        }

        .content-scrollable::-webkit-scrollbar {
            width: 6px;
        }

        .content-scrollable::-webkit-scrollbar-thumb {
            background-color: var(--primary);
            border-radius: 10px;
        }

        .read-more-btn {
            font-weight: 600;
            color: var(--primary);
            cursor: pointer;
            margin-top: 15px;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 16px;
            transition: 0.3s;
        }

        .read-more-btn:hover {
            color: var(--dark);
            gap: 8px;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 16px 36px;
            background: var(--primary);
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 20px rgba(28, 105, 56, 0.2);
        }

        .btn-primary:hover {
            background: var(--primary-hover);
            transform: translateY(-3px);
            box-shadow: 0 15px 25px rgba(28, 105, 56, 0.3);
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 16px 40px;
            background: transparent;
            color: var(--dark);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            border: 2px solid var(--border);
            transition: all 0.3s ease;
        }

        .btn-outline:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        /* Sticky Navigation */
        .sticky-nav-container {
            position: sticky !important;
            position: -webkit-sticky !important;
            top: 0; 
            background: #ffffff !important;
            z-index: 1000 !important;
            border-bottom: 1px solid var(--border) !important;
            padding: 12px 0 !important;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05) !important;
        }

        @media (max-width: 1024px) {
            .sticky-nav-container {
                top: 60px !important;
                z-index: 999 !important;
            }

            .product-menu {
                top: 112px !important;
                z-index: 998 !important;
            }
        }

        .sticky-nav {
            display: flex;
            justify-content: flex-start;
            gap: 24px;
            list-style: none;
            padding: 0 24px;
            font-family: "Space Grotesk", sans-serif !important;
            flex-wrap: nowrap;
            max-width: 1280px;
            margin: 0 auto;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }

        .sticky-nav::-webkit-scrollbar {
            display: none;
        }

        @media(min-width: 1024px) {
            .sticky-nav {
                justify-content: center;
                width: 100%;
            }
        }

        .sticky-nav li {
            flex-shrink: 0;
        }

        .sticky-nav li a {
            display: block;
            text-decoration: none;
            color: var(--text);
            font-weight: 600;
            font-size: 15px;
            padding: 8px 18px;
            border-radius: 30px;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .sticky-nav li a:hover,
        .sticky-nav li a.active {
            color: #fff;
            background: var(--primary);
            box-shadow: 0 4px 12px rgba(28, 105, 56, 0.2);
        }

        /* Sections */
        section {
            padding: 40px 0;
            scroll-margin-top: 150px;
        }

        section:nth-child(even) {
            background-color: #fff;
        }

        .section-title {
            text-align: center;
            font-size: clamp(32px, 5vw, 44px);
            margin-bottom: 60px;
            color: var(--dark);
            font-weight: 800;
            letter-spacing: -1px;
        }

        /* Features - Ultra Modern */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 40px;
        }

        .feature-card {
            background: #fff;
            padding: 50px 40px;
            border-radius: 24px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.03);
            display: flex;
            flex-direction: column;
            gap: 20px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon-wrapper {
            width: 72px;
            height: 72px;
            background: linear-gradient(135deg, rgba(28, 105, 56, 0.1), rgba(207, 172, 43, 0.1));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            transition: transform 0.4s ease;
        }

        .feature-card:hover .feature-icon-wrapper {
            transform: scale(1.1) rotate(-5deg);
            background: var(--primary);
            color: #fff;
        }

        .feature-card:hover .feature-icon-wrapper img {
            filter: brightness(0) invert(1) !important;
        }

        .feature-card h3 {
            font-size: 24px;
            font-weight: 700;
            line-height: 1.3;
        }

        .feature-card p {
            font-size: 16px;
            color: var(--text);
            line-height: 1.7;
        }

        /* Tables */
        .table-responsive {
            overflow-x: auto;
            background: #fff;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
            border: 1px solid var(--border);
        }

        table {
            width: 100%;
            min-width: 800px;
            border-collapse: collapse;
            text-align: left;
        }

        th,
        td {
            padding: 20px 24px;
            border-bottom: 1px solid var(--border);
            font-size: 16px;
        }

        th {
            background: #f8fafc;
            color: var(--dark);
            font-weight: 700;
            font-family: var(--font-head);
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .compare-table th,
        .compare-table td {
            text-align: center;
        }

        .compare-table td:first-child {
            text-align: left;
            font-weight: 600;
            color: var(--dark);
            font-family: var(--font-head);
            font-size: 18px;
        }

        .compare-table img {
            max-width: 120px;
            height: auto;
            display: block;
            margin: 0 auto;
            mix-blend-mode: multiply;
        }

        .compare-highlight {
            color: var(--primary);
            font-weight: 700;
            font-size: 17px;
            background: rgba(28, 105, 56, 0.05);
            border-radius: 8px;
        }

        /* Sliders / Carousels */
        .carousel-track {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 30px;
            padding-bottom: 30px;
            scrollbar-width: none;
        }

        .carousel-track::-webkit-scrollbar {
            display: none;
        }

        .carousel-slide {
            flex: 0 0 clamp(300px, 30%, 400px);
            scroll-snap-align: start;
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
            background: #fff;
            display: flex;
            flex-direction: column;
            transition: 0.3s;
        }

        .carousel-slide:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        /* KB Specific */
        .kb-slide img {
            width: 100%;
            height: 240px;
            object-fit: cover;
        }

        .kb-content {
            padding: 30px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
            flex: 1;
            justify-content: space-between;
        }

        .kb-content h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--dark);
            line-height: 1.4;
        }

        /* Related Blogs - Same Line Align */
        .blogs-grid {
            display: flex;
            overflow-x: auto;
            scroll-behavior: smooth;
            gap: 40px;
            padding-bottom: 20px;
            -ms-overflow-style: none; /* IE and Edge */
            scrollbar-width: none; /* Firefox */
            align-items: stretch; /* Ensures all cards have same height */
        }

        .blogs-grid::-webkit-scrollbar {
            display: none; /* Chrome, Safari and Opera */
        }

        .blog-card {
            background: #fff;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            transition: all 0.4s ease;
            flex: 0 0 calc(45% - 100px); /* Adjusted for better visibility */
            min-width: 450px;
            margin-right: 40px;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .blog-card img {
            width: 100%;
            height: 240px;
            object-fit: cover;
            background: var(--light);
            position: relative;
        }

        .blog-content {
            padding: 35px 30px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .blog-content h4 {
            color: var(--dark);
            margin-bottom: 15px;
            font-size: 22px;
            font-weight: 700;
            line-height: 1.4;
            transition: 0.3s;
        }

        .blog-card:hover h4 {
            color: var(--primary);
        }

        .blog-content p {
            color: var(--text);
            font-size: 16px;
            margin-bottom: 30px;
        }

        .blog-content .btn-primary {
            margin-top: auto;
            align-self: flex-start;
        }

        /* Forces button to the bottom! */

        /* Project Gallery */
        .gallery-slide {
            aspect-ratio: 3/4;
        }

        .gallery-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

        .gallery-slide:hover img {
            transform: scale(1.1);
        }

        .slide-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10, 15, 20, 0.9) 0%, rgba(10, 15, 20, 0.1) 60%);
            color: #fff;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .gallery-slide:hover .slide-overlay {
            opacity: 1;
        }

        .slide-overlay h4 {
            font-size: 26px;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .slide-overlay p {
            font-size: 15px;
            color: #e2e8f0;
            margin-bottom: 5px;
            font-weight: 500;
        }

        /* FAQs Tabbed Interface */
        .faq-cal {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
        }

        .tab-faq {
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--border);
            overflow: visible;
            /* Changed to visible for internal sticky tabs */
        }

        /* FAQs Tabs Sticky Positioning */
        .product-menu {
            position: sticky !important;
            top: 122px !important;
            /* header(70px) + sticky-nav(52px) approx = 122px */
            z-index: 997 !important;
            background: #fff;
            padding: 15px 0;
            border-bottom: 1px solid var(--border);
        }

        .product-menu .tab {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            background: #f8fafc;
            border-bottom: 1px solid var(--border);
        }

        .product-menu .tab li {
            flex: 1;
            min-width: 200px;
        }

        .product-menu .tab button {
            width: 100%;
            padding: 20px;
            border: none;
            background: transparent;
            cursor: pointer;
            font-size: 16px;
            font-family: var(--font-head);
            font-weight: 600;
            color: var(--text);
            transition: 0.3s;
            border-bottom: 3px solid transparent;
        }

        .product-menu .tab button:hover {
            background: #fff;
            color: var(--primary);
        }

        .product-menu .tab button.active {
            background: #fff;
            color: var(--primary);
            border-bottom-color: var(--primary);
        }

        .product-menu-item {
            padding: 40px;
        }

        .tabcontent {
            display: none;
            animation: fadeUp 0.5s ease;
        }

        .tabcontent.active-tab {
            display: block;
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Accordion Inside Tabs */
        .acc-container {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .acc {
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            background: #fafafa;
            transition: 0.3s;
        }

        .acc.active {
            border-color: var(--primary);
            background: #fff;
            box-shadow: 0 5px 15px rgba(28, 105, 56, 0.08);
        }

        .acc-head {
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .accordian-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--dark);
            margin: 0;
            transition: 0.3s;
        }

        .acc.active .accordian-title {
            color: var(--primary);
        }

        .acc-head::after {
            content: '+';
            font-size: 24px;
            color: var(--primary);
            transition: 0.3s;
            font-weight: 400;
        }

        .acc.active .acc-head::after {
            content: '-';
            transform: rotate(180deg);
        }

        .acc-content {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            color: var(--text);
            font-size: 16px;
        }

        .acc.active .acc-content {
            max-height: 1000px;
            padding: 0 25px 25px;
        }

        .acc-content p {
            margin-bottom: 10px;
            line-height: 1.7;
        }

        .acc-content p:last-child {
            margin-bottom: 0;
        }

        .acc-content table {
            margin-top: 15px;
            font-size: 14px;
        }

        .acc-content th,
        .acc-content td {
            padding: 10px;
        }

        /* Footer SEO Text */
        .footer-seo {
            padding: 80px 20px;
            background: #fff;
        }

        .footer-seo h2 {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 24px;
            color: var(--dark);
            letter-spacing: -0.5px;
        }

        .footer-seo h3 {
            font-size: 24px;
            font-weight: 700;
            margin-top: 40px;
            margin-bottom: 16px;
            color: var(--dark);
        }

        .footer-seo p,
        .footer-seo li {
            font-size: 17px;
            margin-bottom: 16px;
            color: var(--text);
        }

        .footer-seo ul {
            margin-left: 20px;
            margin-bottom: 24px;
        }

        @media (max-width: 768px) {
            .banner {
                min-height: 350px;
            }

            .banner-content {
                padding: 0 20px 40px;
            }

            .product-hero {
                padding: 40px 20px;
                margin-top: 10px;
            }

            .product-info h2 {
                font-size: 26px;
                text-align: center;
            }

            .product-info p {
                text-align: center;
            }

            .hero-btns {
                justify-content: center;
                flex-direction: column;
                width: 100%;
                gap: 15px;
            }

            .hero-btns .btn-primary,
            .hero-btns .btn-outline {
                width: 100%;
                text-align: center;
            }

            .sticky-nav-container {
                position: sticky !important;
                top: 60px;
                padding: 10px 0;
                margin-bottom: 30px;
                z-index: 1001 !important;
            }

            .sticky-nav {
                gap: 10px;
                padding: 0 10px;
            }

            .sticky-nav li a {
                font-size: 13px;
                padding: 5px 12px;
                white-space: nowrap;
            }

            section {
                padding: 60px 0;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .carousel-slide {
                flex: 0 0 90%;
            }

            .product-menu-item {
                padding: 20px;
            }

            .acc-head {
                padding: 15px;
                font-size: 16px;
            }

            .acc-content {
                padding: 0 15px;
            }

            .acc.active .acc-content {
                padding: 0 15px 15px;
            }

            .footer-seo h2 {
                font-size: 28px;
            }

            .footer-widget-content,
            .footer-widget-contact,
            .footer-widget-title {
                text-align: center !important;
                margin-bottom: 30px;
            }

            .footer-widget-menu ul {
                display: flex;
                flex-direction: column;
                align-items: center;
                padding-left: 0;
            }

            .footer_logo {
                margin: 0 auto 20px !important;
                display: flex;
                justify-content: center;
            }

            .footer_social_icon {
                justify-content: center !important;
                margin-top: 20px;
                display: flex !important;
                gap: 15px;
            }

            .footer_desc,
            .footer-bottom-content-copy p {
                text-align: center !important;
            }
        }

        /* Scroll Up Indicator Style Refining */
        #scrollUp {
            display: none !important;
            visibility: hidden !important;
            opacity: 0 !important;
            pointer-events: none !important;
        }

        /* Banner Text Color - Green for Breadcrumb */
        .breadcumb-title h4 {
            color: #ffffff !important;
        }

        .breadcumb-content ul li,
        .breadcumb-content ul li a,
        .breadcumb-content ul li span {
            color: #1c6938 !important;
            font-weight: 600;
        }

        /* Footer Text White & Opacity */
        .footer-widget-title h4 {
            color: #ffffff !important;
            margin-bottom: 30px;
        }

        .footer_desc,
        .footer-widget-menu ul li,
        .footer-widget-menu ul li a,
        .footer-menu ul li a,
        .footer-contact-info p,
        .footer-content p,
        .footer-bottom-content-copy p,
        .footer-bottom-content-copy p a {
            color: #ffffff !important;
            line-height: 45px;
            font-size: 16px;
        }

        /* Specific List Refinement for Footer */
        .footer-widget-menu ul,
        .footer-menu ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-widget-menu ul li,
        .footer-menu ul li {
            position: relative;
        }

        /* Project Gallery Custom Navigation */
        .gallery-nav {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
            margin-bottom: 30px;
            padding-right: 24px;
        }

        .gallery-nav-btn {
            width: 44px;
            height: 44px;
            background: var(--primary);
            color: #fff;
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: 0.3s;
            border: none;
        }

        .gallery-nav-btn:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
        }

        /* Hide View All Gallery Button */
        .btn-view-all {
            display: none !important;
        }

        /* Project Gallery Hover Text White */
        .slide-overlay h4,
        .slide-overlay p {
            color: #ffffff !important;
        }

        /* Global Button Override for 1:1 Parity */
        .btn-primary,
        .roadly_btn a,
        .download-btn,
        .btn-outline {
            border-radius: 0 !important;
            background-color: #1c6938 !important;
            color: #fff !important;
            border-color: #1c6938 !important;
        }

        @media (max-width: 1024px) {

            /* Adjust first section to not hide behind header */
            .banner {
                margin-top: 50px !important;
            }
        }

        /* ===== HEADER: Match reference site exactly ===== */

        /* Desktop header: show on >=992px, hide on mobile */
        #sticky-header {
            display: none;
        }
        @media (min-width: 992px) {
            #sticky-header {
                display: block;
            }
            .mobile-menu-area {
                display: none !important;
            }
        }

        /* Make header fully transparent (no white box) over banner */
        .roadly-header-area.inner-style {
            background: transparent !important;
            position: absolute !important;
            width: 100% !important;
            top: 0 !important;
            left: 0 !important;
            z-index: 100 !important;
        }

        /* Remove white pseudo-element that blocks logo area */
        .roadly-header-area.inner-style::before,
        .roadly-header-area.inner-style::after {
            display: none !important;
        }

        /* White nav text on transparent header */
        .roadly-header-area.inner-style .header-menu ul li a {
            color: #ffffff !important;
        }

        /* When sticky - dark solid background like reference */
        .sticky.roadly-header-area,
        #sticky-header.sticky {
            background: #0f1d37 !important;
            position: fixed !important;
            top: 0 !important;
            width: 100% !important;
            z-index: 1010 !important; /* Extremely high to stay above switcher */
        }

        /* Mobile Sticky Menu */
        @media (max-width: 991px) {
            .mobile-menu-area {
                position: fixed !important;
                top: 0 !important;
                width: 100% !important;
                z-index: 1010 !important;
                background: #0f1d37 !important;
                /* Match reference dark styling */
            }

            .main-wrapper {
                margin-top: 80px; /* Offset for fixed mobile header */
            }
            
            .sticky-nav-container {
                z-index: 1009 !important; /* Just below mobile header */
            }
        }

        /* Mobile meanmenu bar logo position fix - match reference */
        .mean-container .mean-bar::before {
            left: 10px !important;
            top: 18px !important;
            font-size: 22px !important;
            font-weight: 600 !important;
        }