img {
  max-width: 100%;
  height: auto;
}

.hero-section h1 {
  font-weight: 300;
  font-family: "Lato", Arial, sans-serif;
  font-style: italic;
  color: white;
  text-align: center;
  font-size: 64px;
  margin-bottom: 0.1em;
  margin-top: 100px;
}

.hero-section h2 {
  font-family: "Lato", Arial, sans-serif;
  font-weight: 200;
  text-align: center;
  color: white;
  font-size: 40px;
}

.hero-section p {
  font-family: "Lato", Arial, sans-serif;
  font-size: 18px;
  margin-top: 40px;
  font-weight: 300;
  color: white;
  text-align: center;
  margin-bottom: 20px;
}

.marquee-container {
  overflow: hidden;
  width: 100%;
  background-color: white;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  margin: 70px 0px;
}

.marquee {
  display: flex;
  width: max-content;
  animation: scroll 60s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem;
}

.marquee-content img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.about-section {
  padding: 30px 20px;
}

.about-section h1 {
  font-size: 40px;
  font-weight: 300;
  margin-top: 30px;
  margin-bottom: 20px;
  color: white;
  text-align: center;
}

.about-section p {
  font-size: 18px;
  text-align: center;
  font-weight: 300;
  color: white;
  margin: 0px 200px;
  padding: 10px 0px;
}

.services-section {
  padding: 40px 20px;
  font-family: "Lato", Arial, sans-serif;
}

.services-section h2 {
  color: black !important;
  text-align: center;
}

.services-section h1 {
  font-size: 40px;
  font-weight: 300;
  margin-top: 30px;
  color: white;
  text-align: center;
}

.services-section p {
  font-size: 18px;
  font-weight: 300;
  margin: 0;
  color: black !important;
}

.services-container {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.service-item {
  background-color: white;
  padding: 20px;
  border-radius: 12px;
  color: black;
  text-decoration: none;
  width: 500px;
}

.service-item:hover {
  background-color: #d9e2ec;
}

.timeline {
  position: relative;
  width: 100%;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 150px;
  bottom: 150px;
  left: 50%;
  width: 4px;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-50%);
  z-index: 0;
}

.process-section h1 {
  font-size: 40px;
  font-weight: 300;
  margin-top: 60px;
  margin-bottom: 20px;
  color: white;
  font-family: "Lato", Arial, sans-serif;
  text-align: center;
}

.process-section {
  display: grid;
  padding: 0px 20px;
}

.process-section img {
  width: 100%;
  max-width: 300px;
  height: auto;
  flex: 0.5;
}

.process-stage {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  margin: 0px 0;
  z-index: 1;
}

.process-stage.left {
  padding-left: 40px;
}

.process-stage.right {
  text-align: right;
  padding-right: 40px;
}

.stage-text {
  flex: 0.5;
}

.stage-text p {
  font-family: "Lato", Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: white;
}

.stage-text h1 {
  font-family: "Lato", Arial, sans-serif;
  font-size: 20px;
  font-weight: 200;
  display: inline-block;
  font-size: 30px;
  color: white;
}

.process-stage:nth-child(even) {
  flex-direction: row-reverse;
}

.circle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: white;
  color: black;
  font-weight: bold;
  border-radius: 50%;
  border: 2px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.why-choose-us-section {
  text-align: center;
  font-family: "Lato", Arial, sans-serif;
  padding: 30px 20px;
  max-width: 1200px;
  margin: auto;
}

.why-choose-us-section h1 {
  font-size: 40px;
  font-weight: 300;
  margin-top: 30px;
  margin-bottom: 20px;
  color: white;
}

.why-choose-us-points {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.point-wrapper {
  background-color: #102a43;
  padding: 20px;
  border-radius: 12px;
  width: 400px;
  color: white;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.point-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.icon-and-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.icon-and-heading {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: nowrap;
}

.icon-and-heading img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.icon-and-heading h2 {
  margin: 0;
  color: white;
  font-weight: 300;
  font-size: 28px;
}

.point-wrapper p {
  font-size: 18px;
  font-weight: 300;
  margin: 0;
}

.cta-section {
  text-align: center;
  font-family: "Lato", Arial, sans-serif;
  padding: 30px 20px;
  max-width: 1200px;
  margin: auto;
}

.cta-section h1 {
  font-size: 40px;
  font-weight: 300;
  margin-top: 30px;
  margin-bottom: 20px;
  color: white;
}

.cta-points {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  max-width: 1000px;
  margin: 0 auto 40px auto;
  align-items: center;
  justify-items: center;
  column-gap: 120px;
}

.cta-points h2 {
  color: white;
  text-align: center;
  font-weight: 300;
  font-size: 24px;
  margin-top: 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap: balance;
}

.cta-points img {
  width: 200px;
  object-fit: contain;
}

.cta-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  transition: transform 0.3s ease;
}

.button-container {
  text-align: center;
  margin: 40px 0;
}

a:link {
  color: white;
}

/* Tablet: 769px–1200px */
@media (min-width: 769px) and (max-width: 1200px) {
  .hero-section h1 {
    font-size: 48px;
    margin-top: 80px;
  }

  .hero-section h2 {
    font-size: 28px;
  }

  .about-section p {
    margin: 0 60px; 
    font-size: 17px;
  }

  .services-container {
    gap: 40px;
  }

  .service-item {
    width: 45%; /
  }

  .why-choose-us-points {
    gap: 40px;
  }

  .point-wrapper {
    width: 45%;
  }

  .cta-points {
    column-gap: 40px;
  }
}

/* Mobile: > 769px */
@media (max-width: 768px) {
  .hero-section {
    margin-top: 0px;
  }

  .hero-section h1 {
    margin-top: 70px;
    font-size: 36px;
  }

  .hero-section h2 {
    font-size: 24px;
    text-align: center;
  }

  .hero-section p {
    font-size: 16px;
  }

  .marquee-container {
    margin-top: 80px;
    margin-bottom: 0px;
  }

  .about-section h1 {
    font-size: 32px;
  }

  .about-section p {
    margin: 0px 0px;
    font-size: 16px;
  }

  .services-container,
  .why-choose-us-points,
  .cta-points {
    flex-direction: column;
    gap: 30px;
  }

  .service-item,
  .point-wrapper,
  .stat-wrapper {
    width: 100%;
  }

  .services-section {
    padding: 50px 0px;
  }

  .services-section h1 {
    font-size: 32px;
    margin-top: 0px;
  }

  .services-container h2 {
    font-size: 24px;
  }

  .service-item p {
    font-size: 16px;
  }

  .process-section h1 {
    font-size: 32px;
    padding-bottom: 20px;
  }

  .timeline::before {
    display: none;
  }

  .circle {
    display: none;
  }

  .process-stage {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    justify-items: center;
    gap: 20px;
    margin-bottom: 30px;
  }

  .process-stage.right,
  .process-stage.left {
    padding: 0;
    text-align: center;
  }

  .process-section img {
    max-width: 180px;
    margin-bottom: 0px;
  }

  .stage-text {
    padding-left: 0;
    text-align: center;
  }

  .stage-text h1 {
    margin-top: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    font-size: 24px;
  }

  .stage-text p {
    font-size: 16px;
  }

  .why-choose-us-section h1 {
    font-size: 32px;
  }

  .why-choose-us-points h2 {
    font-size: 24px;
  }

  .why-choose-us-points p {
    font-size: 16px;
    font-weight: 300;
  }

  .cta-section h1 {
    font-size: 32px;
  }

  .cta-points h2 {
    font-size: 24px;
  }

  .cta-points {
    display: flex;
  }

  .cta-points img {
    width: 100px;
  }

  .review-text h1 {
    font-size: 18px;
  }

  .review-text p {
    font-size: 16px;
  }
}
