/* ===== Reset & Base Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #ffffff;
  color: #1f1f1f;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== Utility Colors ===== */
:root {
  --primary: #292f53;
  --primary-light: #324183;
  --text-light: #fefefe;
  --text-dark: #222;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ===== Landing Section ===== */
.landing {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  color: var(--text-light);
  padding: 0 6vw;
  position: relative;
}

/* ===== Navbar - Full Width ===== */
.navbar {
  width: 100vw; /* Full screen width */
  padding: 24px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: rgba(60, 67, 129, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar h2 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
}

/* Hamburger Icon - Hidden by Default */
.hamburger {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

/* Button Group - Desktop */
.navbar .btns {
  display: flex;
  gap: 24px;
}

.navbar .btns button {
  background: transparent;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  padding-bottom: 6px;
  cursor: pointer;
}

.lang-btn {
  background: transparent;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: 500;
  display: none;
  /* position: relative; */
  /* padding-bottom: 6px; */
  cursor: pointer;
}

.navbar .btns button::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: white;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.navbar .btns button:hover::after {
  width: 100%;
}

.navbar .btns .cta-btn {
  border: 2px solid white;
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  color: white;
}

.navbar .btns .cta-btn:hover {
  background-color: white;
  color: var(--primary);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

/* ===== Mobile Dropdown Menu ===== */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 14px;
  background: rgba(60, 67, 129, 0.95);
  padding: 20px 6vw;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu button {
  background: none;
  border: none;
  font-size: 16px;
  color: white;
  text-align: left;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
}

.mobile-menu .cta-btn {
  border: 2px solid white;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: bold;
  background: transparent;
  margin-top: 10px;
  color: white;
}

/* ===== Responsive Toggle ===== */
@media (max-width: 768px) {
  .navbar .btns {
    display: none;
  }

  .lang-btn {
    display: block;
    margin-right: 16px;
  }

  .hamburger {
    display: block;
  }

  .mobile-menu {
    display: none;
  }

  .mobile-menu.show {
    display: flex;
  }
}

/* ===== Landing Content ===== */
.landing-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 60px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.header h3 {
  font-size: 54px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.explain p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  max-width: 760px;
  text-align: center;
}

/* ===== CTA Button ===== */
.header-btn .btn {
  font-size: 20px;
  padding: 16px 36px;
  border-radius: 50px;
  border: 3px solid white;
  background: transparent;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.header-btn .btn:hover {
  background: white;
  color: var(--primary);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

/* ===== Decorative Line ===== */
.landing-text::after {
  content: "";
  position: absolute;
  bottom: 40px;
  width: 120px;
  height: 3px;
  background: white;
  opacity: 0.4;
  border-radius: 2px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .navbar .btns {
    gap: 12px;
    flex-direction: column;
  }

  .header h3 {
    font-size: 36px;
  }

  .explain p {
    font-size: 16px;
    padding: 0 10px;
  }

  .header-btn .btn {
    font-size: 18px;
    padding: 14px 28px;
  }
}

/* ===== Cards Section ===== */
.cards-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 60px 6vw;
  background: #fff;
  color: #222;
}

.card {
  background: #fefefe;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 24px;
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease;
  border-top: 4px solid var(--primary);
}

.card:hover {
  transform: translateY(-6px);
}

.card h4 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--primary);
}

.card p {
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.card select {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
}

.price {
  font-weight: bold;
  font-size: 16px;
  color: #333;
  margin-top: 10px;
}

/* Card Button */
.card-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 20px;
  border-radius: 25px;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.card-btn:hover {
  background: var(--primary);
  color: white;
  box-shadow: 0 0 10px rgba(255, 140, 0, 0.4);
}

/* ===== Footer Styles ===== */
.footer {
  background-color: var(--primary);
  color: white;
  padding: 40px 6vw 20px;
  margin-top: 60px;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer h3 {
  font-size: 28px;
  font-weight: 700;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0;
}

.footer-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: #ffe4c4;
}

.footer-bottom {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.8;
}
@media (max-width: 600px) {
  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}

.landing {
  position: relative;
  overflow: hidden;
  /* your existing background, colors, etc */
}

#animCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* so clicks go through */
  z-index: 1;
}

.landing-text {
  position: relative;
  z-index: 2;
  /* keep your existing styles */
}
