/* style.css */
@import url("./color.css");

.our_service .heading {
  font-size: 1.8vw;
  font-weight: 600;
  color: var(--dark-light-green);
  text-align: left;
}

.our_service .sub_heading {
  font-size: 2vw;
  font-weight: 400;
  color: var(--teal-dark);
  text-align: left;
  line-height: 40px;
}

.our_service .sub_heading span {
  font-weight: 700;
  color: var(--teal-dark);
}

.homepage_about_text .text {
  font-size: 1.1vw;
  font-weight: 400;
  color: var(--black-deep);
  text-align: justify;
  line-height: 20px;
}

.our_service_img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  object-fit: cover;
}


.service_card{
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-radius: 20px;
    padding: 10px 20px;
    margin-bottom: 10px;
    background-color: var(--lavender-light);
}

.service_card .service_title{
    font-size: 2vw;
    color: var(--teal-dark);
    font-weight: 700;
    margin: 0px;
}

.service_card .service_text{
    font-size: 1vw;
    color: var(--black-deep);
    font-weight: 400;
    line-height: 25px;
}

/* Media Queries for Mobile Devices */
@media (max-width: 768px) {
  .our_service .heading {
    font-size: 1.5rem;
    text-align: center;
  }

  .our_service .sub_heading {
    font-size: 1.8rem;
    text-align: center;
    line-height: 30px;
  }

  .homepage_about_text .text {
    font-size: 1rem;
    line-height: 22px;
    text-align: left;
  }

  .our_service_img {
    border-radius: 15px;
    margin-bottom: 20px;
  }

  .service_card {
    padding: 15px;
    margin-bottom: 15px;
  }

  .service_card .service_title {
    font-size: 1.5rem;
    text-align: center;
  }

  .service_card .service_text {
    font-size: 0.95rem;
    line-height: 22px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .our_service .heading {
    font-size: 1.2rem;
  }

  .our_service .sub_heading {
    font-size: 1.5rem;
    line-height: 25px;
  }

  .homepage_about_text .text {
    font-size: 0.9rem;
    line-height: 20px;
  }

  .our_service_img {
    border-radius: 10px;
  }

  .service_card {
    padding: 12px;
    margin-bottom: 12px;
  }

  .service_card .service_title {
    font-size: 1.3rem;
  }

  .service_card .service_text {
    font-size: 0.85rem;
    line-height: 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .our_service .heading {
    font-size: 1.6rem;
  }

  .our_service .sub_heading {
    font-size: 2rem;
    line-height: 35px;
  }

  .homepage_about_text .text {
    font-size: 1.1rem;
    line-height: 24px;
  }

  .our_service_img {
    border-radius: 25px;
  }

  .service_card .service_title {
    font-size: 1.8rem;
  }

  .service_card .service_text {
    font-size: 1rem;
    line-height: 23px;
  }
}