:root {
  /* Colors */
  --navy-900: #14264a;
  --navy-800: #1e3a6e;
  --navy-700: #2a4c8c;
  --navy-100: #e7ecf6;
  --gold-600: #c99a3d;
  --gold-500: #d9ae5c;
  --gold-100: #fbf1dd;
  --teal-600: #2f7a63;
  --ivory-50: #faf8f4;
  --white: #ffffff;
  --ink-900: #22262b;
  --ink-600: #565b63;
  --ink-400: #8a8f98;
  --line: #e7e2d8;
  --success: #2f7a63;

  /* Spacing / shape */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 3px rgba(20, 38, 74, 0.08);
  --shadow-md: 0 8px 24px rgba(20, 38, 74, 0.1);
  --shadow-lg: 0 20px 48px rgba(20, 38, 74, 0.16);
  --container-w: 1180px;
}

/* ---------- 2. RESET & BASE ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink-900);
  background: var(--ivory-50);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-family: 'Inter', sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}


button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--navy-700);
  line-height: 1.25;
   font-family: "KeplerStd", serif;
  font-weight: 600;
}

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 88px 0;
}

:focus-visible {
  outline: 3px solid var(--gold-600);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Eyebrow / section labels */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold-600);
  display: inline-block;
}

.section-head {
  /* max-width: 640px; */
  padding-bottom: 48px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
}
.section-head p {
  color: var(--ink-600);
  margin-top: 14px;
  font-size: 17px;
  text-align: center;
}

/* ---------- 3. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold-600);
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--gold-600);
}
.btn-primary:hover {
  background: var(--gold-500);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--gold-500);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy-800);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---------- 4. TOP BAR ---------- */
.topbar {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13.5px;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 24px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar a:hover {
  color: var(--gold-500);
}
.topbar .divider {
  opacity: 0.4;
  margin: 0 4px;
}
.topbar-hours {
  color: var(--gold-500);
  font-weight: 500;
}

/* ---------- 5. HEADER / NAVIGATION ---------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 500;
  transition:
    box-shadow 0.3s ease,
    padding 0.3s ease;
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  width: auto;
  height: 80px;
}
.footer-logo{
  width:100%;
  height:auto;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-name {
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
  color: var(--navy-900);
  margin-bottom: 0px;
}
.brand-sub {
  text-transform: uppercase;
  font-size: 12px;
  color: var(--ink-600);
  font-weight: 500;
}
.brand-sub em {
  font-style: normal;
  color: var(--gold-600);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav ul {
  display: flex;
  gap: 20px;
}
.main-nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy-800);
  position: relative;
  padding: 6px 12px;
  transition: color 0.2s ease;
}
/* .main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  height: 2px;
  width: 0;
  background: var(--gold-600);
  transition: width 0.25s ease;
} */
/* .main-nav a:hover,
.main-nav a.active { color: var(--gold-600); } */
.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}
.nav-cta {
  padding: 11px 24px;
  font-size: 14px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  z-index: 600;
}
.hamburger span {
  height: 2.5px;
  background: var(--navy-900);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ---------- 6. HERO ---------- */
.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
  padding: 0;
  /* isolation: isolate; */
}

@media only screen and (max-width: 767px) {
  .hero {
    isolation: isolate;
  }
}
/* Blurred ambient backdrop photo (the trust building, softly blurred) */
.hero-backdrop {
  position: absolute;
  inset: 0;
  /* background-image: url('../images/hero-bg-blur.jpg'); */
  background-size: cover;
  background-position: center;
  z-index: -2;
  transform: scale(1.05); /* avoids blurred edge artifacts at the crop line */
}
/* Navy tint + gradient over the blur so text stays crisp and legible */
.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(20, 38, 74, 0.94) 0%,
    rgba(20, 38, 74, 0.88) 38%,
    rgba(30, 58, 110, 0.62) 68%,
    rgba(30, 58, 110, 0.4) 100%
  );
}

.heroHero .hero-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 38, 74, 0.94) 0%, rgba(20, 38, 74, 0.88) 38%, rgba(30, 58, 110, 0.62) 68%, rgba(30, 58, 110, 0) 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  padding: 100px 24px 90px;
  max-width: var(--container-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-block;
  padding: 7px 16px;
  border: 1px solid rgba(217, 174, 92, 0.5);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-500);
  margin-bottom: 22px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 span {
  color: var(--gold-500);
}
.hero p.lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  max-width: 500px;
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-stat strong {
  display: block;
  font-size: 30px;
  color: var(--gold-500);
}
.hero-stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 480px;
}
/* Sharp, cut-out building photo floating over the blurred backdrop */
.hero-media img.building-cutout {
  width: 88%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(10, 18, 38, 0.55));
  animation: floatUp 0.9s ease both;
}
@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-glow {
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  height: 90px;
  background: radial-gradient(
    ellipse at center,
    rgba(217, 174, 92, 0.35),
    transparent 70%
  );
  filter: blur(10px);
  z-index: -1;
}
.hero-badge {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: min(340px, 88%);
  background: rgba(255, 255, 255, 0.97);
  color: var(--navy-900);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  box-shadow: var(--shadow-lg);
}
.hero-badge .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(47, 122, 99, 0.18);
  flex-shrink: 0;
}
.hero-badge strong {
  display: block;
  font-size: 15px;
}
.hero-badge span {
  font-size: 13px;
  color: var(--ink-600);
}

.hero-shape {
  position: absolute;
  right: -120px;
  top: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(217, 174, 92, 0.14),
    transparent 70%
  );
  z-index: 1;
}

/* ---------- 7. QUICK STRIP (facilities ticker under hero) ---------- */
.quick-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.quick-strip-inner {
  display: flex;
  overflow-x: auto;
  gap: 0;
}
.quick-strip-item {
  flex: 1 1 0;
  min-width: 170px;
  text-align: center;
  padding: 22px 16px;
  border-right: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-800);
}
.quick-strip-item:last-child {
  border-right: none;
}
.quick-strip-item small {
  display: block;
  font-weight: 400;
  color: var(--ink-400);
  margin-top: 2px;
  font-size: 12.5px;
}

/* ---------- 8. ABOUT / GENERAL CONTENT ---------- */
.about-preview {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.about-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.about-media .plaque {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(20, 38, 74, 0.88);
  color: var(--white);
  padding: 14px 18px;
  font-size: 13.5px;
  text-align: center;
}
.about-copy p {
  color: var(--ink-600);
  margin-bottom: 16px;
  font-size: 16.5px;
}
.founder-line {
  font-style: italic;
  color: var(--navy-800);
  border-left: 3px solid var(--gold-600);
  padding-left: 18px;
  margin: 22px 0;
  font-size: 17px;
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.mv-card {
  background: var(--ivory-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
}
.mv-card h4 {
  font-size: 17px;
  margin-bottom: 8px;
}
.mv-card p {
  color: var(--ink-600);
  font-size: 14.5px;
  margin: 0;
}

/* ---------- 9. CARDS: SERVICES / FACILITIES ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card-grid-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card,
.facility-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.service-card:hover,
.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--navy-100);
  color: var(--navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.service-card h3,
.facility-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}
.service-card p,
.facility-card p {
  color: var(--ink-600);
  font-size: 15px;
  margin-bottom: 14px;
}
.card-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--navy-800);
  background: rgba(47, 122, 99, 0.1);
  padding: 4px 10px;
  border-radius: 999px;
}

/* Facility timing rows (used inside facility-card and on facilities.php) */
.timing-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-top: 1px dashed var(--line);
  font-size: 14.5px;
}
.timing-row:first-of-type {
  border-top: none;
}
.timing-row span:last-child {
  color: var(--navy-800);
  font-weight: 600;
}

/* Sunday timing callout */
.sunday-box {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  flex-wrap: wrap;
  margin-top: 60px;
}
.sunday-box h3 {
  color: var(--gold-500);
  font-size: 22px;
  margin-bottom: 6px;
}
.sunday-box p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}
.sunday-times {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.sunday-times div strong {
  display: block;
  font-size: 18px;
  color: var(--white);
}
.sunday-times div span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

/* ---------- 10. DOCTORS / TEAM (Seva Timetable — signature element) ---------- */
.doctor-timetable {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.doctor-row {
  display: grid;
  grid-template-columns: 64px 1.6fr 1.2fr 1fr;
  align-items: center;
  padding: 18px 26px;
  border-bottom: 1px solid var(--line);
  gap: 16px;
}
.doctor-row:last-child {
  border-bottom: none;
}
.doctor-row:nth-child(even) {
  background: var(--ivory-50);
}
.doctor-row.head {
  background: var(--navy-900);
  color: var(--white);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 26px;
}
.doctor-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-100);
  color: var(--navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.doctor-name {
  font-weight: 700;
  color: var(--navy-900);
  font-size: 15.5px;
}
.doctor-spec {
  color: var(--ink-600);
  font-size: 13.5px;
  margin-top: 2px;
}
.doctor-day {
  font-size: 13.5px;
  color: var(--teal-600);
  font-weight: 600;
}
.doctor-time {
  font-size: 14px;
  color: var(--navy-800);
  font-weight: 600;
  text-align: right;
}

/* ---------- 11. WHY CHOOSE US ---------- */
.why-us {
  background: var(--navy-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}
.why-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
}
.why-card .card-icon {
  background: rgba(217, 174, 92, 0.15);
  color: var(--gold-500);
}
.why-card h3 {
  color: var(--white);
  font-size: 18px;
}
.why-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
.why-us .section-head h2 {
  color: var(--white);
}
.why-us .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

/* ---------- 12. GALLERY ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 16px;
}
.gallery-grid a {
  grid-column: span 1;
  grid-row: span 1;
}
.gallery-grid a:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}

/* ---------- 13. TESTIMONIALS ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
}
.testimonial-card .quote-mark {
  font-size: 44px;
  color: var(--gold-500);
  line-height: 1;
  margin-bottom: 6px;
}
.testimonial-card p {
  color: var(--ink-600);
  font-size: 14px;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-author .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy-100);
  color: var(--navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.testimonial-author strong {
  display: block;
  font-size: 14.5px;
  color: var(--navy-900);
}
.testimonial-author span {
  font-size: 12.5px;
  color: var(--ink-400);
}

/* ---------- 14. CONTACT CTA / CONTACT PAGE ---------- */
.contact-cta {
  background: linear-gradient(120deg, var(--navy-800), var(--navy-900));
  color: var(--white);
  text-align: center;
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  margin: 0 24px;
  max-width: var(--container-w);
  margin-inline: auto;
}
.contact-cta h2 {
  color: var(--white);
  margin-bottom: 14px;
}
.contact-cta p {
  color: rgba(255, 255, 255, 0.78);
text-align: center;
  margin: 0 auto 30px;
}
.contact-cta .hero-actions {
  justify-content: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}
.contact-info-card .card-icon {
  flex-shrink: 0;
  margin-bottom: 0;
}
.contact-info-card h4 {
  font-size: 16px;
  margin-bottom: 4px;
}
.contact-info-card p,
.contact-info-card a {
  color: var(--ink-600);
  font-size: 14.5px;
      word-break: break-word;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy-800);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 15px;
  color: var(--ink-900);
  background: var(--ivory-50);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-600);
  box-shadow: 0 0 0 3px rgba(201, 154, 61, 0.18);
  background: var(--white);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-note {
  font-size: 12.5px;
  color: var(--ink-400);
  margin-top: 4px;
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  /* height: 320px; */
  background: var(--navy-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-700);
  font-weight: 600;
  text-align: center;
  padding: 20px;
}

/* ---------- 15. FOOTER ---------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.4fr 1.4fr;
  gap: 40px;
  padding-bottom: 56px;
}
.brand-footer {
  margin-bottom: 18px;
}
.brand-footer .brand-name {
  color: var(--white);
  text-transform: uppercase;
}
.brand-footer .brand-sub {
  color: rgba(255, 255, 255, 0.6);
}
.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}
.footer-col h4 {
  color: var(--white);
  font-size: 15px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links li {
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}
.footer-links a:hover {
  color: var(--gold-500);
}
.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}
.social-icons a:hover {
  background: var(--gold-600);
  border-color: var(--gold-600);
  color: var(--navy-900);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

/* Back to top */
#backToTop {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold-600);
  color: var(--navy-900);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    background 0.2s ease;
  z-index: 400;
}
#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#backToTop:hover {
  background: var(--gold-500);
}

/* ---------- 16. PAGE HEADER (inner pages banner) ---------- */
.page-banner {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  padding: 64px 0 56px;
  text-align: center;
}
.page-banner .eyebrow {
  color: var(--gold-500);
}
.page-banner .eyebrow::before {
  background: var(--gold-500);
}
.page-banner h1 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 42px);
}
.breadcrumb {
  margin-top: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.breadcrumb a {
  color: var(--gold-500);
}
.breadcrumb a:hover {
  text-decoration: underline;
}

/* ---------- 17. ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- 18. RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 56px;
  }
  .hero-media {
    min-height: 360px;
    margin-top: 20px;
  }
  .hero-media img.building-cutout {
    max-width: 300px;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  .topbar-inner {
    justify-content: center;
    text-align: center;
  }

  .hamburger {
    display: flex;
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 32px 32px;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -12px 0 30px rgba(0, 0, 0, 0.12);
    z-index: 550;
  }
  .main-nav.open {
    transform: translateX(0);
  }
  .main-nav ul {
    flex-direction: column;
    gap: 22px;
    width: 100%;
  }
  .main-nav a {
    font-size: 17px;
  }
  .nav-cta {
    width: 100%;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 130px;
  }
  .gallery-grid a:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .doctor-row {
    grid-template-columns: 44px 1fr;
    row-gap: 6px;
  }
  .doctor-day,
  .doctor-time {
    grid-column: 2;
    text-align: left;
  }
  .doctor-row.head {
    display: none;
  }

  .sunday-box {
    flex-direction: column;
    align-items: flex-start;
  }
  .sunday-times {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    gap: 22px;
  }
  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
  .quick-strip-item {
    min-width: 140px;
  }
}

.mbtm {
  margin-bottom: 20px;
}

.hero {
  background-image: url("../images/hospital.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
   /*height: 100vh; */
}

.heroHero {
  background-image: url("../images/herobnr.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
}
@media only screen and (max-width: 767px) {
  .heroDesktop {
display:none;
}
}

@media only screen and (min-width: 768px) {
  .heroHero {
display:none;
}

  .brand-name {
    font-size: 32px;
  }
  .brand-sub {
    font-size: 16px;
    color: var(--ink-600);
    font-weight: 500;
  }
  .brand-text {
    line-height: 1.5;
  }
}

i.fas.fa-phone-alt {
  rotate: 100deg;
}

/*==========================
        TRUSTEES
===========================*/

.trustees-section {
  padding: 90px 0;
  background: #ffffff;
}

.section-title {
  text-align: center;
  max-width: 750px;
  margin: auto;
  margin-bottom: 60px;
}

.section-title span {
  color: #c89d3d;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 15px;
  position: relative;
}

.section-title span:before,
.section-title span:after {
  content: "";
  width: 45px;
  height: 2px;
  background: #c89d3d;
  display: inline-block;
  margin: 0 12px;
  vertical-align: middle;
}

.section-title h2 {
  font-size: 42px;
  color: #1d2f59;
  margin-bottom: 18px;
  font-weight: 700;
}

.section-title p {
  color: #666;
  line-height: 30px;
  font-size: 16px;
}

/* Chairman */

.chairman-card {
  display: flex;
  align-items: center;
  gap: 35px;

  background: #1d2f59;

  color: #fff;

  padding: 45px;

  border-radius: 18px;

  margin-bottom: 55px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.chairman-number {
  width: 85px;
  height: 85px;

  background: #c89d3d;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;
  font-weight: bold;

  flex-shrink: 0;
}

.chairman-content h3 {
  font-size: 32px;

  margin-bottom: 15px;
}

.designation {
  display: inline-block;

  padding: 8px 22px;

  border-radius: 30px;

  margin-bottom: 18px;

  font-weight: 600;
}

.designation.chairman {
  background: #c89d3d;

  color: #fff;
}

.chairman-content p {
  color: #d6d6d6;

  line-height: 30px;
}

/* Grid */

.trustee-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 30px;
}

.trustee-card {
  background: #fff;

  border: 1px solid #ececec;

  border-radius: 15px;

  padding: 35px;

  transition: 0.35s;

  position: relative;

  overflow: hidden;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.trustee-card:hover {
  transform: translateY(-7px);

  border-color: #c89d3d;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.number {
  width: 55px;

  height: 55px;

  background: #1d2f59;

  color: #fff;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  font-weight: bold;

  margin-bottom: 20px;
}

.trustee-card h4 {
  color: #1d2f59;

  font-size: 24px;

  margin-bottom: 10px;

  line-height: 34px;
}

.trustee-card p {
  color: #777;

  margin-bottom: 18px;

  line-height: 28px;

  min-height: 55px;
}

.trustee-card span {
  display: inline-block;

  background: #1d2f59;

  color: #fff;

  padding: 7px 18px;

  border-radius: 30px;

  font-size: 14px;

  font-weight: 600;
}

.chairman-card h3 {
  color: #c89d3d;
}
/* Responsive */

@media (max-width: 991px) {
  .chairman-card {
    flex-direction: column;

    text-align: center;
  }

  .trustee-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 576px) {
  .trustees-section {
    padding: 70px 0;
  }

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

  .chairman-content h3 {
    font-size: 24px;
  }

  .trustee-card {
    padding: 25px;
  }
}

.about-media.reveal.visible {
  width: 100%;
}

.goldText {
  color: var(--gold-500);
}

/* =======doctors page css======== */

/* Top Bar */
.top-bar {
  background-color: #111827;
  color: #94a3b8;
  font-size: 12px;
  padding: 8px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar span {
  color: #d4af37;
  font-weight: 500;
}

/* Navbar */
.navbar {
  background-color: #ffffff;
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-placeholder {
  width: 45px;
  height: 45px;
  background: #1a2238;
  color: #d4af37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.logo-text h1 {
  font-size: 18px;
  color: #1a2238;
  font-weight: 700;
  line-height: 1.1;
}

.logo-text p {
  font-size: 11px;
  color: #64748b;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #334155;
  font-size: 13.5px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #d4af37;
}

/* Page Header Section */
.page-header {
  text-align: center;
  padding: 60px 20px 40px 20px;
  margin: 0 auto;
}

.sub-title {
  color: #d4af37;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
 display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}


.sub-title::before,
.sub-title::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 1.5px;
  background-color: #d4af37;
}

.main-title {
  font-size: 36px;
  color: var(--navy-700);
  font-weight: 700;
  margin-bottom: 15px;
}

.blueBg{
  background-color: var(--navy-700);
  color: #ffffff;
}

.goldBg{
  background-color: var(--gold-500);
  color: #ffffff;
  letter-spacing: 3px;
}

.main-title span {
  color: #d4af37;
  font-weight: 600;
}

.header-desc {
  color: #94a3b8;
  font-size: 14.5px;
  line-height: 1.6;
  text-align: center;
}

.gold-divider {
  width: 50px;
  height: 3px;
  background-color: #d4af37;
  margin: 25px auto 0 auto;
}

/* Doctors Grid Layout */
.doctors-container {
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
  padding-bottom: 80px;
}

.doctor-card {
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.doctor-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.5);
}

/* Header Section with Image */
.doctor-card-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 15px;
}

.doctor-img-box {
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;

  background-color: #111827;
}

.doctor-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-info h3 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 17px;
  margin-bottom: 4px;
  font-weight: 700;
  line-height: 1.2;
}

.specialty-badge {
  display: inline-block;
  background-color:var(--navy-900);
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.doctor-details {
  font-size: 12.5px;
  color: #cbd5e1;
  line-height: 1.4;
}

.reg-no {
  color: #94a3b8;
  font-size: 11.5px;
}

.timing-box {
  border-top: 1px solid var(--gold-500);
  padding-top: 12px;
  margin-top: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
}

.timing-label {
  color: var(--navy-600);
  font-weight: 500;
}

.timing-value {
  color: var(--gold-600);
  font-weight: 600;
}

/* Footer */
footer {
  background-color: #111827;
  color: #94a3b8;
  padding: 40px 5% 20px 5%;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 12px;
  color: #64748b;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .doctors-container {
    grid-template-columns: 1fr;
  }
  .main-title {
    font-size: 28px;
  }
}
.blueBg {
  background-color: #111827;
}

.footer-links {
  padding-left: 0;
}
.whiteBg {
  background-color: #ffffff;
}
.centered {
  text-align: center;
}

.main-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav ul li a {
  color: #1f3d6d;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 0;
  position: relative;
  transition: 0.3s;
}

.main-nav ul li a:hover {
  color: #c89b3c;
}

.main-nav ul li a.active {
  color: #c89b3c;
}

.main-nav ul li a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 3px;
  background: #c89b3c;
  border-radius: 10px;
}

.service-card img {
  width: 80px;
  /* border-radius: 50%; */
}
.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.doctor-info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.doctor-details p {
  color: var(--ink-600);
  margin-bottom: 4px;
}

.contact-cta .card-tag {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}
.btn-navy:hover {
  color: var(--white);
}

/* ========about page start========== */

/* ── RESET & BASE ─────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --navy: #1a2c4e;
  --navy-dk: #111e36;
  --gold: #c9a240;
  --gold-lt: #e2bc5a;
  --white: #ffffff;
  --off: #f5f7fa;
  --text: #333;
  --muted: #666;
  --border: #dee2e9;
  --font-b: "Inter", system-ui, sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}


/* ── TOP BAR ─────────────────────────────────────────────────────────────── */
.topbar {
  background: var(--navy-dk);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  /* padding: 0.45rem 0; */
}
.topbar .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.topbar a {
  color: rgba(255, 255, 255, 0.8);
}
.topbar a:hover {
  color: var(--gold);
}
.topbar-left {
  display: flex;
  gap: 1.5rem;
}
.topbar-left span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-weight: 600;
}

/* ── NAVBAR ──────────────────────────────────────────────────────────────── */
.navbar {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.navbar .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-emblem {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.logo-text {
  line-height: 1.2;
}
.logo-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}
.logo-text span {
  font-size: 0.72rem;
  color: var(--muted);
}
.nav-links {
  display: flex;
  gap: 0;
}
.nav-links a {
  padding: 0.5rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 3px solid transparent;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ── pageHeadingSec BANNER ─────────────────────────────────────────────────────────── */
.pageHeadingSec {
  background: linear-gradient(
    135deg,
    var(--navy-dk) 0%,
    var(--navy) 60%,
    #274070 100%
  );
  padding: 5rem 1.5rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.pageHeadingSec H1 {
  color: #c9a240;
}
.pageHeadingSec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='25'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    repeat;
}

.pageHeadingSec h1 {
  font-family: "KeplerStd", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.25;
  position: relative;
  max-width: 700px;
  margin: 0 auto 1.2rem;
}
.breadcrumb {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  text-align: center;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}
.breadcrumb a:hover {
  color: var(--gold);
}
.breadcrumb span {
  color: var(--gold-lt);
}

/* ── SECTION WRAPPERS ────────────────────────────────────────────────────── */
.section {
  padding: 4.5rem 1.5rem;
}
.section.bg-off {
  background: var(--off);
}
.inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.section-title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 3rem;
  font-size: 0.9rem;
}
.divider {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 2.8rem;
  border-radius: 2px;
}

/* ── WHO WE ARE ──────────────────────────────────────────────────────────── */
.who-grid {
    display: grid;
    grid-template-columns: 244px 1fr;
    gap: 2.5rem;
    align-items: start;
}
.who-img-wrap {
  position: relative;
}
.who-img-wrap img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
/* .who-img-wrap::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  border: 2px solid var(--gold);
  border-radius: 4px;
  z-index: -1;
} */
.who-content .eyebrow-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.7rem;
}
.who-content h2 {
  font-size: 1.65rem;
  color: var(--navy-700);
  line-height: 1.25;
  margin-bottom: 0.3rem;
}
.who-content .subtitle {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 0.5rem;
}
.who-content .role {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding-left: 0.7rem;
  margin-bottom: 1.2rem;
}
/* .who-content p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 0.85rem;
} */

/* ── AIMS & INAUGURATION ─────────────────────────────────────────────────── */
.cards-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.info-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem 1.8rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  border-top: 4px solid var(--gold);
}
.info-card .card-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.info-card .card-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
}
.info-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  font-weight: 600;
}
.info-card p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0.7rem;
}

/* ── DONATIONS ───────────────────────────────────────────────────────────── */
.donations-box {
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  padding: 2.4rem 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.donations-box .don-icon {
  width: 52px;
  height: 52px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.donations-box .don-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--navy);
}
.donations-box h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.donations-box p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
}

/* ── JOURNEY TIMELINE ────────────────────────────────────────────────────── */
.journey-section {
  background: var(--navy);
  color: var(--white);
}
.journey-section .section-title {
  color: var(--white);
}
.journey-section .section-title em {
  color: var(--gold);
  font-style: italic;
}
.journey-section .section-sub {
  color: rgba(255, 255, 255, 0.65);
}
.journey-section .divider {
  background: var(--gold);
}
.timeline {
  display: flex;
  gap: 0;
  position: relative;
  overflow-x: auto;
  padding-bottom: 1rem;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--gold);
  opacity: 0.4;
  z-index: 0;
}
.tl-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  position: relative;
  padding: 0 0.5rem;
}
.tl-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dk);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(201, 162, 64, 0.25);
}
.tl-item h4 {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.tl-item p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ── ACTIVITIES TABLE ────────────────────────────────────────────────────── */
.activities-table {
  width: 100%;
  border-collapse: collapse;
}
.activities-table th {
  background: var(--navy);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.9rem 1.2rem;
  text-align: left;
}
.activities-table td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.activities-table tr:last-child td {
  border-bottom: none;
}
.activities-table tr:hover td {
  background: #f0f4ff;
}
.year-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
}
.btn-view {
  display: inline-block;
  padding: 0.42rem 1rem;
  border: 1.5px solid var(--navy);
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
  cursor: pointer;
}
.btn-view:hover {
  background: var(--navy);
  color: var(--white);
}

/* ── TRUSTEES TABLE ──────────────────────────────────────────────────────── */
.trustees-table {
  width: 100%;
  border-collapse: collapse;
}
.trustees-table th {
  background: var(--navy);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.9rem 1.2rem;
  text-align: left;
}
.trustees-table td {
  padding: 0.85rem 1.2rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.87rem;
}
.trustees-table tr:nth-child(even) td {
  background: var(--off);
}
.trustees-table tr:hover td {
  background: #edf1fb;
}
.trustees-table td:first-child {
  color: var(--gold);
  font-weight: 700;
  text-align: center;
  width: 60px;
}
.trustees-table td:last-child {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .who-grid {
    grid-template-columns: 1fr;
  }
  .who-img-wrap {
    max-width: 320px;
  }
  .cards-2 {
    grid-template-columns: 1fr;
  }
  .timeline {
    flex-wrap: wrap;
    justify-content: center;
  }
  .timeline::before {
    display: none;
  }
  .tl-item {
    min-width: 140px;
    flex: 0 0 45%;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 600px) {
  .topbar-left {
    flex-direction: column;
    gap: 0.3rem;
  }
  .nav-links {
    flex-wrap: wrap;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .tl-item {
    flex: 0 0 100%;
  }
}

.timeline-section {
  background-color: #1a2238;
  color: #e2e8f0;
  padding: 60px 20px;
  min-height: 100vh;
  box-sizing: border-box;
}

/* Header Styling */
.timeline-section .header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.timeline-section .sub-title {
  color: #d4af37;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.timeline-section .sub-title::before,
.timeline-section .sub-title::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 1.5px;
  background-color: #d4af37;
}

.timeline-section .main-title {
  font-size: 38px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.25;
}

.timeline-section .main-title span {
  font-style: italic;
  color: #d4af37;
  font-weight: 600;
}

.timeline-section .header-desc {
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.6;
  max-width: 750px;
  margin: 0 auto;
}

.timeline-section .gold-divider {
  width: 50px;
  height: 3px;
  background-color: #d4af37;
  margin: 25px auto 0 auto;
}

/* Swiper Container & Horizontal Timeline Line */
.timeline-swiper {
  width: 100%;
  max-width: 1350px;
  padding: 50px 10px 60px 10px !important;
  position: relative;
}

.timeline-swiper .timeline-line {
  position: absolute;
  top: 95px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #334155;
  z-index: 1;
}

/* Individual Slide Layout */
.timeline-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  height: auto;
}

.timeline-swiper .year-badge {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #caa049;
  color: #1a2238;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 8px #1a2238,
    0 0 0 10px #caa049;
  margin-bottom: 30px;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
}

.timeline-swiper .swiper-slide-active .year-badge,
.timeline-swiper .year-badge:hover {
  transform: scale(1.08);
  background-color: #e5be58;
}

/* Content Box inside Slide */
.timeline-swiper .content-box {
  text-align: left;
  width: 100%;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  padding: 20px;
  height: 380px;
  overflow-y: auto;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
  scrollbar-width: thin;
  scrollbar-color: #d4af37 transparent;
}

.timeline-swiper .content-box::-webkit-scrollbar {
  width: 4px;
}

.timeline-swiper .content-box::-webkit-scrollbar-thumb {
  background: #d4af37;
  border-radius: 4px;
}

.timeline-swiper .activity-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.timeline-swiper .activity-list li {
  font-size: 13.5px;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 12px;
  padding-left: 18px;
  position: relative;
}

.timeline-swiper .activity-list li::before {
  content: "•";
  color: #d4af37;
  font-size: 18px;
  position: absolute;
  left: 0;
  top: -2px;
}

.timeline-swiper .sub-list {
  list-style-type: lower-alpha;
  margin-left: 18px;
  margin-top: 6px;
}

.timeline-swiper .sub-list li {
  margin-bottom: 6px;
  padding-left: 0;
}

.timeline-swiper .sub-list li::before {
  content: none;
}

/* Swiper Controls Customization */
.timeline-swiper .swiper-button-next,
.timeline-swiper .swiper-button-prev {
  color: #1a2238;
  background: #caa049;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  top: auto;
  bottom: 0px;
  transition:
    background 0.2s,
    transform 0.2s;
}

.timeline-swiper .swiper-button-next:after,
.timeline-swiper .swiper-button-prev:after {
  font-size: 16px;
  font-weight: bold;
}

.timeline-swiper .swiper-button-next:hover,
.timeline-swiper .swiper-button-prev:hover {
  background: #e5be58;
  transform: scale(1.08);
}

.timeline-swiper .swiper-button-prev {
  left: calc(50% - 50px);
}

.timeline-swiper .swiper-button-next {
  right: calc(50% - 50px);
}

.timeline-swiper .swiper-pagination-bullet {
  background: #cbd5e1;
}

.timeline-swiper .swiper-pagination-bullet-active {
  background: #d4af37;
}

@media (max-width: 768px) {
  .timeline-section .main-title {
    font-size: 26px;
  }
}

/* =============about page end=========== */
.who-grid p, .who-content p{
  text-align: justify;
}

.eyebrow-centered{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.nav-menu li a {
    color: #172554;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-menu li a:hover {
    color: #C9A227;
}

.nav-menu li a.active {
    color: #C9A227 !important;
    font-weight: 600;
    position: relative;
}

/* Golden underline */
.nav-menu li a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -25px;
    height: 4px;
    background: #C9A227;
    border-radius: 5px;
}

mb-0 {
  margin-bottom: 0 !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}

.info-card p{
  color:#000000 !important;
}


/* ================================
   TRUSTEES TABLE
================================ */

.trustees-table-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.trustees-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.trustees-table th,
.trustees-table td {
    padding: 14px 16px;
    text-align: left;
    vertical-align: middle;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.trustees-table th {
    font-weight: 600;
}

.trustees-table th:first-child,
.trustees-table td:first-child {
    width: 12%;
    text-align: center;
}

.trustees-table th:nth-child(2),
.trustees-table td:nth-child(2) {
    width: 58%;
}

.trustees-table th:nth-child(3),
.trustees-table td:nth-child(3) {
    width: 30%;
}


/* ================================
   TABLET
================================ */

@media (max-width: 768px) {

    .trustees-table th,
    .trustees-table td {
        padding: 12px 10px;
        font-size: 14px;
    }

    .trustees-table th:first-child,
    .trustees-table td:first-child {
        width: 12%;
    }

    .trustees-table th:nth-child(2),
    .trustees-table td:nth-child(2) {
        width: 55%;
    }

    .trustees-table th:nth-child(3),
    .trustees-table td:nth-child(3) {
        width: 33%;
    }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 576px) {

    .trustees-table {
        width: 100%;
        table-layout: auto;
    }

    /* Hide desktop heading */
    .trustees-table thead {
        display: none;
    }
     .trustees-table tbody tr:nth-child(odd) {
        background-color: #4c61a150;
    }

    .trustees-table tbody tr:nth-child(even) {
        background-color: #c99a3d50;
    }

    .trustees-table tr:nth-child(even) td {
    background: transparent;
}

    .trustees-table,
    .trustees-table tbody,
    .trustees-table tr,
    .trustees-table td {
        display: block;
        width: 100%;
    }

    .trustees-table tr {
        margin-bottom: 15px;
        padding: 12px;
        border-radius: 10px;
    }

    .trustees-table td {
        /* display: flex;
        align-items: flex-start;
        justify-content: space-between; */
        gap: 15px;
        padding: 9px 5px;
        text-align: left;
        border: none;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .trustees-table td::before {
        content: attr(data-label);
        flex: 0 0 105px;
        text-align: left;
        font-weight: 600;
    }

    .trustees-table td:first-child {
        text-align: left;
        width: 100%;
    }

    .trustees-table td:nth-child(2),
    .trustees-table td:nth-child(3) {
        width: 100%;
    }

}


/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 380px) {

    .trustees-table td {
        font-size: 13px;
        gap: 10px;
    }

    .trustees-table td::before {
        flex: 0 0 85px;
    }

    .trustees-table tr {
        padding: 10px;
    }
}

.facilities-section{
  padding-top: 48px;
  padding-bottom: 80px;
}


@media only screen and (max-width: 768px) {
 .contact-section{
  padding: 0 20px 60px;
 }
 .card-tag{
  margin-bottom: 10px;
 }
 .footer-bottom .footer-bottom-inner p{
  text-align: center;
  width: 100%;
 }
 .section-head{
  padding: 60px 20px;
 }
  
}


/* ==================== */
/* YEAR TABS */
.timeline-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.year-tab {
    border: 1px solid #caa049;
    background: #fff;
    color: #333;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.year-tab:hover {
    background: #f5f5f5;
}

.year-tab.active {
    background: #caa049;
    color: #fff;
    border-color: #caa049;
}


/* YEAR CONTENT */
.year-content {
    display: none;
    max-width: 1000px;
    margin: 0 auto;
    padding: 35px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);

    animation: fadeIn 0.4s ease;
}

.year-content.active {
    display: block;
}

.year-content h3 {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 30px;
    text-align: center;
    font-family: inter, sans-serif;
    font-weight: 900;
}

.activity-list {
    margin: 0;
    padding-left: 25px;
}

.activity-list li {
    margin-bottom: 15px;
    line-height: 1.7;
}

.sub-list {
    margin-top: 10px;
}

.sub-list li {
    margin-bottom: 8px;
}


/* ANIMATION */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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


/* MOBILE */
@media (max-width: 767px) {

    .timeline-tabs {
        gap: 7px;
    }

    .year-tab {
        padding: 9px 16px;
        font-size: 14px;
    }

    .year-content {
        padding: 20px;
    }

    .year-content h3 {
        font-size: 24px;
    }

    .activity-list {
        padding-left: 20px;
    }
}

/* =========================================
   YEAR TABS
========================================= */

.timeline-tabs {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 auto 40px;
}

.year-tab {
    flex: 0 0 auto;
    border: 1px solid #caa049;
    background: #fff;
    color: #caa049;
    padding: 11px 24px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
}

.year-tab:hover {
    background: #f5f5f5;
}

.year-tab.active {
    background: #caa049;
    color: #fff;
    border-color: #caa049;
}


/* =========================================
   YEAR CONTENT
========================================= */

.year-content {
    display: none;
    width: 100%;
    max-width: 1180px;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 35px 50px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    animation: fadeIn 0.4s ease;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.year-content.active {
    display: block;
}

.year-content h3 {
    margin: 0 0 25px;
    font-size: 30px;
    line-height: 1.2;
    text-align: center;
}

.activity-list {
    margin: 0;
    padding-left: 25px;
}

.activity-list li {
    margin-bottom: 15px;
    line-height: 1.7;
    overflow-wrap: break-word;
}

.sub-list {
    margin-top: 10px;
    padding-left: 25px;
}

.sub-list li {
    margin-bottom: 8px;
}

.activity-list li{
  color:#000000;
}
.activity-list{
  padding-left: 0px;
}

/* =========================================
   ANIMATION
========================================= */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .timeline-tabs {
        gap: 8px;
        margin-bottom: 30px;
    }

    .year-tab {
        padding: 10px 20px;
        font-size: 15px;
    }

    .year-content {
        padding: 30px;
    }

    .year-content h3 {
        font-size: 28px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .timeline-tabs {
        justify-content: flex-start;

        /* Horizontal scrolling */
        flex-wrap: nowrap;
        overflow-x: auto;

        width: 100%;
        max-width: 100%;

        padding: 5px 5px 12px;
        margin-bottom: 25px;

        /* Smooth mobile scrolling */
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;

        /* Hide scrollbar */
        scrollbar-width: none;
    }

    .timeline-tabs::-webkit-scrollbar {
        display: none;
    }

    .year-tab {
        flex: 0 0 auto;

        min-width: 70px;

        padding: 10px 18px;

        font-size: 14px;

        border-radius: 25px;

        text-align: center;
    }


    /* CONTENT */

    .year-content {
        width: 100%;
        max-width: 100%;

        padding: 20px 16px;

        border-radius: 12px;

        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.07);
    }

    .year-content h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .activity-list {
        padding-left: 20px;
        margin: 0;
    }

    .activity-list li {
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 14px;
    }

    .sub-list {
        padding-left: 20px;
    }

    .sub-list li {
        font-size: 14px;
        line-height: 1.6;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .timeline-tabs {
        gap: 7px;
        padding-left: 2px;
        padding-right: 2px;
    }

    .year-tab {
        min-width: 62px;
        padding: 9px 15px;
        font-size: 13px;
    }

    .year-content {
        padding: 18px 14px;
        border-radius: 10px;
    }

    .year-content h3 {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .activity-list {
        padding-left: 18px;
    }

    .activity-list li {
        font-size: 13.5px;
        line-height: 1.6;
        margin-bottom: 13px;
    }

    .sub-list {
        padding-left: 18px;
    }
}


/* =========================================
   EXTRA SMALL DEVICES
========================================= */

@media (max-width: 360px) {

    .year-tab {
        min-width: 58px;
        padding: 8px 13px;
        font-size: 12px;
    }

    .year-content {
        padding: 16px 12px;
    }

    .year-content h3 {
        font-size: 20px;
    }

    .activity-list li,
    .sub-list li {
        font-size: 13px;
    }
}


/* ======================== */

/* =================================
   INDEPENDENCE DAY GALLERY
================================= */

.independence-gallery {
    padding: 20px 0;
    background: #fff;
}

.ordered-list{
  color:#000000;
}


.section-heading {
    text-align: left;
    margin: 0 auto 30px;
}

.section-heading span {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #d9534f;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-heading h2 {
    margin: 0 0 15px;
    font-size: 38px;
    line-height: 1.2;
    color: #222;
}

.section-heading p {
    margin: 0;
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}


/* IMAGE ROW */

.gallery-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 14px;
    background: #f5f5f5;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}


/* TABLET */

@media (max-width: 991px) {

    .independence-gallery {
        padding: 55px 0;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .gallery-row {
        gap: 18px;
    }

    .gallery-item {
        height: 250px;
    }
}


/* MOBILE */

@media (max-width: 767px) {

    .independence-gallery {
        padding: 45px 0;
    }

    .section-heading {
        padding: 0 15px;
        margin-bottom: 30px;
    }

    .section-heading h2 {
        font-size: 27px;
    }

    .section-heading p {
        font-size: 14px;
    }

    .gallery-row {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 15px;
    }

    .gallery-item {
        height: 240px;
        border-radius: 12px;
    }
}


/* SMALL MOBILE */

@media (max-width: 480px) {

    .section-heading h2 {
        font-size: 24px;
    }

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

.independence-gallery p{
  color:#000000;
}

footer ul{
  list-style-type: none;
}

/* ======table css======== */

.medical-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.medical-table {
    width: 100%;
    min-width: 1000px;
    border-collapse: collapse;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    color: #000;
}

.medical-table th,
.medical-table td {
    border: 1px solid #555;
    padding: 6px 5px;
    text-align: center;
    vertical-align: middle;
}

.medical-table th {
    font-weight: 700;
}

.medical-table .main-title {
    font-size: 15px;
    text-align: center;
    padding: 7px;
}

.medical-table .sub-title {
    font-size: 14px;
    text-align: center;
    padding: 7px;
}

.medical-table .department {
    text-align: center;
    font-weight: 600;
}

.medical-table .total {
    font-weight: 700;
}

.medical-table .camp {
    display: block;
    font-weight: 600;
    margin-top: 3px;
    font-size: 10px;

}

.medical-table .physician-data {
    line-height: 1.4;
}

/* Column widths */
.medical-table .sr-no {
    width: 55px;
}

.medical-table .department-col {
    width: 175px;
}

.medical-table .date-col {
    width: 110px;
}

.medical-table .year-col {
    width: 115px;
}

.medical-table .total-col {
    width: 100px;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .medical-table-wrapper {
        overflow-x: auto;
    }

    .medical-table {
        min-width: 1000px;
        font-size: 12px;
    }

    .medical-table th,
    .medical-table td {
        padding: 6px 4px;
    }

    .medical-table .main-title {
        font-size: 13px;
    }

    .medical-table .sub-title {
        font-size: 12px;
    }
}

@media (max-width: 480px) {

    .medical-table {
        min-width: 950px;
        font-size: 11px;
    }

    .medical-table th,
    .medical-table td {
        padding: 5px 3px;
    }
}