
        :root {
            --primary-blue: #0066FF;
            --secondary-orange: #FF6B35;
            --dark-blue: #003D99;
            --light-blue: #E6F0FF;
            --text-dark: #1A202C;
            --text-light: #718096;
            --white: #FFFFFF;
            --gray-bg: #F7FAFC;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            font-size: 14px;
            line-height: 1.6;
            overflow-x: hidden;
            padding-top: 46px;
            /* For fixed navbar */
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }

        h1 {
            font-size: 2rem;
        }

        h2 {
            font-size: 1.75rem;
        }

        h3 {
            font-size: 1.25rem;
        }

        h4 {
            font-size: 1.1rem;
        }

        h5 {
            font-size: 1rem;
        }

        p {
            font-size: 0.9rem;
        }

        @media (min-width: 768px) {
            body {
                font-size: 15px;
            }

            h1 {
                font-size: 2.75rem;
            }

            h2 {
                font-size: 2.25rem;
            }

            h3 {
                font-size: 1.5rem;
            }

            h4 {
                font-size: 1.2rem;
            }

            p {
                font-size: 1rem;
            }
        }

        /* Loading Spinner */
        .page-loader {
            position: fixed;
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }

        .loader-content {
            text-align: center;
            color: white;
        }

        .spinner-logo {
            width: 80px;
            height: 80px;
            border: 4px solid rgba(255, 255, 255, 0.3);
            border-top-color: var(--secondary-orange);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }

        .progress-bar {
            width: 200px;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 2px;
            margin-top: 15px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: var(--secondary-orange);
            width: 0;
            animation: progress 2s ease-in-out forwards;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        @keyframes progress {
            to {
                width: 100%;
            }
        }

        /* Skip Link */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--primary-blue);
            color: white;
            padding: 8px;
            z-index: 100;
            text-decoration: none;
        }

        .skip-link:focus {
            top: 0;
        }

        /* Navigation */
        .main-navbar {
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
            padding: 0.5rem 0;
        }

        .main-navbar.scrolled {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }

        .navbar-brand img {
            max-width: 150px;
            height: auto;
        }

        .nav-link {
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.9rem;
            padding: 0.5rem 0.8rem;
            transition: color 0.3s;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--primary-blue);
        }

        .btn-nav-cta {
            background: var(--secondary-orange);
            border: none;
            color: white;
            font-size: 0.85rem;
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-nav-cta:hover {
            background: #E55A2B;
            transform: translateY(-2px);
        }

        /* Hero Section */
        .white-hero {
            background: white;
            padding: 40px 0 10px;
            min-height: auto;
        }

        .hero-badge {
            display: inline-block;
            background: var(--light-blue);
            color: var(--primary-blue);
            padding: 20px 20px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 15px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.8;
            }
        }

        .text-gradient {
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.7;
        }

        /* Sections */
        section {
            padding: 60px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title {
            margin-bottom: 15px;
        }

        .section-subtitle {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* Mission Vision Cards */
        .mv-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        @media (min-width: 768px) {
            .mv-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .mv-card {
            background: white;
            border-radius: 15px;
            padding: 25px 20px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
        }

        .mv-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 102, 255, 0.15);
        }

        .mv-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            margin-bottom: 15px;
        }

        .mv-card h3 {
            font-size: 1.1rem;
            margin-bottom: 12px;
        }

        .mv-card p {
            font-size: 0.85rem;
            color: var(--text-light);
            margin: 0;
        }

        /* What We Do Section */
        .what-we-do-section {
            background: var(--gray-bg);
        }

        .service-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        @media (min-width: 768px) {
            .service-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .service-card {
            background: white;
            border-radius: 15px;
            padding: 25px 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }

        .service-icon {
            width: 50px;
            height: 50px;
            background: var(--light-blue);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--primary-blue);
            margin-bottom: 15px;
        }

        .service-card h4 {
            font-size: 1rem;
            margin-bottom: 10px;
        }

        .service-card p {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-bottom: 15px;
        }

        .service-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .service-features li {
            font-size: 0.8rem;
            color: var(--text-dark);
            padding-left: 20px;
            position: relative;
            margin-bottom: 8px;
        }

        .service-features li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--secondary-orange);
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* Who We Serve */
        .serve-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        @media (min-width: 576px) {
            .serve-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (min-width: 992px) {
            .serve-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .serve-item {
            background: white;
            border-radius: 10px;
            padding: 20px 15px;
            text-align: center;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
        }

        .serve-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .serve-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            color: white;
            font-size: 1.2rem;
        }

        .serve-item h5 {
            font-size: 0.85rem;
            margin: 0;
        }

        /* Values Section */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        @media (min-width: 576px) {
            .values-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (min-width: 992px) {
            .values-grid {
                grid-template-columns: repeat(5, 1fr);
            }
        }

        .value-item {
            background: var(--gray-bg);
            border-radius: 10px;
            padding: 20px 15px;
            text-align: center;
            transition: all 0.3s;
        }

        .value-item:hover {
            background: var(--light-blue);
            transform: scale(1.05);
        }

        .value-icon {
            width: 50px;
            height: 50px;
            background: var(--secondary-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            color: white;
            font-size: 1.2rem;
        }

        .value-item h5 {
            font-size: 0.85rem;
            margin: 0;
        }

        /* Impact Stats */
        .stats-grid-section {
            background: var(--light-blue);
            padding: 40px 0;
        }

        .stat-grid-item {
            text-align: center;
            padding: 20px 10px;
        }

        .stat-grid-number {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-blue);
            margin-bottom: 5px;
        }

        .stat-grid-label {
            font-size: 0.8rem;
            color: var(--text-light);
        }

        /* Why Choose */
        .why-section-v2 {
            background: white;
        }

        .why-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        @media (min-width: 992px) {
            .why-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .why-card-v2 {
            background: var(--gray-bg);
            border-radius: 15px;
            padding: 25px 20px;
            transition: all 0.3s;
        }

        .why-card-v2:hover {
            background: var(--light-blue);
            transform: translateY(-5px);
        }

        .why-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            color: white;
            font-size: 1.2rem;
        }

        .why-title {
            font-size: 1rem;
            margin-bottom: 12px;
        }

        .why-card-v2 p {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-bottom: 15px;
        }

        .why-details {
            margin-top: 15px;
        }

        .why-detail-item {
            display: flex;
            gap: 10px;
            margin-bottom: 8px;
            align-items: flex-start;
        }

        .why-item-indicator {
            width: 6px;
            height: 6px;
            background: var(--secondary-orange);
            border-radius: 50%;
            margin-top: 6px;
            flex-shrink: 0;
        }

        .why-item-text {
            font-size: 0.8rem;
            color: var(--text-dark);
            margin: 0;
        }

        /* CTA Banner */
        .cta-banner {
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            padding: 60px 0;
            text-align: center;
            color: white;
        }

        .cta-content h2 {
            color: white;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .cta-content p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 25px;
            font-size: 0.9rem;
        }

        @media (min-width: 768px) {
            .cta-content h2 {
                font-size: 2rem;
            }

            .cta-content p {
                font-size: 1rem;
            }
        }

        .btn-light {
            background: white;
            color: var(--primary-blue);
            border: none;
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s;
            margin: 5px;
            text-decoration: none;
            display: inline-block;
        }

        .btn-light:hover {
            background: var(--secondary-orange);
            color: white;
            transform: translateY(-2px);
        }

        .btn-outline-light {
            border: 2px solid white;
            color: white;
            background: transparent;
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s;
            margin: 5px;
            text-decoration: none;
            display: inline-block;
        }

        .btn-outline-light:hover {
            background: white;
            color: var(--primary-blue);
        }

        /* Commitment Section */
        .commitment-section {
            background: var(--gray-bg);
        }

        .commitment-card {
            background: white;
            border-radius: 15px;
            padding: 30px 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .commitment-card p {
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.8;
            margin: 0;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 45px;
            height: 45px;
            background: var(--secondary-orange);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 1000;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--primary-blue);
            transform: translateY(-5px);
        }
    </style>
    <?php
    }
    ?>
</head>