
/* ---------- BANNER ---------- */
.about-banner{
  position:relative;
  height:320px;
  background:url('../images/about.png') center/cover no-repeat;
  display:flex;
  align-items:center;
}

.banner-overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:linear-gradient(
    rgba(11,44,93,0.75),
    rgba(11,44,93,0.75)
  );
}

.banner-content{
  position:relative;
  z-index:2;
  color:#fff;
}

.banner-content h1{
  font-size:46px;
  margin-bottom:10px;
}

.banner-content p{
  font-size:16px;
  letter-spacing:1px;
}

.banner-content span{
  margin:0 8px;
  color:#0bbcd6;
}

/* ---------- ANIMATION ---------- */
.fade-in{
  opacity:0;
  transform:translateY(30px);
  animation:fadeInUp 1s ease forwards;
}

.delay-1{
  animation-delay:.3s;
}

@keyframes fadeInUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ---------- RESPONSIVE ---------- */
@media(max-width:768px){
  .about-banner{
    height:240px;
    text-align:center;
  }
  .banner-content h1{
    font-size:32px;
  }
}


/* ---------- ANIMATION ---------- */
.fade-up{
  opacity:0;
  transform:translateY(40px);
  animation:fadeUp 1s ease forwards;
}
.delay-1{animation-delay:.2s;}
.delay-2{animation-delay:.4s;}
.delay-3{animation-delay:.6s;}

@keyframes fadeUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ---------- COMMON ---------- */
.underline{
  display:block;
  width:60px;
  height:4px;
  background:#0bbcd6;
  border-radius:5px;
  margin:15px 0 25px;
}

/* ---------- ABOUT SECTION ---------- */
.about-flex{
  display:flex;
  align-items:center;
  gap:80px;
}

.about-image-card{
  width:360px;
  text-align:center;
}

.image-box{
  background:#f5f7fa;
  padding:18px;
  border-radius:20px;
  box-shadow:0 25px 60px rgba(0,0,0,0.18);
}

.image-box img{
  width:100%;
  border-radius:16px;
}

.about-image-card h4{
  margin-top:18px;
  color:#0b2c5d;
  font-size:18px;
}
.about-image-card p{
  color:#0bbcd6;
  font-weight:600;
}

.about-text{
  flex:1;
}

.about-text h2{
  font-size:34px;
  color:#0b2c5d;
}

.about-text p{
  font-size:16.5px;
  line-height:1.8;
  margin-bottom:18px;
}

.read-more-btn{
  display:inline-block;
  margin-top:15px;
  padding:12px 28px;
  background:#1aa64b;
  color:#fff;
  text-decoration:none;
  border-radius:30px;
  font-weight:600;
}
.vm-elite {
    padding: 50px;
  background: radial-gradient(circle at top, #f4f9ff, #eef3f8);
}

.vm-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

/* Cards */
.vm-card {
  background: #fff;
  padding: 50px 40px;
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.08);
  position: relative;
  transition: 0.4s ease;
}

.vm-card:hover {
  transform: translateY(-10px);
}

/* Vision */
.vm-card.vision {
  border-top: 6px solid #0d6efd;
}

/* Mission */
.vm-card.mission {
  border-top: 6px solid #0a3d2e;
}

/* Icons */
.vm-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d6efd, #6ea8fe);
  color: #fff;
  margin-bottom: 20px;
}

.mission .vm-icon {
  background: linear-gradient(135deg, #0a3d2e, #1f7a5f);
}

/* Headings */
.vm-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: #0b1f44;
  margin-bottom: 15px;
}

/* Text */
.vm-card p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
}

/* Divider */
.vm-divider {
  height: 260px;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #0d6efd, transparent);
  position: relative;
}

.vm-divider span {
  position: absolute;
  top: 50%;
  left: -8px;
  width: 18px;
  height: 18px;
  background: #0d6efd;
  border-radius: 50%;
}

/* Tags */
.vm-tag {
  display: inline-block;
  margin-top: 25px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #0d6efd;
  background: #e7f1ff;
  border-radius: 30px;
}

.vm-tag.dark {
  color: #0a3d2e;
  background: #e4f3ee;
}

/* Responsive */
@media (max-width: 991px) {
  .vm-wrapper {
    grid-template-columns: 1fr;
  }

  .vm-divider {
    display: none;
  }
}
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}



/* ================= IVF SERVICE SECTION ================= */

.ivf-service-section {
  padding: 90px 0;
  background: #fff;
}

/* IMAGE */
.ivf-image-box img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  transition: transform 0.6s ease;
}

.ivf-image-box img:hover {
  transform: scale(1.05);
}

/* CONTENT */
.ivf-badge {
  display: inline-block;
  background: #e7f1ff;
  color: #0d6efd;
  padding: 6px 18px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}

.ivf-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0d2b5c;
}

.ivf-text {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

.ivf-points {
  list-style: none;
  padding: 0;
  margin-top: 18px;
}

.ivf-points li {
  font-size: 16px;
  margin-bottom: 10px;
  color: #222;
}

/* ================= ANIMATIONS ================= */

.ivf-animate-left,
.ivf-animate-right {
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.ivf-animate-left {
  animation-name: ivfSlideLeft;
}

.ivf-animate-right {
  animation-name: ivfSlideRight;
  animation-delay: 0.2s;
}

@keyframes ivfSlideLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes ivfSlideRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 768px) {

  .ivf-service-section {
    padding: 60px 0;
  }

  .ivf-title {
    font-size: 26px;
    line-height: 1.3;
  }

  .ivf-text,
  .ivf-points li {
    font-size: 15px;
  }

  .ivf-image-box {
    text-align: center;
  }

  .ivf-image-box img {
    max-width: 100%;
    transform: none !important;
  }

  .ivf-animate-left,
  .ivf-animate-right {
    animation: none;
    opacity: 1;
  }
}




/* ---------- TITLE ---------- */

.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2 {
  font-size: 36px;
  color: #0b2c5d;
}
.section-title span {
  display: block;
  width: 80px;
  height: 4px;
  background: #0bbcd6;
  margin: 15px auto 0;
  border-radius: 5px;
}

/* ---------- SERVICES GRID ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* ---------- CARD ---------- */

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}
.service-card:hover {
  transform: translateY(-8px);
}

/* IMAGE */

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.5s;
}
.service-card:hover img {
  transform: scale(1.1);
}

/* CONTENT */

.service-content {
  padding: 20px 25px;
}
.service-content h3 {
  color: #0b2c5d;
  margin-bottom: 10px;
  font-size: 20px;
}
.service-content p {
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #444;
}

/* BUTTON */

.service-btn {
  display: inline-block;
  padding: 10px 24px;
  background: #1aa64b;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s;
}
.service-btn:hover {
  background: #148a3e;
}

/* ---------- RESPONSIVE ---------- */

@media(max-width: 768px) {
  .service-content h3 {
    font-size: 18px;
  }
}