:root {
      --primary: #2563eb;
      --secondary: #1e293b;
      --light: #f8fafc;
      --dark: #0f172a;
      --accent: #38bdf8;
}

body {
      margin: 0;
      font-family: "Segoe UI", sans-serif;
      background: var(--light);
      color: var(--secondary);
      line-height: 1.6;
    }
a{
    text-decoration: none;
}
/* Navbar */
header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(15, 23, 42, 0.9); /* dark glass */
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  background: linear-gradient(90deg, #38bdf8, #2563eb, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Links */
#nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

#nav-links li a {
  text-decoration: none;
  font-weight: 500;
  color: #e2e8f0;
  transition: color 0.3s ease;
}

#nav-links li a:hover {
  color: #38bdf8;
}

/* CTA Button */
.cta-btn {
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: white !important;
  padding: 0.7rem 1.4rem;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(37,99,235,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,99,235,0.6);
}

/* Right CTA visible only on desktop */
.nav-right {
  display: block;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

.mobile-cta {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-center {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    transform: translateY(-120%);
    transition: transform 0.4s ease;
  }

  .nav-center.show {
    transform: translateY(0);
  }

  #nav-links {
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0;
    gap: 1.5rem;
  }

  .nav-right {
    display: none;
  }

  .mobile-cta {
    display: block;
  }
}


/* Hero Section */
.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #0f172a, #1e293b, #2563eb);
  color: white;
  position: relative;
  overflow: hidden;
}

/* Background glow effect */
.hero::before, .hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,189,248,0.3), transparent 70%);
  filter: blur(120px);
  animation: floatGlow 8s infinite alternate ease-in-out;
}
.hero::before { top: -150px; left: -150px; }
.hero::after { bottom: -150px; right: -150px; animation-delay: 3s; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
  animation: fadeInUp 1.2s ease;
}

.hero h2 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #38bdf8, #2563eb, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  animation: gradientShift 6s infinite linear;
}

.hero h2 .highlight {
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #e2e8f0;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn.primary-btn {
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: white;
  padding: 0.9rem 1.8rem;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(37,99,235,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn.primary-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 28px rgba(37,99,235,0.6);
}

.btn.secondary-btn {
  background: transparent;
  border: 2px solid #38bdf8;
  color: #38bdf8;
  padding: 0.9rem 1.8rem;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn.secondary-btn:hover {
  background: #38bdf8;
  color: white;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatGlow {
  from { transform: scale(1) translateY(0); opacity: 0.6; }
  to { transform: scale(1.2) translateY(-40px); opacity: 0.9; }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/* Pricing Section */
.pricing {
  padding: 5rem 2rem;
  background: #0f172a;
  color: white;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 3rem;
  background: linear-gradient(90deg, #38bdf8, #2563eb, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #38bdf8, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-card ul {
  list-style: none;
  margin: 0 0 2rem 0;
  padding: 0;
}

.pricing-card ul li {
  margin: 0.6rem 0;
  font-size: 1rem;
  color: #e2e8f0;
}

/* Buttons */
.plan-btn {
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  border: none;
  padding: 0.8rem 1.6rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  color: white;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 28px rgba(37,99,235,0.6);
}

/* Hover glow effect */
.pricing-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #38bdf8, #9333ea, #2563eb);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, 
                 linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pricing-card:hover::after {
  opacity: 1;
}

/* Popular Plan Highlight */
.popular {
  transform: scale(1.05);
  border: 2px solid #38bdf8;
  box-shadow: 0 12px 40px rgba(37,99,235,0.4);
}

/*footer section*/
.footer {
  background: #0f172a; /* dark navy */
  color: #e2e8f0;
  padding: 60px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.footer-brand h2 {
  font-size: 24px;
  color: #60a5fa; /* accent blue */
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8;
}

.footer-links h4,
.footer-newsletter h4 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #f1f5f9;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 8px 0;
}

.footer-links ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links ul li a:hover {
  color: #60a5fa;
}

/* Footer Newsletter Form Fix */
.footer-form {
  display: block; /* container for inner flex */
  margin-top: 12px;
}

.footer-form-inner {
  display: flex;
  gap: 10px;
  flex-wrap: wrap; /* allow wrapping on mobile */
}

.footer-form-inner input {
  flex: 1;
  min-width: 180px;
  padding: 12px 14px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 14px;
}

.footer-form-inner button {
  padding: 12px 18px;
  border: none;
  border-radius: 8px;
  background: #2563eb;
  color: white;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
}

.footer-form-inner button:hover {
  background: #1e40af;
  transform: translateY(-2px);
}

.newsletter-msg {
  margin-top: 8px;
  font-size: 14px;
  color: #60a5fa;
  text-align: left;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid #334155;
  text-align: center;
  padding-top: 20px;
  margin-top: 40px;
}

.footer-bottom p {
  font-size: 14px;
  color: #94a3b8;
}


/* Mobile Footer Layout */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;  /* stack sections vertically */
    gap: 30px;
    text-align: center;
  }

  .footer-brand,
  .footer-links,
  .footer-newsletter {
    text-align: center;          /* center each section */
  }

  .footer-links ul {
    display: inline-block;       /* stack links nicely */
    text-align: left;            /* optional: keep left alignment for links */
  }

  .footer-form-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-form-inner button {
    width: 100%;
  }
}



/* ===== Form Popup ===== */
.form-popup {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.85); 
  display: none;
  align-items: center;
  justify-content: center; 
  z-index: 10000; 
}

.form-popup.show { 
  display: flex; 
}

.form-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 3rem;
  max-width: 380px;   /* reduced width */
  width: 90%;         /* responsive width */
  max-height: 78vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 8px 28px rgba(0,0,0,0.5);
  color: #fff;
  animation: slideUp 0.4s ease;
}

.form-content h2 { 
  font-size: 1.6rem;  /* smaller heading */
  font-weight: 700; 
  margin-bottom: 0.5rem; 
}

.form-content h2 span { 
  background: linear-gradient(90deg, #38bdf8, #2563eb, #9333ea); 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
}

.form-subtitle { 
  font-size: 0.85rem;  /* slightly smaller */
  margin-bottom: 1.2rem; 
  color: #cbd5e1; 
}

.close-btn { 
  position: absolute; 
  top: 12px; 
  right: 16px; 
  font-size: 1.6rem;  /* smaller close button */
  cursor: pointer; 
  color: #cbd5e1; 
  transition: color 0.3s; 
}

.close-btn:hover { 
  color: #38bdf8; 
}

.form-group { 
  margin-bottom: 1rem; 
  text-align: left; 
}

.form-group label { 
  display: block; 
  margin-bottom: 0.4rem; 
  font-size: 0.9rem; 
  color: #e2e8f0; 
}

.form-group input, 
.form-group select {
  width: 100%; 
  padding: 0.5rem;   /* smaller padding */
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;  /* slightly smaller radius */
  font-size: 0.95rem; 
  background: rgba(255,255,255,0.07); 
  color: #fff;
}
.form-group select{
  color: #38bdf8;
}

.form-group input:focus, 
.form-group select:focus { 
  outline: none; 
  border: 1px solid #38bdf8; 
  box-shadow: 0 0 8px rgba(56,189,248,0.5); 
}

.submit-btn {
  width: 100%; 
  padding: 0.6rem;  /* slightly smaller */
  border: none; 
  border-radius: 10px; 
  font-size: 0.95rem; 
  font-weight: 600; 
  cursor: pointer;
  background: linear-gradient(135deg, #2563eb, #38bdf8); 
  color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 8px 28px rgba(37,99,235,0.7); 
}

@keyframes slideUp { 
  from {
     transform: translateY(40px);
      opacity: 0;
     } 
  to {
     transform: translateY(0); 
     opacity: 1; 
    } 
}

/* Small devices adjustment */
@media (max-width: 480px) {
  .form-content {
    padding: 1rem;
    max-width: 320px;
    overflow-x: hidden;
  }

  .form-content h2 {
     font-size: 1.4rem;
     }
  .form-subtitle {
     font-size: 0.8rem;
     }
  .form-group input, .form-group select {
     padding: 0.5rem; 
     font-size: 0.9rem;
     }
  .submit-btn { 
    padding: 0.8rem;
    font-size: 0.9rem; 
  }
}


/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 10000; /* very high so it’s above everything */
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* WhatsApp icon inside button */
.whatsapp-float img {
  width: 35px;
  height: 35px;
}

/* Hover effect */
.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }
  .whatsapp-float img {
    width: 28px;
    height: 28px;
  }
}

/* Desktop adjustments */
@media (min-width: 769px) {
  .whatsapp-float {
    width: 60px;
    height: 60px;
  }
  .whatsapp-float img {
    width: 35px;
    height: 35px;
  }
}