
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --neon-blue: #ff9a56;
            --neon-purple: #ffb347;
            --neon-pink: #ffd700;
            --dark-bg: #1a0f0a;
            --darker-bg: #0f0805;
            --card-glass: rgba(255, 255, 255, 0.05);
        }

        body {
            font-family: 'Inter', 'Segoe UI', sans-serif;
            background: var(--darker-bg);
            color: white;
            overflow-x: hidden;
        }

        /* Animated Particle Background */
        .particle-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            background: radial-gradient(ellipse at top, #4a2c1a 0%, var(--darker-bg) 50%);
        }

        .particle {
            position: absolute;
            background: var(--neon-blue);
            border-radius: 50%;
            opacity: 0.6;
            animation: float 20s infinite;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) translateX(0) scale(1);
                opacity: 0.6;
            }
            25% {
                transform: translateY(-100px) translateX(50px) scale(1.2);
                opacity: 0.8;
            }
            50% {
                transform: translateY(-50px) translateX(-50px) scale(0.8);
                opacity: 0.4;
            }
            75% {
                transform: translateY(-150px) translateX(100px) scale(1.1);
                opacity: 0.7;
            }
        }

        /* Glassmorphic Navigation */
        nav {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            padding: 1rem 2rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            animation: slideDown 0.8s ease-out;
        }

        @keyframes slideDown {
            from {
                transform: translateX(-50%) translateY(-100px);
                opacity: 0;
            }
            to {
                transform: translateX(-50%) translateY(0);
                opacity: 1;
            }
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: all 0.3s;
            padding: 0.5rem 1rem;
        }

        nav a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
            transition: all 0.3s;
            transform: translateX(-50%);
        }

        nav a:hover::before {
            width: 100%;
        }

        nav a:hover {
            color: var(--neon-blue);
            text-shadow: 0 0 10px var(--neon-blue);
        }

        .logo {
            font-weight: 800;
            font-size: 1.3rem;
            background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Hero Section with 3D Effect */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 8rem 2rem 4rem;
            perspective: 1000px;
        }

        .hero-content {
            max-width: 1200px;
            text-align: center;
            animation: heroEntry 1.2s ease-out;
            position: relative;
            z-index: 10;
        }

        .hero-content h2 {
    		color: orange;
    		margin: 0;
    		font-size: 1.8rem;
        }

        @keyframes heroEntry {
            from {
                opacity: 0;
                transform: translateY(50px) rotateX(10deg);
            }
            to {
                opacity: 1;
                transform: translateY(0) rotateX(0);
            }
        }

        .hero h1 {
            font-size: 4.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            background: linear-gradient(135deg, #fff 0%, var(--neon-blue) 50%, var(--neon-purple) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: textGlow 3s ease-in-out infinite;
        }

        @keyframes textGlow {
            0%, 100% {
                filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.5));
            }
            50% {
                filter: drop-shadow(0 0 40px rgba(184, 32, 255, 0.8));
            }
        }

        .hero p {
            font-size: 1.4rem;
            margin-bottom: 3rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Neon Buttons */
        .btn-neon {
            position: relative;
            padding: 1.2rem 3rem;
            background: transparent;
            border: 2px solid var(--neon-blue);
            color: var(--neon-blue);
            font-size: 1.1rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: 12px;
            cursor: pointer;
            overflow: hidden;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-neon::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
            transition: left 0.5s;
        }

        .btn-neon:hover::before {
            left: 100%;
        }

        .btn-neon:hover {
            background: var(--neon-blue);
            color: var(--darker-bg);
            box-shadow: 0 0 30px var(--neon-blue), 0 0 60px var(--neon-blue);
            transform: translateY(-3px);
        }

        .btn-neon-secondary {
            border-color: var(--neon-purple);
            color: var(--neon-purple);
        }

        .btn-neon-secondary::before {
            background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
        }

        .btn-neon-secondary:hover {
            background: var(--neon-purple);
            box-shadow: 0 0 30px var(--neon-purple), 0 0 60px var(--neon-purple);
        }

        /* Floating Orbs */
        .floating-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.6;
            animation: floatOrb 15s infinite ease-in-out;
            z-index: 1;
        }

        .orb-1 {
            width: 400px;
            height: 400px;
            background: #ff9a56;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 300px;
            height: 300px;
            background: #ffb347;
            bottom: 20%;
            right: 10%;
            animation-delay: 2s;
        }

        .orb-3 {
            width: 350px;
            height: 350px;
            background: #ffa500;
            top: 50%;
            left: 50%;
            animation-delay: 4s;
        }

        @keyframes floatOrb {
            0%, 100% {
                transform: translate(0, 0);
            }
            33% {
                transform: translate(100px, -50px);
            }
            66% {
                transform: translate(-50px, 100px);
            }
        }

        /* Services Section */
        section {
            padding: 6rem 2rem;
            position: relative;
            z-index: 10;
        }

        .section-title {
            text-align: center;
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 4rem;
            background: linear-gradient(135deg, white, var(--neon-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .services-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        /* Glassmorphic Cards with Hover Effect */
        .glass-card {
            position: relative;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 2.5rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            overflow: hidden;
        }

        .glass-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.5s;
        }

        .glass-card:hover::before {
            left: 100%;
        }

        .glass-card:hover {
            transform: translateY(-10px) scale(1.02);
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--neon-blue);
            box-shadow: 0 20px 60px rgba(0, 240, 255, 0.3);
        }

        .card-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 240, 255, 0.4);
            animation: iconFloat 3s ease-in-out infinite;
        }

        @keyframes iconFloat {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .glass-card h3 {
            font-size: 1.6rem;
            margin-bottom: 1rem;
            color: var(--neon-blue);
        }

        .glass-card p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
        }

        /* Stats Section with Counter Animation */
        .stats-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .stat-card {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            transition: all 0.3s;
        }

        .stat-card:hover {
            transform: scale(1.05);
            border-color: var(--neon-purple);
            box-shadow: 0 10px 40px rgba(184, 32, 255, 0.3);
        }

        .stat-number {
            font-size: 4rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* Contact Form */
        .contact-section {
            max-width: 800px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .form-container {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(30px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            padding: 3rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.8rem;
            color: var(--neon-blue);
            font-weight: 600;
            font-size: 1.1rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1.2rem;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: white;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--neon-blue);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .form-group select {
            cursor: pointer;
        }

        .form-group select option {
            background: var(--dark-bg);
            color: white;
        }

        .error {
            color: var(--neon-pink);
            font-size: 0.9rem;
            margin-top: 0.5rem;
            display: none;
        }

        .success-message {
            background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
            padding: 1.5rem;
            border-radius: 12px;
            margin-bottom: 2rem;
            display: none;
            animation: slideIn 0.5s ease-out;
            text-align: center;
            font-weight: 600;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Footer */
        footer {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 3rem 2rem;
            text-align: center;
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s;
        }

        .footer-links a:hover {
            color: var(--neon-blue);
            text-shadow: 0 0 10px var(--neon-blue);
        }

        .footer-bottom {
            color: rgba(255, 255, 255, 0.5);
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Loading Spinner */
        .spinner {
            display: none;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-top-color: white;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            margin-left: 10px;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav {
                top: 10px;
                padding: 0.8rem 1.5rem;
            }

            nav ul {
                gap: 1rem;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

  	    .hero h2 {
    		color: orange;
    		margin: 0;
    		font-size: 1.8rem;
  	    }

            .hero p {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .form-container {
                padding: 2rem;
            }

            .floating-orb {
                width: 200px !important;
                height: 200px !important;
            }
        }

        /* Scroll Reveal Animation */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

  /* Container with 3 flexible columns */
  .team-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
  }

  /* Each team member card */
  .team-member {
    flex: 1 1 calc(33.333% - 40px);
    max-width: 300px;
  }

  /* Circle wrapper with arc */
  .profile-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
  }

  /* Orange arc background */
  .arc {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(
      orange 0deg 180deg,
      transparent 180deg 360deg
    );
    border-radius: 50%;
    z-index: 1;
  }

  /* Circular image */
  .profile-wrapper img {
    position: absolute;
    top: 6%;
    left: 6%;
    width: 88%;
    height: 88%;
    border-radius: 50%;
    object-fit: cover;
    z-index: 2;
    border: 5px solid #111;
  }

  .team-member h3 {
    margin-top: 15px;
    font-size: 1rem;
  }

  /* Make sure 3 per row on all screen sizes */
  @media (max-width: 600px) {
    .team-member {
      flex: 1 1 calc(33.333% - 20px);
    }
  }

  .team-section {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
  }

  /* Decorative orange strip on left */
  .team-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 10px;
    background: orange;
  }

  /* Left image */
  .member-image {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
  }

  .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Right side text */
  .member-info {
    flex: 1;
    padding: 40px 60px;
  }

  .member-info h2 {
    color: orange;
    margin: 0;
    font-size: 1.8rem;
  }

  .member-info h4 {
    color: #ccc;
    font-weight: 600;
    margin: 5px 0 15px;
    letter-spacing: 1px;
  }

  .member-info p {
    color: #eee;
    line-height: 1.6;
    font-size: 0.95rem;
  }

  /* Responsive layout for smaller screens */
  @media (max-width: 768px) {
    .team-section {
      flex-direction: column;
      text-align: center;
    }

    .member-info {
      padding: 30px 20px;
    }

    .member-image {
      width: 100%;
    }
  }

