/* ===== GLOBAL RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  color: #111;
  background: #f8f9fa;
  line-height: 1.5;
  scroll-behavior: smooth;
}

/* ===== HEADER ===== */
.header {
  background: #fff;
  padding: 15px 20px;
  position: relative;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2563eb;
}

.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
  transition: 0.3s;
}

.nav a:hover {
  color: #2563eb;
}

.auth-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.auth-btns a {
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.auth-btns a.login {
  border: 2px solid #2563eb;
  color: #2563eb;
  background: #fff;
}

.auth-btns a.login:hover {
  background: #2563eb;
  color: #fff;
}

.auth-btns a.signup {
  background: #2563eb;
  color: #fff;
}

.auth-btns a.signup:hover {
  background: #fff;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.auth-btns a.schedule-call {
  background: #FF5722;
  color: #fff;
}

.auth-btns a.schedule-call:hover {
  background: #fff;
  color: #FF5722;
  border: 2px solid #FF5722;
}

/* ===== MOBILE RESPONSIVE HEADER ===== */
@media (max-width: 768px) {
  .header {
    position: static;
    box-shadow: none;
    padding: 12px 15px;
  }

  .header-inner {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav a {
    font-size: 0.9rem;
    padding: 4px 8px;
  }

  .auth-btns {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
  }

  .auth-btns a {
    font-size: 0.85rem;
    padding: 6px 12px;
  }

  .logo {
    font-size: 1.4rem;
    text-align: center;
  }
}

/* ========== HERO SLIDER ======== */
/* ===== HERO SECTION ===== */
.hero-slider {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  /* header height */
  overflow: hidden;
}

.hero-slider .slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
  transition: opacity 1s ease;
  object-fit: cover;
}

.hero-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider .slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slider .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* ===== HERO CONTENT ===== */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3rem;
  margin: 15px 0;
}

.hero-content h1 span {
  color: #FFD700;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* ===== GRADIENT NAMASTE TEXT ===== */
.hero-gradient-text {
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ff416c, #ff4b2b, #f9d423, #1dd1a1, #1e90ff, #ff416c);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 6s ease infinite, fadeIn 2s ease-in-out;
  margin-bottom: 15px;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SEARCH FORM ===== */
/* ===== SEARCH FORM ===== */
.search-form-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.search-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; /* even space between items */
  padding: 25px 30px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.6);
  max-width: 1100px;
  width: 100%;
  box-sizing: border-box;
}

/* Inputs & Selects */
.search-form input,
.search-form select {
  width: 100%;
  padding: 16px 22px;  /* increased width/height */
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.3);
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease;
}
/* Placeholder */
.search-form input::placeholder,
.search-form select::placeholder {
  color: #000;
  opacity: 1;
}

.search-form input:focus,
.search-form select:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.5);
  border-color: #fff;
}

/* === Submit Button === */
.search-btn {
  padding: 16px 24px;
  border-radius: 12px;
  border: none;
  background: #FFD700;
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  width: 100%;
}

.search-btn:hover {
  background: #fff;
  color: #2563eb;
  border: 1px solid #2563eb;
  transform: scale(1.05);
}

/* === Responsive === */
@media (max-width: 768px) {
  .search-form {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .search-form {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }
}

/* ========== FEATURES ========== */
.features {
  text-align: center;
  padding: 60px 20px;
  background: #f9fafb;
}

.features .title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #111827;
}

.features .subtitle {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 32px;
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  width: 260px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.icon {
  font-size: 28px;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.bg-blue {
  background: #e0ebff;
  color: #2563eb;
}

.bg-yellow {
  background: #fff7db;
  color: #f59e0b;
}

.bg-green {
  background: #e6fffa;
  color: #10b981;
}

.bg-pink {
  background: #ffe4f1;
  color: #ec4899;
}

.bg-purple {
  background: #ede9fe;
  color: #7c3aed;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #111827;
}

.feature-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .features {
    padding: 40px 15px;
  }

  .features .title {
    font-size: 24px;
  }

  .features .subtitle {
    font-size: 14px;
  }

  .features-container {
    flex-direction: column;
    align-items: center;
  }

  .feature-card {
    width: 100%;
    max-width: 350px;
  }
}

/* ========== COMING SOON CARD ========== */
.coming-soon-section {
  padding: 70px 30px;
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.coming-soon-card {
  background: linear-gradient(135deg, #2563eb, #1e3a8a);
  color: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  max-width: 420px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transform-style: preserve-3d;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.coming-soon-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(45deg) translate(-100%, -100%);
  transition: all 0.3s ease;
}

.coming-soon-card:hover::before {
  transform: rotate(45deg) translate(50%, 50%);
}

.coming-soon-card p {
  font-size: 1rem;
  color: #c7d2fe;
  margin-bottom: 25px;
}

.notify-btn {
  background: #fff;
  color: #1e3a8a;
  padding: 18px 40px;
  border: none;
  border-radius: 16px;
  font-weight: 800;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.notify-btn::after {
  content: "Notify Me";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffd700;
  color: #1e3a8a;
  font-weight: 900;
  font-size: 1.2rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.notify-btn:hover {
  transform: scale(1.12) rotate(-2deg);
  box-shadow: 0 12px 35px rgba(255, 255, 0, 0.5);
}

.notify-btn:hover::after {
  transform: translateY(0%);
}

@media (max-width: 480px) {
  .coming-soon-card {
    padding: 30px 20px;
    max-width: 90%;
  }

  .notify-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

/* ========== CTA ========== */
.cta {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 20px;
  max-width: 1100px;
  margin: 50px auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.cta:hover {
  transform: translateY(-5px);
}

.cta h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #e0e7ff;
}

.cta-btn {
  background: #fff;
  color: #1e40af;
  padding: 16px 36px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  display: inline-block;
}

.cta-btn:hover {
  background: #1e40af;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  transform: translateY(-4px) scale(1.05);
}

.cta-note {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #c7d2fe;
  font-style: italic;
}

@media (max-width: 768px) {
  .cta {
    padding: 50px 20px;
    margin: 30px 15px;
  }

  .cta h2 {
    font-size: 1.8rem;
  }

  .cta p {
    font-size: 1rem;
  }

  .cta-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .cta h2 {
    font-size: 1.5rem;
  }

  .cta p {
    font-size: 0.9rem;
  }
}

/* ========== FOOTER ========== */
.footer {
  background: #111827;
  color: #d1d5db;
  padding: 50px 20px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-brand .brand-logo {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.footer-brand .brand-logo i {
  margin-right: 10px;
  font-size: 22px;
  color: #3b82f6;
}

.footer-brand p {
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: #9ca3af;
}

.footer-brand .social-links {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.footer-brand .social-links a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #2563eb;
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.4s ease;
}

.footer-brand .social-links a:hover,
.footer-brand .social-links a:focus {
  background: #1e40af;
  transform: scale(1.15);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.footer-links h3 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #9ca3af;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #fff;
  transform: scale(1.05);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #374151;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #9ca3af;
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 15px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-brand .brand-logo {
    justify-content: center;
  }

  .footer-brand .social-links {
    justify-content: center;
  }

  .footer-links {
    text-align: center;
  }

  .footer-links h3 {
    text-align: center;
  }

  .footer-links ul {
    text-align: center;
    display: inline-block;
  }

  .footer-links li {
    margin: 6px 0;
  }
}