/* Contact Form Styles */
.contact-form-wrapper {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
}

.form-title {
  color: #432f55;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  color: #333;
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

.contact-form .form-control {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #f8f9fa;
}

.contact-form .form-control:focus {
  border-color: #79cfe2;
  box-shadow: 0 0 0 0.2rem rgba(121, 207, 226, 0.25);
  background-color: #fff;
  outline: none;
}

.contact-form .form-control:hover {
  border-color: #79cfe2;
  background-color: #fff;
}

.map-wrapper {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
}

.map-title {
  color: #432f55;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  border-radius: 10px;
}

/* Contact Info Styles */
.contact-info {
  padding-top: 1rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.contact-info-item i {
  color: #432f55;
  font-size: 1.5rem;
  margin-right: 1rem;
  margin-top: 0.2rem;
  min-width: 30px;
}

.contact-info-item h5 {
  color: #333;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-info-item p {
  color: #666;
  margin: 0;
  line-height: 1.5;
}

#why-choose {
  background-color: #f8f9fa;
}

#why-choose .why-img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
}

#why-choose .why-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Service Details Page */
.other-services-container {
    width: 100%;
    border: 1px solid #333;
    border-radius: 15px;
    overflow: hidden;
}

.other-services-title {
    padding: 12px 15px 10px;
    background-color: #e7a6b9;
}

.services-cta-container {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.services-cta-container .services-cta-title {
    width: 100%;
    padding: 15px;
    text-align: center;
    color: white;
    background-color: #e7a6b9;
}

.services-cta-container .service-cta-lists {
    background-color: #432f55;
}

.serivces-banner-img {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

.serivces-banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.service-entry-card {
    padding: 12px;
    border: 1px solid #333;
    border-radius: 15px;
}

.parenthood-card-container {
    background-color: #f6f5f7;
}

.parenthood-card {
    background-color: white;
    padding: 12px;
    border-radius: 15px;
}

@media (max-width: 768px) {
    .serivces-banner-img {
        height: auto;
    }

    .serivces-banner-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}







































