.hero img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}
.aboutSection h2 {
  text-align: center;
}
.ourService h2 {
  text-align: center;
  
}
.ourService {
  margin-top: 30px;
  margin-bottom: 50px;
}
.body {
  padding: 50px 150px;
}
.values h2 {
  text-align: center;
}
.ourServiceText{
  margin-bottom: 30px;
  color: #083C91;
  font-size: 32px;
  line-height: 105%;
}
.actionBtn {
    text-align: center;
}
.actionBtn button {
  background: rgba(3, 54, 131, 1);
  padding: 8px 35px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 23.4px;
  text-align: left;
  border: none;
  border-radius: 8px;
}
.body-1 {
    margin-bottom: 80px;
}
.valueList {
    display: flex;
    gap: 30px;
    width: 100%;
    flex-wrap: wrap;
}
.valueItem {
    width: 48%;
}
.doctorInCharge {
    background: rgba(230, 235, 243, 1);
    padding: 50px 100px;
    display: flex;
}
.doctorImg img {
    width: 612px;
    height: 700px;
    object-fit: cover;
    border-radius: 50%;
}

.doctorInCharge button{
  padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: rgba(8, 60, 145, 1);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 23.4px;
    text-align: left;
    margin-top: 50px;
}
.text {
  padding: 150px 50px;
}



@media (max-width: 768px) {
  .doctorInCharge {
    flex-direction: column;
    padding: 10px 10px;
  }
  .doctorImg img {
    width: 100%;
    height: 400px;
  }
  .body {
    padding: 10px 10px;
  }
  .text {
    padding: 10px 10px;
  }
  .hero img {
    height: 400px;
  }
}


.hero-section {
  /* max-width: 1200px; */
  /* margin: 2rem auto; */
  padding: 100px 150px;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.image-container {
  flex: 1;
  min-width: 300px;
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.content-container {
  flex: 1;
  padding: 1rem;
}

.stats-card {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.stats-icon {
  background: #D175A3;
  padding: 0.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.stats-text {
  display: flex;
  flex-direction: column;
}

.stats-number {
  font-weight: bold;
  color: #004d40;
}

.work-tag {
  color: #ff6347;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

h1 {
  color: #041C44;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

p {
  color: #546e7a;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-button {
  background: #0A46AE;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background: #0A46AE;
}

@media (max-width: 768px) {
  .hero-section {
      flex-direction: column;
      text-align: center;
  }

  .stats-card {
      margin: 1rem auto;
  }

  h1 {
      font-size: 2rem;
  }
}



.appointment-section {
  
  padding: 0;
}

.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: 2rem;
  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: 10px;
    padding: 20px 10px;
    box-shadow: 11px 20px 40px 9px rgba(0, 0, 0, .1137254902);
    min-height: 300px;
    width: 400px;
    
}

/* Services Styles */
.service-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px;
  margin-top: 80px;
}




.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: 0px;
  color: #D175A3;
  text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
  }
  .service {
    width: 100% !important;
  }
}

@media (max-width: 480px) {
  .services {
    grid-template-columns: 1fr;
  }
}


.ceo-section {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px;
  gap: 40px;
}
.ceo-image {
  flex: 0 0 40%;
  max-width: 400px;
}
.ceo-image img {
  width: 400px;
  height: 500px;
  object-fit: cover;
  border-radius: 3%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.ceo-content {
  flex: 1;
}
.ceo-content h2 {
  color: #333;
  margin-bottom: 15px;
  font-size: 2rem;
}
.ceo-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .ceo-section {
      flex-direction: column;
      text-align: center;
      gap: 20px;
  }
  .ceo-image {
      max-width: 300px;
      display: flex;
    justify-content: center;
    margin: auto;
    align-items: center;
  }
  .ceo-image img {
    width: 300px;
    height: 300px;
  }
}