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

        :root {
            --primary: #0B1629;
            --accent: #AAFF45;
            --secondary: #6C63FF;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
            -webkit-font-smoothing: antialiased;
            line-height: 1.6;
            color: #333;
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: var(--accent);
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #8fd936;
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

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

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.7;
            }
        }

        .animate-fade-in {
            animation: fadeIn 1.5s ease-in;
        }

        .animate-slide-up {
            animation: slideUp 1s ease-out;
        }

        .animate-float {
            animation: float 3s ease-in-out infinite;
        }

        .animate-pulse {
            animation: pulse 2s ease-in-out infinite;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s ease;
            background: transparent;
        }

        header.scrolled {
            background: rgba(11, 22, 41, 0.95);
            backdrop-filter: blur(12px);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: white;
            text-decoration: none;
        }

        .logo-accent {
            color: var(--accent);
        }

        nav {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        nav a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav a:hover {
            color: var(--accent);
        }

        .btn {
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
            font-size: 1rem;
        }

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

        .btn-primary:hover {
            background: #8fd936;
            transform: scale(1.05);
        }

        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--accent);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        #hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: var(--primary);
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(11, 22, 41, 0.95), rgba(11, 22, 41, 0.85), rgba(11, 22, 41, 0.7));
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 1280px;
            margin: 0 auto;
            padding: 8rem 1.5rem 4rem;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(170, 255, 69, 0.1);
            border: 1px solid rgba(170, 255, 69, 0.3);
            border-radius: 999px;
            padding: 0.5rem 1rem;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(10px);
        }

        .hero-badge svg {
            width: 1rem;
            height: 1rem;
        }

        .hero-badge span {
            color: var(--accent);
            font-size: 0.875rem;
            font-weight: 500;
        }

        h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: bold;
            color: white;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero-subtitle {
            font-size: clamp(1.125rem, 2vw, 1.5rem);
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2rem;
            max-width: 800px;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 4rem;
        }

        .hero-trust {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .trust-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--accent);
        }

        .trust-text {
            color: white;
            font-weight: 600;
        }

        .trust-subtext {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.875rem;
        }

        /* Container */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 6rem 1.5rem;
        }

        .section-badge {
            display: inline-block;
            background: rgba(170, 255, 69, 0.1);
            color: var(--primary);
            padding: 0.5rem 1rem;
            border-radius: 999px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        /* About Section */
        #about {
            background: white;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 1rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: transform 0.7s;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .nep-badge {
            position: absolute;
            bottom: -1.5rem;
            right: -1.5rem;
            background: var(--secondary);
            color: white;
            padding: 1.5rem;
            border-radius: 0.75rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .nep-badge-title {
            font-size: 2.5rem;
            font-weight: bold;
        }

        .nep-badge-subtitle {
            font-size: 0.875rem;
            opacity: 0.9;
        }

        .info-cards {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 2rem;
        }

        .info-card {
            display: flex;
            align-items: start;
            gap: 1rem;
            padding: 1rem;
            background: #f9fafb;
            border: 1px solid #e5e7eb;
            border-radius: 0.75rem;
            transition: all 0.3s;
        }

        .info-card:hover {
            border-color: var(--accent);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transform: translateY(-4px);
        }

        .info-icon {
            width: 3rem;
            height: 3rem;
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .info-icon svg {
            width: 1.5rem;
            height: 1.5rem;
        }

        /* Services Section */
        #services {
            background: #f9fafb;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .service-card {
            padding: 2rem;
            border: 2px solid;
            border-radius: 1rem;
            transition: all 0.5s;
        }

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

        .service-icon {
            width: 4rem;
            height: 4rem;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: transform 0.3s;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1);
        }

        .service-icon svg {
            width: 2rem;
            height: 2rem;
        }

        .service-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .service-description {
            color: #666;
            line-height: 1.6;
        }

        .banner {
            position: relative;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .banner img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.7s;
        }

        .banner:hover img {
            transform: scale(1.05);
        }

        .banner-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(11, 22, 41, 0.8), rgba(11, 22, 41, 0.4));
            display: flex;
            align-items: center;
            padding: 3rem;
        }

        .banner-content h3 {
            font-size: 2rem;
            color: white;
            margin-bottom: 1rem;
        }

        .banner-content p {
            font-size: 1.125rem;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Gallery Section */
        #gallery {
            background: #f9fafb;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .gallery-item {
            position: relative;
            height: 320px;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.5s;
        }

        .gallery-item:hover {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

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

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

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(11, 22, 41, 0.9), rgba(11, 22, 41, 0.4), transparent);
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 0.9;
        }

        .gallery-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.5rem;
            color: white;
            transform: translateY(8px);
            transition: transform 0.3s;
        }

        .gallery-item:hover .gallery-content {
            transform: translateY(0);
        }

        .gallery-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
        }

        .gallery-icon {
            width: 2.5rem;
            height: 2.5rem;
            background: var(--accent);
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s;
        }

        .gallery-item:hover .gallery-icon {
            transform: scale(1.1);
        }

        .gallery-icon svg {
            width: 1.25rem;
            height: 1.25rem;
        }

        .gallery-title {
            font-size: 1.25rem;
            font-weight: bold;
        }

        .gallery-description {
            font-size: 0.875rem;
            opacity: 0.9;
        }

        /* NEP Section */
        #nep {
            background: var(--primary);
            color: white;
            position: relative;
            overflow: hidden;
        }

        #nep::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, var(--accent) 1px, transparent 1px);
            background-size: 40px 40px;
            opacity: 0.05;
        }

        .nep-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            position: relative;
        }

        .nep-benefits {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .benefit-card {
            display: flex;
            align-items: start;
            gap: 1rem;
        }

        .benefit-icon {
            width: 3rem;
            height: 3rem;
            background: var(--accent);
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .benefit-icon svg {
            width: 1.5rem;
            height: 1.5rem;
        }

        .benefit-title {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .benefit-description {
            color: rgba(255, 255, 255, 0.7);
        }

        .nep-coverage {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 1rem;
            padding: 2rem;
        }

        .coverage-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .coverage-icon {
            width: 3rem;
            height: 3rem;
            background: var(--secondary);
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .coverage-icon svg {
            width: 1.5rem;
            height: 1.5rem;
        }

        .coverage-title {
            font-size: 1.5rem;
            font-weight: bold;
        }

        .coverage-list {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-bottom: 2rem;
        }

        .coverage-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 0.5rem;
            padding: 1rem;
            transition: all 0.3s;
        }

        .coverage-item:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .check-icon {
            color: var(--accent);
            flex-shrink: 0;
        }

        .check-icon svg {
            width: 1.25rem;
            height: 1.25rem;
        }

        .nep-image {
            border-radius: 0.75rem;
            overflow: hidden;
        }

        .nep-image img {
            width: 100%;
            height: 192px;
            object-fit: cover;
            transition: transform 0.7s;
        }

        .nep-image:hover img {
            transform: scale(1.05);
        }

        /* Founders Section */
        #founders {
            background: white;
        }

        .founders-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto 4rem;
        }

        .founder-card {
            background: #f9fafb;
            border: 2px solid #e5e7eb;
            border-radius: 1rem;
            padding: 2rem;
            text-align: center;
            transition: all 0.5s;
        }

        .founder-card:hover {
            border-color: var(--accent);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transform: translateY(-8px);
        }

        .founder-icon-circle {
            width: 6rem;
            height: 6rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            transition: transform 0.3s;
        }

        .founder-card:hover .founder-icon-circle {
            transform: scale(1.1);
        }

        .founder-icon-circle svg {
            width: 3rem;
            height: 3rem;
        }

        .founder-name {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .founder-title {
            color: #666;
            font-weight: 500;
        }

        .mission-statement {
            background: var(--primary);
            color: white;
            border-radius: 1rem;
            padding: 3rem;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .mission-statement p {
            font-size: 1.5rem;
            line-height: 1.6;
            font-style: italic;
        }

        /* Contact Section */
        #contact {
            background: white;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .contact-form {
            background: #f9fafb;
            border: 1px solid #e5e7eb;
            border-radius: 1rem;
            padding: 2rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        label {
            display: block;
            color: var(--primary);
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        input,
        textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #d1d5db;
            border-radius: 0.5rem;
            font-size: 1rem;
            transition: all 0.3s;
        }

        input:focus,
        textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(170, 255, 69, 0.1);
        }

        textarea {
            resize: none;
            font-family: inherit;
        }

        .contact-cards {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-card {
            display: flex;
            align-items: start;
            gap: 1rem;
            padding: 1.5rem;
            border: 1px solid;
            border-radius: 0.75rem;
            transition: all 0.3s;
        }

        .contact-card:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transform: translateY(-4px);
        }

        .contact-icon {
            width: 3rem;
            height: 3rem;
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-icon svg {
            width: 1.5rem;
            height: 1.5rem;
        }

        .contact-title {
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 0.25rem;
        }

        .contact-details {
            color: #666;
        }

        .contact-meta {
            font-size: 0.875rem;
            color: #999;
            margin-top: 0.25rem;
        }

        .cta-box {
            background: var(--primary);
            color: white;
            border-radius: 1rem;
            padding: 2rem;
            margin-top: 2rem;
        }

        .cta-box h4 {
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
        }

        .cta-box p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1.5rem;
        }

        /* Footer */
        footer {
            background: var(--primary);
            color: white;
            padding: 3rem 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-brand {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .footer-description {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 1rem;
            max-width: 400px;
        }

        .footer-tagline {
            color: var(--accent);
            font-weight: 500;
            font-style: italic;
        }

        .footer-contacts {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-contact-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: rgba(255, 255, 255, 0.7);
            transition: color 0.3s;
        }

        .footer-contact-item:hover {
            color: var(--accent);
        }

        .footer-contact-item svg {
            width: 1.25rem;
            height: 1.25rem;
            color: var(--accent);
        }

        .footer-copyright {
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.875rem;
            padding-top: 2rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            nav.mobile-open {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background: var(--primary);
                padding: 2rem;
                gap: 1rem;
            }

            .about-grid,
            .nep-grid,
            .contact-grid,
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .services-grid,
            .gallery-grid,
            .founders-grid {
                grid-template-columns: 1fr;
            }

            h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }
        }

        /* Utility Classes */
        .text-center {
            text-align: center;
        }

        .hidden {
            display: none;
        }

        /* Intersection Observer Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 1s, transform 1s;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 1s, transform 1s;
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 1s, transform 1s;
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }
    </style>
