
        /* CSS Reset & Variables */
        :root {
            --primary-blue: #0f3574;
            --primary-orange: #f26522;
            --light-blue: #f0f6fc;
            --text-dark: #333333;
            --text-gray: #666666;
            --text-light: #888888;
            --white: #ffffff;
            --border-color: #e5e7eb;
            --font-family: 'Inter', sans-serif;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-family);
            color: var(--text-dark);
            line-height: 1.5;
            overflow-x: hidden;
        }

        img { max-width: 100%; display: block; }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-primary {
            background-color: var(--primary-orange);
            color: var(--white);
        }

        .btn-primary:hover {
            background-color: #d9531a;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(242, 101, 34, 0.3);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--primary-blue);
            border: 1px solid var(--primary-blue);
        }

        .btn-outline:hover {
            background-color: var(--primary-blue);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(15, 53, 116, 0.2);
        }

        .section-title-wrap {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-subtitle {
            color: var(--primary-orange);
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .section-subtitle::before,
        .section-subtitle::after {
            content: "";
            display: block;
            width: 20px;
            height: 2px;
            background-color: var(--primary-orange);
        }

        .section-title {
            font-size: 32px;
            font-weight: 800;
            color: var(--primary-blue);
        }

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

        /* ---------- Scroll reveal ---------- */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .reveal.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-stagger.is-visible > * {
            animation: none;
        }

        /* ---------- Decorative bubble backgrounds ---------- */
        .bubble-layer {
            position: absolute;
            inset: 0;
            overflow: hidden;
            z-index: 0;
            pointer-events: none;
        }

        .bubble {
            position: absolute;
            border-radius: 50%;
            filter: blur(2px);
            animation: floatBubble 9s ease-in-out infinite;
            opacity: 0.5;
        }

        @keyframes floatBubble {
            0%   { transform: translateY(0px) translateX(0px) scale(1); }
            50%  { transform: translateY(-25px) translateX(15px) scale(1.06); }
            100% { transform: translateY(0px) translateX(0px) scale(1); }
        }

        @keyframes floatBubbleSlow {
            0%   { transform: translateY(0px) translateX(0px) scale(1); }
            50%  { transform: translateY(20px) translateX(-20px) scale(0.95); }
            100% { transform: translateY(0px) translateX(0px) scale(1); }
        }

        /* Top Bar */
        .topbar {
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 8px 0;
            font-size: 13px;
        }

        .topbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }

        .topbar-left {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .topbar-left span {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .topbar-right {
            display: flex;
            gap: 15px;
        }

        .topbar-right a:hover {
            color: var(--primary-orange);
        }

        /* Header */
        header {
            background-color: var(--white);
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: inline-flex;
            align-items: center;
            flex-shrink: 0;
        }

        .logo img {
            width: 155px;
            height: 52px;
            object-fit: contain;
            object-position: left center;
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
            position: relative;
        }

        .nav-links a.active {
            color: var(--primary-orange);
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--primary-orange);
        }

        .header-cta { display: inline-flex; }

        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 32px;
            height: 32px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            position: relative;
            z-index: 101;
        }

        .nav-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background-color: rgba(15, 53, 116, 0.45);
            z-index: 98;
            opacity: 0;
            transition: opacity 0.35s ease;
        }

        .nav-overlay.is-open {
            display: block;
            opacity: 1;
        }

        .nav-close {
            display: none;
        }

        .nav-toggle span {
            display: block;
            width: 100%;
            height: 2px;
            background-color: var(--primary-blue);
            transition: all 0.3s ease;
        }

        .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
        .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        /* Hero Section */
        .hero {
            position: relative;
            background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
            overflow: hidden;
            padding: 60px 0;
            min-height: 500px;
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1584308666744-24d5c474f2ae?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80') no-repeat center center;
            background-size: cover;
            mask-image: linear-gradient(to left, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
            -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
            z-index: 1;
        }

        .hero .container {
            position: relative;
            z-index: 2;
            display: flex;
            width: 100%;
        }

        .hero-content {
            max-width: 50%;
            opacity: 0;
            animation: heroFadeUp 0.9s ease forwards 0.15s;
        }

        @keyframes heroFadeUp {
            from { opacity: 0; transform: translateY(24px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .hero-badge {
            display: inline-block;
            background-color: #e0e7f1;
            color: var(--primary-blue);
            font-size: 11px;
            font-weight: 700;
            padding: 6px 12px;
            border-radius: 20px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero h1 {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.1;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }

        .hero h1 span {
            color: var(--primary-orange);
        }

        .hero p {
            font-size: 15px;
            color: var(--text-gray);
            margin-bottom: 30px;
            max-width: 90%;
        }

        .hero-features {
            display: flex;
            gap: 30px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .hero-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 12px;
            font-weight: 600;
            color: var(--primary-blue);
            line-height: 1.2;
        }

        .hero-feature-icon {
            width: 40px;
            height: 40px;
            border: 1px solid #cce0f5;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-blue);
            flex-shrink: 0;
            transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
        }

        .hero-feature:hover .hero-feature-icon {
            background-color: var(--primary-orange);
            border-color: var(--primary-orange);
            color: var(--white);
            transform: translateY(-4px);
        }

        .hero-feature-icon svg {
            width: 20px;
            height: 20px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
        }

        /* Floating Card */
        .hero-card {
            position: absolute;
            right: 10%;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            width: 200px;
            z-index: 3;
            animation: cardFloat 5s ease-in-out infinite;
        }

        @keyframes cardFloat {
            0%, 100% { transform: translateY(-50%); }
            50% { transform: translateY(calc(-50% - 12px)); }
        }

        .hero-card::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            right: -20px;
            bottom: -20px;
            border: 1px solid rgba(255,255,255,0.5);
            border-radius: 30px;
            z-index: -1;
        }

        .hero-card h3 {
            font-size: 20px;
            color: var(--primary-blue);
            font-weight: 600;
            margin-bottom: 15px;
        }

        .hero-card .line {
            width: 40px;
            height: 2px;
            background-color: var(--primary-orange);
            margin: 0 auto;
        }

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

        .about .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-subtitle {
            color: var(--primary-orange);
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .about-subtitle::before {
            content: "";
            display: block;
            width: 20px;
            height: 2px;
            background-color: var(--primary-orange);
        }

        .about h2 {
            font-size: 36px;
            font-weight: 800;
            color: var(--primary-blue);
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .about h2 span {
            color: var(--primary-orange);
        }

        .about p {
            font-size: 15px;
            color: var(--text-gray);
            margin-bottom: 30px;
        }

        /* About - right side number/stats block (replaces image) */
        .about-stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .about-stat-card {
            background-color: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 35px 20px;
            text-align: center;
            box-shadow: 0 8px 20px rgba(15, 53, 116, 0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .about-stat-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 30px rgba(15, 53, 116, 0.12);
        }

        .about-stat-card h3 {
            font-size: 30px;
            font-weight: 800;
            color: var(--primary-blue);
            margin-bottom: 8px;
        }

        .about-stat-card h3 .stat-plus {
            color: var(--primary-orange);
        }

        .about-stat-card p {
            font-size: 13px;
            color: var(--text-gray);
            margin: 0;
        }

        /* Products Section */
        .products {
            padding: 80px 0;
            background-color: var(--light-blue);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 50px;
        }

        .product-card {
            background-color: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.35s ease, box-shadow 0.35s ease;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 30px rgba(15, 53, 116, 0.12);
        }

        .product-img {
            height: 180px;
            background-color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            overflow: hidden;
        }

        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
            transition: transform 0.5s ease;
        }

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

        .product-info {
            padding: 20px;
        }

        .product-category {
            font-size: 11px;
            font-weight: 700;
            color: var(--primary-orange);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 6px;
            display: block;
        }

        .product-info h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 8px;
        }

        .product-info p {
            font-size: 13px;
            color: var(--text-gray);
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .product-link {
            font-size: 12px;
            font-weight: 700;
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .product-link svg {
            width: 12px;
            height: 12px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            transition: transform 0.3s ease;
        }

        .product-link:hover svg {
            transform: translateX(4px);
        }

        .products-view-all {
            text-align: center;
            margin-top: 40px;
        }

        /* Mission & Vision Section */
        .mission-vision {
            padding: 80px 0;
        }

        .mission-vision .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .mv-image {
            position: relative;
        }

        .mv-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .mv-image-card {
            position: absolute;
            bottom: 20px;
            right: -20px;
            background-color: var(--white);
            padding: 30px 20px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
            width: 150px;
        }

        .mv-image-card h4 {
            font-size: 16px;
            color: var(--primary-blue);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .mv-image-card .line {
            width: 30px;
            height: 2px;
            background-color: var(--primary-orange);
            margin: 0 auto;
        }

        .mv-block {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .mv-block + .mv-block {
            margin-top: 35px;
        }

        .mv-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #eef4fb;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--primary-orange);
            transition: transform 0.3s ease;
        }

        .mv-block:hover .mv-icon {
            transform: rotate(-8deg) scale(1.08);
        }

        .mv-icon svg {
            width: 24px;
            height: 24px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
        }

        .mv-block h3 {
            font-size: 19px;
            font-weight: 800;
            color: var(--primary-blue);
            margin-bottom: 8px;
        }

        .mv-block p {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* Values Section */
        .values {
            padding: 80px 0;
            background-color: var(--light-blue);
            position: relative;
            overflow: hidden;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .value-card {
            background-color: var(--white);
            border: 1px solid var(--border-color);
            padding: 25px;
            border-radius: 10px;
            display: flex;
            gap: 10px;
            align-items: flex-start;
            transition: box-shadow 0.3s ease, transform 0.3s ease;
        }

        .value-card:hover {
            box-shadow: 0 15px 25px rgba(15, 53, 116, 0.1);
            transform: translateY(-5px);
        }

        .value-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #eef4fb;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--primary-orange);
            transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
        }

        .value-card:hover .value-icon {
            background-color: var(--primary-orange);
            color: var(--white);
            transform: rotate(8deg);
        }

        .value-icon svg {
            width: 24px;
            height: 24px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
        }

        .value-content h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 5px;
        }

        .value-content p {
            font-size: 12px;
            color: var(--text-gray);
            line-height: 1.4;
        }

        /* Contact Section */
        .contact {
            padding: 100px 0;
            background: linear-gradient(135deg, #f7faff 0%, #ffffff 52%, #f3f7fc 100%);
            position: relative;
            overflow: hidden;
        }

        .contact .container {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 55px;
            align-items: stretch;
        }

        .contact-info {
            position: relative;
            background: linear-gradient(145deg, var(--primary-blue), #17498f);
            border-radius: 28px;
            padding: 48px 42px;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(15, 53, 116, 0.18);
            color: var(--white);
        }

        .contact-info::before,
        .contact-info::after {
            content: "";
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
        }

        .contact-info::before {
            width: 260px;
            height: 260px;
            right: -110px;
            top: -110px;
            border: 1px solid rgba(255,255,255,0.14);
            box-shadow:
                0 0 0 35px rgba(255,255,255,0.035),
                0 0 0 70px rgba(255,255,255,0.025);
        }

        .contact-info::after {
            width: 120px;
            height: 120px;
            left: -55px;
            bottom: -55px;
            background: rgba(242,101,34,0.16);
        }

        .contact-info > * {
            position: relative;
            z-index: 2;
        }

        .contact-info .section-subtitle {
            color: #ff9b6d;
            justify-content: flex-start;
            margin-bottom: 14px;
        }

        .contact-info .section-subtitle::before {
            background-color: #ff9b6d;
        }

        .contact-info h2 {
            font-size: 42px;
            font-weight: 800;
            color: var(--white);
            line-height: 1.12;
            margin-bottom: 18px;
        }

        .contact-info h2 span {
            color: #ff8a54;
        }

        .contact-info > p {
            font-size: 15px;
            color: #d9e6f7;
            line-height: 1.7;
            margin-bottom: 34px;
            max-width: 470px;
        }

        .contact-trust {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 16px;
            margin-bottom: 20px;
            border-radius: 14px;
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.10);
        }

        .trust-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--primary-orange);
            box-shadow: 0 0 0 6px rgba(242,101,34,0.12);
            flex-shrink: 0;
        }

        .contact-trust strong {
            display: block;
            font-size: 12px;
            color: var(--white);
            margin-bottom: 2px;
        }

        .contact-trust small {
            display: block;
            color: #bcd0e9;
            font-size: 11px;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 13px;
        }

        .contact-detail-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 13px 14px;
            border: 1px solid rgba(255,255,255,0.10);
            border-radius: 14px;
            background: rgba(255,255,255,0.055);
            font-size: 13px;
            color: #eef5ff;
            font-weight: 500;
            transition: transform 0.3s ease, background 0.3s ease;
        }

        .contact-detail-item:hover {
            transform: translateX(5px);
            background: rgba(255,255,255,0.10);
        }

        .contact-detail-icon {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: rgba(255,255,255,0.10);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ff8a54;
            flex-shrink: 0;
        }

        .contact-detail-item:hover .contact-detail-icon {
            background: var(--primary-orange);
            color: var(--white);
            transform: none;
        }

        .contact-detail-icon svg {
            width: 17px;
            height: 17px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
        }

        .contact-form {
            background: var(--white);
            padding: 42px;
            border: 1px solid #e4ebf4;
            border-radius: 28px;
            box-shadow: 0 20px 55px rgba(15, 53, 116, 0.10);
            position: relative;
            z-index: 2;
        }

        .contact-form::before {
            content: "SEND US A MESSAGE";
            display: inline-block;
            color: var(--primary-orange);
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 1.5px;
            margin-bottom: 8px;
        }

        .contact-form::after {
            content: "We’ll get back to you as soon as possible.";
            display: block;
            color: var(--text-gray);
            font-size: 13px;
            margin-bottom: 28px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
            margin-bottom: 0;
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-group label {
            display: block;
            font-size: 12px;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 8px;
        }

        .form-group label span {
            color: var(--primary-orange);
        }

        .form-control {
            width: 100%;
            padding: 13px 15px;
            border: 1px solid #dce4ef;
            border-radius: 11px;
            font-family: var(--font-family);
            font-size: 13px;
            outline: none;
            transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
            background: #fbfcfe;
        }

        .form-control:focus {
            border-color: var(--primary-blue);
            background: var(--white);
            box-shadow: 0 0 0 4px rgba(15, 53, 116, 0.08);
            transform: translateY(-1px);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 118px;
        }

        select.form-control {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f3574' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 14px;
            padding-right: 40px;
            color: var(--text-dark);
            cursor: pointer;
        }

        select.form-control:invalid {
            color: var(--text-light);
        }

        .contact-form .btn {
            padding: 13px 25px;
            margin-top: 2px;
            box-shadow: 0 10px 22px rgba(242, 101, 34, 0.20);
        }

        /* Footer */
        footer {
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 60px 0 20px;
            font-size: 13px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 30px;
            margin-bottom: 40px;
        }

        .footer-logo {
            display: inline-flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .footer-logo img {
            width: 170px;
            height: 58px;
            object-fit: contain;
            object-position: left center;
        }

        .footer-col p {
            color: #a4bde0;
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .footer-col h4 {
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--white);
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-links a {
            color: #a4bde0;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--white);
        }

        .footer-contact-item {
            display: flex;
            gap: 10px;
            margin-bottom: 12px;
            color: #a4bde0;
            align-items: flex-start;
        }

        .footer-contact-item svg {
            width: 16px;
            height: 16px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            color: #a4bde0;
            font-size: 12px;
            flex-wrap: wrap;
            gap: 10px;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero h1 { font-size: 40px; }
            .hero-card { right: 5%; }
            .products-grid { grid-template-columns: repeat(2, 1fr); }
            .values-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: repeat(3, 1fr); }
            .mission-vision .container { grid-template-columns: 1fr; }
            .mv-image { order: -1; max-width: 500px; margin: 0 auto; }
        }

        @media (max-width: 900px) {
            .about .container { grid-template-columns: 1fr; }
            .about-stats-grid { max-width: 500px; margin: 0 auto; width: 100%; }
        }

        @media (max-width: 768px) {
            .topbar { display: none; }

            .nav-toggle { display: flex; }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                max-width: 300px;
                height: 100vh;
                background-color: var(--white);
                flex-direction: column;
                align-items: flex-start;
                gap: 0;
                padding: 90px 30px 30px;
                box-shadow: -5px 0 20px rgba(0,0,0,0.1);
                transition: right 0.35s ease;
                z-index: 99;
                overflow-y: auto;
            }

            .nav-links.is-open { right: 0; }

            .nav-close {
                display: flex;
                align-items: center;
                justify-content: center;
                position: absolute;
                top: 20px;
                right: 20px;
                width: 36px;
                height: 36px;
                border-radius: 50%;
                border: 1px solid var(--border-color);
                background-color: var(--white);
                color: var(--primary-blue);
                font-size: 20px;
                line-height: 1;
                cursor: pointer;
            }

            .nav-close:hover {
                background-color: var(--primary-orange);
                border-color: var(--primary-orange);
                color: var(--white);
            }

            .nav-links a {
                width: 100%;
                padding: 14px 0;
                border-bottom: 1px solid var(--border-color);
            }

            .header-cta { display: none; }

            .hero::before { width: 100%; mask-image: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%); -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%); }
            .hero-content { max-width: 100%; text-align: center; }
            .hero p { margin: 0 auto 30px; }
            .hero-features { justify-content: center; flex-wrap: wrap; }
            .hero-card { display: none; }

            .contact .container { grid-template-columns: 1fr; }
            .contact-info { padding: 40px 30px; }
            .contact-info h2 { font-size: 36px; }
            .contact-form { padding: 34px 28px; }

            .footer-grid { grid-template-columns: 1fr 1fr; }
            .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
        }

        @media (max-width: 480px) {
            .hero h1 { font-size: 30px; }
            .hero-content { max-width: 100%; }
            .products-grid {  grid-template-columns: repeat(2, 1fr);
        gap: 12px; }
            .values-grid { grid-template-columns: 1fr; }
            .form-row { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .about-stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
            .about-stat-card { padding: 22px 12px; }
            .about-stat-card h3 { font-size: 24px; }
            .mv-image-card { right: 10px; padding: 18px 14px; width: 120px; }
            .section-title { font-size: 26px; }
            .contact-info { padding: 34px 22px; border-radius: 22px; }
            .contact-info h2 { font-size: 30px; }
            .contact-info > p { font-size: 14px; }
            .contact-form { padding: 25px 20px; border-radius: 22px; }
            .contact-form::after { margin-bottom: 22px; }
            .contact-detail-item { align-items: flex-start; }
            .contact-detail-icon { width: 38px; height: 38px; }
            .contact-trust { padding: 12px; }

            .contact-form { padding: 25px; }
            .logo img { width: 135px; height: 46px; }
            .footer-logo img { width: 150px; height: 52px; }
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.001ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.001ms !important;
                scroll-behavior: auto !important;
            }
        }
    