@import url(./global.css);
/* --- Global Styles --- */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&display=swap');


/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Merriweather', serif;
  background-color: #ffffff;
  color: #000000;
  line-height: 1.5;
  padding-top: 100px;
}

/* Header Styles - NEW CLASS NAMES */
.nav-topbar {
  background: #ffffff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  /* border-bottom: 2px solid #0b7c7a; */
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.nav-topbar.scrolled {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  position: relative;
}

/* Logo */
.site-logo {
  flex-shrink: 0;
}

.site-logo img {
  height: 70px;
  width: auto;
  transition: transform 0.3s ease;
}

.site-logo:hover img {
  transform: scale(1.05);
}

/* Main Navigation */
.main-menu {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.main-menu ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.main-menu a {
  text-decoration: none;
  color: #000000;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  padding: 10px 0;
  transition: all 0.3s ease;
}

.main-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0b7c7a, #0a5fd8);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-menu a:hover::after,
.main-menu a.current-page::after {
  width: 100%;
}

.main-menu a:hover,
.main-menu a.current-page {
  color: #0b7c7a;
}

/* Dropdown Menu */
.menu-dropdown {
  position: relative;
}

.menu-dropdown>a {
  cursor: pointer;
}

.dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 220px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 12px 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1001;
}

.menu-dropdown:hover .dropdown-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-list li {
  list-style: none;
}

.dropdown-list a {
  padding: 14px 24px;
  display: block;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-list a:last-child {
  border-bottom: none;
}

.dropdown-list a:hover {
  background: linear-gradient(135deg, #0b7c7a, #0a5fd8);
  color: #ffffff;
  transform: translateX(8px);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* CTA Button */
.cta-button {
  background: linear-gradient(135deg, #0b7c7a, #0a5fd8);
  color: #ffffff;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Merriweather', serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 6px 20px rgba(11, 124, 122, 0.3);
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  background: linear-gradient(135deg, #0a5fd8, #0b7c7a);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 35px rgba(10, 95, 216, 0.4);
}

/* Hamburger Menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}

.mobile-toggle span {
  width: 28px;
  height: 3px;
  background: #000000;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
  padding: 100px 30px 30px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  overflow-y: auto;
}

.mobile-panel.active {
  right: 0;
}

.mobile-panel ul {
  list-style: none;
}

.mobile-panel li {
  margin-bottom: 20px;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.4s ease;
}

.mobile-panel.active li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-panel.active li:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-panel.active li:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-panel.active li:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-panel.active li:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-panel.active li:nth-child(5) {
  transition-delay: 0.3s;
}

.mobile-panel.active li:nth-child(6) {
  transition-delay: 0.35s;
}

.mobile-panel a {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}

.mobile-panel a:hover {
  color: #0b7c7a;
  padding-left: 20px;
}

/* Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transition: all 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Active Link Styles */
.main-menu a.current-page {
  color: #0b7c7a !important;
}

.main-menu a.current-page::after {
  width: 100% !important;
}

.mobile-panel a.current-page {
  color: #0b7c7a;
  padding-left: 20px;
  background: linear-gradient(90deg, rgba(11, 124, 122, 0.1), transparent);
  border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-container {
    padding: 0 1.5rem;
    gap: 1rem;
  }

  .main-menu ul {
    gap: 1.5rem;
  }

  .main-menu a {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .nav-container {
    height: 80px;
    padding: 0 1rem;
  }

  .site-logo img {
    height: 55px;
  }

  .main-menu {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .header-actions {
    gap: 12px;
  }

  .cta-button {
    padding: 10px 24px;
    font-size: 14px;
  }
}

@media (max-width: 360px) {
  .nav-container {
    padding: 0 0.8rem;
    height: 75px;
  }

  .site-logo img {
    height: 50px;
  }

  .header-actions {
    gap: 8px;
  }

  .cta-button {
    padding: 8px 20px;
    font-size: 13px;
  }

  .mobile-panel {
    width: 100%;
    padding: 90px 20px 20px;
  }
}





/* --- Global Variables --- */
:root {
  margin: 0%;
  padding: 0%;
  --peacock-green: #00827f;
  --white: #ffffff;
  --black: #000000;
  --font-main: 'Merriweather', serif;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  height: 80vh;
  background: url("../images/y\ 5.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
  font-family: var(--font-main);
  /* Standardized Padding */
  padding: 3em 0em;
}

/* Overlay - Slightly darker to make Merriweather legible */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.507);
  z-index: 1;
}

/* Container & Fade-Up Animation */
.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  text-align: center;
  /* Fade Up Animation */
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
  overlay: var(--black);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Topic (H1) */
.hero-content h1 {
  font-size: 35px;
  /* Requested size */
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
  color: var(--white);
}

/* Content (P) */
.hero-content p {
  font-size: 15px;
  font-weight: normal;
  line-height: 1.8;
  width: 100%;
  text-align: justify;
  margin-bottom: 20px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Stats Container */
.stats-box {
  display: flex;
  gap: 10px;
  justify-content: center;
  font-size: 15px;
  /* Subtopic size */
  font-weight: normal;
  line-height: 1.5;
  margin-top: 20px;
  flex-wrap: wrap;
  /* Responsive wrapping */
}

/* Each Stat Block */
.stats-box span {
  display: inline-block;
  background: rgba(0, 0, 0, 0.6);
  /* Overlay background */
  color: #fff;
  /* White text for contrast */
  padding: 1em 1em;
  border-radius: 12px;
  min-width: 130px;
  text-align: center;
  transition: all 0.3s ease;
}

/* Hover Animation */
.stats-box span:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-5px) scale(1.05);
  /* Fade-up + scale */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}


/* ===== BUTTONS ===== */
.dual-btn-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.btn {
  padding: 14px 20px;
  border-radius: 5px;
  /* Slightly more professional for Merriweather */
  font-size: 15px;
  font-weight: normal;
  cursor: pointer;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
  font-family: var(--font-main);
}

/* Peacock Gradient Primary Button */
.btn-primary {
  background: var(--peacock-green);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 130, 127, 0.3);
}

/* Primary Hover Animation */
.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 95, 115, 0.5);
  filter: brightness(1.1);
}

/* Secondary Button (Ghost Style) */
.btn-secondary {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-5px);
}

@media (max-width: 1024px) {
  .hero-section {
    height: 75vh;
    padding: 2.5em;
  }

  .hero-container {
    max-width: 900px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 14px;
    text-align: center;
  }

  .stats-box {
    gap: 12px;
    font-size: 14px;
  }
}


@media (max-width: 768px) {
  .hero-section {
    height: auto;
    padding: 2em 1.5em;
  }

  .hero-content h1 {
    font-size: 25px;
    line-height: 1.4;
    margin-top: 80px;
  }

  .hero-content p {
    font-size: 14px;
    text-align: center;
  }

  .dual-btn-container {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .stats-box {
    flex-direction: column;
    gap: 15px;
    font-size: 15px;
  }

  .stats-box span {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .hero-section {
    padding: 1.5em 1em;
  }

  .hero-content h1 {
    font-size: 22px;
    margin-top: 60px;
  }

  .hero-content p {
    font-size: 13px;
    line-height: 1.6;
  }

  .stats-box {
    font-size: 14px;
  }

  .stats-box span {
    padding: 0.8em;
    min-width: unset;
  }

  .btn {
    font-size: 14px;
    padding: 12px 16px;
  }
}





/* ===== SECTION HEADLINE ===== */

:root {
  --peacock-green: #00a86b;
  --text-dark: #000;
  --text-light: #ffffff;
  --bg-light: #ffffff;
}

body {
  background-color: white;
  font-family: 'Merriweather', serif;
  margin: 0;
  padding: 2em;
  /* Balanced padding */
  color: black;
}

/* Header Styling */
.services-header {
  max-width: 1500px;
  margin: 3em 3em 0em 3em;
  text-align: center;
}

.services-header h2 {
  font-size: 30px;
  /* Topic size */
  font-weight: 700;
  line-height: 1.5;
  color: black;
  margin: 0;
}

/* Container */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  padding: 3em;
  max-width: 1500px;
  margin: 0 auto;
}

.service-card {
  height: 400px;
  background: var(--bg-light);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}


/* Background Overlay */
.card-bg {
  position: absolute;
  bottom: -118%;
  left: -15%;
  width: 130%;
  height: 120%;
  background: var(--peacock-green);
  border-radius: 10% 10% 0 0;
  transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 1;
}

.service-card:hover .card-bg {
  bottom: 0;
  border-radius: 0;
  background: var(--peacock-green);
}

/* Content */
.card-content {
  position: relative;
  z-index: 2;
  padding: 2em;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.card-content h3 {
  font-size: 20px;
  /* Subtopic size */
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 15px 0;
  color: black;
  transition: color 0.4s ease 0.1s;
}

.card-content p {
  font-size: 15px;
  /* Content size */
  font-weight: normal;
  line-height: 1.8;
  text-align: justify;
  margin: 0;
  color: black;
  transition: color 0.4s ease 0.1s;
}

.service-card:hover .card-content h3,
.service-card:hover .card-content p {
  color: white;
}

/* Icon Wrapper */
.icon-wrapper {
  display: flex;
  justify-content: space-between;
  color: white;
  align-items: flex-start;
  margin-bottom: auto;
}

.card-icon {
  width: 70px;
  filter: grayscale(1) opacity(0.8);
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.service-card:hover .card-icon {
  filter: brightness(0) invert(1);
  transform: rotate(-5deg) scale(1.1);
}

/* Buttons */
.arrow-btn {
  width: 50px;
  height: 50px;
  background: var(--peacock-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.service-card:hover .arrow-btn {
  background: black;
  font-size: 30px;
  color: white;
  transform: rotate(45deg) translateY(-5px) scale(1.05);
  /* Fade-up + scale */
  box-shadow: 0 6px 15px rgba(0, 168, 107, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .services-header h2 {
    font-size: 28px;
  }

  .card-content h3 {
    font-size: 22px;
  }

  .card-content p {
    font-size: 13px;
  }
}

/* Zoom-in Animation */
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Apply animation to service cards */
.service-card {
  opacity: 0;
  /* Start hidden */
  animation: zoomIn 0.8s ease-out forwards;
}

/* Staggered delays for each card */
.service-card:nth-child(1) {
  animation-delay: 0.2s;
}

.service-card:nth-child(2) {
  animation-delay: 0.4s;
}

.service-card:nth-child(3) {
  animation-delay: 0.6s;
}

.service-card:nth-child(4) {
  animation-delay: 0.8s;
}

.service-card:nth-child(5) {
  animation-delay: 1s;
}

.service-card:nth-child(6) {
  animation-delay: 1.2s;
}

/* Extend nth-child rules if you have more cards */





/* ===== ABOUT SECTION ===== */

:root {
  --peacock-green: #00a86b;
  --dark-text: #000;
  --light-text: #ffffff;
  --bg-light: #ffffff;
}

.about-us-section {
  padding: 3em;
  background-color: white;
  font-family: 'Merriweather', serif;
  margin: 0;
  color: black;
}

/* Container */
.about-container {
  width: 100%;
  max-width: 1500px;
  padding: 0 0em;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  animation: fadeZoom 1s ease-out forwards;
}

/* --- Left Side Content --- */
.about-text-content {
  flex: 1;
}

.top-label {
  display: block;
  color: var(--peacock-green);
  font-size: 15px;
  /* Subtopic size */
  font-weight: 600;
  line-height: 1.5;
  position: relative;
  padding-left: 30px;
}

.top-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 25px;
  height: 2px;
  background: var(--peacock-green);
}

.about-heading {
  font-size: 30px;
  /* Topic size */
  font-weight: 700;
  line-height: 1.5;
  color: black;
  text-align: left;
  margin-bottom: 30px;
}

.about-heading span {
  color: var(--peacock-green);
}

.expert-intro {
  font-size: 15px;
  /* Content size */
  font-weight: normal;
  line-height: 1.5;
  color: black;
  margin-bottom: 20px;
  text-align: justify;
}

.full-description {
  font-size: 15px;
  font-weight: normal;
  line-height: 1.8;
  color: black;
  text-align: justify;
  margin-bottom: 20px;
}

/* --- Right Side Media --- */
.about-media {
  flex: 1;
  position: relative;
  animation: fadeZoom 1s ease-out forwards;
}

.image-wrapper {
  position: relative;
  width: 100%;
}

.main-doctor-img {
  width: 100%;
  height: 500px;
  border-radius: 10px;
  display: block;
  transition: transform 0.6s ease;
}

.main-doctor-img:hover {
  transform: scale(1.03);
}

.doctor-img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
}



/* Play Button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 220px;
  width: 80px;
  height: 80px;
  background: var(--light-text);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  z-index: 10;
  cursor: pointer;
  transition: all 0.4s ease;
}

.play-btn:hover {
  transform: scale(1.1) translateY(-5px);
  background: var(--peacock-green);
  color: var(--light-text);
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--peacock-green);
  margin-left: 6px;
}

/* Info Card */
.patient-info-card {
  position: absolute;
  bottom: -15px;
  right: 318px;
  background: var(--peacock-green);
  font-size: 15px;
  color: var(--light-text);
  padding: 20px;
  width: 320px;
  border-radius: 15px;
  z-index: 5;
  border: 20px solid var(--light-text);
  animation: fadeZoom 1s ease-out forwards;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.card-header h3 {
  font-size: 20px;
  /* Subtopic size */
  text-align: left;
  font-weight: 600;
  line-height: 1.5;
}

.patient-info-card p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 30px;
  text-align: justify;
  opacity: 1;
}

/* Fade + Zoom Animation */
@keyframes fadeZoom {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(30px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .top-label {
    padding-left: 0;
  }

  .top-label::before {
    display: none;
  }

  .play-btn {
    left: 50%;
    transform: translateX(-50%);
    top: 40%;
  }

  .patient-info-card {
    position: relative;
    right: 0;
    bottom: 0;
    width: 100%;
    margin-top: 50px;
  }
}






/* ===== DEPARTMENTS SECTION ===== */

:root {
  --peacock-green: #00a86b;
  --dark-text: #000;
  --light-text: #ffffff;
  --bg-light: #ffffff;
}

.dept-fade-section {
  width: 100%;
  padding: 0em 0em;
  /* Balanced padding */
  background: #00a86b;
  font-family: 'Merriweather', serif;
  margin: 0;
  border-radius: 10px;
  color: var(--dark-text);
}

.section-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 2em 3em 3em 3em;
  text-align: center;
  border-radius: 10px;
}

.section-container h2 {
  font-size: 30px;
  /* Topic size */
  font-weight: 700;
  line-height: 1.5;
  color: var(--dark-text);
}

/* --- Row Logic --- */
.dept-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* --- Zoom In Animation --- */
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(30px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.fade-card {
  background: white;
  border-radius: 10px;
  border: 2px solid #eeeeee;
  overflow: hidden;
  text-align: justify;
  opacity: 0;
  animation: zoomIn 0.8s ease-out forwards;
  animation-delay: calc(var(--i) * 0.2s);
  /* staggered delay */
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.fade-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: var(--peacock-green);
}

/* --- Card Content Styles --- */
.card-image {
  position: relative;
  height: 280px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dept-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--peacock-green);
  color: white;
  padding: 5px 10px;
  font-size: 15px;
  font-weight: normal;
  border-radius: 10px;
}

.card-body {
  padding: 1em 2em 0em 2em;
}

.subtopic {
  font-size: 20px;
  /* Subtopic size */
  font-weight: 600;
  line-height: 1.5;
  color: var(--peacock-green);
  display: block;
  margin-bottom: 10px;
}

.card-body h3 {
  font-size: 20px;
  /* Subtopic size */
  font-weight: 600;
  line-height: 1.5;
  color: black;
}

.description {
  font-size: 15px;
  /* Content size */
  font-weight: normal;
  color: #000;
  padding: 1em 0em 1em 0em;
  line-height: 1.8;
  text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
  .section-container h2 {
    font-size: 28px;
  }

  .subtopic,
  .card-body h3 {
    font-size: 22px;
  }

  .description {
    font-size: 13px;
  }
}





/*shedule*/

:root {
  --yoga-dark: #2d3e33;
  --yoga-sage: #8e9775;
  --yoga-sand: #fdfdfb;
  --text-muted: #666;
}

.about-yoga-vertical {
  background-color: var(--yoga-sand);
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

.vertical-container {
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  /* FORCES VERTICAL ALIGNMENT */
  align-items: center;
  text-align: center;
  gap: 60px;
}

/* Typography */
.sub-label {
  color: var(--yoga-sage);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.main-heading {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: var(--yoga-dark);
  line-height: 1.2;
}

/* .description {
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 700px;
  margin: 20px auto;
} */

/* List Styling */
.check-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.check-list li {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-list i {
  color: var(--yoga-dark);
  font-size: 15px;
}

/* Stats Logic */
.stats-vertical {
  display: flex;
  justify-content: space-around;
  width: 100%;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 40px 0;
}

.stat-item h3 {
  font-size: 30px;
  color: var(--yoga-dark);
  margin-bottom: 5px;
}

.stat-item p {
  color: var(--text-muted);
  font-size: 15px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  background: #ddd;
  height: 50px;
}

/* Image Style */
.image-wrapper-centered {
  width: 100%;
  max-width: 800px;
  position: relative;
}

.image-wrapper-centered img {
  width: 100%;
  border-radius: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

/* Button */
.btn-outline {
  display: inline-block;
  padding: 18px 45px;
  border: 1px solid var(--yoga-dark);
  color: var(--yoga-dark);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-outline:hover {
  background: var(--yoga-dark);
  color: white;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Adjustments */
@media (max-width: 600px) {
  .stats-vertical {
    flex-direction: column;
    gap: 30px;
  }

  .stat-divider {
    display: none;
  }

  .vertical-container {
    gap: 40px;
  }
}


/* ===== GLOBAL ===== */
:root {
  --peacock-green: #00a86b;
  --dark-text: #000;
  --light-text: #fff;
  --bg-light: #fff;
  --transition: all 0.4s ease;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

body {
  font-family: 'Merriweather', serif;
  background-color: var(--bg-light);
  margin: 0;
  padding: 0em;
  /* Balanced padding */
  color: var(--dark-text);
}



/* ===== TEAM SECTION ===== */
.doctors-section {
  width: 100%;
  max-width: 1500px;
  padding: 2em;
  background-color: var(--bg-light);
  text-align: center;
}

.main-title {
  font-size: 30px;
  /* Topic */
  font-weight: 700;
  line-height: 1.5;
  color: var(--dark-text);
  margin: 0 0 1em 0;
}

.doctor-grid {
  display: flex;
  justify-content: center;
  gap: 39px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

/* Card */
.doctor-card {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 1em;
  width: 300px;
  transition: var(--transition);
  box-shadow: var(--shadow);
  opacity: 1;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.doctor-card:hover {
  transform: translateY(-12px) scale(1.03);
}

/* Image */
.doctor-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 390px;
}

.doctor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.doctor-card:hover img {
  transform: scale(1.05);
}

/* Social Buttons */
.share-container {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 10px;
}

.share-btn {
  width: 45px;
  height: 45px;
  background: var(--peacock-green);
  color: var(--light-text);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 15px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.share-btn:hover {
  background: var(--peacock-green);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 168, 107, 0.4);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--light-text);
  color: var(--peacock-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--peacock-green);
  color: var(--light-text);
}

.doctor-card:hover .social-links {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Info */
.doctor-info {
  text-align: left;
  padding: 1em 0 0 0;
}

.doctor-info h3 {
  font-size: 20px;
  /* Subtopic */
  font-weight: 600;
  line-height: 1.5;
  color: var(--peacock-green);
  margin: 0 0 8px 0;
}

.doctor-info p {
  font-size: 15px;
  /* Content */
  font-weight: normal;
  line-height: 1.5;
  color: var(--dark-text);
  margin: 0;
}

/* Fade-up Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .main-title {
    font-size: 25px;
  }

  .doctor-info h3 {
    font-size: 20px;
  }

  .doctor-info p {
    font-size: 15px;
  }
}




/* ===== CLASS SCHEDULE ===== */
.schedule-container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  background: var(--bg-light);
  padding: 3em;
  /* Balanced padding */
  box-shadow: var(--shadow);
  border-radius: 8px;
  font-family: 'Merriweather', serif;
  color: var(--dark-text);
}

.schedule-container h1 {
  text-align: center;
  font-size: 30px;
  /* Topic */
  font-weight: 700;
  line-height: 1.5;
  color: black;
  margin: 0 0 20px 0;
}

/* Table */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  animation: fadeUp 0.8s ease forwards;
}

th,
td {
  padding: 3em 0em 3em 0em;
  text-align: center;
  border: 1px solid #ddd;
  font-family: 'Merriweather', serif;
  font-size: 15px;
  /* Content */
  font-weight: normal;
  line-height: 1.5;
  color: var(--dark-text);
}

/* Subtopic headers */
thead th {
  font-size: 20px;
  /* Subtopic */
  font-weight: 600;
  line-height: 1.5;
  background: var(--peacock-green);
  color: var(--light-text);
}

tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

tbody tr:hover {
  background-color: #e0e0e0;
  cursor: pointer;
}

/* Buttons (if used inside schedule) */
.schedule-btn {
  display: inline-block;
  background: var(--peacock-green);
  color: var(--light-text);
  text-decoration: none;
  padding: 50px 50px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.4s ease;
  margin: 1em;
}

.schedule-btn:hover {
  background: var(--peacock-green);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 168, 107, 0.4);
}

/* Fade-up Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .schedule-container h1 {
    font-size: 25px;
  }

  thead th {
    font-size: 20px;
  }

  th,
  td {
    font-size: 13px;
  }

  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
  }

  thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  tr {
    border: 1px solid #ccc;
    margin-bottom: 10px;
  }

  td {
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50%;
    text-align: right;
  }

  td:before {
    position: absolute;
    left: 6px;
    content: attr(data-label);
    font-weight: 600;
    text-align: left;
  }
}





/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
  padding: 1em;
  /* Balanced padding */
  background-color: var(--bg-light);
  overflow: hidden;
  width: 100%;
  max-width: 1500px;
  margin: 0em 0em 3em 0em;
  font-family: 'Merriweather', serif;
  color: var(--dark-text);
}

.testimonial-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2em;
  text-align: center;
}

.testimonial-title {
  font-size: 30px;
  /* Topic */
  font-weight: 700;
  line-height: 1.5;
  color: var(--dark-text);
  margin: 0 0 10px 0;
}

.testimonial-subtitle {
  font-size: 20px;
  /* Subtopic */
  font-weight: 600;
  line-height: 1.5;
  color: var(--dark-text);
  margin: 0 0 20px 0;
}


.testimonial-slider {
  width: 100%;
  max-width: 1500px;
  overflow: hidden;
  position: relative;
  padding: 2em 0;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: slide-loop 20s linear infinite;
}

.testimonial-track:hover {
  animation-play-state: paused;
  /* pause on hover */
}

@keyframes slide-loop {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }

  /* move half the width */
}


/* PERFECT CONTINUOUS LOOP */
@keyframes slide-loop {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* --- Card Design --- */
.testimonial-card {
  width: 400px;
  background: #00a86b;
  padding: 2em;
  font-family: 'Merriweather', serif;
  color: white;
  border-radius: 10px;
  border: 3px solid rgba(0, 0, 0, 0.1);
  text-align: justify;
  flex-shrink: 0;
  transition: transform 0.3s ease, border-color 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: var(--peacock-green);
}

/* Quote Mark */
.quote-mark {
  font-size: 30px;
  color: var(--dark-text);
  line-height: 0;
  margin-bottom: 30px;
  display: block;
  opacity: 0.3;
}

/* Testimonial Text */
.testimonial-text {
  font-size: 15px;
  /* Content */
  font-weight: normal;
  line-height: 1.5;
  color: white;
  margin-bottom: 30px;
  min-height: 85px;
}

/* Patient Profile */
.patient-profile {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid #f5f5f5;
  padding-top: 25px;
}

.patient-profile img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.patient-meta h4 {
  font-size: 20px;
  /* Subtopic */
  font-weight: 600;
  line-height: 1.5;
  color: white;
  margin: 0;
}

.patient-meta span {
  font-size: 15px;
  /* Content */
  font-weight: normal;
  line-height: 1.5;
  color: white;
}

/* Fade-up Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-title {
    font-size: 25px;
  }

  .testimonial-subtitle {
    font-size: 20px;
  }

  .testimonial-text,
  .patient-meta span {
    font-size: 15px;
  }
}