/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #fff;
}

.page-container {
  width: 100%;
}

/* Hero Section */
.hero-section {
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  transform: translateY(-250px);
}

.hero-shapes {
  position: absolute;
  width: 100vw;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}

.hero-shape-1 {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.hero-shape-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}

.hero-shape-3 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 20px;
}

.hero-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 75px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 26px;
  line-height: 1.6;
}

/* Story Section */
.story-section {
  max-width: 1326px;
    margin: 0px auto;
    padding: 0 20px;
    display: flex;
    gap: 50px;
    transform: translateY(-300px);
}

.story-images {
  position: relative;
  flex: 1;
}

.story-frame {
  position: absolute;
  width: 339px;
  height: 445px;
  left: 0;
  top: 220px;
}

.story-image-1 {
  width: 484px;
  height: 354px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}

.story-image-2 {
  width: 360px;
  height: 246px;
  border-radius: 10px;
  position: absolute;
  left: 42px;
  top: 374px;
  z-index: 1;
}

.story-image-3 {
  width: 195px;
  height: 174px;
  border-radius: 10px;
  position: absolute;
  left: 420px;
  top: 374px;
  z-index: 1;
}

.story-content {
  flex: 1;
  padding-top: 20px;
}

.story-header {
  margin-bottom: 40px;
}

.story-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 50px;
  font-weight: 700;
  color: #1a1a1a;
}

.story-title.accent {
  color: #d66c1f;
}

.story-text {
  color: #4d4d4d;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-button {
  padding: 16px 35px;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  background-color: #d66c1f;
  border: none;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

/* Commitment Section */
.commitment-section {
  max-width: 1326px;
  margin: 100px auto;
  padding: 0 20px;
  display: flex;
  gap: 30px;
}

.commitment-content {
  width: 535px;
  height: 536px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #3d1b7e;
}

.commitment-content > div {
  text-align: center;
  color: #fff;
  max-width: 428px;
}

.commitment-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 35px;
  color: #fff;
  text-align: center;
}

.commitment-text {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 35px;
  color: #fff;
  text-align: center;
  max-width: 428px;
}

.commitment-signature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
}

.signature-initials {
  font-size: 35px;
  font-weight: 400;
}

.signature-title {
  font-size: 22px;
}

.commitment-image {
  width: 761px;
  height: 536px;
  border-radius: 20px;
  object-fit: cover;
}

/* Stats Section */
.stats-section {
  max-width: 1326px;
  margin: 100px auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.stat-icon {
  width: 80px;
  height: 80px;
  border-radius: 4px;
}



.stat-icon.green {
  background-color: #307e2b;
}

.stat-icon.purple {
  background-color: #3d1b7e;
}

.stat-icon.orange {
  background-color: #d66c1f;
}

.stat-icon.yellow {
  background-color: #ccab00;
}

.stat-content {
  text-align: center;
}

.stat-number {
  color: #1a1a1a;
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 15px;
}

.stat-label {
  color: #4d4d4d;
  font-size: 22px;
  max-width: 210px;
}

.stat-divider {
  width: 1px;
  height: 216px;
  background-color: rgba(77, 77, 77, 0.4);
}

/* Testimonials Section */
.testimonials-section {
  max-width: 1326px;
  margin: 100px auto;
  padding: 0 20px;
  text-align: center;
}

.testimonials-header {
  margin-bottom: 70px;
}

.testimonials-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 50px;
  font-weight: 700;
  color: #1a1a1a;
}

.testimonials-title .accent {
  color: #d66c1f;
}

.testimonial-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.carousel-nav {
  width: 65px;
  height: 65px;
  border: 1.5px solid #0b465e;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  font-size: 18px;
  color: #0b465e;
}

.testimonial-content {
  max-width: 935px;
  text-align: center;
}

.testimonial-stars {
  color: #d66c1f;
  font-size: 24px;
  margin-bottom: 30px;
}

.testimonial-text {
  color: #4d4d4d;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.testimonial-author {
  color: #1a1a1a;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.testimonial-position {
  color: #4d4d4d;
  font-size: 18px;
}

.carousel-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.indicator {
  width: 46px;
  height: 8px;
  border-radius: 48px;
  background-color: #d9d9d9;
}

.indicator.active {
  background-color: #d66c1f;
}

/* Trial Section */
.trial-section {
  max-width: 1326px;
  margin: 100px auto;
  padding: 0 20px;
}

.trial-content {
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  color: #fff;
  background-color: #d66c1f;
}

.trial-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 30px;
}

.trial-text {
  font-size: 22px;
  margin-bottom: 30px;
}

.trial-button {
  padding: 16px 35px;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  background-color: #0b465e;
  border: none;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

/* Media Queries */
@media (max-width: 991px) {
  .hero-section {
    height: 350px;
  }

  .story-section {
    flex-direction: column;
  }

  .commitment-section {
    flex-direction: column;
  }

  .commitment-content {
    width: 100%;
  }

  .commitment-image {
    width: 100%;
  }

  .stats-section {
    flex-wrap: wrap;
    gap: 40px;
  }

  .stat-item {
    width: 45%;
  }

  .stat-divider {
    display: none;
  }
  

}

@media (max-width: 640px) {
  .hero-section {
    height: 300px;
  }

  .hero-title {
    font-size: 50px;
  }

  .hero-description {
    font-size: 20px;
  }

  .story-images {
    display: none;
  }

  .stat-item {
    width: 100%;
  }
  

}
