    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: #020b1c;
      color: white;
      overflow-x: hidden;
    }

    .bg-glow {
      position: fixed;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(30,144,255,0.22), transparent 70%);
      top: -200px;
      right: -150px;
      z-index: -1;
    }

    .bg-glow2 {
      position: fixed;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(0,140,255,0.20), transparent 70%);
      bottom: -150px;
      left: -100px;
      z-index: -1;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(0,0,0,0.75);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: auto;
      padding: 16px 20px;
    }

    .logo {
      background: linear-gradient(90deg, #00aaff, #ff00cc, #00aaff);
      background-size: 300% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: neonFlow 5s linear infinite;
      display: flex;
      align-items: center;
      gap: 14px;
      font-family: 'Orbitron', sans-serif;
      font-size: 24px;
      font-weight: 800;
    }

    .logo img {
      width: 55px;
      height: 55px;
      object-fit: contain;
      border-radius: 10px;
      background: rgba(255,255,255,0.05);
      padding: 4px;
    }

    nav ul {
      display: flex;
      gap: 24px;
      list-style: none;
    }

    nav a {
      text-decoration: none;
      color: white;
      font-weight: 500;
      transition: 0.3s;
    }

    nav a:hover {
      color: #1e90ff;
    }

    .hero {
      min-height: 92vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 80px 20px;
      background: linear-gradient(rgba(0,10,25,0.82), rgba(0,0,0,0.88)),
      url('https://images.unsplash.com/photo-1542751371-adc38448a05e?q=80&w=1600&auto=format&fit=crop') center/cover;
    }

    .hero-content {
      max-width: 850px;
    }

    .location-highlight {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 22px;
      margin-bottom: 24px;
      border-radius: 999px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(0,170,255,0.35);
      backdrop-filter: blur(10px);
      font-weight: 600;
      font-size: 15px;
      letter-spacing: 0.5px;
      box-shadow: 0 0 20px rgba(0,170,255,0.25);
      animation: pulseGlow 2s infinite ease-in-out;
    }

    @keyframes pulseGlow {
      0% {
        box-shadow: 0 0 12px rgba(0,170,255,0.2);
      }
      50% {
        box-shadow: 0 0 30px rgba(255,0,204,0.45);
      }
      100% {
        box-shadow: 0 0 12px rgba(0,170,255,0.2);
      }
    }

    @keyframes neonFlow {
      0% {
        background-position: 100% center;
      }
      100% {
        background-position: -100% center;
      }
    }

    .hero h1,
    .section-title h2 {
      background: linear-gradient(90deg, #00aaff, #00e1ff, #ff00cc, #00aaff);
      background-size: 300% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: neonFlow 3s linear infinite;
      font-family: 'Orbitron', sans-serif;
    }

    .hero h1 {
      font-size: 64px;
      margin-bottom: 20px;
    }

    .hero p {
      font-size: 20px;
      line-height: 1.8;
      color: #d4d4d4;
      margin-bottom: 35px;
    }

    .btn-group {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 18px;
    }

    .btn {
      padding: 15px 28px;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 600;
      transition: 0.3s ease;
      display: inline-block;
    }

    .btn-primary {
      background: #1e90ff;
      color: black;
    }

    .btn-primary:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 25px rgba(30,144,255,0.5);
    }

    .btn-secondary {
      border: 1px solid #1e90ff;
      color: white;
    }

    .btn-secondary:hover {
      background: #1e90ff;
      color: black;
    }

    section {
      padding: 90px 20px;
    }

    .container {
      max-width: 1200px;
      margin: auto;
    }

    .section-title {
      text-align: center;
      margin-bottom: 55px;
    }

    .section-title h2 {
      font-size: 42px;
      margin-bottom: 12px;
    }

    .section-title p {
      color: #b7b7b7;
    }

    .cards,
    .banner-grid,
    .reviews,
    .contact-grid {
      display: grid;
      gap: 24px;
    }

    .cards {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .banner-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .reviews {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .contact-grid {
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 40px;
    }

    .card,
    .review-box,
    .contact-box {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 28px;
      border-radius: 18px;
      backdrop-filter: blur(10px);
      transition: 0.3s;
    }

    .card:hover {
      transform: translateY(-6px);
      border-color: #1e90ff;
      box-shadow: 0 10px 35px rgba(30,144,255,0.25);
    }

    .card h3,
    .contact-box h3,
    .review-box h4 {
      color: #1e90ff;
    }

    .banner-grid img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      border-radius: 18px;
    }

    form input,
    form textarea {
      width: 100%;
      padding: 14px;
      margin-bottom: 16px;
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,0.1);
      background: rgba(255,255,255,0.05);
      color: white;
    }

    form textarea {
      min-height: 120px;
    }

    form button {
      border: none;
      cursor: pointer;
      width: 100%;
    }

    footer {
      background: #02040d;
      padding: 35px 20px;
      text-align: center;
      border-top: 1px solid rgba(255,255,255,0.08);
    }

    .socials {
      display: flex;
      gap: 16px;
      margin-top: 18px;
      flex-wrap: wrap;
    }

    .socials a {
      text-decoration: none;
      color: white;
      padding: 10px 16px;
      border-radius: 10px;
      background: rgba(255,255,255,0.08);
    }

    .whatsapp-float {
      position: fixed;
      bottom: 24px;
      right: 24px;
      width: 65px;
      height: 65px;
      border-radius: 50%;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 32px;
      text-decoration: none;
      z-index: 999;
    }

    @media(max-width: 768px) {
      .hero h1 {
        font-size: 42px;
      }

      nav {
        flex-direction: column;
        gap: 15px;
      }

      nav ul {
        flex-wrap: wrap;
        justify-content: center;
      }
    }