.about-one {
  background: #f9f9f9;
}

.about-image-wrap {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}

.about-image-wrap img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 16px;
  border: 4px solid #3e0341;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image-wrap img:hover {
  transform: scale(1.03);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.section-title {
  margin-bottom: 25px;
}

.section-title__title {
  font-size: 32px;
  font-weight: 700;
  color: #2b2b7c;
  line-height: 1.3;
}

.nabh-accreditation {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.nabh-accreditation img {
  height: 50px;
}

.why-choose-one__content-text1 p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  font-weight: bold;
  text-align: justify;
}

.cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: linear-gradient(90deg, #3e0341, #e125e7ff);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .section-title__title {
    font-size: 28px;
  }
}



.facts-counter-one {
  position: relative;
  padding: 80px 0;
}

.facts-counter-one__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.counter-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.counter-card:hover {
  transform: translateY(-8px);
}

.counter-icon {
  width: 70px;
  height: 70px;
  background: #b1005e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 26px;
}

.counter-card h2 {
  font-size: 38px;
  font-weight: 700;
  color: #2b001c;
  margin-bottom: 5px;
}

.counter-card p {
  font-size: 15px;
  font-weight: 500;
  color: #555;
}

.counter-number {
  font-family: "Roboto", sans-serif;
}

.plus {
  margin-left: 4px;
}

.facts-counter-one__img {
  position: relative;
  display: inline-block;
}

/* Floating animation */
.figure-animate img {
  animation: figureFloat 8s ease-in-out infinite;
}

.figure-animate::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  width: 70%;
  height: 20px;
  background: rgba(0, 0, 0, 0.25);
  filter: blur(18px);
  border-radius: 50%;
  animation: shadowPulse 8s ease-in-out infinite;
}

@keyframes figureFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes shadowPulse {
  0% {
    width: 70%;
    opacity: 0.25;
  }
  50% {
    width: 60%;
    opacity: 0.15;
  }
  100% {
    width: 70%;
    opacity: 0.25;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .counter-grid {
    grid-template-columns: 1fr;
  }
}


