h2 {
  font-size: 3rem;
}
.service-process {
  padding-top: 6rem;
  padding-left: 6rem;
  padding-right: 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 425px) {
  .service-process {
    padding-top: 6rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.hero-content {
  padding-top: 2rem;
  padding-left: 6rem;
  padding-right: 6rem;
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr; 
  grid-template-rows: 1fr;
  gap: 0px;
  height: auto; 
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.hero-right {
  position: relative;
  width: 40vw; 
  height: calc(40vw * 9 / 16); 
}

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

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 75%; 
}

video {
  aspect-ratio: 16 / 9;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 425px) {
  .hero-content {
    padding-top: 1rem;
  }
  h2 {
    font-size: 1.8rem;
    text-align: center;
  }
  p {
    font-size: 1rem;
  }
}
@media (max-width: 1100px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (max-width: 1100px) {
  .hero-content {
    display: flex; 
    flex-direction: column-reverse; 
  }

  .hero-left {
    order: 1; 
    margin-top: 20px;
  }

  .hero-right {
    order: 2;
    width: 100%; 
    height: calc(100vw * 9 / 16); 
  }

  .hero-right iframe {
    width: 100%; 
    height: 100%; 
  }
}

.feature-highlight-para {
  width: 70%;
  text-align: center;
}
@media (max-width: 425px) {
  .feature-highlight-para {
    width: 100%;
    text-align: center;
  }
}
.v-m-card {
  background-color: #f9f9f9;
  border-radius: 8px;
  width: 350px;
  height: 420px;
  text-align: center;
}
.vision-header {
  font-size: 1.8rem;
  width: 100%;
}
.vision-text {
  font-size: 1rem;
  width: 100%;
}
.vision-mission {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  flex-direction: row;
  justify-content: space-evenly;
  width: 80%;
  padding-top: 6rem;
}
.v-m-img {
  width: 180px;
  height: 180px;
  padding: 30px 30px;
}
.steps {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 6rem;
  width: 100%;
  flex-wrap: wrap; 
}

.step-card {
  background-color: #ededed;
  border-radius: 8px;
  width: 300px;
  height: 400px;
  overflow: hidden;
  position: relative;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 20px;
}

.step-card:hover {
  transform: translateY(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.imagesection {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.background-animate-image {
  position: absolute;
  top: -140%; 
  left: 0;
  width: 100%;
  height: auto;
  transition: top 0.5s ease;
  z-index: 0;
}

.step-card:hover .background-animate-image {
  top: 10%; 
}

.step-card-image {
  position: relative;
  z-index: 1;
  width: 100px;
  height: 100px;
  margin: 10px auto;
  transition: transform 0.3s ease, margin 0.3s ease;
}

.step-card:hover .step-card-image {
  transform: scale(0.7);
  margin-top: 110px;
}

.steps-header {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 20px 0 10px;
  width: 100%;
}

.steps-text {
  font-size: 1rem;
  padding: 0 20px;
  margin: 0 auto;
}

/* Media Query for smaller screens */
@media (max-width: 768px) {
  .steps {
    justify-content: space-around; 
    gap: 20px;
  }

  .step-card {
    width: 250px;
    height: 350px; 
  }

  .steps-header {
    font-size: 1.3rem;
  }

  .steps-text {
    font-size: 0.9rem; 
  }
}

@media (max-width: 480px) {
  .steps {
    justify-content: center;
    gap: 40px;
  }

  .step-card {
    width: 100%;
    height: auto;
  }

  .steps-header {
    font-size: 1.2rem;
  }

  .steps-text {
    font-size: 0.85rem;
  }
  .background-animate-image {
    top: -150%; 
  }
}
