/** Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  background: #d291bc;
  color: white;
  line-height: 1.6;
  overflow-x: hidden;
  height: 100%;
  padding-top: 0rem;
}

/* Navbar Styles */
.navbar {
  position: fixed;
  padding: 0.8rem 4rem;
  top: 0;
  width: 100%;
  background: #e75480;
  backdrop-filter: blur(12px);
  z-index: 10000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.navbar .container {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0.8rem 2rem; */
  padding: 0.8rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .logo {
  color: #92fe9d;
  font-weight: 700;
  font-size: 1.5rem;
  /* padding-left: 1.3rem; */
  text-decoration: none;
  font-family: "Playfair", serif;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.navbar .nav-links li a {
  color: white;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.3s ease;
  text-decoration: none;
}

.navbar .nav-links li a:hover {
  color: #92fe9d;
}

/* Hamburger button */
.nav-toggle {
  background: none;
  border: none;
  color: #92fe9d;
  font-size: 1.8rem;
  cursor: pointer;
  display: none;
}

/* Header */
header {
  padding: 6rem 5rem 0rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 4rem;
}

header h1 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

header p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

header img {
  width: 100%;
  max-width: 650px;
  height: auto;
  margin: 1rem auto;
  display: block;
}

header a {
  margin-top: 1rem;
  font-family: "Poppins", sans-serif;
}

/* Buttons */
.btn {
  background-color: #e75480;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  font-size: 1rem;
  border-radius: 10px;
  font-weight: 400;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Video Wrapper */

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 850px; /* optional max width */
  height: 0;
  padding-bottom: 37%; /* 16:9 aspect ratio */
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* .video-container {
  width: 100%;
  max-width: 800px;
  margin: auto;
}
.video-container video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  outline: none;
  margin: 1rem 0;
}

iframe {
  border: none;
  margin: 1rem 0;
} */

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Sections */
section {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 4rem;
  padding: 0.8rem 4rem;
  text-align: center;
  scroll-margin-top: 6rem;
}

section h2 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
  text-align: center;
}

section h3 {
  font-size: 1.4rem;
  text-align: left;
  margin-bottom: 1.2rem;
}

section p {
  text-align: left;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

li {
  text-align: left;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.fa-circle-plus {
  margin-right: 0.5rem;
  color: #888888;
  font-size: 1.3rem;
}

/* Highlight */
.highlight {
  color: #e75480;
  font-weight: bold;
}

.highlight_head {
  color: #e75480;
  font-weight: bold;
}

/* Benefits */
.benefit_points {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
}

.benefit_points {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.benefit_points ul {
  flex: 1;
  min-width: 300px;
  list-style: none;
  padding: 0;
  margin: 0;
}

#benefits li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-align: left;
  font-size: 1.15rem;
  margin-bottom: 1rem;
  line-height: 1.5;
  color: #fff;
}

#benefits .fa-heart {
  color: #ff4d4d;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0;
}

#benefits li:hover .fa-heart {
  transform: scale(1.2);
  transition: transform 0.2s ease;
}

/* hero-instinct section */
#hero-instinct {
  color: #fff;
  padding: 5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

#hero-instinct h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  line-height: 1.4;
  width: 100%;
}

#hero-instinct .highlight {
  color: #e75480;
  font-weight: 700;
}

.hero-instinct-details {
  flex: 1 1 55%;
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-instinct-details p {
  margin-bottom: 1.2rem;
}

.hero-instinct-details a {
  color: #0074d9;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
  text-decoration: none;
}

.hero-instinct-details a:hover {
  color: #e75480;
}

.hero-instinct-image {
  flex: 1 1 40%;
  text-align: center;
}

.hero-instinct-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.hero-instinct-image img:hover {
  transform: scale(1.05);
}

/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

/* Popup Box */
.popup-box {
  background: #fff;
  color: #000;
  padding: 2rem;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}

.popup-box h2 {
  font-family: "Playfair", serif;
  margin-bottom: 0.5rem;
}

.popup-box p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* Input & Button */
.popup-form input {
  padding: 0.8rem;
  width: 100%;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.popup-form .btn {
  background: #004e92;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: none;
  cursor: pointer;
  border-radius: 8px;
}

.popup-form .btn:hover {
  background: #0066cc;
}

/* Close Button */
.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
}

a {
  list-style: none;
  text-decoration: none;
}

#benefits .fa-heart {
  color: #ff4d4d;
}

/* Testimonials */
.testimonial-container {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  scroll-snap-type: x mandatory;
  padding: 2rem 1rem;
  -webkit-overflow-scrolling: touch;
}

.testimonial-container::-webkit-scrollbar {
  display: none;
}

.testimonial-container {
  scrollbar-width: none;
}

.testimonial-box {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  border-left: 5px solid #92fe9d;
  padding: 1.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
  min-width: 300px;
  max-width: 500px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  text-align: left;
}

.testimonial-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: bold;
  color: #92fe9d;
  display: block;
  text-align: right;
}

.fa-star-half-stroke,
.fa-star {
  color: yellow;
}

/* FAQ section */
.faq-section {
  padding: 0rem 5rem 0rem;
  text-align: left;
}

.faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
}

.faq-question {
  background: none;
  border: none;
  color: #e6efe7;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  text-align: left;
  padding: 1rem 0;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-question:hover {
  color: #f0f4f5;
}

.faq-answer {
  display: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: #fff;
  padding-top: 0.5rem;
}

.faq-item.active .faq-answer {
  display: block;
}

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

.fa-plus {
  cursor: pointer;
  color: #00ff88;
  font-size: 1.1rem;
}

.fa-plus:hover {
  transform: scale(1.3);
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
}

/* Access section */
.center {
  text-align: center;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background-color: #001f3f;
  font-size: 0.9rem;
  margin-top: 4rem;
}

/* Responsive Design */

/* Medium Devices max-width 992px */
@media (max-width: 992px) {
  .nav-toggle {
    display: block;
    z-index: 1000;
  }

  .navbar {
    padding: 0 1rem;
  }

  .navbar .nav-links {
    position: fixed;
    top: 60px;
    right: 0;
    width: 220px;
    height: 28rem;
    background: #000 !important;
    flex-direction: column;
    padding-top: 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.8);
    z-index: 9999;
  }

  .navbar .nav-links.open {
    transform: translateX(0);
  }

  .navbar .nav-links li a {
    font-size: 1.2rem;
  }

  #hero-instinct {
    flex-direction: column;
    text-align: center;
    padding: 3rem 1.5rem;
  }

  #hero-instinct h2 {
    font-size: 1.8rem;
    text-align: center;
  }

  .hero-instinct-details {
    flex: 1 1 100%;
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-instinct-image {
    flex: 1 1 100%;
    margin-top: 2rem;
  }

  .hero-instinct-image img {
    max-width: 90%;
  }
}

/* Small Devices 768px */
@media (max-width: 768px) {
  header,
  section,
  .faq-section {
    padding: 0.8rem 1rem;
  }

  header h1 {
    font-size: 2rem;
    padding-top: 2rem;
  }

  header p,
  section p,
  section h3,
  ul,
  .faq-item {
    padding: 0 0.8rem;
  }

  header img {
    width: 90%;
    height: auto;
  }

  section h2 {
    font-size: 1.7rem;
  }

  .testimonial-container {
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
  }

  .testimonial-box {
    width: 100%;
    max-width: 100%;
  }
}

/* Extra Small Devices max-width 400px */
@media (max-width: 400px) {
  .navbar {
    padding: 0 0.5rem;
  }

  .navbar .nav-links {
    width: 180px;
    height: 28rem;
    top: 55px;
    padding-top: 1.5rem;
    background:black;
  }

  .navbar .nav-links li a {
    font-size: 1rem;
  }

  .video-wrapper {
    padding-bottom: 95%;
  }
}
