* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Roboto", Helvetica, sans-serif;
  background-color: #ffffff;
  color: #333333;
}

.story-section {
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
}

.story-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.story-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.story-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.story-title {
  color: #d28d38;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 15px 20px 10px;
  text-transform: uppercase;
}

.story-text {
  color: #232323;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 20px 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* show only 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .story-section {
    padding: 40px 15px;
  }

  .story-title {
    font-size: 1rem;
  }

  .story-text {
    font-size: 0.9rem;
  }
}
.story-hero-section {
  font-family: "Poppins", sans-serif;
  color: #222;
  background-color: #fff;
  overflow: hidden;
}

/* ===== HERO BANNER ===== */
.story-hero-banner {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
}

.story-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
}

.story-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.story-hero-title {
  color: #f4a63a;
  font-size: 2.8rem;
  font-weight: 600;
  text-align: center;
}

/* ===== CONTENT SECTION ===== */
.story-hero-content {
  max-width: 1200px;
  margin: 20px auto;
  margin-top: 60px;
  padding: 0 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.story-hero-text {
  flex: 1 1 600px;
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
}

.story-hero-section .story-sub-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  width: 75%;
  margin: 0 auto;
  margin-bottom: 60px;
}

.story-hero-image-container {
  flex: 1 1 400px;
  text-align: right;
}

.story-hero-sideimage {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  /* box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2); */
}
.story-hero-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
}
/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .story-hero-banner {
    height: 380px;
  }

  .story-hero-title {
    font-size: 2rem;
  }

  .story-hero-content {
    flex-direction: column-reverse;
    text-align: left;
  }
  .story-hero-section .story-sub-text {
    width: 90%;
    margin-bottom: 20px;
  }

  .story-hero-image-container {
    flex: 1;
    text-align: center;
    width: 100%;
    margin-bottom: 0px;
  }

  .story-hero-sideimage {
    width: 100%;
  }
}
.story {
  display: flex;
  flex-direction: column;
}
/* ===== STORY MODAL ===== */
.story-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.story-modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
  animation: zoomIn 0.3s ease-in-out;
}

.story-modal-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.story-modal-content h3 {
  font-size: 1.5rem;
  color: #222;
  margin-bottom: 10px;
}

.story-modal-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.story-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  color: #333;
  cursor: pointer;
  transition: 0.2s;
}

.story-close-btn:hover {
  color: red;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.blog {
  width: 100%;
  overflow: hidden;
}

.blog-header {
  position: relative;
  text-align: center;
}

.blog-header img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: brightness(0.6);
}

.blog-header h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffcb47;
  font-size: 3rem;
  font-weight: bold;
}

.blog-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 60px 10%;
  flex-wrap: wrap;
}

.blog-card {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: center;
  padding: 30px 20px;
  width: 320px;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #333;
}

.blog-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #555;
}

.blog-card button {
  margin-top: 15px;
  background-color: #a2a040;
  border: none;
  color: white;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

.blog-card button:hover {
  background-color: #ffcb47;
  color: #000;
}

.blog-icons {
  margin-top: 20px;
}

.blog-icons i {
  margin: 0 8px;
  color: #a2a040;
  border: 1px solid #a2a040;
  padding: 6px;
  border-radius: 4px;
  transition: 0.3s;
}

.blog-icons i:hover {
  background-color: #ffcb47;
  color: #000;
  border-color: #ffcb47;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-container {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
  }

  .blog-card {
    width: 90%;
  }

  .blog-header h1 {
    font-size: 2rem;
  }
}

.navbar {
  background-color: #2c2c2c;
  color: #fff;
  padding: 14px 0;
  position: fixed;
  width: 100%;
  height: 100px;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar .container {
  width: 80%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.logo img {
  height: 55px;
  object-fit: contain;
}

/* Nav Links */
nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #f5b800;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 20px;
  left: 0;
  background-color: #1b1b1b;
  border-radius: 8px;
  display: none;
  flex-direction: column;
  min-width: 230px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.4);
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-menu li {
  padding: 10px 20px;
}

.dropdown-menu li a {
  display: block;
  color: #fff;
}

.dropdown-menu li:hover {
  background-color: #333;
}

/* Sub Dropdown */
.sub-dropdown {
  position: relative;
}

.sub-menu {
  position: absolute;
  left: 110px;
  top: 0;
  background-color: #1b1b1b;
  border-radius: 8px;
  display: none;
  min-width: 200px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.sub-dropdown:hover .sub-menu {
  display: block;
}

/* Pharmacy Button */
.pharmacy-btn button {
  background-color: #f5b800;
  border: none;
  padding: 8px 18px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  color: #000;
  transition: background 0.3s;
}

.pharmacy-btn button:hover {
  background-color: #ffcc33;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: white;
  border-radius: 5px;
}

/* Mobile View */
@media (max-width: 900px) {
  .navbar {
    justify-content: start;
  }
  .navbar .container {
    width: 100%;
  }
  nav {
    display: none;
    width: 100%;
    background-color: #1b1b1b;
    position: absolute;
    top: 75px;
    left: 0;
    padding: 20px 0;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    text-align: left;
    align-items: start;
  }

  nav ul li {
    padding: 10px 20px;
    text-align: left;
  }

  .dropdown-menu,
  .sub-menu {
    position: static;
    background: none;
    box-shadow: none;
    padding-left: 20px;
  }

  .hamburger {
    display: flex;
  }

  .sub-dropdown:hover .sub-menu {
    display: block;
  }
}
/* ===== SECTION ===== */
.specialization-section {
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.specialization-container {
  background-color: #fdf7e8;
  padding: 80px 50px;
  max-width: 90%;
  margin: 0 auto;
  border-radius: 16px;
}

/* ===== HEADINGS ===== */
.specialization-title {
  font-size: 2rem;
  color: #d4ad32;
  font-weight: 700;
  margin-bottom: 10px;
}

.specialization-subtitle {
  color: #000;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 50px;
}

/* ===== GRID ===== */
.specialization-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  justify-items: center;
}

/* ===== CARD ===== */
.specialization-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 300px;
  cursor: pointer;
}

.specialization-card:hover {
  transform: translateY(-8px);
}

/* ===== IMAGE ===== */
.card-img {
  height: 200px;
  width: 100%;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== LABEL ===== */
.card-label {
  background-color: #d4ad32;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  padding: 10px 0;
  width: 80%;
  margin: -25px auto 10px auto;
  position: relative;
  z-index: 2;
}

/* ===== TEXT ===== */
.card-text {
  font-size: 0.9rem;
  color: #000;
  padding: 10px 25px;
  line-height: 2.3;
  min-height: 60px;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* show only 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== LEARN MORE ===== */
.learn-more {
  display: inline-block;
  color: #d4ad32;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  margin: 10px 0 20px 0;
  transition: color 0.3s ease;
  pointer-events: none;
}

.learn-more:hover {
  color: #b88f23;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .specialization-section {
    padding: 60px 10px;
  }
  .specialization-title {
    font-size: 1.6rem;
  }
  .card-img {
    height: 180px;
  }
  .specialization-container {
    padding: 24px 10px;
    width: 100%;
  }
}

.gynaecology-section {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
}

.section-title {
  color: #d1a105;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 1rem;
  color: #333;
  margin-bottom: 40px;
}

.gynaecology-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff9e9;
  border-radius: 20px;
  padding: 0px 20px;
  max-width: 1100px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.gynaecology-column {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.icon-circle {
  background: #e4b204;
  color: #fff;
  font-size: 1.3rem;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.feature-box h3 {
  font-size: 1.1rem;
  color: #000;
  font-weight: 600;
}

.feature-box p {
  font-size: 0.9rem;
  color: #555;
  margin-top: 4px;
  line-height: 1.4;
}
.left .feature-box {
  flex-direction: row-reverse;
  text-align: right;
}
.doctor-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.doctor-image img {
  width: 100%;
  border-radius: 10px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  .gynaecology-container {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .feature-box {
    justify-content: center;
    text-align: left;
  }
  .doctor-image {
    order: -1;
  }
  .left .feature-box {
    flex-direction: row;
    text-align: left;
  }
}
.section-two {
  background-color: #fff;
  padding: 60px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-two-container {
  display: grid;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  grid-template-columns: 0.5fr 1fr;
  gap: 50px;
}

.section-two-images {
  position: relative;
  flex: 1;
  width: 100%;
  overflow: hidden;
}

.section-two-images img {
  border-radius: 15px;
  object-fit: cover;
  width: 100%;
  height: auto;
  display: block;
}

.section-two-main-img {
  width: 100%;
  height: auto;
}

.section-two-small-img {
  position: absolute;
  bottom: -25px;
  left: 25px;
  width: 160px;
  height: 160px;
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section-two-content {
  flex: 1;
  width: 100%;
}

.section-two-subtitle {
  color: #d4a017;
  font-weight: 600;
  font-size: 16px;
}

.section-two-title {
  font-size: 28px;
  font-weight: 700;
  margin: 10px 0 20px;
  color: #000;
}

.section-two-desc {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.section-two-btn {
  background-color: #d4a017;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
}

.section-two-btn:hover {
  background-color: #b88a12;
}

@media (max-width: 768px) {
  .section-two-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .section-two-images {
    margin-bottom: 40px;
  }

  .section-two-small-img {
    left: 50%;
    bottom: -40px;
    transform: translateX(-50%);
  }

  .section-two-title {
    font-size: 24px;
  }
}
.master-section {
  background: linear-gradient(to right, #f0c84b, #ffffff);
  padding: 80px 10% 0px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
    overflow: hidden;
}

.master-section-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
  gap: 40px;
}

.master-section-content {
  flex: 1;
  min-width: 300px;
}

.master-section-title {
  font-size: 72px;
  color: #056839;
  font-weight: 700;
  margin-bottom: 20px;
}

.master-section-desc {
  font-size: 20px;
  font-weight: 500;
  color: #f7f4f4;
  max-width: 600px;
  margin-bottom: 30px;
}

.master-section-btn {
  background: #fff;
  color: #056839;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}

.master-section-btn:hover {
  background: #056839;
  color: #fff;
}

.master-section-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: flex-end;
}

.master-section-image img {
  width: 480px;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .master-section {
    height: 100%;
    padding-top: 180px;
    padding-bottom: 30px;
  }
  .master-section-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .master-section-title {
    font-size: 36px;
  }

  .master-section-desc {
    font-size: 16px;
    margin: 0 auto 25px;
    color: #000;
  }

  .master-section-image img {
    width: 100%;
  }
}
.section-three {
  background: #f9f9f9;
  padding: 80px 10%;
  text-align: center;
}

.section-three-header {
  margin-bottom: 50px;
}

.section-three-subtitle {
  color: #c49a32;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 20px;
}

.section-three-desc {
  color: #222;
  font-size: 16px;
  margin-top: 5px;
}

.section-three-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-content: center;
}

.section-three-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  height: 400px;
  transition: transform 0.3s ease;
}

.section-three-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.section-three-card:hover img {
  transform: scale(1.1);
  filter: brightness(0.7);
}

.section-three-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 16px;
  color: #fff;
  padding: 20px;
}

.section-three-card:hover .section-three-overlay {
  opacity: 1;
}

.section-three-overlay h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-three-overlay button {
  background: #d4a017;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.section-three-overlay button:hover {
  background: #b88a12;
}

@media (max-width: 768px) {
  .section-three-overlay h4 {
    font-size: 14px;
  }

  .section-three-overlay button {
    padding: 8px 18px;
  }
}
.doc-section {
  width: 100%;
  max-width: 1200px;
  padding: 50px 20px;
  text-align: center;
  margin: 0 auto;
}

.doc-section h2 {
  font-size: 2rem;
  color: #c49a32;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
}
.doc-sub-tit {
  text-align: center;
  margin-bottom: 40px;
}
.doc-section-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.doc-section-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.doc-section-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.doc-section-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* Blurred name overlay */
.doc-section-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  padding: 28px 15px;
  text-align: left;
  transition: all 0.3s ease;
}

.doc-section-overlay h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

.doc-section-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Hover effect to slightly lift overlay */
.doc-section-card:hover .doc-section-overlay {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px);
}

.doc-section-icons {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.doc-section-icons span {
  width: 32px;
  height: 32px;
  background: rgba(28, 28, 28, 0.364);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.doc-section-icons span i {
  color: #fff;
}
.doc-section-icons span:hover {
  background: #0c405d;
  color: #fff;
}

@media (max-width: 600px) {
  .doc-section h2 {
    font-size: 1.6rem;
  }

  .doc-section-overlay h3 {
    font-size: 1rem;
  }

  .doc-section-overlay p {
    font-size: 0.85rem;
  }
}
.slide-section {
  text-align: center;
  padding: 60px 20px;
}

.slide-section h2 {
  color: #b89029;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.slide-section p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 40px;
}

.slider-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  align-items: center;
  gap: 60px;
  transition: transform 0.6s ease-in-out;
}

.slider-track img {
  width: 160px;
  height: auto;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.slider-track img:hover {
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .slider-track img {
    width: 100px;
  }
  .slider-wrapper {
    max-width: 95%;
    gap: 30px;
  }
}
footer {
  background: linear-gradient(135deg, #1d1d1d 0%, #2c2c2c 100%);
  padding: 60px 8%;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 50px;
  position: relative;
  overflow: hidden;
}

/* Decorative overlay */
footer::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -150px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(184, 144, 41, 0.2) 0%,
    transparent 70%
  );
  z-index: 0;
}

.footer-column {
  position: relative;
  z-index: 2;
}

.footer-logo img {
  width: 150px;
  margin-bottom: 15px;
}

.footer-column h4 {
  color: #ffcc4a;
  margin-bottom: 20px;
  font-size: 1.2rem;
  position: relative;
}

.footer-column h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #b89029;
  margin-top: 6px;
}

.footer-column p,
.footer-column a {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.7;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #ffcc4a;
  transform: translateX(4px);
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: #222;
  color: #ffcc4a;
  margin-right: 8px;
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #b89029;
  color: #fff;
  transform: scale(1.1);
}

.map {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(255, 204, 74, 0.2);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 10px 12px;
  border: none;
  border-radius: 6px;
  background: #333;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: background 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: #444;
}

.contact-form button {
  background: #b89029;
  color: #fff;
  padding: 10px 0;
  border: none;
  width: 100%;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.contact-form button:hover {
  background: #ffcc4a;
  color: #111;
}

.footer-bottom {
  background: #0a0a0a;
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 900px) {
  footer {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-column h4::after {
    margin: 6px auto 0;
  }

  .social-icons a {
    margin: 5px;
  }
}
/* ===== POPUP MODAL ===== */
.specialization-modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}

.modal-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.modal-content h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.modal-content p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  color: #333;
  cursor: pointer;
  transition: 0.2s;
}

.close-btn:hover {
  color: red;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.gallery-section {
  padding: 60px 20px;
  text-align: center;
}

/* Buttons */
.gallery-header {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-btn {
  background: #e6e6e6;
  border: none;
  padding: 10px 25px;
  font-size: 16px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-btn.active {
  background: #f4a63a;
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 191, 0, 0.3);
}

.gallery-btn:hover {
  background: #f0c84b;
  color: #fff;
}

/* Image Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  padding: 0 10px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.gallery-item:hover .zoom-icon {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
}
.vid-container .container {
  width: 80%;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  place-items: center;
}
.vid-container iframe {
  width: 100%;
  height: 250px;
  border-radius: 12px;
}
.contact-hero {
  position: relative;
  background: url("./img/contact-banner.jpg") center/cover no-repeat;
  height: 280px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.contact-hero .overlay {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  padding-top: 80px;
}
.contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 8px;
}
.contact-hero p a {
  color: #fff;
  text-decoration: none;
}
.contact-hero p {
  color: #ddd;
}

/* ==== CONTACT SECTION ==== */
.contact-section {
  padding: 80px 20px;
  background: #fff;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-left {
  flex: 1 1 60%;
}

.contact-left h2 {
  color: #f4a63a;
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-left p {
  color: #666;
  margin-bottom: 30px;
}

.contact-left form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-left input,
.contact-left select,
.contact-left textarea {
  padding: 12px 15px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  transition: border 0.3s ease;
}

.contact-left input:focus,
.contact-left select:focus,
.contact-left textarea:focus {
  border-color: #f4a63a;
}

.submit-btn {
  background: #f4a63a;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}
.submit-btn:hover {
  background: #e43d00;
}

/* ==== RIGHT SIDE INFO BOXES ==== */
.contact-right {
  flex: 1 1 35%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-box {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.info-box span {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

.info-box h4 {
  color: #333;
  margin-bottom: 8px;
}

.info-box p {
  color: #666;
  font-size: 15px;
}

/* ==== MAP ==== */
.map-section iframe {
  border-radius: 0;
  display: block;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
  .contact-right {
    order: -1;
  }
}
/* Inner Dropdown (3rd Level) */
.inner-dropdown {
  position: relative;
}

.inner-menu {
  position: absolute;
  left: 200px; /* Adjust alignment to match your dropdown width */
  top: 0;
  background-color: #1b1b1b;
  border-radius: 8px;
  display: none;
  min-width: 200px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  z-index: 100;
}

.inner-dropdown:hover .inner-menu {
  display: block;
}

.inner-menu li {
  padding: 10px 20px;
}

.inner-menu li a {
  color: #fff;
  display: block;
}

.inner-menu li:hover {
  background-color: #333;
}
@media (max-width: 992px) {
  .inner-menu {
    position: static;
    background: none;
    box-shadow: none;
    padding-left: 20px;
    display: none;
  }
  .inner-dropdown:hover .inner-menu {
    display: block;
  }
}
.section-boxes {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background: #f8f9fa;
}

.section-boxes-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  width: 100%;
  max-width: 1000px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  padding: 25px;
}

.section-boxes-card {
  position: relative;
  flex: 1 1 300px;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.section-boxes-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.section-boxes-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.65);
}

.section-boxes-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-boxes-overlay h3 {
  color: #fff;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.section-boxes-card:hover .section-boxes-overlay h3 {
  transform: scale(1.1);
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .section-boxes-container {
    flex-direction: column;
    padding: 15px;
  }

  .section-boxes-card {
    flex: 1 1 100%;
  }

  .section-boxes-overlay h3 {
    font-size: 1.3rem;
  }
}
.fetal-section {
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
  color: #333;
  line-height: 1.7;
}

.fetal-section-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 60px auto;
}

.fetal-section-content {
  flex: 1 1 550px;
}

.fetal-section-title {
  color: #e7a42b;
  font-size: 2.3rem;
  font-weight: 700;
  text-align: center;
  margin-top: 30px;
}

.fetal-section-text {
  color: #555;
  font-size: 1rem;
  text-align: justify;
}

.fetal-section-image {
  flex: 1 1 400px;
  text-align: center;
}

.fetal-section-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* Subcontent section */
.fetal-section-subcontent {
  max-width: 1100px;
  margin: 0 auto;
}

.fetal-section-subtitle {
  color: #e7a42b;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 900px) {
  .fetal-section-container {
    flex-direction: column;
    text-align: center;
  }

  .fetal-section-title {
    font-size: 2rem;
  }

  .fetal-section-image img {
    max-width: 100%;
  }
}
.ultrasound-section {
  padding: 60px 20px;
  background-color: #fff;
  font-family: "Poppins", sans-serif;
}

.ultrasound-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.ultrasound-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ultrasound-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.ultrasound-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.65);
}

.ultrasound-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ultrasound-overlay h3 {
  color: #fff;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 600;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
  letter-spacing: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.ultrasound-card:hover .ultrasound-overlay h3 {
  transform: scale(1.1);
  opacity: 0.9;
}

/* Text Section */
.ultrasound-text-section {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: center;
}

.ultrasound-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.ultrasound-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .ultrasound-overlay h3 {
    font-size: 1rem;
  }

  .ultrasound-subtitle {
    font-size: 1.2rem;
  }

  .ultrasound-description {
    font-size: 0.95rem;
  }
}
/* ===== SURGERY SECTION ===== */
.surgery-section {
  background: #f8f9fb;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.surgery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 1200px;
}

.surgery-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: #000;
}

.surgery-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.surgery-card:hover img {
  transform: scale(1.1);
  opacity: 0.7;
}

.surgery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(10, 10, 10, 0.4);
  transition: background 0.4s ease;
}

.surgery-card:hover .surgery-overlay {
  background: rgba(10, 10, 10, 0.65);
}

.surgery-title {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  z-index: 2;
}

/* Hover glow effect */
.surgery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .surgery-title {
    font-size: 1rem;
  }

  .surgery-card img {
    height: 200px;
  }
}
/* ===== LAB TEXT SECTION ===== */
.lab-text-section {
  background: #ffffff;
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
  color: #333;
  line-height: 1.8;
}

.lab-text-container {
  max-width: 900px;
  margin: 0 auto;
}

.lab-text-intro {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 40px;
}

.lab-text-heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lab-text-block {
  margin-bottom: 35px;
}

.lab-text-subheading {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 8px;
}

.lab-text-paragraph {
  font-size: 1rem;
  color: #555;
  text-align: justify;
}

/* Subtle fade animation */
.lab-text-block,
.lab-text-intro {
  opacity: 0;
  transform: translateY(20px);
  animation: lab-text-fade 0.8s ease forwards;
}

.lab-text-block:nth-child(2) {
  animation-delay: 0.3s;
}
.lab-text-block:nth-child(3) {
  animation-delay: 0.5s;
}
.lab-text-block:nth-child(4) {
  animation-delay: 0.7s;
}

@keyframes lab-text-fade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive tweaks */
/* ===== POST-NATAL CARE SECTION ===== */
.post-natal-section {
  background: #fafafa;
  padding: 70px 20px;
  font-family: "Poppins", sans-serif;
  color: #333;
  line-height: 1.8;
}

.post-natal-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Intro */
.post-natal-intro {
  text-align: center;
  margin-bottom: 50px;
}
.post-natal-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffcb47;
  margin-bottom: 20px;
}
.post-natal-intro p {
  max-width: 800px;
  margin: 10px auto;
  font-size: 1rem;
  color: #555;
}

/* Each Section */
.post-natal-section-box {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.post-natal-section-box:hover {
  transform: translateY(-5px);
}
.post-natal-section-box.reverse {
  flex-direction: row-reverse;
}

.post-natal-image img {
  padding-left: 10px;
  width: 100%;
  max-width: 500px;
  height: 320px;
  object-fit: cover;
  border-radius: 15px;
}

.post-natal-text {
  padding: 30px;
  flex: 1;
}
.post-natal-text h3 {
  color: #ffcb47;
  margin-bottom: 15px;
  font-size: 1.3rem;
}
.post-natal-text p {
  margin-bottom: 10px;
  color: #555;
}
.post-natal-text ul {
  list-style: none;
  padding: 0;
}
.post-natal-text ul li {
  margin: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #444;
  font-size: 0.95rem;
}
.post-natal-text ul i {
  color: #ffcb47;
}

/* Tips Section */
.post-natal-care-tips {
  text-align: center;
  margin-top: 60px;
}
.post-natal-care-tips h3 {
  color: #ffcb47;
  font-size: 1.4rem;
  margin-bottom: 30px;
}
.post-natal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.post-natal-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px 15px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.post-natal-card:hover {
  background: #ffcb47;
  color: #fff;
  transform: translateY(-6px);
}
.post-natal-card i {
  font-size: 1.6rem;
  color: #ffcb47;
  margin-bottom: 10px;
  transition: color 0.3s;
}
.post-natal-card:hover i {
  color: #fff;
}
.post-natal-card p {
  font-size: 0.95rem;
  font-weight: 500;
}

.post-natal-final {
  margin-top: 35px;
  font-weight: 600;
  color: #333;
}

/* Responsive */
@media (max-width: 900px) {
  .post-natal-section-box {
    display: block;
    flex-direction: column;
  }
  .post-natal-image img {
    max-width: 100%;
  }
  .post-natal-text {
    text-align: center;
  }
}
.JUST-PREGNANT-section {
  background: #fff8f6;
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
  color: #333;
}

.JUST-PREGNANT-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.JUST-PREGNANT-title {
  font-size: 2.4rem;
  color: #ffcb47;
  font-weight: 700;
  margin-bottom: 10px;
}

.JUST-PREGNANT-subtext {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 40px;
}

.JUST-PREGNANT-image-box {
  margin-bottom: 50px;
}

.JUST-PREGNANT-image {
  width: 100%;
  max-width: 700px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(209, 107, 165, 0.2);
}

.JUST-PREGNANT-help-section {
  margin-bottom: 40px;
}

.JUST-PREGNANT-heading {
  font-size: 1.6rem;
  color: #ffcb47;
  margin-bottom: 10px;
}

.JUST-PREGNANT-text {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.JUST-PREGNANT-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.JUST-PREGNANT-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.JUST-PREGNANT-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(209, 107, 165, 0.25);
}

.JUST-PREGNANT-icon {
  font-size: 2rem;
  color: #ffcc4a;
  margin-bottom: 15px;
}

.JUST-PREGNANT-card h4 {
  font-size: 1.2rem;
  color: #ffcb47;
  margin-bottom: 10px;
}

.JUST-PREGNANT-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .JUST-PREGNANT-title {
    font-size: 1.8rem;
  }
  .JUST-PREGNANT-subtext {
    font-size: 1rem;
  }
}
.Growing-section {
  background-color: #fffdf5;
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
  color: #333;
}

.Growing-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.Growing-title {
  font-size: 2.4rem;
  color: #ffcb47;
  font-weight: 700;
  margin-bottom: 10px;
}

.Growing-subtext {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  max-width: 850px;
  margin: 0 auto 50px;
}

.Growing-image-box {
  margin-bottom: 50px;
}

.Growing-image {
  width: 100%;
  max-width: 700px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(255, 203, 71, 0.25);
}

.Growing-help-section {
  margin-bottom: 40px;
}

.Growing-heading {
  font-size: 1.6rem;
  color: #d6a52a;
  margin-bottom: 15px;
  font-weight: 600;
}

.Growing-text {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.Growing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.Growing-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 6px 16px rgba(255, 203, 71, 0.15);
  transition: all 0.3s ease;
}

.Growing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 203, 71, 0.3);
}

.Growing-icon {
  font-size: 2rem;
  color: #ffcb47;
  margin-bottom: 15px;
}

.Growing-card h4 {
  font-size: 1.2rem;
  color: #d6a52a;
  margin-bottom: 10px;
}

.Growing-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .Growing-title {
    font-size: 1.8rem;
  }
  .Growing-subtext {
    font-size: 1rem;
  }
}
.NEAR-section {
  background-color: #faf7ff;
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
  color: #333;
}

.NEAR-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.NEAR-title {
  font-size: 2.4rem;
  color: #ffcb47;
  font-weight: 700;
  margin-bottom: 10px;
}

.NEAR-subtext {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  max-width: 850px;
  margin: 0 auto 50px;
}

.NEAR-image-box {
  margin-bottom: 50px;
}

.NEAR-image {
  width: 100%;
  max-width: 700px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(179, 138, 221, 0.25);
}

.NEAR-help-section {
  margin-bottom: 40px;
}

.NEAR-heading {
  font-size: 1.6rem;
  color: #ffcc4a;
  margin-bottom: 15px;
  font-weight: 600;
}

.NEAR-text {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.NEAR-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.NEAR-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 6px 16px rgba(179, 138, 221, 0.15);
  transition: all 0.3s ease;
}

.NEAR-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(179, 138, 221, 0.3);
}

.NEAR-icon {
  font-size: 2rem;
  color: #ffcb47;
  margin-bottom: 15px;
}

.NEAR-card h4 {
  font-size: 1.2rem;
  color: #ffcc4a;
  margin-bottom: 10px;
}

.NEAR-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .NEAR-title {
    font-size: 1.8rem;
  }
  .NEAR-subtext {
    font-size: 1rem;
  }
}
.after-section {
  background-color: #fff9e6;
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
  color: #333;
}

.after-section-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.after-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffcb47;
  margin-bottom: 15px;
}

.after-section-subtext {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 50px;
}

.after-section-image-box {
  margin-bottom: 50px;
}

.after-section-image {
  width: 100%;
  max-width: 700px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(255, 203, 71, 0.3);
}

.after-section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.after-section-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(68, 58, 32, 0.2);
  transition: all 0.3s ease;
  text-align: left;
}

.after-section-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(255, 203, 71, 0.35);
}

.after-section-icon {
  font-size: 2.3rem;
  color: #ffcb47;
  margin-bottom: 15px;
}

.after-section-card h3 {
  font-size: 1.3rem;
  color: #ffcb47;
  margin-bottom: 10px;
}

.after-section-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .after-section-title {
    font-size: 1.8rem;
  }
  .after-section-subtext {
    font-size: 1rem;
  }
}
.abnormal-section {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
}

.abnormal-title-main {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffcb47;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* TAB BUTTONS */
.abnormal-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.abnormal-tab {
  background: transparent;
  border: 2px solid #ffcb47;
  color: #000;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.abnormal-tab:hover,
.abnormal-tab.active {
  background: #ffcb47;
  color: #000;
}

/* CONTENT BOX */
.abnormal-content-box {
  background: #1e1e1e;
  color: #fff;
  border-radius: 10px;
  padding: 25px;
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.abnormal-content-box.active {
  display: block;
}

.abnormal-content-box p {
  margin: 0;
  font-size: 1rem;
  color: #ddd;
}

/* Divider Between Sections */
.abnormal-divider {
  height: 2px;
  background: #eee;
  margin: 60px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .abnormal-title-main {
    font-size: 1.4rem;
  }
  .abnormal-tab {
    font-size: 0.9rem;
    padding: 8px 14px;
  }
  .abnormal-content-box p {
    font-size: 0.9rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pap-section {
  background: #fff;
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
}

.pap-container {
  max-width: 1100px;
  margin: 0 auto;
}

.pap-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #ffcb47;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.pap-description {
  font-size: 1rem;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.8;
}

.pap-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffcb47;
  margin-bottom: 20px;
}

.pap-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.pap-tab {
  background: transparent;
  border: 2px solid #ffcb47;
  color: #000;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.pap-tab:hover,
.pap-tab.active {
  background: #ffcb47;
  color: #000;
}

.pap-content-box {
  background: #1e1e1e;
  color: #fff;
  border-radius: 10px;
  padding: 25px;
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.pap-content-box.active {
  display: block;
}

.pap-content-box p {
  font-size: 1rem;
  color: #ddd;
  margin: 0;
}

.pap-note {
  font-size: 1rem;
  color: #333;
  margin-top: 25px;
  line-height: 1.8;
}

.pap-divider {
  height: 2px;
  background: #eee;
  margin: 40px 0;
}

@media (max-width: 768px) {
  .pap-title {
    font-size: 1.5rem;
    text-align: center;
  }

  .pap-subtitle {
    font-size: 1.2rem;
    text-align: center;
  }

  .pap-tab {
    font-size: 0.9rem;
    padding: 8px 14px;
  }

  .pap-content-box p {
    font-size: 0.9rem;
  }

  .pap-note {
    font-size: 0.9rem;
    text-align: center;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contracept-section {
  width: 80%;
  margin: 40px auto;
}

.contracept-heading {
  font-size: 22px;
  color: #333;
  margin-bottom: 10px;
}

.contracept-text {
  margin-bottom: 10px;
  color: #555;
  line-height: 1.6;
}
.contracept-heading p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}
.contracept-subheading {
  background-color: #ffcb47;
  padding: 12px;
  font-size: 18px;
  color: #000;
  margin-top: 30px;
  border-radius: 4px;
}

.contracept-accordion {
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.contracept-item {
  border-top: 1px solid #ddd;
}

.contracept-item:first-child {
  border-top: none;
}

.contracept-title {
  background: #f9f9f9;
  width: 100%;
  text-align: left;
  border: none;
  padding: 14px 18px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
}

.contracept-title:hover {
  background: #fff4d2;
}

.contracept-content {
  display: none;
  padding: 15px 20px;
  background: #fff;
  border-top: 1px solid #eee;
}
.contracept-content p {
  margin: 0 0 10px 0;
  color: #555;
  line-height: 1.6;
}
.contracept-item.active .contracept-content {
  display: block;
}

.contracept-warning {
  margin-top: 20px;
  background: #fff4d2;
  border-left: 5px solid #ffcb47;
  padding: 12px;
  font-weight: 600;
  color: #000;
}

@media (max-width: 768px) {
  .contracept-section {
    width: 100%;
    padding: 10px;
  }
  .contracept-title {
    font-size: 15px;
  }
}
/* ===== PELVIC SECTION ===== */
.pelvic-section {
  background: #f9fafc;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  font-family: "Poppins", Arial, sans-serif;
}

.pelvic-container {
  width: 80%;
  background: #ffffff;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ===== HEADINGS ===== */
.pelvic-heading {
  font-size: 32px;
  color: #1d3557;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.pelvic-intro {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
}

.pelvic-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #2a2a2a;
  margin: 25px 0 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pelvic-subtitle.highlight {
  background: linear-gradient(90deg, #ffcb47, #f2a93b);
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  color: #1a1a1a;
  box-shadow: 0 4px 10px rgba(255, 203, 71, 0.3);
}

/* ===== CARD ===== */
.pelvic-card {
  background: #fffef8;
  border: 1px solid #f5e4b8;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 12px rgba(255, 203, 71, 0.08);
}

.pelvic-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255, 203, 71, 0.25);
}

.pelvic-card p {
  color: #444;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
  text-align: justify;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .pelvic-container {
    padding: 25px;
    width: 100%;
  }

  .pelvic-heading {
    font-size: 26px;
  }

  .pelvic-subtitle {
    font-size: 18px;
  }

  .pelvic-card {
    padding: 20px;
  }
}
.painss-section {
  background: #fffaf5;
  color: #333;
  padding: 100px 20px;
  font-family: "Poppins", sans-serif;
}

.painss-container {
  max-width: 1200px;
  margin: 0 auto;
}

.painss-heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: #b48a1f;
  text-align: center;
  margin-bottom: 20px;
}

.painss-subheading {
  font-size: 1.6rem;
  font-weight: 600;
  color: #b48a1f;
  margin: 20px 0 10px;
}

.painss-text {
  line-height: 1.8;
  font-size: 1rem;
  color: #444;
  margin-bottom: 15px;
}

.painss-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
}

.painss-left {
  flex: 1 1 55%;
}

.painss-right {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
}

.painss-image {
  width: 100%;
  max-width: 500px;
  height: 350px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.painss-treatment {
  background: #f9f3e7;
  border-left: 6px solid #b48a1f;
  padding: 30px;
  border-radius: 12px;
  margin-top: 50px;
}

@media (max-width: 768px) {
  .painss-heading {
    font-size: 2rem;
  }

  .painss-content {
    flex-direction: column;
  }

  .painss-left,
  .painss-right {
    flex: 1 1 100%;
  }

  .painss-image {
    max-width: 100%;
  }
}
.unary-section {
  background: #fffdf9;
  color: #333;
  padding: 100px 20px;
  font-family: "Poppins", sans-serif;
}

.unary-container {
  max-width: 1200px;
  margin: 0 auto;
}

.unary-heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: #b48a1f;
  text-align: center;
  margin-bottom: 25px;
}

.unary-subheading {
  font-size: 1.6rem;
  font-weight: 600;
  color: #b48a1f;
  margin: 30px 0 15px;
}

.unary-text {
  line-height: 1.8;
  font-size: 1rem;
  color: #444;
  margin-bottom: 15px;
}

.unary-symptoms,
.unary-help {
  background: #fffaf1;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  margin-top: 30px;
  transition: all 0.3s ease;
}

.unary-symptoms:hover,
.unary-help:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.unary-highlight {
  font-weight: 600;
  color: #7c5d10;
  border-left: 5px solid #b48a1f;
  padding-left: 15px;
  background: #fff5e0;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .unary-heading {
    font-size: 2rem;
  }

  .unary-subheading {
    font-size: 1.3rem;
  }

  .unary-text {
    font-size: 0.95rem;
  }

  .unary-symptoms,
  .unary-help {
    padding: 30px 20px;
  }
}
.ovarian-section {
  background-color: #fffdf8;
  padding: 100px 20px;
  font-family: "Poppins", sans-serif;
  color: #333;
}

.ovarian-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ovarian-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.ovarian-content {
  flex: 1 1 550px;
}

.ovarian-heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: #b48a1f;
  margin-bottom: 20px;
}

.ovarian-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #444;
}

.ovarian-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.ovarian-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ovarian-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.ovarian-subheading {
  font-size: 1.6rem;
  font-weight: 600;
  color: #b48a1f;
  margin-top: 40px;
  margin-bottom: 15px;
}

.ovarian-list {
  list-style-type: disc;
  padding-left: 25px;
  margin-bottom: 20px;
  color: #444;
}

.ovarian-list li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.ovarian-note {
  background: #fff5e0;
  border-left: 5px solid #b48a1f;
  padding: 15px 20px;
  border-radius: 10px;
  font-weight: 500;
  color: #7c5d10;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .ovarian-top {
    flex-direction: column;
    text-align: center;
  }

  .ovarian-image img {
    max-width: 320px;
  }

  .ovarian-heading {
    font-size: 2rem;
  }

  .ovarian-subheading {
    font-size: 1.3rem;
  }
}
/* ===== MENOPAUSE SECTION STYLING ===== */
.meno-section {
  background: linear-gradient(135deg, #fff8f8, #fdf1ec);
  color: #333;
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
}

.meno-container {
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.8;
}

.meno-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.meno-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffcb47;
  flex: 1 1 400px;
}

.meno-image img {
  width: 280px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.meno-image img:hover {
  transform: scale(1.05);
}

.meno-text {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #444;
}

.meno-subtitle {
  font-size: 1.6rem;
  color: #ffcb47;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 15px;
  position: relative;
}

.meno-subtitle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 60px;
  height: 3px;
  background: #ffcb47;
  border-radius: 4px;
}

.meno-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.meno-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #333;
}

.meno-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffcb47;
  font-size: 1.4rem;
  line-height: 1;
}

.meno-highlight {
  background: #fff3f0;
  border-left: 5px solid #ffcb47;
  padding: 20px;
  border-radius: 8px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .meno-header {
    flex-direction: column;
    text-align: center;
  }
  .meno-image img {
    width: 90%;
  }
  .meno-title {
    font-size: 2rem;
  }
}
/* Floating WhatsApp Button */
.float-con {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.whatsapp-con a {
  background-color: #25d366;
  color: white;
  font-size: 28px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.whatsapp-con a:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}
