* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  /* background: linear-gradient(120deg, #f0fdfa, #eef2ff); */
  color: #0f172a;
  overflow-x: hidden;

  padding-top: 90px;
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: auto;
}

/* ================= HEADER ================= */

header {
  padding: 18px 0;
  text-align: center;
  /* position: sticky; */
  /* top: 0; */
  /* z-index: 1000; */

  /* background: linear-gradient(135deg, #4e73df, #9b59b6, #ff6ec4); */
  /* background-size: 200% 200%; */
  /* animation: headerGradient 8s ease infinite; */
  /* color: #fff; */

  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: white;
  z-index: 999;

  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* @keyframes headerGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
} */

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

header img {
  height: 40px;
}

header h1 {
  font-size: 24px;
  color: #000;
}

.nav a {
  color: #000;
  text-decoration: none;
  /* margin-left: 20px; */
  font-weight: 500;

  margin-left: 25px;
  position: relative;
  transition: 0.3s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #ffdd00;
  left: 0;
  bottom: -5px;
  transition: 0.3s ease;
}

.nav a:hover {
  opacity: 0.8;
}

.nav a:hover::after {
  width: 100%;
}

/* ================= HAMBURGER ================= */

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: black;
  border-radius: 3px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* @media (max-width: 768px) {
  .nav {
    position: relative;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    width: 220px;
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 20px;
    border-radius: 10px;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
  }

  .nav-links a {
    margin: 10px 0;
    color: white;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hamburger {
    display: flex;
  }
} */

@media (max-width: 768px) {
  .hamburger {
    display: flex;
    z-index: 1100;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 260px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    padding-top: 100px;
    padding-left: 30px;
    gap: 25px;
    transition: 0.4s ease;
    z-index: 1000;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  }

  .nav-links a {
    color: #000;
    font-size: 18px;
    margin-left: 0;
  }

  .nav-links.active {
    right: 0;
  }
}

/* ================= HERO ================= */

.hero {
  /* height: 100vh; */
  display: flex;
  align-items: center;
  padding: 8%;
  background: linear-gradient(135deg, #4e73df, #9b59b6, #ff6ec4);
  background-size: 200% 200%;
  animation: gradientMove 8s ease infinite;
  color: white;
}

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

.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* LEFT CONTENT */
.hero-content {
  max-width: 50%;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.description {
  font-size: 18px;
  margin-bottom: 25px;
  opacity: 0.9;
}

/* FEATURE SLIDER */
.feature-slider {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 25px;
  font-weight: 500;
  transition: 0.5s ease;
}

/* BUTTON */
.cta-btn {
  padding: 14px 32px;
  border: none;
  border-radius: 30px;
  background: #ffdd00;
  color: #333;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: white;
  transform: scale(1.05);
}

/* IMAGE */
.hero-image img {
  width: 520px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: opacity 0.5s ease;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-image img {
    width: 300px;
    margin-top: 30px;
  }
}

/* ================= SECTIONS ================= */

section {
  padding: 80px 0;
}

h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 32px;
  color: #1e293b;

  /* background: linear-gradient(90deg, #0ea5e9, #6366f1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent; */
}

/* ================= CARDS ================= */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  /* background: #ffffff; */
  border-radius: 15px;
  /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07); */

  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 30px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  border: 1px solid rgba(99, 102, 241, 0.15);
}

.card:hover {
  transform: translateY(-8px);
  /* box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15); */

  box-shadow: 0 25px 55px rgba(59, 130, 246, 0.25);
}

.card h3 {
  margin-bottom: 15px;
  /* color: #2563eb; */
  color: #1e293b;
}

.card p {
  line-height: 1.6;
  color: #555;
}

/* ================= HIGHLIGHT ================= */

.highlight {
  /* background: linear-gradient(135deg, #e0e7ff, #f3e8ff); */
  background: linear-gradient(135deg, #cffafe, #e0e7ff);

  padding: 70px 20px;
  border-radius: 20px;
}

/* ================= PACKAGES ================= */

/* .packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

.package-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
  transition: 0.4s;
}

.package-card:hover {
  transform: scale(1.05);
}

.price {
  font-size: 28px;
  font-weight: 700;
  margin: 18px 0;
  background: linear-gradient(90deg, #f97316, #ef4444);

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.package-card button {
  padding: 10px 22px;
  border: none;
  background: linear-gradient(90deg, #f97316, #ef4444);

  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s ease;
}

.package-card button:hover {
  transform: scale(1.05);
  opacity: 0.85;
} */

/* ================= FORM ================= */

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  font-weight: 500;
  margin-bottom: 5px;
  display: block;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 8px;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-family: "Poppins", sans-serif;
}

.submit-btn {
  margin-top: 10px;
  padding: 12px;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  color: #fff;
  border: none;
  border-radius: 8px;
  width: 100%;
  font-weight: 500;
  cursor: pointer;
}

/* ================= MODAL ================= */

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 20px;
  overflow-y: auto;
}

.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  width: 100%;
  max-width: 380px;
  max-height: 90vh;
  overflow-y: auto;
  animation: fadeIn 0.3s ease;
  margin-top: 20px;
}

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

@media (max-width: 768px) {
  .modal-content h2 {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .modal-content {
    max-width: 95%;
    padding: 15px;
  }

  .modal-content h2 {
    font-size: 18px;
  }
}
/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 768px) {
  /* .nav {
    flex-direction: column;
    gap: 10px;
  }

  .nav a {
    margin-left: 0;
  } */

  .hero h1 {
    font-size: 28px;
  }

  section {
    padding: 60px 0;
  }

  h2 {
    font-size: 24px;
  }

  .package-card {
    padding: 25px;
  }

  .modal-content {
    padding: 20px;
  }
}

/* ================= DARK FOOTER ================= */

.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 70px 0 20px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  height: 40px;
}

.footer-logo h2 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 0;
}

.footer-col h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-logo {
  color: #fff;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col ul li a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #6366f1;
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 15px;
  border-top: 1px solid #1e293b;
  font-size: 14px;
}
