* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: sans-serif;
}

.anandi-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

/* LOGO */
.nav-logo img {
  height: 55px;
}

/* MENU */
.nav-menu {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-menu a {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #1f1f1f;
  text-decoration: none;
}

.nav-menu i {
  font-size: 12px;
  margin-left: 5px;
}

/* RIGHT AREA */
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.social-icons {
  display: flex; /* makes horizontal */
  align-items: center;
  gap: 12px; /* space between icons */
}

/* ICON STYLE */
.social-icons a {
  width: 40px;
  height: 40px;
  border: 1.5px solid #6d1d4f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6d1d4f;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #6d1d4f;
  color: #fff;
}

/* BUTTON */
.appointment-btn {
  background: #6d1d4f;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #6d1d4f;
}

/* MOBILE MENU TOP → DOWN */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #e8d7dc;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  z-index: 999;
}

.mobile-menu.active {
  max-height: 500px;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu li {
  border-bottom: 1px solid #d3b9c1;
}

.mobile-menu a {
  display: block;
  padding: 18px 20px;
  text-decoration: none;
  color: #222;
  font-size: 18px;
}


@media (max-width: 992px) {
  .anandi-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
}


/* RESPONSIVE */
@media (max-width: 992px) {
  .nav-menu,
  .social-icons,
  .appointment-btn {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  color: #fff;
}

/* BACKGROUND IMAGE */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("hero.jpg") center/cover no-repeat;
  z-index: -2;
}

/* DARK OVERLAY */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    140deg,
    rgba(26, 26, 26, 0.85) 35%,
    rgba(39, 37, 37, 0.2) 70%
  );
  z-index: -1;
}

/* CONTAINER */
.hero-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT CONTENT */
.hero-content {
  font-family: sans-serif;
  max-width: 600px;
  
}

.hero-tag {
  background: #e79aa0;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-family: sans-serif;
  font-weight: 600;
  font-size: 55px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 18px;
  color: #eee;
  margin-bottom: 30px;
  margin-top: 15px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-primary {
  background: #6d1d4f;
  padding: 14px 26px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #a75f8c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}

/* RIGHT IMAGE */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 10px;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero {
    padding: 10px 0;
  }

  .hero-container {
    flex-direction: column;
    text-align: left;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-image {
    margin-top: 30px;
    display: none;
  }
}

.doctors-section {
  background: #f5f3f4;
  padding: 40px 0;
  text-align: center;
  font-family: sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* TITLES */
.section-title {
  font-size: 36px;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #666;
  margin-bottom: 60px;
  font-size: 15px;
}

/* GRID */
.doctor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.doctor-card {
  background: #efe7ea;
  padding: 70px 25px 35px;
  border-radius: 18px;
  position: relative;
  transition: 0.3s;
  margin-top: 20px;
}

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

/* IMAGE */
.doctor-img {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #616161;
  padding: 8px;
}

.doctor-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* TEXT */
.doctor-card h3 {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 600;
  color: #111;
}

.degree {
  color: #7a1f52;
  font-size: 14px;
  margin: 10px 0;
}

.role {
  color: #444;
  font-size: 14px;
  margin-top: 15px;
}



/* BUTTON */
.know-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #6d1d4f;
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .doctor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .doctor-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 26px;
  }
}




.custom-carousel {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 10px;
  overflow: hidden;
  border-radius: 12px;

}

.carousel-track {
  display: flex;
}

.carousel-item {
  min-width: 100%;
  height: 420px;
 object-fit: contain;
background-color: #ffffff; /* optional for empty space */
  display: none;
}

.active-item {
  display: block;
}

/* Buttons */
.btn-prev, .btn-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 5px;
}

.btn-prev { left: 10px; }
.btn-next { right: 10px; }

/* Mobile */
@media (max-width: 768px) {
  .carousel-item {
    height: 250px;
  }
}


.carousel-wrapper {
  width: 100%;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.carousel-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 20px;
  color: #222;
  padding: 0 10px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .carousel-title {
    font-size: 18px;
    line-height: 1.4;
  }
}





.planning-section {
  background: #f4f3f4;
  padding: 40px 0;
}

.planning-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* LEFT BOX */
.planning-left {
  background: #d68382;
  color: #fff;
  padding: 50px;
  border-radius: 20px;
  flex: 1;
}

.planning-left h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

.planning-left p {
  font-size: 15px;
  line-height: 1.7;
}

/* SLIDER AREA */
.planning-slider {
  flex: 2;
  overflow: hidden;
  position: relative;
}

/* TRACK */
.slider-track {
  display: flex;
  gap: 25px;
  animation: slideMove 16s linear infinite;
}

/* CARD */
.slide-card {
  min-width:400px;
  height: 190px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e6e6e6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.slide-card i {
  font-size: 42px;
  color: #7a1f52;
  margin-bottom: 15px;
}

.slide-card h4 {
  font-size: 18px;
  font-weight: 500;
}

/* AUTO SLIDE ANIMATION */
@keyframes slideMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .planning-container {
    flex-direction: column;
  }
  .planning-slider {
    width: 100%;
    overflow: hidden;
  }

  .planning-left {
    width: 100%;
  }

  .slider-track {
    animation-duration: 20s;
  }
}

@media (max-width: 600px) {
  .slide-card {
    min-width: 220px;
    height: 170px;
  }

  .planning-left h2 {
    font-size: 24px;
  }
}



/* ===== MOBILE OVERFLOW FIX ===== */
@media (max-width: 600px) {

  html, body {
    overflow-x: hidden;
  }

  .planning-slider {
    overflow: hidden;
  }

  .slider-track {
    width: max-content;
  }

  .slide-card {
    min-width: 85vw; /* instead of fixed px */
  }

  .hero,
  .hero-container,
  .planning-container,
  .about-container,
  .trust-wrapper {
    overflow: hidden;
  }

}





.about-section {
  background: #f4f4f4;
  padding: 40px 0;
}

.about-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* IMAGE */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* CONTENT */
.about-content {
  flex: 1;
}

.about-tag {
  color: #7a1f52;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.about-tag i {
  color: #7a1f52;
}

.about-content h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.25;
  color: #111;
  margin-bottom: 20px;
}

.about-content p {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  background: #6d1d4f;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

.about-btn:hover {
  background: #53153a;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    gap: 40px;
  }

  .about-content h2 {
    font-size: 32px;
    text-align: center;
  }

  .about-content {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .about-section {
    padding: 60px 0;
  }

  .about-content h2 {
    font-size: 26px;
  }

  .about-content p {
    font-size: 14px;
  }
}

.services-section {
  background: #f3eef1;
  padding: 40px 0;
  text-align: center;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  font-size: 36px;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #666;
  margin-bottom: 50px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #ddd;
}

/* BOX */
.service-box {
  padding: 40px 25px;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background: #fff;
  transition: 0.3s;
}

.service-box:nth-child(4n) {
  border-right: none;
}

.service-box i {
  font-size: 42px;
  color: #7a1f52;
  margin-bottom: 18px;
}

.service-box h4 {
  font-size: 18px;
  font-weight: 500;
  color: #111;
  line-height: 1.4;
}

.service-box:hover {
  background: #faf7f9;
}



/* RESPONSIVE */

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-box:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 26px;
  }
}

.pregnancy-section {
  background: #6f1d4c;
  color: #fff;
  padding: 60px 20px 40px;
  font-family: sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* TOP */
.pregnancy-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.pregnancy-content {
  flex: 1;
  min-width: 300px;
}

.pregnancy-content h2 {
  font-size: 32px;
  line-height: 1.3;
}

.pregnancy-content p {
  margin: 20px 0;
  line-height: 1.7;
  opacity: 0.9;
}

.call-btn {
  background: #f2a3a3;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

.call-btn i {
  margin-right: 8px;
}

/* IMAGE */
.pregnancy-image img {
  width: 260px;
  max-width: 100%;
}

/* COUNTERS */
.stats-wrapper {
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stat-box {
  padding: 40px 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-box:last-child {
  border-right: none;
}

.stat-icon {
  font-size: 28px;
  margin-bottom: 15px;
  color: #f2a3a3;
}

.stat-box h3 {
  font-size: 56px;
  margin: 0;
}

.stat-box p {
  margin-top: 10px;
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .stats-wrapper {
    grid-template-columns: 1fr;
  }

  .stat-box {
    margin-top: 20px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .pregnancy-content h2 {
    font-size: 26px;
  }
}

/* ================= SECTION ================= */
.testimonial-section {
  padding: 40px 0;
}

.title {
  text-align: center;
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 50px;
}

/* ================= SLIDER ================= */
.slider {
  overflow: hidden;
  position: relative;
}

.track {
  display: flex;
  gap: 30px;
  transition: transform 0.7s ease;
}

/* ================= CARD ================= */
.card {
  background: #e8dada;
  padding: 30px;
  border-radius: 20px;
  position: relative;
  min-width: calc(33.333% - 20px);
  box-sizing: border-box;
}

.stars {
  color: #ffc107;
  margin-bottom: 15px;
}

.quote {
  position: absolute;
  right: 22px;
  top: 18px;
  font-size: 28px;
  color: #efb4bb;
}

.card p {
  color: #555;
  line-height: 1.8;
  font-size: 15px;
}

.card a {
  color: #7b2a54;
  text-decoration: underline;
  font-size: 14px;
}

.card h4 {
  margin-top: 15px;
  font-weight: 600;
}

/* ================= DOTS ================= */
.dots {
  text-align: center;
  margin-top: 30px;
}

.dot {
  height: 8px;
  width: 8px;
  margin: 0 4px;
  background: #cfcfcf;
  border-radius: 50%;
  display: inline-block;
}

.dot.active {
  background: #7b2a54;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .card {
    min-width: calc(50% - 15px);
  }
}

@media (max-width: 600px) {
  .card {
    min-width: 100%;
  }

  .title {
    font-size: 28px;
  }
}



/* ===== SECTION ===== */
.trust-section {
  background: #e9e3e6;
  padding: 50px 20px;
  font-family: "Poppins", sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px; /* ADD THIS */
}

/* ===== LAYOUT ===== */
.trust-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* ===== LEFT CONTENT ===== */
.trust-content {
  flex: 1;
  min-width: 320px;
}

.trust-content h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #111;
}

.trust-desc {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
  max-width: 560px;
}

/* ===== LIST ===== */
.trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust-list li {
  position: relative;
  padding: 14px 0 14px 32px;
  border-bottom: 1px solid #d7cfd2;
  font-size: 17px;
  color: #333;
}

/* CHECK ICON */
.trust-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 14px;
  color: #d67882;
  font-weight: bold;
}

/* ===== IMAGE SIDE ===== */
.trust-image {
  flex: 1;
  min-width: 320px;
  position: relative;
  display: flex;
  justify-content: center;
}

/* purple accent bar */
.image-accent {
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 70%;
  background: #7b1e5c;
  border-radius: 6px;
  z-index: 1;
}

.trust-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  position: relative;
  z-index: 2;
  display: block;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .trust-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .trust-desc {
    margin: auto auto 25px;
  }

  .trust-list li {
    text-align: left;
  }

  .image-accent {
    display: none;
  }
}

@media (max-width: 600px) {
  .trust-content h2 {
    font-size: 28px;
  }

  .trust-desc {
    font-size: 15px;
  }

  .trust-list li {
    font-size: 15px;
  }
}



/* FIX TEXT OVERFLOW */
.trust-content,
.trust-desc,
.trust-list li {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* PREVENT FLEX OVERFLOW */
.trust-wrapper > div {
  min-width: 0;
}

/* MOBILE PERFECT FIX */
@media (max-width: 600px) {

  .trust-section {
    padding: 60px 15px;
  }

  .trust-content h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .trust-desc {
    font-size: 14px;
    line-height: 1.6;
  }

  .trust-list li {
    font-size: 14px;
    padding-left: 28px;
    line-height: 1.6;
  }

  /* FIX ICON ALIGNMENT */
  .trust-list li::before {
    top: 16px;
    font-size: 14px;
  }
}



/* ===== SECTION ===== */
.faq-section {
  background: #efefef;
  padding: 40px 20px;
  font-family: "Poppins", sans-serif;
}

.container {
  max-width: 1100px;
  margin: auto;
}

/* TITLE */
.faq-title {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 50px;
}

/* FAQ ITEM */
.faq-item {
  border-bottom: 1px solid #dcdcdc;
}

/* QUESTION */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #111;
}

.faq-question.active {
  color: #7b1e5c;
}

/* ICON */
.icon {
  font-size: 18px;
  transition: 0.3s;
}

.faq-question.active .icon {
  transform: rotate(180deg);
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding-bottom: 20px;
  color: #555;
  line-height: 1.7;
  font-size: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .faq-title {
    font-size: 28px;
  }

  .faq-question {
    font-size: 17px;
  }
}

/* ===== FOOTER ===== */
.main-footer {
  background: #6f1b4d;
  color: #fff;
  font-family: "Poppins", sans-serif;
  padding-top: 50px;
}

/* CONTAINER */
.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

/* COLUMN */
.footer-col {
  flex: 1;
  min-width: 260px;
}

.footer-col h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  transition: 0.3s;
}

.footer-links a:hover {
  opacity: 1;
  padding-left: 6px;
}

/* INFO ROW */
.footer-info {
  display: flex;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-info a{
   color: #fff;
  text-decoration: none;
}

.footer-info i {
  color: #f2a3a3;
  margin-top: 4px;
}

.footer-info p {
  margin: 0;
  line-height: 1.6;
}

/* SOCIAL */
.social-icons {
  margin: 20px 0;
}

.social-icons a {
  width: 38px;
  height: 38px;
  background: #fff;
  color: #6f1b4d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  text-decoration: none;
}

/* MAP */
.footer-map iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 6px;
}

/* COPYRIGHT */
.footer-bottom {
  text-align: center;
  padding: 20px;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .footer-container {
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-col h3 {
    font-size: 20px;
  }
}

/* ABOUT ADVANCED - LIGHT VERSION */
.gyno-about-advanced {
  background: #efefef;
  color: #222;
  padding: 50px 20px;
  font-family: "Poppins", sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h5 {
  color: #6f1b4d;
  letter-spacing: 1px;
}

.section-title h2 {
  font-size: 38px;
  margin: 10px 0;
  color: #111;
}

.section-title p {
  color: #555;
  max-width: 700px;
  margin: auto;
}

/* GRID */
.about-grid {
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}

/* IMAGE */
.about-img {
  flex: 1 1 450px;
  position: relative;
}

.about-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* EXPERIENCE BOX */
.experience-box {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: #6f1b4d;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.experience-box h3 {
  font-size: 28px;
}

/* TEXT */
.about-text {
  flex: 1 1 500px;
}

.about-text h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #111;
}

.about-text p {
  color: #555;
  line-height: 1.7;
}

/* LIST */
.about-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.about-list li {
  margin-bottom: 10px;
  color: #333;
}

.about-list i {
  color: #6f1b4d;
  margin-right: 8px;
}

/* BUTTON */
.about-btn {
  background: #6f1b4d;
  padding: 12px 28px;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.about-btn:hover {
  background: #8a2361;
}

/* STATS */
.about-stats {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-box {
  background: #fff;
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}

.stat-box h3 {
  color: #6f1b4d;
  font-size: 30px;
}

.stat-box p {
  color: #555;
}

/* MISSION VISION */
.mission-vision {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.mv-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}

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

.mv-card i {
  font-size: 28px;
  color: #6f1b4d;
  margin-bottom: 15px;
}

.mv-card p {
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-vision {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .section-title h2 {
    font-size: 26px;
  }
}

/* SERVICES SECTION */
.hospital-services {
  background: #efefef;
  padding: 50px 20px;
  font-family: "Poppins", sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h5 {
  color: #6f1b4d;
}

.section-title h2 {
  font-size: 36px;
  margin: 10px 0;
  color: #111;
}

.section-title p {
  color: #555;
}

/* DEPARTMENT TITLE */
.dept-title {
  margin: 60px 0 25px;
  color: #6f1b4d;
  font-size: 24px;
  border-left: 5px solid #6f1b4d;
  padding-left: 12px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-decoration: none;
  color: #222;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  transition: 0.35s;
  display: block;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

/* CARD TITLE */
.service-card h4 {
  color: #6f1b4d;
  margin-bottom: 12px;
}

/* LIST */
.service-card ul {
  padding-left: 18px;
}

.service-card li {
  margin-bottom: 6px;
  color: #555;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 26px;
  }
}

.service-icon {
  width: 55px;
  height: 55px;
  background: #6f1b4d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 22px;
  margin-bottom: 15px;
  transition: 0.3s;
}

.service-card:hover .service-icon {
  background: #8a2361;
  transform: scale(1.1);
}

/* CONTACT SECTION */
.hospital-contact {
  background: #efefef;
  padding: 20px 20px;
  font-family: "Poppins", sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.contact-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

/* LEFT INFO */
.contact-info {
  flex: 1 1 400px;
}

.info-box {
  display: flex;
  gap: 15px;
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}

.info-box i {
  background: #6f1b4d;
  color: #fff;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.info-box h4 {
  margin: 0;
  color: #111;
}

.info-box p {
  margin: 5px 0 0;
  color: #555;
}

/* RIGHT SIDE */
.contact-extra {
  flex: 1 1 450px;
}

/* EMERGENCY CARD */
.emergency-card {
  background: #6f1b4d;
  color: #fff;
  padding: 35px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 25px;
}

.emergency-card i {
  font-size: 35px;
  margin-bottom: 15px;
}

.call-btn {
  display: inline-block;
  margin-top: 15px;
  background: #fff;
  color: #6f1b4d;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* SOCIAL */
.social-box {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.social-icons a {
  margin: 0 8px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #6f1b4d;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #8a2361;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
}

/* PRIVACY POLICY */
.privacy-policy {
  background: #efefef;
  padding: 40px 20px;
  font-family: "Poppins", sans-serif;
}

.container {
  max-width: 1000px;
  margin: auto;
}

.policy-header {
  text-align: center;
  margin-bottom: 40px;
}

.policy-header h1 {
  color: #6f1b4d;
  font-size: 36px;
}

.policy-header i {
  margin-right: 10px;
}

.policy-content {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.policy-content h3 {
  color: #6f1b4d;
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.policy-content p,
.policy-content li {
  color: #555;
  line-height: 1.7;
}

.policy-content ul {
  padding-left: 20px;
}

.policy-contact {
  background: #f7f7f7;
  padding: 15px;
  border-left: 4px solid #6f1b4d;
  border-radius: 6px;
}

.policy-contact i {
  color: #6f1b4d;
  margin-right: 8px;
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .policy-header h1 {
    font-size: 26px;
  }

  .policy-content {
    padding: 25px;
  }
}

/* GALLERY SECTION */
.gallery {
  padding: 40px 0;
  background: #f8f9fc;
  text-align: center;
  font-family: sans-serif;
}

.gallery-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
}

.gallery-subtitle {
  color: #666;
  margin-bottom: 40px;
}

/* GRID */
.gallery-grid {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* IMAGE BOX */
.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.4s ease;
}

/* HOVER EFFECT */
.gallery-item:hover img {
  transform: scale(1.08);
}

/* OPTIONAL OVERLAY */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 0.4s;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 220px;
  }
}
