* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Montserrat', sans-serif;
    }

    body {
      background-color: #0d0d0d;
      color: #fff;
      overflow-x: hidden;
    }

     /* === Navbar === */
nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  padding: 18px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
  z-index: 1000;
}
/* === LOGO IMAGE === */
.logo {
  display: flex;
  align-items: center;
  position: relative;
}

.logo img {
  height: 55px;
  width: auto;
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 5px rgba(0,255,255,0.3));
}

/* Hover glow effect */
.logo img:hover {
  filter: drop-shadow(0 0 15px rgba(0,255,255,0.9))
          drop-shadow(0 0 30px rgba(0,255,255,0.6));
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logo img {
    height: 45px;
  }
}
@media (max-width: 480px) {
  .logo img {
    height: 38px;
  }
}


.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.menu-toggle span {
  background: #fff;
  height: 3px;
  width: 25px;
  margin: 4px 0;
  border-radius: 5px;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}
nav ul li a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0%; height: 2px;
  background: #00ffd5;
  transition: 0.3s;
}
nav ul li a:hover::after {
  width: 100%;
}
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  nav ul {
    position: absolute;
    top: 70px; left: 0;
    width: 100%;
    background: rgba(0,0,0,0.85);
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  nav ul.active {
    max-height: 250px;
  }
}
  /* ===== Hero Section ===== */
    .hero {
      position: relative;
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      overflow: hidden;
    }

    .hero video {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      z-index: -2;
      filter: brightness(0.4) contrast(1.2) saturate(1.2);
    }

    .hero::after {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: radial-gradient(circle at center, rgba(0,0,0,0.3), rgba(0,0,0,0.9));
      z-index: -1;
    }

    /* ===== Animated Title ===== */
    .hero h1 {
      font-size: 3.8rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 3px;
      background: linear-gradient(90deg, #7F00FF, #00B3FF, #7F00FF);
      background-size: 300%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: gradientFlow 6s infinite linear, fadeIn 2s ease-out;
      text-shadow: 0 0 25px rgba(0, 255, 255, 0.2);
    }

    /* ===== Subtitle / Tagline ===== */
    .hero p {
      margin-top: 1.2rem;
      font-size: 1.3rem;
      font-weight: 400;
      color: #ccc;
      max-width: 700px;
      animation: slideUp 2.5s ease-out;
    }

    /* ===== CTA Button ===== */
    .hero .cta {
      margin-top: 2rem;
      padding: 0.9rem 2rem;
      font-size: 1.1rem;
      font-weight: 600;
      background: linear-gradient(135deg, #5600E3, #1B003D);
      border: none;
      color: #fff;
      border-radius: 50px;
      cursor: pointer;
      letter-spacing: 1px;
      box-shadow: 0 0 25px rgba(127, 0, 255, 0.5);
      transition: all 0.4s ease;
      animation: fadeIn 3s ease-out;
    }

    .hero .cta:hover {
      transform: scale(1.1);
      box-shadow: 0 0 40px rgba(0, 200, 255, 0.7);
      background: linear-gradient(135deg, #00B3FF, #7F00FF);
    }

    /* ===== Keyframes ===== */
    @keyframes gradientFlow {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    @keyframes fadeIn {
      0% { opacity: 0; transform: translateY(30px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes slideUp {
      0% { opacity: 0; transform: translateY(50px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 768px) {
      .hero h1 { font-size: 2.5rem; }
      .hero p { font-size: 1rem; }
    }
   /* PRICING SECTION */
.pricing-section {
  padding: 100px 10%;
  text-align: center;
}

.pricing-section h2 {
  font-size: 2rem;
  color: #ffb300;
}

.pricing-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 60px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 35px;
  flex: 1;
  max-width: 350px;
  color: #fff;
  position: relative;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
}

/* Electric Border Animation */
.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(45deg, #ff0084, #00ffd5, #ffb300, #ff0084);
  background-size: 400%;
  z-index: -1;
  animation: borderflow 6s linear infinite;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

@keyframes borderflow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffb300;
}

.price {
  font-size: 2rem;
  color: #fff;
  font-weight: 800;
  margin: 25px 0 10px;
}

ul {
  text-align: left;
  margin-bottom: 15px;
}

ul li {
  list-style: none;
  font-size: 0.9rem;
  margin: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ccc;
}

ul li i {
  color: #00ffb3;
}

.price-btn {
  display: inline-block;
  background: linear-gradient(90deg, #ff0084, #ffb300);
  color: #fff;
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  margin-top: 15px;
  transition: 0.3s;
}

.price-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #ff0084;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .pricing-container {
    gap: 30px;
  }
  .pricing-card {
    max-width: 300px;
    padding: 25px;
  }
  .price {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .pricing-section {
    padding: 80px 5%;
  }
  .pricing-container {
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }
  .pricing-card {
    width: 90%;
    max-width: 320px;
    padding: 20px;
  }
  .pricing-title {
    font-size: 1.3rem;
  }
  .price {
    font-size: 1.6rem;
  }
  ul li {
    font-size: 0.85rem;
  }
  .price-btn {
    padding: 8px 20px;
  }
}

@media (max-width: 480px) {
  .pricing-section {
    padding: 60px 5%;
  }
  .pricing-title {
    font-size: 1.2rem;
  }
  .price {
    font-size: 1.4rem;
  }
  ul li {
    font-size: 0.8rem;
  }
  .price-btn {
    padding: 7px 18px;
    font-size: 0.9rem;
  }
}

    /* Benefits Section */
    .benefits {
      background: linear-gradient(90deg, rgba(255, 0, 132, 0.1), rgba(255, 179, 0, 0.1));
      margin-top: 80px;
      padding: 60px 10%;
      border-radius: 20px;
    }

    .benefits h2 {
      text-align: center;
      color: #ffb300;
      margin-bottom: 30px;
      font-size: 1.8rem;
    }

    .benefit-items {
      display: flex;
      flex-wrap: wrap;
      gap: 25px;
      justify-content: center;
    }

    .benefit {
      flex: 1;
      min-width: 250px;
      background: rgba(255,255,255,0.05);
      border-radius: 15px;
      padding: 20px;
      text-align: center;
      color: #ddd;
      transition: transform 0.3s;
    }

    .benefit:hover {
      transform: translateY(-5px);
    }

    .benefit i {
      font-size: 2rem;
      color: #ffb300;
      margin-bottom: 10px;
    }

     /* ==== WHATSAPP FLOAT ==== */
    .whatsapp-float {
      position: fixed;
      bottom: 25px;
      right: 25px;
      background: #25D366;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 0 10px rgba(0,0,0,0.3);
      cursor: pointer;
      transition: transform 0.3s;
      z-index: 200;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
    }

    .whatsapp-float img {
      width: 35px;
      height: 35px;
    }

 /* ==== FOOTER ==== */
footer {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  padding: 50px 70px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  color: #fff;
}

.footer-left,
.footer-middle,
.footer-right {
  flex: 1;
  min-width: 250px;
  margin: 20px;
}

.footer-right {
  text-align: right;
  position: relative;
}

.company-name {
  font-size: 28px;
  font-weight: bold;
  color: #00ff99;
  animation: floatText 3s ease-in-out infinite alternate;
}

@keyframes floatText {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

.footer-middle h3,
.footer-left h3 {
  margin-bottom: 10px;
  color: #00ff99;
}

.footer-middle ul {
  list-style: none;
  padding: 0;
}

.footer-middle li {
  margin: 6px 0;
}

.footer-middle li::before {
  content: "• ";
  color: #00ff99;
}

.footer-left p {
  margin-bottom: 15px;
  line-height: 1.5;
}

.social-icons a {
  margin-right: 15px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #00ff99;
}

.social-icons img {
  width: 25px;
  height: 25px;
  vertical-align: middle;
}

#copy {
  text-align: center;
  margin-top: 50px;
  color: #aaa;
  font-size: 0.9rem;
  width: 100%;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  footer {
    padding: 40px 40px;
  }
  .company-name {
    font-size: 24px;
  }
  .footer-left, .footer-middle, .footer-right {
    margin: 15px 0;
  }
}

@media (max-width: 768px) {
  footer {
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    text-align: center;
  }
  .footer-left, .footer-middle, .footer-right {
    text-align: center;
    margin: 15px 0;
    min-width: auto;
    width: 90%;
  }
  .company-name {
    font-size: 22px;
  }
  .social-icons a {
    margin-right: 10px;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 20px 15px;
  }
  .company-name {
    font-size: 20px;
  }
  .footer-left p,
  .footer-middle li,
  .footer-right p {
    font-size: 0.9rem;
  }
  #copy {
    margin-top: 30px;
    font-size: 0.8rem;
  }
  .social-icons img {
    width: 20px;
    height: 20px;
  }
}
    /* ==== Cursor Glow Effect ==== */
    #cursor-glow {
      position: fixed;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      background: radial-gradient(circle, rgba(0, 255, 255, 0.5) 0%, rgba(0, 255, 255, 0.1) 70%, transparent 100%);
      filter: blur(6px);
      transition: transform 0.1s linear;
      mix-blend-mode: screen;
}