/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #f2f6fc;
  color: #2b2b2b;
  line-height: 1.6;
}

/* ========== HERO SECTION ========== */
.lead-hero {
  background: linear-gradient(145deg, #eaf3fb, #d2e3f3);
  padding: 80px 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  border-radius: 20px;
}

.lead-hero-text {
  flex: 1;
  padding: 20px;
}

.lead-hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 900;
  text-shadow: 1px 1px 2px;
}

.lead-hero-text p {
  font-size: 1.1rem;
  color: #4b4b4b;
}

.lead-hero-text button {
  margin-top: 25px;
  padding: 14px 28px;
  font-size: 1rem;
  background-color: #6aed8c;
  color: #000;
  border: 5px solid #ffffff;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lead-hero-text button:hover {
  background-color: #ffffff;
  border: 5px solid #60c14f;
  transform: scale(1.03);
}

.lead-hero-media {
  flex: 1;
  text-align: center;
}

.lead-hero-media img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
/* ===========BUTTON STYLE =================== */
.btn-trial {
  display: inline-block;
  background: #3ad553e5;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  padding: 14px 38px;
  border-radius: 50px;
  border: none;
  transition: all 0.4s ease;
  box-shadow: 0 8px 0 #1c944a, 0 0 15px rgba(37, 211, 102, 0.5);
  position: relative;
  overflow: hidden;
  perspective: 1000px;
  transform-style: preserve-3d;
  animation: pulseGlow 3s infinite;
}
 
/* Shimmer line effect */
.btn-trial::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transform: skewX(-25deg);
  transition: 0.6s;
}
 
.btn-trial:hover::before {
  left: 200%;
}
 

.btn-trial:hover {
  transform: translateY(-6px) rotateX(10deg);
  box-shadow: 0 12px 15px rgba(37, 211, 102, 0.6),
              0 0 25px rgba(37, 211, 102, 0.8);
}
 
.btn-trial:active {
  transform: translateY(4px) rotateX(-5deg);
  box-shadow: 0 4px 0 #1c944a;
}
 

@keyframes pulseGlow {
  0% { box-shadow: 0 8px 0 #1c944a, 0 0 10px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 0 #1c944a, 0 0 20px rgba(37, 211, 102, 0.9); }
  100% { box-shadow: 0 8px 0 #1c944a, 0 0 10px rgba(37, 211, 102, 0.4); }
}
 

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotateX(0deg); }
  50% { transform: translateY(-3px) rotateX(3deg); }
}
 
.btn-trial {
  animation: pulseGlow 3s infinite, floaty 4s ease-in-out infinite;
}

@media (max-width: 768px) {
  .btn-trial {
    font-size: 0.9rem;          
    padding: 12px 28px;         
    border-radius: 40px;        
    box-shadow: 0 6px 0 #1c944a, 0 0 12px rgba(37, 211, 102, 0.4);
  }

  .btn-trial:hover {
    transform: translateY(-4px) rotateX(8deg);
    box-shadow: 0 10px 12px rgba(37, 211, 102, 0.5),
                0 0 20px rgba(37, 211, 102, 0.7);
  }

  .btn-trial:active {
    transform: translateY(3px) rotateX(-4deg);
    box-shadow: 0 3px 0 #1c944a;
  }

  .btn-trial::before {
    
    transform: skewX(-20deg);
  }
}

/* ===========BUTTON END STYLE =================== */

/* ========== FORM HIGHLIGHT SECTION ========== */
.form-benefit-section {
  background: #ffffff;
  padding: 60px 30px;
  margin: 60px auto;
  max-width: 1100px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.form-benefit-img {
  flex: 1;
  text-align: center;
}

.form-benefit-img img {
  max-width: 300px;
  border-radius: 12px;
}

.form-benefit-text {
  flex: 1;
  padding: 30px;
}

.form-benefit-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 900;
  text-shadow: 1px 1px 2px;
}

.form-benefit-text p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 20px;
}

/* .form-benefit-text a {
  display: inline-block;
  background-color: #6aed8c;
  color: #000;
  border: 5px solid #60c14f;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.form-benefit-text a:hover {
  background-color: #ffffff;
} */

/* ========== HOW IT WORKS SECTION ========== */
.how-form-works {
  padding: 60px 20px;
  background: #97b7ff;
  text-align: center;
}

.how-form-works h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  font-weight: 900;
  text-shadow: 1px 1px 2px;
}

.form-steps {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  flex: 1 1 220px;
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 5px 5px 1px 10px #02007894;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.step-card h4 {
  font-size: 1.4rem;
  color: #4e3efc;
  margin-bottom: 15px;
}
.step-card h6 {
  font-size: 1.1rem;
  color: #0022c7;
  font-weight: 900;
  margin-bottom: 15px;
}

.step-card p {
  font-size: 1rem;
  color: #555;
  margin-top: 10px;
  line-height: 1.6;
}

.step-card i {
  font-size: 30px;
  color: #0041f7;
  margin-bottom: 15px;
  display: block;
}

/* ========== RESULTS SECTION ========== */
.lead-results {
  max-width: 1200px;
  margin: 80px auto;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.lead-results-text {
  flex: 1;
  padding: 20px;
}

.lead-results-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 900;
  text-shadow: 1px 1px 2px;
}

.lead-results-text ul {
  list-style: none;
  padding-left: 0;
}

.lead-results-text li {
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
  font-size: 1rem;
  color: #333;
}

.lead-results-text li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1a73e8;
  font-weight: bold;
}

.lead-results-image {
  flex: 1;
  text-align: center;
}

.lead-results-image img {
  width: 90%;
  max-width: 400px;
  border-radius: 15px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  } /* adjust height */
}

/* .faq-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
  font-family: "Poppins", sans-serif;
}

.faq-container h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #121111d4;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 1rem;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: #f3f4f6;
  border: none;
  padding: 1rem 1.2rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.5rem;
  transition: background 0.3s;
  background: #4b79d1;
  color: #f9f9f9;
}

.faq-question:hover {
  background: #e0f2fe;
  color: black;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #f9fafb;
  padding: 0 1.2rem;
  border-radius: 0 0 0.5rem 0.5rem;
}

.faq-answer p {
  margin: 1rem 0;
}

.faq-question::after {
  content: "+";
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-answer {
  max-height: 1000px; 
}

.faq-item.active .faq-question::after {
  content: "−";
  transform: rotate(180deg);
} */
/* Section and FAQ positioning */
.faq-section {
  position: relative;
  padding: 4rem 2rem;
  background: linear-gradient(to bottom, #12326f, #034064);
  overflow: hidden;
  color: #fff;
}

/* Waves container */
.ocean {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 300px;
  overflow: hidden;
  z-index: 0; 
  left: 0;
}

.ocean-wave {
  position: absolute;
  bottom: 0;
  width: 200%;
  height: 130%;
  background-repeat: repeat no-repeat;
  background-size: 50% 100%;
  animation: waveMove 10s linear infinite;
  opacity: 0.7;
}

.ocean-wave:nth-child(1) {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="200"><path fill="%23ffffff" fill-opacity="0.5" d="M0,100 Q300,200 600,100 T1200,100 L1200,200 L0,200 Z"></path></svg>');
  animation-duration: 8s;
}

.ocean-wave:nth-child(2) {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="200"><path fill="%23aee0f4" fill-opacity="0.5" d="M0,120 Q300,220 600,120 T1200,120 L1200,200 L0,200 Z"></path></svg>');
  animation-duration: 12s;
  opacity: 0.5;
}

.ocean-wave:nth-child(3) {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="200"><path fill="%2343c0f1" fill-opacity="0.5" d="M0,140 Q300,240 600,140 T1200,140 L1200,200 L0,200 Z"></path></svg>');
  animation-duration: 16s;
  opacity: 0.4;
}

@keyframes waveMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* FAQ container above waves */
.faq-container {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

/* FAQ styling */
.faq-container h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #f9f9f9;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 1rem;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: rgba(75, 121, 209, 0.8);
  border: none;
  padding: 1rem 1.2rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.5rem;
  transition: background 0.3s;
  color: #f9f9f9;
}

.faq-question:hover {
  background: rgba(224, 242, 254, 0.8);
  color: #000;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(249, 250, 251, 0.1);
  padding: 0 1.2rem;
  border-radius: 0 0 0.5rem 0.5rem;
}

.faq-answer p {
  margin: 1rem 0;
}

.faq-question::after {
  content: "+";
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

.faq-item.active .faq-question::after {
  content: "−";
  transform: rotate(180deg);
}


/* Media Queries for responsiveness */
@media (max-width: 768px) {
  .faq-question {
    font-size: 0.95rem;
    padding: 0.9rem 1rem;
  }

  .faq-answer p {
    margin: 0.8rem 0;
  }
  .ocean {
      width: 100%;
      height: 200px;
    }

    .ocean-wave {
      bottom: 0;
      width: 200%;
      height: 100%;
      background-repeat: repeat no-repeat;
      background-size: 50% 100%;
      animation: waveMove 10s linear infinite;
      opacity: 0.8;
    }
}

/* @media (max-width: 480px) {
  .faq-container {
    padding: 1rem 0.5rem;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 0.8rem;
  }

  .faq-answer p {
    font-size: 0.9rem;
    margin: 0.6rem 0;
  }
} */

/* ========== RESPONSIVE STYLES ========== */
/* @media (max-width: 768px) {
  .lead-hero,
  .form-benefit-section,
  .lead-results {
    flex-direction: column;
    padding: 30px 20px;
  }

  .lead-hero-text,
  .form-benefit-text,
  .lead-results-text {
    text-align: center;
    padding: 0;
  }

  .form-benefit-img img,
  .lead-results-image img {
    width: 80%;
  }

  .form-steps {
    flex-direction: column;
    gap: 20px;
  }
} */
/* ============================================= */
/* ✅ MOBILE RESPONSIVE FIXES */
/* ============================================= */

/* For tablets and smaller screens (≤768px) */
@media (max-width: 768px) {
  /* General body and spacing */
  body {
    padding: 0;
    margin: 0;
  }

  /* ===== HERO SECTION ===== */
  .lead-hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .lead-hero-text {
    padding: 0;
  }

  .lead-hero-text h1 {
    font-size: 1.8rem;
  }

  .lead-hero-text p {
    font-size: 1rem;
    line-height: 1.5;
  }

  /* .lead-hero-text button {
    font-size: 0.95rem;
    padding: 12px 24px;
  } */

  .lead-hero-media img {
    max-width: 90%;
    margin-top: 20px;
  }

  /* ===== FORM BENEFIT SECTION ===== */
  /* .form-benefit-section {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 40px 20px;
  }

  .form-benefit-img video {
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
  } */

   .form-benefit-section {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 20px;
    padding: 40px 20px;
  }
 .form-benefit-img video,
  .form-benefit-img img {
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    height: auto;
  }

  .form-benefit-text {
    padding: 0;
  }

  .form-benefit-text h2 {
    font-size: 1.6rem;
  }

  .form-benefit-text p {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  /* ===== HOW IT WORKS SECTION ===== */
  .how-form-works {
    padding: 40px 15px;
  }

  .how-form-works h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .form-steps {
    flex-direction: column;
    gap: 20px;
  }

  .step-card {
    width: 100%;
    max-width: 100%;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  }

  .step-card h4 {
    font-size: 1.2rem;
  }

  .step-card h6 {
    font-size: 1rem;
  }

  .step-card p {
    font-size: 0.95rem;
  }

  /* ===== RESULTS SECTION ===== */
  .lead-results {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .lead-results-text {
    padding: 0;
    text-align: left;
  }

  .lead-results-text h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .lead-results-text li {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }

  .lead-results-image img {
    width: 85%;
    margin-top: 20px;
  }

  /* ===== FAQ SECTION ===== */
  .faq-container {
    padding: 10px;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }
}

/* For extra small phones (≤480px) */
@media (max-width: 480px) {
  .lead-hero {
    padding: 30px 15px;
  }

  .lead-hero-text h1 {
    font-size: 1.6rem;
  }

  .lead-hero-text p {
    font-size: 0.95rem;
  }

  .form-benefit-section {
    padding: 30px 15px;
  }

  .form-benefit-text h2 {
    font-size: 1.4rem;
  }

  .form-benefit-text p {
    font-size: 0.9rem;
  }

  .how-form-works h2 {
    font-size: 1.4rem;
  }

  .step-card {
    padding: 20px 15px;
  }

  .step-card p {
    font-size: 0.9rem;
  }

  .lead-results {
    padding: 20px 15px;
  }

  .lead-results-text h2 {
    font-size: 1.4rem;
  }

  .lead-results-text li {
    font-size: 0.9rem;
  }

  .lead-results-image img {
    width: 90%;
  }

  .faq-question {
    font-size: 0.9rem;
  }

  .faq-answer p {
    font-size: 0.85rem;
  }
}
