
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            
            /* overflow-x: hidden; */
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #ffffff;
            background: #000000;
            overflow-x: hidden;
        }


        /* Hero Section */
        .hero {
            margin-top: 80px;
            min-height: 80vh;
            background: linear-gradient(135deg, #0A2540 0%, #000000 100%);
            display: flex;
            align-items: center;
            padding: 4rem 5%;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
        }

        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(to right, rgba(0, 102, 255, 0.05) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(0, 102, 255, 0.05) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: grid-move 20s linear infinite;
        }

        @keyframes grid-move {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text {
            position: relative;
        }

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

        .hero-badge-icon {
            width: 1.5rem;
            height: 1.5rem;
            background: linear-gradient(135deg, #0066FF, #00D4FF);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: pulse-ring 2s infinite;
        }

        @keyframes pulse-ring {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        .hero-badge span {
            color: #00D4FF;
            font-weight: 600;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .hero-content h1 {
            font-size: 4.5rem;
            font-weight: 900;
            color: white;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .hero-gradient-text {
            background: linear-gradient(135deg, #0066FF 0%, #00D4FF 50%, #0066FF 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradient-shift 3s ease infinite;
        }

        @keyframes gradient-shift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .hero-content p {
            font-size: 1.25rem;
            color: #B0B8C1;
            line-height: 1.8;
            margin-bottom: 2.5rem;
        }

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

        .stat-item {
            position: relative;
        }

        .stat-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, #0066FF, transparent);
            border-radius: 9999px;
        }

        .stat-item .number {
            font-size: 2.5rem;
            font-weight: 900;
            color: white;
            line-height: 1;
            margin-bottom: 0.5rem;
            padding-left: 1rem;
        }

        .stat-item .label {
            font-size: 0.875rem;
            color: #B0B8C1;
            padding-left: 1rem;
        }

        .hero-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .visual-container {
            position: relative;
            width: 100%;
            max-width: 500px;
        }

        .visual-circle {
            position: absolute;
            border-radius: 50%;
            border: 2px solid rgba(0, 102, 255, 0.2);
        }

        .visual-circle:nth-child(1) {
            width: 400px;
            height: 400px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: rotate 20s linear infinite;
        }

        .visual-circle:nth-child(2) {
            width: 320px;
            height: 320px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: rotate 15s linear infinite reverse;
        }

        .visual-circle:nth-child(3) {
            width: 240px;
            height: 240px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: rotate 10s linear infinite;
        }

        @keyframes rotate {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .visual-center {
            position: relative;
            z-index: 10;
            width: 180px;
            height: 180px;
            margin: 110px auto;
            background: linear-gradient(135deg, #0066FF, #0052CC);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            box-shadow: 
                0 0 60px rgba(0, 102, 255, 0.4),
                inset 0 0 40px rgba(255, 255, 255, 0.1);
            animation: float-center 6s ease-in-out infinite;
        }

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

        .visual-dot {
            position: absolute;
            width: 12px;
            height: 12px;
            background: linear-gradient(135deg, #00D4FF, #0066FF);
            border-radius: 50%;
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
        }

        .visual-dot:nth-child(4) { top: 10%; left: 50%; animation: float-dot 3s ease-in-out infinite; }
        .visual-dot:nth-child(5) { top: 30%; right: 10%; animation: float-dot 4s ease-in-out infinite 0.5s; }
        .visual-dot:nth-child(6) { bottom: 30%; left: 10%; animation: float-dot 3.5s ease-in-out infinite 1s; }
        .visual-dot:nth-child(7) { bottom: 10%; right: 30%; animation: float-dot 4.5s ease-in-out infinite 1.5s; }

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

        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
            }

            .hero-content h1 {
                font-size: 3rem;
            }

            .hero-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .visual-container {
                margin-top: 3rem;
            }
        }

        /* Mission Section */
        .mission {
            padding: 6rem 5%;
            background: white;
        }

        .mission-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .mission-text h2 {
            font-size: 2.5rem;
            color: #0A2540;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .mission-text p {
            font-size: 1.125rem;
            color: #425466;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .mission-box {
            background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
            border-radius: 1.5rem;
            padding: 3rem;
            text-align: center;
            box-shadow: 0 20px 50px rgba(0, 102, 255, 0.3);
        }

        .mission-box .icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
        }

        .mission-box h3 {
            font-size: 2rem;
            color: white;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .mission-box p {
            font-size: 1.125rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
        }

        /* Values Section */
        .values {
            padding: 6rem 5%;
            background: #000000;
            position: relative;
        }

        .values::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.5), transparent);
        }

        .values h2 {
            font-size: 3rem;
            font-weight: 700;
            color: white;
            text-align: center;
            margin-bottom: 4rem;
        }

        .values-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        .value-card {
            text-align: center;
            padding: 2rem;
            border-radius: 1.5rem;
            border: 1px solid rgba(0, 123, 255, 0.2);
            background: linear-gradient(to bottom, rgba(0, 123, 255, 0.1), transparent);
            transition: all 0.3s;
        }

        .value-card:hover {
            border-color: rgba(0, 123, 255, 0.5);
        }

        .value-card .icon {
            font-size: 3.75rem;
            margin-bottom: 1.5rem;
        }

        .value-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
        }

        .value-card p {
            color: #B0B8C1;
            line-height: 1.7;
        }

        /* Story Section */
        .story {
            padding: 6rem 5%;
            background: white;
        }

        .story-content {
            max-width: 1000px;
            margin: 0 auto;
        }

        .story-content h2 {
            font-size: 2.5rem;
            color: #0A2540;
            margin-bottom: 2rem;
            text-align: center;
            font-weight: 700;
        }

        .story-content p {
            font-size: 1.125rem;
            color: #425466;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .story-content p.highlight {
            font-weight: 600;
            color: #0A2540;
        }

        /* Team Section */
        .team {
            padding: 6rem 5%;
            background: #000000;
            position: relative;
        }

        .team::before {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -10%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(0, 123, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .team-content {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .team h2 {
            font-size: 3rem;
            font-weight: 700;
            color: white;
            text-align: center;
            margin-bottom: 2rem;
        }

        .team p {
            font-size: 1.25rem;
            color: #B0B8C1;
            text-align: center;
            max-width: 900px;
            margin: 0 auto 4rem;
            line-height: 1.7;
        }

        .team-quote {
            text-align: center;
            padding: 4rem 0;
        }

        .team-quote p {
            font-size: 1.5rem;
            color: #B0B8C1;
            font-style: italic;
            margin-bottom: 1rem;
        }

        .team-quote .author {
            color: #0066FF;
            font-weight: 600;
            font-style: normal;
        }

        /* CTA Section */
        .cta {
            padding: 6rem 5%;
            background: white;
        }

        .cta-content {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .cta h2 {
            font-size: 3rem;
            color: #0A2540;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .cta p {
            font-size: 1.25rem;
            color: #425466;
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .primary-btn {
            background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 4px 25px rgba(0, 102, 255, 0.4);
            border: none;
            font-size: 1rem;
            cursor: pointer;
        }

        .primary-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 35px rgba(0, 102, 255, 0.6);
        }

        .secondary-btn {
            background: transparent;
            color: #0066FF;
            padding: 1rem 2.5rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid #0066FF;
            font-size: 1rem;
            cursor: pointer;
        }

        .secondary-btn:hover {
            background: #EFF6FF;
            transform: translateY(-3px);
        }

        /* Modal Styles */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(8px);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }

        .modal-overlay.active {
            opacity: 1;
            pointer-events: all;
        }

        .modal {
            background: white;
            border-radius: 1.5rem;
            padding: 2rem;
            max-width: 500px;
            width: 100%;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            position: relative;
            transform: scale(0.9);
            transition: transform 0.3s;
        }

        .modal-overlay.active .modal {
            transform: scale(1);
        }

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            color: #9CA3AF;
            cursor: pointer;
            font-size: 1.5rem;
            width: 2rem;
            height: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s;
        }

        .modal-close:hover {
            background: #F3F4F6;
            color: #4B5563;
        }

        .modal-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .modal-icon {
            width: 4rem;
            height: 4rem;
            background: linear-gradient(135deg, #0066FF, #0052CC);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 1rem;
        }

        .modal-header h3 {
            font-size: 2rem;
            color: #0A2540;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .modal-header p {
            color: #6B7280;
            font-size: 1rem;
        }

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

        .form-group label {
            display: block;
            font-size: 0.875rem;
            font-weight: 600;
            color: #374151;
            margin-bottom: 0.5rem;
        }

        .form-group input {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 2px solid #E5E7EB;
            border-radius: 0.75rem;
            font-size: 1rem;
            transition: all 0.3s;
            color: #1F2937;
        }

        .form-group input:focus {
            outline: none;
            border-color: #0066FF;
            box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
        }

        .modal-submit {
            width: 100%;
            background: linear-gradient(135deg, #0066FF, #0052CC);
            color: white;
            padding: 1rem;
            border: none;
            border-radius: 0.75rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .modal-submit:hover {
            box-shadow: 0 10px 25px rgba(0, 102, 255, 0.5);
            transform: translateY(-2px);
        }

        .modal-submit:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .modal-footer {
            text-align: center;
            margin-top: 1rem;
            font-size: 0.75rem;
            color: #9CA3AF;
        }

        /* Footer */
        footer {
            background: #000000;
            color: #B0B8C1;
            padding: 3rem 5%;
            text-align: center;
            border-top: 1px solid rgba(0, 102, 255, 0.2);
        }

        footer p {
            opacity: 0.8;
        }

        @media (max-width: 768px) {
            .mission-content {
                grid-template-columns: 1fr;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }
        }
 