.hero {
  display: flex;
  padding: 50px 150px 150px 150px;
  padding-top: 100px;
  background: #ffffffee;
  gap: 100px;
}
.heroLeft img {
  width: 100%;
  height: 500px;
}
.heroLeft {
  width: 55%;
}
.heroRight {
  width: 45%;
}
.heroRight h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 57.6px;
  color: #041C44;
  text-align: left;
}
.heroRight p {
  font-size: 18px;
  font-weight: 400;
  line-height: 23.4px;
  text-align: left;
  color: #041C44;
  padding: 20px 0;
}
.heroRight {
  margin-top: 50px;
}

.heroLeft img {
  border-radius: 24px;
}
.contactBody {
  padding: 100px 200px;
  display: flex;
}
.contactForm input {
  padding: 10px 15px;
  border: 1px solid rgba(3, 54, 131, 1);
  border-radius: 8px;
  width: 90%;
  margin-bottom: 25px;
}
.address {
  width: 50%;
}
.contactForm {
  width: 50%;
  box-shadow: 0px 30px 60px 0px rgba(40, 40, 43, 0.2);
  padding: 30px 50px;
  border-radius: 24px;
}
.contactForm button {
  padding: 10px 25px;
  background: rgba(3, 54, 131, 1);
  font-size: 18px;
  font-weight: 700;
  line-height: 23.4px;
  text-align: left;
  border: none;
  color: #fff;
  border-radius: 8px;
}
.contactForm h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 29.4px;
  text-align: left;
  color: rgba(40, 40, 43, 1);
  margin-bottom: 20px;
}
.address h4 {
  font-size: 24px;
  font-weight: 500;
  line-height: 25.2px;
  letter-spacing: -0.01em;
  text-align: left;
  color: rgba(255, 255, 255, 1);
  margin-top: 20px;
}
.address p {
  font-size: 18px;
  font-weight: 500;
  line-height: 23.4px;
  text-align: left;
  color: rgba(255, 255, 255, 1);
}
.address {
  background: rgba(8, 60, 145, 1);
  border-radius: 0px, 24px, 24px, 0px;
  padding: 30px 50px;
  height: fit-content;
  margin-top: 100px;
}
.address h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 29.4px;
  text-align: left;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 20px;
}



@media (max-width: 768px) {
  .hero {
    padding: 20px;
    flex-direction: column;
  }
  .heroRight {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 60px
  }
  .heroLeft {
    width: 100%;
  }
  svg {
    margin-right: 0 !important
  }
  .heroLeft img {
    width: 100%;
  }
  .contactBody {
    flex-direction: column;
    padding: 0;
  }
  .address {
    width: 100%;
    margin-top: 0;
  }
  .contactForm {
    width: 77%;
  }
  .heroRight h2 {
    font-size: 40px;
  }
}



.appointment-section {
  
  padding: 50px 150px 100px 150px;
}

.contact-tag {
  color: #D175A3;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

h1 {
  color: #041C44;
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.description {
  color: #546e7a;
  margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.6;
}

.booking-container {
  display: flex;
  gap: 4rem;
  margin-top: 2rem;
}

.form-container {
  flex: 1;
  min-width: 300px;
}

.map-container {
  flex: 1;
  min-width: 300px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 12px;
  border: none;
}

.form-group {
  margin-bottom: 1rem;
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  background: white;
  color: #333;
  margin-bottom: 1rem;
}
input {
  width: 95% !important;
}

.form-control:focus {
  outline: none;
  border-color: #0A46AE;
  box-shadow: 0 0 0 2px rgba(0,188,212,0.2);
}

.date-time-container {
  display: flex;
  gap: 1rem;
}

.date-time-container .form-control {
  flex: 1;
}

.book-button {
  width: 100%;
  padding: 1rem;
  background: #0A46AE;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.book-button:hover {
  background: #0A46AE;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}

@media (max-width: 768px) {
  .booking-container {
      flex-direction: column;
  }

  .date-time-container {
      flex-direction: column;
  }

  h1 {
      font-size: 2rem;
  }

  .appointment-section {
      padding: 1rem;
      margin: 2rem auto;
  }

  .map-container {
      min-height: 300px;
  }
}

iframe {
  margin-top: 0 !important;
}






header {
  text-align: left;
  margin-bottom: 40px;
}

header h1 {
  font-size: 56px;
  margin-bottom: 30px;
  color: #041C44;
}

header p {
  font-size: 18px;
  color: #041C44;
  max-width: 652px;
}

/* Services Styles */

.service-container {
  padding: 100px 150px;
  background: rgba(231, 238, 249, 1);
}

.service {
  text-align: center;
  border-radius: 8px;
  background-color: #fff;
    border-radius: 15px;
    padding: 1.3rem .75rem 0rem .75rem;
    box-shadow: 11px 20px 40px 9px rgba(0, 0, 0, .1137254902);
    min-height: 300px;
    width: 400px;
    
}

.service img {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  padding: 10px;
  background: #D175A3;
  border-radius: 5px;
}

.service h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #041C44;
}

.service p {
  font-size: 16px;
  color: #041C44;
  text-align: justify;
}

.service a {
  display: inline-block;
  margin-top: 20px;
  color: #D175A3;
  text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
  }
  .service {
    width: 100% !important;
  }
  .heroLeft img {
    height: auto;
  }
  .hero {
    gap: 0 !important;
  }
}

@media (max-width: 480px) {
  .services {
    grid-template-columns: 1fr;
  }
}



.info svg {
  width: 25px;
  height: 25px;
  color: #041C44;
 
}
.info {
  display: flex;
  gap: 10px;
  padding-top: 20px;
}
.info h3{
  font-size: 18px;
  color: #041C44;
  font-weight: 400;
}