* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  color: #222;
  background: #fff;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

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

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #004080;
}

.logo span {
  color: #800080;
}

.nav {
  float: right;
}

.nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
  font-size: 15px;
}

.nav a.btn {
  background: #dcb6e1;
  color: #66004d;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: bold;
}
.nav a:hover {
  color: #004080;
}

/* HAMBURGER MENU */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #66004d;
}

.close-btn {
  display: none;
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 26px;
  cursor: pointer;
  color: #66004d;
}

/* ==============================
   POPUP FORM STYLES
============================== */
.popup-overlay {
  display: none; /* hidden by default */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 0, 50, 0.7);
  backdrop-filter: blur(2px);
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.4s ease;
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #66004d;
  font-weight: bold;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 70%;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px;
    z-index: 999;
    transition: transform 0.3s ease;
  }

  .nav.show {
    display: none;
  }

  .nav a {
    display: block;
    margin: 20px 0;
    font-size: 18px;
    color: #333;
  }

  .nav a.btn {
    background: #dcb6e1;
    color: #66004d;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: bold;
    margin-top: 10px;
  }

  .close-btn {
    display: block;
  }
}

/* HERO */
/* .hero {
  position: relative;
  height: 90vh;
  background: url('vid.mp4') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 50, 0.5);
} */

.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  padding: 0 20px;
  font-family: "Poppins", sans-serif;
}

/* Video Background */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Dark Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 0, 50, 0.7);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero h1 {
  color: #b30070;
  font-size: 2.7rem;
  margin-bottom: 11px;
}

.hero .subtitle {
  color: #b30070;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.hero h2 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1rem;
  margin-bottom: 25px;
}

.cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  background: #004080;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}

.btn.primary {
  background: linear-gradient(90deg, #5b005b, #8c1f70);
  color: #fff;
}

.btn.secondary {
  background: #eee;
  color: #333;
}

.btn:hover {
  background: #002a5c;
}

/* SECTIONS */
.section {
  padding: 80px 0;
  margin-top: 20px;
}
.section.alt {
  background: #f3e8f5;
}

.section.gray {
  background: #f8f9fa;
}

.section h2 {
  text-align: center;
  color: #004080;
  margin-bottom: 20px;
}

.section p {
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.6;
}

.illustration {
  display: block;
  margin: 30px auto;
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* TABLE */
.performance-table {
  width: 100%;
  margin: 20px 0;
  border-collapse: collapse;
}

.performance-table th,
.performance-table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}

.performance-table th {
  background: #004080;
  color: #fff;
}

.performance-table tr:nth-child(even) {
  background: #f9f9f9;
}

/* BENEFITS */
.benefits,
.trend-list {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  max-width: 700px;
}
/* .benefit li i{
  color: #66004d;
  margin-right: 10px;
  font-size: 0px;
} */

.benefits li,
.trend-list li {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  margin: 10px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* CONTACT */

.contact {
  /* background: linear-gradient(90deg, #66004d, #b30070); */
  background: #f0f3f7;
  color: #fff;
  padding: 70px 0;
  text-align: center;
}
.contact h2 {
  margin-bottom: 10px;
}

.contact p {
  margin-bottom: 30px;
}
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.contact-form,
.contact-info {
  flex: 1 1 45%;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.contact-form button {
  width: 100%;
  background: #004080;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #002a5c;
}

.contact-info img {
  margin-top: 15px;
  border-radius: 8px;
  width: 100%;
}

/* FOOTER */
/* .footer {
  background: #002a5c;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
} */
.cta-section {
  /* background-color: #680046; */
  color: white;
  text-align: center;
  padding: 50px 20px;
  margin-top: 50px;
  border-radius: 8px;
}

.cta-section h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.cta-section a {
  background-color: white;
  color: #680046;
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.cta-section a:hover {
  background-color: #eee;
}

/* .footer {
  background: #2b0020;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
       margin-top: 60px;
} */

footer {
  background: linear-gradient(90deg, #5b005b, #8c1f70);
  color: white;
  padding: 40px;
  margin-top: 60px;
}

footer .footer-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

footer a {
  color: #d9d9d9;
  text-decoration: none;
  font-size: 14px;
}

footer a:hover {
  color: white;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav {
    display: none;
    text-align: center;
  }
  .nav a {
    display: inline-block;
    margin: 8px;
  }
  .contact-wrapper {
    flex-direction: column;
  }
  .hero h1 {
    font-size: 24px;
  }

  .section h2 {
    font-size: 20px;
  }
}
