/* ------------------
  GLOBAL STYLES
------------------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    overflow-x: hidden;
  }
  
  /* Smooth animations */
  html {
    scroll-behavior: smooth;
  }
  
  /* Glassmorphism utility */
  .glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
  }
  
  /* ------------------
    NAVBAR
  ------------------- */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 3rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
  }
  
  .navbar .logo {
    font-weight: 700;
    font-size: 1.6rem;
  }
  .navbar .logo span {
    color: #22d3ee;
  }
  
  .navbar nav a {
    margin: 0 1rem;
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
  }
  .navbar nav a:hover {
    color: #22d3ee;
  }
  
  .navbar .btn {
    margin-left: 10px;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
  }
  
  .btn.login {
    background: rgba(255, 255, 255, 0.1);
  }
  .btn.register {
    background: #22d3ee;
    color: #000;
  }
  .btn.register:hover {
    background: #06b6d4;
  }
  
  /* ------------------
    HERO
  ------------------- */
  .hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1588702547923-7093a6c3ba33?auto=format&fit=crop&w=1920&q=80')
      center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
  }
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 2rem;
    animation: fadeIn 2s ease;
  }
  .hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 700;
  }
  .hero-content h1 span {
    color: #22d3ee;
  }
  .hero-content p {
    color: #cbd5e1;
    margin-top: 1rem;
    margin-bottom: 2rem;
    font-size: 1.2rem;
  }
  .hero-buttons .btn {
    margin: 0.5rem;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
  }
  .btn.primary {
    background: linear-gradient(90deg, #22d3ee, #a855f7);
  }
  .btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  .btn.primary:hover,
  .btn.secondary:hover {
    transform: scale(1.05);
    transition: 0.3s;
  }
  
  /* ------------------
    FEATURES
  ------------------- */
  .features {
    padding: 6rem 2rem;
    text-align: center;
    background: #0f172a;
  }
  .features h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }
  .features h2 span {
    color: #22d3ee;
  }
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
  }
  .feature-item {
    padding: 2rem;
    border-radius: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
  }
  .feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.2);
  }
  .feature-item i {
    color: #22d3ee;
    margin-bottom: 1rem;
  }
  
  /* ------------------
    PRICING
  ------------------- */
  .pricing {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #1e293b, #0f172a);
    text-align: center;
  }
  .pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }
  .pricing h2 span {
    color: #22d3ee;
  }
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
  }
  .price-card {
    padding: 2rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
    transition: 0.3s;
  }
  .price-card:hover {
    transform: translateY(-10px);
  }
  .price-card.featured {
    border: 2px solid #22d3ee;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.3);
  }
  .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #22d3ee;
    margin-bottom: 1rem;
  }
  .price-card ul {
    list-style: none;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
  }
  .price-card li {
    margin: 0.5rem 0;
  }
  
  /* ------------------
    CONTACT
  ------------------- */
  .contact {
    padding: 5rem 2rem;
    text-align: center;
    background: #0f172a;
  }
  .contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  .contact .btn.secondary {
    margin-top: 1rem;
  }
  
  /* ------------------
    FOOTER
  ------------------- */
  footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
  }
  
  /* ------------------
    ANIMATIONS
  ------------------- */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
#hero-btns,#pricing-btns,#cnt-btn{
    text-decoration: none;
    color: white;
} 
#pricing-btns,#cnt-btn{
    padding: 5px 10px;
    border-radius: 25px;
}
#cnt-btn{
    position: relative;
    top: 15px;
}

.test-offer {
  background: linear-gradient(135deg, #1e1e2f, #292943);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.test-offer h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.test-offer span {
  color: #ffd700;
}

.test-offer p {
  margin-bottom: 20px;
  color: #ddd;
}

.test-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.test-form input {
  padding: 10px 15px;
  border-radius: 8px;
  border: none;
  outline: none;
  width: 220px;
}

#testMessage {
  margin-top: 10px;
  font-weight: 600;
}

#req-btn{
     text-decoration: none;
    color: white;
    padding: 5px 10px;
    border-radius: 25px;
    font-weight: bold;
}

/* --- Modern Responsive Navbar --- */
.menu-toggle {
  display: none;
  cursor: pointer;
  color: #e6eef6;
  transition: transform 0.2s ease;
}

.menu-toggle:hover {
  transform: scale(1.1);
}

.menu-toggle svg {
  width: 30px;
  height: 30px;
  stroke-width: 2.3;
}

/* Mobile Navigation */
@media (max-width: 800px) {
  nav {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    position: absolute;
    top: 70px;
    right: 20px;
    background: rgba(10, 15, 30, 0.85);
    backdrop-filter: blur(12px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 18px 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s ease;
  }

  nav.active {
    display: flex;
    align-items: center!important;
    text-align: center;
    gap: 5px;
    justify-content: center!important;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  nav a {
    display: block;
    width: 100%;
    text-align: center;
    color: #e6eef6;
    margin: 10px 0;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
  }

  nav a:hover {
    color: var(--accent);
    transform: translateX(-4px);
  }

  nav .btn {
    width: 100%;
    text-align: center;
    margin-top: 12px;
  }

  .menu-toggle {
    display: block;
  }
}
