/* ─────────── Reset & Base ─────────── */
body {
  font-family: Arial, sans-serif;
  background-color: #f0f4ff;
  padding: 0;
  margin: 0;
}

/* ─────────── Global Container ─────────── */
.control,
.page-container{
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 4vw;
  box-sizing: border-box;
}


/* ─────────── Section Title ─────────── */
.all-title {
  font-size: 1.9rem;
  font-weight: bold;
  color: #182249;
  margin: 0 auto 20px;
  padding: 50px 0 0;
  text-align: center;
  max-width: 100%;
  line-height: 1.4;
}

/* ─────────── Title Section ─────────── */
.title {
  width: 100%;
  background-color: #182249;
  color: white;
  box-sizing: border-box;
  margin-top: 0;
}

.title-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.title-text,
.title-image,
.title-imageCN {
  flex: 1;
  min-width: 300px;
margin-bottom:30px;
}



.title-text h1 {
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: clamp(32px, 5vw, 60px);
  text-align: left;

  opacity: 0;
  transform: scale(0.8);
  animation: zoomIn 0.8s ease-out forwards;
}


@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.title-text p {
  font-size: clamp(18px, 1.2vw, 22px);
  line-height: 1.6;
  opacity: 0.9;
  max-width: 800px;
  text-align: left;
opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards;
}

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

.title-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);

  opacity: 0;
  transform: scale(0.8);
  animation: zoomIn 0.8s ease-out forwards;
}


.title-imageCN img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: scale(0.8);
  animation: zoomIn 0.8s ease-out forwards;
}

/* ─────────── Signup Button ─────────── */

.signup-wrapper {
  text-align: center;
}

.signup-btn {
  display: inline-block;
  background: linear-gradient(to right, #4f46e5, #3b82f6);
  color: white;
  font-weight: 600;
  font-size: 18px;
  padding: 16px 32px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.signup-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4),
              0 0 10px rgba(59, 130, 246, 0.2);
}

/* ─────────── Video Section ─────────── */
.section-video {
  padding: 1px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0px;
}

.video-wrapper {
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

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

/* ─────────── Review Grid ─────────── */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.review-item {
  background: white;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  padding: 40px;
  text-align: left;
  transition: 0.3s ease;
  height: 100%;
  box-sizing: border-box;
}

.review-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.review-item h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #182249;
  font-weight: 600;
}

.review-item p,
.review-item p4 {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.review-item img {
  width: 100%;
  border-radius: 20px;
  height: auto;
}

/* ─────────── Review Description ─────────── */
.review-description {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
  text-align: center;
  padding: 0 20px;
}

/* ─────────── Stats Section ─────────── */

.stats-container {
  display: flex;
  padding: 0 4vw;
  margin: 0 auto;
  max-width: 1450px; /* or your layout width */
  box-sizing: border-box;
  width: 100%;
  justify-content: center;
}

.stats-section {
  background-color: #ffffff;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin: 100px auto;
  margin-bottom: 0px;
  width: 100%;

}

.stat-box {
  min-width: 220px;
  margin: 40px 0;
  text-align: center;
  flex: 1 1 220px;
  box-sizing: border-box;
}



.stat-number {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.stat-number span,
.stat-label {
  color: #0f0f2f;
  font-weight: 500;
  font-weight: bold;
  font-size: 1.2rem;
}

.blue { color: #04fe7d; }
.pink { color: #ff1100; }
.orange { color: #3700fd; }

/* ─────────── Pricing Section ─────────── */
.section-pricing {
  margin-bottom: 50px;
  text-align: center;
}

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

.pricing-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.pricing-card.active {
  background-color: #414765;
  color: white;
}

.pricing-card .price {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0;
}

.pricing-card p2 {
    padding: 10px 20px;
    background-color: #Faab1c;
    border-radius: 20px;
  font-size: 20px;
}

.pricing-btn {
  margin: 40px auto;
  background: transparent;
  border: 2px solid #1e3a8a;
  color: #1e3a8a;
  padding: 10px 60px;
  font-weight: bold;
  border-radius: 100px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

.pricing-btn:hover {
  background-color: #1e3a8a;
  color: white;
}

/* ─────────── Responsive Adjustments ─────────── */
@media (max-width: 767px) {
  .title-inner {
    flex-direction: column;
    gap: 5px;
  }

  .pricing-cards,
  .review-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .pricing-card h3 {
      font-size: 25px;
      margin: 0 auto;
  }


  .title-text h1 {
    font-size: 30px;
  }
  .title-text p {
    font-size: 16px;
  }

  .stat-number span,
  .stat-label {
    font-size: 1.2rem;
  }

  .stats-container {
   flex-wrap: wrap;
   justify-content: center;
 }
 .stat-box {
  flex: 1 1 220px;
}
}

@media (min-width: 768px) and (max-width: 1150px) {
  .title-inner {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
  .title-text h1 {
    font-size: 40px;
    text-align: left;
  }
  .title-text p {
    font-size: 18px;
    text-align: left;
  }
  .review-grid,
  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card h3 {
      font-size: 30px;
      margin: 0 auto;
  }

 .stat-number {
    font-size: 28px;
  }

  .stat-number span,
  .stat-label {
    font-size: 1.2rem;
  }

  .stats-container {
   flex-wrap: wrap;
   justify-content: center;
 }
}

@media (min-width: 1151px) {

.title-image img {
max-width: 550px;
height: auto;
}

.title-imageCN img {
    max-width: 550px;
    height: auto;
    margin-top: 70px;
}

  .title-inner {
    flex-direction: row;
  }
  .review-grid,
  .pricing-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .title-text h1 {
    font-size: clamp(48px, 5vw, 60px);
  }
  .title-text p {
    font-size: 20px;
  }

.pricing-card h3 {
   font-size: 28px;
   margin: 0 auto;
}
}

/* ainmation pricing card and review item*/
.pricing-card,
.pricing-card.active,
.review-item {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.pricing-card:nth-child(1),
.review-item:nth-child(1) { animation-delay: 0.2s; }

.pricing-card:nth-child(2),
.review-item:nth-child(2) { animation-delay: 0.4s; }

.pricing-card:nth-child(3),
.review-item:nth-child(3) { animation-delay: 0.6s; }

.pricing-card:nth-child(4),
.review-item:nth-child(4) { animation-delay: 0.8s; }

.pricing-card:nth-child(5),
.review-item:nth-child(5) { animation-delay: 1s; }

.pricing-card:nth-child(6),
.review-item:nth-child(6) { animation-delay: 1.2s; }



/* ----------------stats box animation-------------------*/

.stat-box {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.stat-box:nth-child(1) { animation-delay: 0.2s; }
.stat-box:nth-child(2) { animation-delay: 0.4s; }
.stat-box:nth-child(3) { animation-delay: 0.6s; }
.stat-box:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

