
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            background-color: #0a1628;
            color: #ffffff;
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 10px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgb(29 44 79);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .logo-wrapper
        {
            width: 200px;
        }

        .logo {
            width: 100%;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 14px;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: opacity 0.3s;
        }

        .nav-links a:hover {
            opacity: 0.6;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20px;
            position: relative;
            overflow: hidden;
        }

        .video-background {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            z-index: 0;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(10, 22, 40, 0.5);
            z-index: 1;
            pointer-events: none;
        }

        .hero-content {
            position: absolute;
            z-index: 2;
            animation: fadeInUp 1.2s ease-out;
        }

        .hero h1 {
            font-size: 72px;
            font-weight: 200;
            letter-spacing: 4px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .tagline {
            font-size: 20px;
            font-weight: 300;
            letter-spacing: 3px;
            opacity: 0.8;
            margin-bottom: 50px;
        }

        .cta-button {
            padding: 18px 50px;
            background: transparent;
            border: 1px solid #ffffff;
            color: #ffffff;
            font-size: 14px;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
        }

        .cta-button:hover {
            background: #ffffff;
            color: #0a0a0a;
        }

        /* About Section */
        body {
      background-color: #061e30;
      color: white;
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 40px;
    }

    h1 {
      font-size: 48px;
      margin-bottom: 20px;
    }

    .about-text {
      max-width: 900px;
      margin-bottom: 40px;
      line-height: 1.6;
    }

    .team {
      display: flex;
      justify-content: center;
      flex-wrap: nowrap;
      gap: 40px;
    }

    .member {
      text-align: center;
      flex: 1;
      max-width: 220px;
    }

    .member img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      border-radius: 15px;
    }

    .member h3 {
        color: yellow;
      margin: 10px 0 5px;
      font-size: 20px;
    }

    .member p {
      margin: 0;
      font-size: 15px;
      color: #ccc;
    }

        /* Services Section */
        .services {
            padding: 120px 60px;
            background: #0a1628;
        }

        .services h2 {
            font-size: 48px;
            font-weight: 200;
            letter-spacing: 3px;
            text-align: center;
            margin-bottom: 80px;
            text-transform: uppercase;
        }

        .services h2 .highlight {
            color: #f39c12;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .service-card {
            padding: 40px 30px;
            background: #0d1d35;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
            cursor: pointer;
            text-align: center;
            border-radius: 8px;
        }

        .service-card:hover {
            border-color: #f39c12;
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(243, 156, 18, 0.2);
        }

        .service-icon {
            font-size: 48px;
            margin-bottom: 20px;
            color: #f39c12;
        }

        .service-card h3 {
            font-size: 18px;
            font-weight: 400;
            letter-spacing: 1px;
            margin-bottom: 15px;
            text-transform: uppercase;
            min-height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-card p {
            font-size: 16px;
            line-height: 1.6;
            opacity: 0.8;
            font-weight: 300;
            display: none;
        }

        /* Contact Section */
        .contact {
            padding: 120px 60px;
            background: #0d1d35;
            text-align: center;
        }

        .contact h2 {
            font-size: 48px;
            font-weight: 200;
            letter-spacing: 3px;
            margin-bottom: 30px;
            text-transform: uppercase;
        }

        .contact p {
            font-size: 18px;
            opacity: 0.8;
            margin-bottom: 50px;
            font-weight: 300;
        }

        .contact-email {
            font-size: 24px;
            letter-spacing: 2px;
            color: #ffffff;
            text-decoration: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
            padding-bottom: 5px;
            transition: border-color 0.3s;
        }

        .contact-email:hover {
            border-color: #ffffff;
        }

        /* Footer */
        footer {
            padding: 40px 60px;
            background: #0a1628;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            opacity: 0.6;
            letter-spacing: 1px;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 968px) {
            nav {
                padding: 20px 30px;
            }

            .nav-links {
                gap: 20px;
            }

            .hero h1 {
                font-size: 48px;
            }

            .tagline {
                font-size: 16px;
            }

            .about {
                grid-template-columns: 1fr;
                padding: 80px 30px;
                gap: 40px;
            }

            .services {
                padding: 80px 30px;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .contact {
                padding: 80px 30px;
            }

            footer {
                padding: 30px;
            }
        }

        @media (max-width: 640px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
        }