:root {
    --bg-dark: #030303;
    --accent: #00f2fe;
    --primary: #4facfe;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.1);
  }

  body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--bg-dark);
    color: #ffffff;
    overflow-x: hidden;
  }

  /* Custom Scrollbar */
  ::-webkit-scrollbar { width: 8px; }
  ::-webkit-scrollbar-track { background: var(--bg-dark); }
  ::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

  /* Animated Glow Background */
  .glow-bg {
    position: fixed; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(79,172,254,0.18), transparent 70%);
    z-index: -1; border-radius: 50%; filter: blur(60px);
    animation: moveGlow 10s infinite alternate ease-in-out;
  }
  @keyframes moveGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 50px) scale(1.2); }
  }

  .navbar {
    background: rgba(3, 3, 3, 0.9) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
    z-index: 1050;
  }

  .nav-link { font-weight: 500; letter-spacing: 1px; transition: 0.3s; color: white !important; }
  .nav-link:hover { color: var(--accent) !important; text-shadow: 0 0 10px var(--accent); }

  /* --- AMAZING HERO ANIMATIONS --- */
  .hero {
    padding: 180px 0 100px;
    background: radial-gradient(circle at top right, rgba(0, 242, 254, 0.05), transparent);
  }

  /* Text Reveal Effect Wrapper */
  .hero-title-reveal {
    overflow: hidden;
    display: block;
    margin-bottom: 5px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
  }

  /* Reveal Animation for Title Lines */
  .hero h1 span {
    display: inline-block;
    background: linear-gradient(to right, #fff, var(--primary), var(--accent));
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent;
    transform: translateY(110%);
    animation: revealUp 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  }
  
  .hero h1 .line-2 { animation-delay: 0.2s; } /* Thoda ruk kar aayega */

  @keyframes revealUp {
    0% { transform: translateY(110%) skewY(7deg); }
    100% { transform: translateY(0) skewY(0deg); }
  }

  /* Description & Button Fade-in */
  .hero .lead {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInBlur 1s ease-out 1s forwards;
  }

  .hero-btns {
    opacity: 0;
    animation: fadeInSimple 0.8s ease-out 1.4s forwards;
  }

  @keyframes fadeInBlur {
    0% { opacity: 0; transform: translateY(20px); filter: blur(10px); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
  }

  @keyframes fadeInSimple {
    to { opacity: 1; }
  }
  /* --- END HERO ANIMATIONS --- */

  .glass-card {
    background: var(--glass);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 35px;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  }

  .glass-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: var(--accent);
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,242,254,0.1);
  }

  .package-card {
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.02);
    border-radius: 24px;
    padding: 40px 25px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
  }
  .package-card.best-value {
    border: 2px solid var(--accent);
    background: rgba(0, 242, 254, 0.05);
  }
  .best-value-tag {
    position: absolute; top: 20px; right: -35px;
    background: var(--accent); color: #000;
    padding: 5px 40px; transform: rotate(45deg);
    font-size: 0.7rem; font-weight: 800;
  }

  .stat-number { font-size: 3.5rem; font-weight: 700; color: var(--accent); margin-bottom: 0; }

  .marquee {
    overflow: hidden; white-space: nowrap; padding: 30px 0;
    background: rgba(255,255,255,0.02); border-bottom: 1px solid var(--border);
  }
  .marquee-content { display: inline-block; animation: marquee 25s linear infinite; }
  .marquee-content span { font-size: 1.2rem; font-weight: 700; margin: 0 40px; color: rgba(255,255,255,0.3); text-transform: uppercase; }
  @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

  .btn-glow {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: #000; border: none; padding: 12px 35px; border-radius: 50px;
    font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    transition: 0.3s; text-decoration: none; display: inline-block;
  }
  .btn-glow:hover { transform: scale(1.05); color: #000; box-shadow: 0 0 20px var(--primary); }

  .form-input {
    background: rgba(255,255,255,0.05); border: 1px solid var(--border);
    border-radius: 12px; color: #fff; padding: 15px; width: 100%; margin-bottom: 15px;
  }
  .form-input:focus { border-color: var(--accent); outline: none; background: rgba(255,255,255,0.1); color: #fff; }

  .footer-link:hover { color: #fff; transform: translateX(5px); }

  @media (max-width: 768px) {
    .hero { padding: 140px 0 60px; }
    .glass-card { padding: 25px; }
    .navbar-collapse { background: #030303; padding: 20px; margin-top: 15px; border-radius: 15px; border: 1px solid var(--border); }
  }
  
  /* ===== SUCCESS NOTIFIER ===== */
.notify-success {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #0b1220;
  color: #00f2fe;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
  z-index: 9999;
}

/* show state */
.notify-success.show {
  opacity: 1;
  transform: translateY(0);
}

/* 📱 Mobile fix */
@media (max-width: 576px) {
  .notify-success {
    left: 50%;
    right: auto;
    transform: translate(-50%, -10px);
  }
  .notify-success.show {
    transform: translate(-50%, 0);
  }
}
