* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Orbitron', sans-serif;
    }

    body {
      background: #0a0a23;
      color: #ffffff;
      overflow-x: hidden;
      scroll-behavior: smooth;
      line-height: 1.6;
    }

    /* Particle Background */
    #particles {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
    }

 /* Navigation */
    nav {
      background: linear-gradient(90deg, rgba(0, 255, 163, 0.2), rgba(0, 204, 255, 0.2));
      backdrop-filter: blur(10px);
      padding: 1rem;
      position: fixed;
      width: 100%;
      z-index: 1000;
      box-shadow: 0 4px 10px rgba(0, 255, 163, 0.1);
    }

    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 1rem;
    }

    .logo {
      display: flex;
      align-items: center;
      font-size: 1.2rem;
      font-weight: 700;
      color: #00ffa3;
      text-transform: uppercase;
      animation: glow 2s ease-in-out infinite;
      text-decoration: none;
    }

    .logo img {
      height: 40px;
      margin-right: 0.5rem;
      filter: drop-shadow(0 0 10px #00ffa3);
      transition: transform 0.3s ease;
    }

    .logo img:hover {
      transform: rotate(360deg);
    }

    .nav-menu {
      list-style: none;
      display: flex;
      align-items: center;
    }

    .nav-menu li {
      margin-left: 2rem;
    }

    .nav-menu a {
      text-decoration: none;
      color: #00ffa3;
      font-size: 1rem;
      transition: all 0.3s ease;
    }

    .nav-menu a:hover, .nav-menu a:focus {
      color: #00ccff;
      transform: scale(1.1);
      text-shadow: 0 0 10px #00ccff;
    }
    
    /* Hero Section */
    #home {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background: linear-gradient(45deg, #0a0a23, #1b1b32);
      position: relative;
      overflow: hidden;
      padding: 1rem;
    }

    #home h1 {
      font-size: 2rem;
      text-transform: uppercase;
      background: linear-gradient(45deg, #00ffa3, #00ccff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: fadeInUp 1s ease-out;
    }

    .typing-text::after {
      content: '|';
      animation: blink 0.7s infinite;
    }

    #home p {
      font-size: 1rem;
      margin: 1rem 0;
      color: #b0b0b0;
      animation: fadeInUp 1.2s ease-out;
    }

    .cta-button {
      background: #00ffa3;
      color: #0a0a23;
      padding: 0.75rem 1.5rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1rem;
      transition: all 0.3s ease;
      box-shadow: 0 0 20px rgba(0, 255, 163, 0.5);
      animation: pulse 2s infinite;
      
    }

    .cta-button:hover {
      background: #00ccff;
      transform: scale(1.1);
      box-shadow: 0 0 30px rgba(0, 204, 255, 0.7);
    }

    /* About Section */
    #about {
      padding: 4rem 1rem;
      background: #1b1b32;
      position: relative;
      transform: translateZ(0);
    }

    .section-title {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 2rem;
      color: #00ffa3;
      text-transform: uppercase;
      animation: glow 2s ease-in-out infinite;
    }

    .about-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      align-items: center;
    }

    .about-image {
      flex: 1;
      min-width: 250px;
    }

    .about-image img {
      width: 100%;
      border-radius: 10px;
      filter: drop-shadow(0 0 15px rgba(0, 255, 163, 0.5));
      transition: transform 0.5s ease;
    }

    .about-image img:hover {
      transform: scale(1.05);
    }

    .about-text {
      flex: 1;
      min-width: 250px;
      color: #b0b0b0;
      transform: translateZ(10px);
    }

    .about-text p {
      font-size: 1rem;
      margin-bottom: 1rem;
      animation: fadeIn 1.2s ease-out;
    }

    /* Services Section */
    #services {
      padding: 4rem 1rem;
      background: #0a0a23;
      position: relative;
      transform: translateZ(0);
    }

    .services-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1rem;
    }

    .service-card {
      background: rgba(255, 255, 255, 0.05);
      padding: 1.5rem;
      border-radius: 10px;
      border: 1px solid rgba(0, 255, 163, 0.2);
      transition: all 0.5s ease;
      opacity: 0;
      transform: translateY(50px);
    }

    .service-card.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .service-card:nth-child(1) { transition-delay: 0.2s; }
    .service-card:nth-child(2) { transition-delay: 0.4s; }
    .service-card:nth-child(3) { transition-delay: 0.6s; }

    .service-card:hover {
      transform: translateY(-15px) scale(1.05);
      box-shadow: 0 0 25px rgba(0, 255, 163, 0.7);
      border-color: #00ccff;
    }

    .service-card h3 {
      font-size: 1.5rem;
      color: #00ffa3;
      margin-bottom: 1rem;
    }

    .service-card p {
      color: #b0b0b0;
      font-size: 0.9rem;
    }

    /* FAQ Section */
    #faq {
      padding: 4rem 1rem;
      background: #1b1b32;
      position: relative;
      transform: translateZ(0);
    }

    .faq-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .faq-item {
      background: rgba(255, 255, 255, 0.05);
      padding: 1rem;
      margin-bottom: 1rem;
      border-radius: 10px;
      border: 1px solid rgba(0, 255, 163, 0.2);
      transition: all 0.3s ease;
      opacity: 0;
      transform: translateX(-20px);
    }

    .faq-item.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .faq-item:nth-child(1) { transition-delay: 0.2s; }
    .faq-item:nth-child(2) { transition-delay: 0.4s; }
    .faq-item:nth-child(3) { transition-delay: 0.6s; }

    .faq-item:hover {
      transform: translateX(5px);
      box-shadow: 0 0 15px rgba(0, 255, 163, 0.5);
    }

    .faq-item h3 {
      font-size: 1.2rem;
      color: #00ffa3;
      margin-bottom: 0.5rem;
    }

    .faq-item p {
      color: #b0b0b0;
      font-size: 0.9rem;
    }

    /* Contact Section */
    #contact {
      padding: 4rem 1rem;
      background: linear-gradient(90deg, #04754c, #104654);
      position: relative;
      transform: translateZ(0);
    }

    .contact-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .contact-info, .contact-form {
      flex: 1;
      min-width: 250px;
    }

    .contact-info p {
      font-size: 1rem;
      margin-bottom: 1rem;
      color: #0a0a23;
      animation: fadeIn 1s ease-out;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 0.5rem;
      margin-bottom: 0.5rem;
      border: none;
      border-radius: 5px;
      background: rgba(255, 255, 255, 0.1);
      color: white;
      font-size: 0.9rem;
      transition: all 0.3s ease;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      outline: none;
      box-shadow: 0 0 10px rgba(0, 255, 163, 0.5);
      transform: scale(1.02);
    }

    .contact-form textarea {
      height: 120px;
      resize: vertical;
    }

    .contact-form button {
      background: #0a0a23;
      color: #00ffa3;
      padding: 0.75rem 1.5rem;
      border: none;
      border-radius: 50px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
      animation: pulse 2s infinite;
    }

    .contact-form button:hover {
      background: #00ccff;
      color: #0a0a23;
      transform: scale(1.1);
      box-shadow: 0 0 20px rgba(0, 204, 255, 0.7);
    }

    /* Footer */
    footer {
      background: #0a0a23;
      padding: 1.5rem;
      text-align: center;
      color: #b0b0b0;
      animation: fadeIn 1s ease-out;
    }

    /* Animations */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes slideInLeft {
      from { opacity: 0; transform: translateX(-20px); }
      to { opacity: 1; transform: translateX(0); }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes glow {
      0% { text-shadow: 0 0 5px #00ffa3, 0 0 10px #00ffa3; }
      50% { text-shadow: 0 0 20px #00ffa3, 0 0 30px #00ccff; }
      100% { text-shadow: 0 0 5px #00ffa3, 0 0 10px #00ffa3; }
    }

    @keyframes pulse {
      0% { box-shadow: 0 0 10px rgba(0, 255, 163, 0.5); }
      50% { box-shadow: 0 0 20px rgba(0, 255, 163, 0.8); }
      100% { box-shadow: 0 0 10px rgba(0, 255, 163, 0.5); }
    }

    @keyframes blink {
      0% { opacity: 1; }
      50% { opacity: 0; }
      100% { opacity: 1; }
    }

    /* Responsive Design */
    @media (min-width: 576px) {
      .logo { font-size: 1.5rem; }
      .logo img { height: 45px; }
      #home h1 { font-size: 2.5rem; }
      #home p { font-size: 1.2rem; }
      .cta-button { font-size: 1.1rem; padding: 0.85rem 1.75rem; }
      .section-title { font-size: 2.5rem; }
      .about-text p, .contact-info p { font-size: 1.1rem; }
      .service-card h3 { font-size: 1.6rem; }
      .service-card p, .faq-item p { font-size: 1rem; }
      .faq-item h3 { font-size: 1.3rem; }
      .contact-form input, .contact-form textarea { font-size: 1rem; }
      .contact-form button { font-size: 1.1rem; }
    }

    @media (min-width: 768px) {
      .logo { font-size: 1.8rem; }
      .logo img { height: 50px; }
      #home h1 { font-size: 3rem; }
      #home p { font-size: 1.3rem; }
      .cta-button { font-size: 1.2rem; padding: 1rem 2rem; }
      .section-title { font-size: 3rem; }
      .about-text p, .contact-info p { font-size: 1.2rem; }
      .service-card h3 { font-size: 1.8rem; }
      .service-card p, .faq-item p { font-size: 1.1rem; }
      .faq-item h3 { font-size: 1.4rem; }
      .contact-form input, .contact-form textarea { font-size: 1.1rem; padding: 0.75rem; }
      .contact-form button { font-size: 1.2rem; padding: 1rem 2rem; }
      .overlay a { font-size: 2rem; }
      .overlay .closebtn { font-size: 3rem; }
    }

    @media (min-width: 992px) {
      .logo { font-size: 2rem; }
      #home h1 { font-size: 4rem; }
      #home p { font-size: 1.5rem; }
      .cta-button { font-size: 1.2rem; }
      .about-container, .contact-container { gap: 2rem; }
      .service-card { padding: 2rem; }
      .faq-item { padding: 1.5rem; }
      .contact-form textarea { height: 150px; }
    }

    @media (min-width: 1200px) {
      .nav-container { padding: 0 2rem; }
      .about-image, .about-text, .contact-info, .contact-form { min-width: 300px; }
      .service-card { min-height: 250px; }
      .faq-item { min-height: 150px; }
    }