.hero-section {
  padding: 4rem;
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 1rem;
}

.hero-section-1 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 50%;
}
/* bg-[#008CF1] p-8 w-[50%] flex flex-col gap-6 */

.hero-section-2 {
  width: 50%;
  background-color: #008cf1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
}

.top-services {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.top-services-text {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 25px;
  font-weight: 600;
}
.top-services-text img {
  height: 1.8rem;
  width: 1.8rem;
}
.enquiry-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: white;
}
.enquiry-section label {
  font-size: 20px;
  font-weight: 500;
  color: white;
}

.enquiry-input {
  width: 100%;
  padding: 1rem;
  height: 4rem;
  background-color: white;
  border-radius: 3px;
  color: #008cf1;
}

.enquiry-input:focus {
  outline: none;
  border-color: #008cf1;
}
.enquiry-input option {
  color: #008cf1;
}
.enquiry-input:focus option[selected] {
  color: #008cf1;
}
@media (max-width: 1024px) {
  .hero-section {
    padding: 1rem;
  }

  .hero-section-2 {
    padding: 1rem;
  }
  .enquiry-input {
    height: 3rem;
    padding: 1rem;
  }
  .top-services-text {
    font-size: 22px;
  }
}
@media (max-width: 580px) {
  .hero-section {
    padding: 1rem;
    flex-direction: column;
  }
  .hero-section-1 {
    width: 100%;
  }
  .hero-section-2 {
    width: 100%;
    padding: 1rem;
  }
  .top-services-text {
    font-size: 17px;
  }
}

.headings {
  font-size: 30px;
  font-weight: 600;
  color: #008cf1;
}
@media (max-width: 958px) {
  .headings {
    font-size: 25px;
    font-weight: 600;
    color: #008cf1;
  }
}
