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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background: #ffffff;
}

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

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

/* =====================
   HEADER
===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* =====================
   LOGO
===================== */
.logo img {
  display: block;
  max-height: 60px;
}

/* =====================
   DESKTOP NAV
===================== */
.desktop-nav {
  display: flex;
  align-items: center;
}

.desktop-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-nav a {
  font-weight: 500;
  color: #1f2937;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.desktop-nav a:hover {
  color: #2563eb;
}
/* Desktop submenu */
.desktop-nav .has-submenu {
  position: relative;
}

.desktop-nav .has-submenu .submenu {
  display: none;          /* hidden by default */
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 15px 0;
  min-width: 220px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 100;
  flex-direction: column;
  gap: 0;
}
/* =====================
   Header Menu
===================== */
.desktop-nav .has-submenu:hover .submenu {
  display: flex;          /* shows all items on hover */
}

.desktop-nav .submenu li {
  list-style: none;
}

.desktop-nav .submenu li a {
  padding: 8px 20px;
  display: block;
  color: #1e293b;
  text-decoration: none;
  transition: background 0.2s;
}

.desktop-nav .submenu li a:hover {
  background-color: #fbbf24;
  color: #1e40af;
}

/* =====================
   CTA BUTTON
===================== */
.cta-btn {
  background: #2563eb;
  color: #ffffff !important;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
  background: #1e40af;
  transform: translateY(-1px);
}

.desktop-cta {
  margin-left: 10px;
}

/* =====================
   SECTIONS
===================== */
.section {
  padding: 80px 20px;
}

.light-bg {
  background: #f8fafc;
}

.section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  color: #0f172a;
  margin-bottom: 20px;
}

.section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #475569;
  font-size: 1.05rem;
}


/* =====================
   SECTIONS
===================== */
.section {
  padding: 80px 20px;
}

.light-bg {
  background: #f8fafc;
}

.section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  color: #0f172a;
  margin-bottom: 20px;
}

.section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #475569;
  font-size: 1.05rem;
}


/* =====================
   CHECKLIST GRID
===================== */
.checklist-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.check-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  color: #1f2937;
  font-weight: 500;
  transition: all 0.3s ease;
}

.check-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2563eb;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* =====================
   SERVICES GRID
===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.service-card {
  background: #ffffff;
  padding: 28px 26px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
  transition: all 0.35s ease;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0f172a;
}

.service-card p {
  font-size: 0.95rem;
  color: #475569;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.1);
}


/* =====================
   HOW WE WORK
===================== */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.work-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  padding: 22px 24px;
  border-radius: 14px;
  font-weight: 500;
  color: #1f2937;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.09);
}

@media (max-width: 768px) {

  .hero h1 {
    font-size: 2.1rem;
  }

  .section {
    padding: 60px 20px;
  }

}

/* =====================
   CTA SECTION
===================== */
.cta {
  background: #1e40af;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.cta p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 25px;
  color: #f3f4f6;
}

.cta .primary-btn {
  background-color: #fbbf24;
  color: #1e40af;
  padding: 12px 35px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s ease;
}

.cta .primary-btn:hover {
  transform: translateY(-2px);
  background-color: #f59e0b;
}

/* =====================
   FOOTER
===================== */
footer {
  background-color: #374151;
  color: #e5e7eb;
  padding: 60px 20px;
  text-align: center;
  font-size: 0.95rem;
}

footer p {
  margin: 8px 0;
}

.footer-social {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-social a {
  color: #e5e7eb;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  color: #fbbf24;
}
/* =====================
   MOBILE FIXED BUTTONS
===================== */
.mobile-fixed-buttons {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 999;
}

.mobile-fixed-buttons a {
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.call-btn {
  background-color: #2563eb;
}

.call-btn:hover {
  background-color: #1e40af;
}

.whatsapp-btn {
  background-color: #25d366;
}

.whatsapp-btn:hover {
  background-color: #1da851;
}

@media (min-width: 768px) {
  .mobile-fixed-buttons {
    display: none; /* hide on desktop */
  }
}


/* =====================
   FLOATING WHATSAPP BUTTON
===================== */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.25);
}
.mobile-submenu .submenu-items {
  display: none;  /* hidden by default */
  flex-direction: column;
  gap: 10px;
}

.mobile-submenu.active .submenu-items {
  display: flex; /* shows when active */
}


/* ================= CARD BACKGROUNDS ================= */
.check-card, .service-card, .work-card {
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
    color: #1e293b;  /* dark text for readability */
}

/* Hover effect */
.check-card:hover, .service-card:hover, .work-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* Alternate backgrounds using nth-child */
.checklist .check-card:nth-child(3n+1),
.services-grid .service-card:nth-child(3n+1),
.work-grid .work-card:nth-child(3n+1) {
    background-color: #d1fae5; /* light green */
}

.checklist .check-card:nth-child(3n+2),
.services-grid .service-card:nth-child(3n+2),
.work-grid .work-card:nth-child(3n+2) {
    background-color: #dbeafe; /* light blue */
}

.checklist .check-card:nth-child(3n),
.services-grid .service-card:nth-child(3n),
.work-grid .work-card:nth-child(3n) {
    background-color: #f3f4f6; /* light grey */
}

/* Optional: links inside cards */
.service-card a, .check-card a, .work-card a {
    color: inherit;
    text-decoration: none;
}


/* ================= HERO SECTION ================= */
/* ================= HERO ================= */
.hero {
    background-color: #e6f4f9; /* Very light blue (Manchester City style) */
    padding: 60px 20px; /* Reduced from larger padding */
    text-align: center;
}

.hero h1 {
    font-size: 2rem; /* Reduce size */
    margin-bottom: 15px;
    line-height: 1.3;
    color: #1e40af;
}

.hero p {
    font-size: 1rem; /* Slightly smaller paragraph */
    max-width: 700px;
    margin: 0 auto 20px;
    color: #1f2937;
}

.hero a.primary-btn {
    padding: 10px 28px; /* smaller button */
    font-size: 1rem;
}


/* ================= HERO LINKS ================= */
.hero p a {
    color: #1e40af; /* Dark blue, same as main text */
    text-decoration: underline; /* subtle */
    transition: color 0.2s;
}

.hero p a:hover {
    color: #2563EB; /* Slightly brighter blue on hover */
}

}

.primary-btn {
    display: inline-block;
    background-color: #fbbf24;
    color: #1e40af;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s;
}

.primary-btn:hover {
    transform: translateY(-2px);
    background-color: #fcd34d;
}
/* ================= PRIMARY BUTTON ================= */
.primary-btn {
    background-color: #fbbf24; /* Gold / yellow */
    color: #1e40af; /* Dark blue text */
    padding: 12px 35px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s;
}

.primary-btn:hover {
    background-color: #fcd34d; /* Slightly lighter gold on hover */
    color: #1e40af; /* Keep text dark */
    transform: none; /* Remove any scaling/transform effect */
}

/* ================= CARDS ================= */
.service-card, .check-card, .work-card {
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    color: #1e40af;
    text-decoration: none;
    display: block;
    transition: transform 0.2s, box-shadow 0.2s;
}

/* Card backgrounds */
.service-card:nth-child(3n+1),
.check-card:nth-child(3n+1),
.work-card:nth-child(3n+1) { background-color: #DCFCE7; } /* light green */
.service-card:nth-child(3n+2),
.check-card:nth-child(3n+2),
.work-card:nth-child(3n+2) { background-color: #DBEAFE; } /* light blue */
.service-card:nth-child(3n),
.check-card:nth-child(3n),
.work-card:nth-child(3n) { background-color: #F3F4F6; } /* light grey */

.service-card:hover, .check-card:hover, .work-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.service-card h3, .work-card span.check-icon {
    margin-bottom: 10px;
}

/* ================= GRID SETTINGS ================= */
.services-grid, .work-grid, .checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}


.service-card,
.check-card,
.work-card {
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover,
.check-card:hover,
.work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-card,
.check-card,
.work-card {
    border-radius: 10px;
    padding: 20px;
    background-color: #f3f4f6; /* light grey default */
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    background-color: #d0f0d6; /* light green on hover */
}
.check-card:hover {
    background-color: #cff4fa; /* light blue on hover */
}
.work-card:hover {
    background-color: #e2e8f0; /* light grey-blue on hover */
}


.service-card::after,
.check-card::after,
.work-card::after {
    content: ' →';
    opacity: 0;
    transition: opacity 0.2s;
}

.service-card:hover::after,
.check-card:hover::after,
.work-card:hover::after {
    opacity: 1;
}

/* Make cards clickable and visually interactive */
.service-card,
.check-card,
.work-card {
    position: relative;
    border-radius: 10px;
    padding: 20px;
    background-color: #f3f4f6; /* default light grey */
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
    cursor: pointer;
}

/* Hover effects */
.service-card:hover {
    background-color: #d0f0d6; /* light green */
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.check-card:hover {
    background-color: #cff4fa; /* light blue */
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.work-card:hover {
    background-color: #e2e8f0; /* light grey-blue */
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Add "Learn More →" on hover */
.service-card::after,
.check-card::after,
.work-card::after {
    content: 'Learn More →';
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e40af; /* or any accent color */
    opacity: 0;
    transition: opacity 0.2s;
}

.service-card:hover::after,
.check-card:hover::after,
.work-card:hover::after {
    opacity: 1;
}

/* ================= GOVERNANCE CARDS ================= */
.governance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gov-card {
    background-color: #d1fae5; /* subtle light green */
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    color: #065f46; /* dark green text */
    font-weight: 500;
}

/* Alternating subtle colors */
.gov-card:nth-child(3n+2) { background-color: #e0f2fe; color: #1e3a8a; } /* subtle light blue */
.gov-card:nth-child(3n) { background-color: #f3f4f6; color: #1f2937; } /* light grey */

.gov-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.12);
}

/* Learn More label */
.gov-card::after {
    content: "Learn More";
    display: inline-block;
    margin-top: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: inherit;
    background-color: #fbbf24;
    padding: 4px 10px;
    border-radius: 4px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.gov-card:hover::after {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}


/* ================= BOARD ADVISORY CARDS ================= */
.board-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.board-card {
    background-color: #d1fae5; /* subtle light green */
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    color: #065f46; /* dark green text */
    font-weight: 500;
}

/* Alternating subtle colors */
.board-card:nth-child(3n+2) { background-color: #e0f2fe; color: #1e3a8a; } /* subtle light blue */
.board-card:nth-child(3n) { background-color: #f3f4f6; color: #1f2937; } /* light grey */

.board-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.12);
}

/* Learn More label */
.board-card::after {
    content: "Learn More";
    display: inline-block;
    margin-top: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: inherit;
    background-color: #fbbf24;
    padding: 4px 10px;
    border-radius: 4px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.board-card:hover::after {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}


/* ================= IMPACT CARDS ================= */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.impact-card {
    background-color: #f3f4f6; /* default light grey */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
    min-height: 140px;
}

/* Alternating subtle colors */
.impact-card:nth-child(3n+1) { background-color: #d1fae5; } /* light green */
.impact-card:nth-child(3n+2) { background-color: #e0f2fe; } /* light blue */
.impact-card:nth-child(3n)   { background-color: #f9fafb; } /* very light grey */

.impact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.12);
}

/* Learn More text at the bottom */
.impact-card::after {
    content: "Learn More";
    margin-top: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e40af; /* blue font only */
    text-decoration: underline;
    display: inline-block;
}



/* ================= HOSPITAL FAIL CARDS ================= */
.failures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.fail-card {
    background-color: #f3f4f6; /* default light grey */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Alternating subtle colors */
.fail-card:nth-child(3n+1) { background-color: #d1fae5; } /* light green */
.fail-card:nth-child(3n+2) { background-color: #e0f2fe; } /* light blue */
.fail-card:nth-child(3n)   { background-color: #f9fafb; } /* very light grey */

.fail-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.12);
}

/* Learn More text at bottom of each fail-card */
.fail-card::after {
    content: "Learn More";
    margin-top: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e40af;
    text-decoration: underline;
    display: inline-block;
}

/* ================= TURNAROUND APPROACH CARDS ================= */
.turnaround-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.turn-card {
    background-color: #f3f4f6; /* default light grey */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: #1f2937;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Alternating subtle colors */
.turn-card:nth-child(3n+1) { background-color: #d1fae5; } /* light green */
.turn-card:nth-child(3n+2) { background-color: #e0f2fe; } /* light blue */
.turn-card:nth-child(3n)   { background-color: #f9fafb; } /* very light grey */

.turn-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.12);
}

/* Learn More text at bottom of each turn-card */
.turn-card::after {
    content: "Learn More";
    margin-top: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e40af;
    text-decoration: underline;
    display: inline-block;
}


/* ================= CASH-FLOW / INSURANCE CARDS ================= */
.cashflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.cash-card {
    background-color: #f3f4f6; /* default light grey */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Alternating subtle colors */
.cash-card:nth-child(3n+1) { background-color: #d1fae5; } /* light green */
.cash-card:nth-child(3n+2) { background-color: #e0f2fe; } /* light blue */
.cash-card:nth-child(3n)   { background-color: #f9fafb; } /* very light grey */

/* Hover effect */
.cash-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.12);
}

/* Learn More text at bottom of each cash-card */
.cash-card::after {
    content: "Learn More";
    margin-top: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e40af;
    text-decoration: underline;
    display: inline-block;
}


/* ================= HERO ================= */
.hero.inner-hero {
    background-color: #f3f4f6;
    padding: 2rem 2rem; /* half of usual hero height */
    text-align: center;
}

.hero.inner-hero h1, 
.hero.inner-hero h2 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.hero.inner-hero p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* ================= INTERIM / CRISIS MANAGEMENT CARDS ================= */
.interim-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.interim-card {
    background-color: #f3f4f6; /* default light grey */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Alternating subtle colors */
.interim-card:nth-child(3n+1) { background-color: #d1fae5; } /* light green */
.interim-card:nth-child(3n+2) { background-color: #e0f2fe; } /* light blue */
.interim-card:nth-child(3n)   { background-color: #f9fafb; } /* very light grey */

/* Hover effect */
.interim-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.12);
}

/* Learn More text at bottom of each card */
.interim-card::after {
    content: "Learn More";
    margin-top: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e40af;
    text-decoration: underline;
    display: inline-block;
}


/* ================= HERO ================= */
.hero.inner-hero {
    background-color: #f3f4f6;
    padding: 2rem 2rem; /* half of default hero height */
    text-align: center;
}

.hero.inner-hero h1, 
.hero.inner-hero h2 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.hero.inner-hero p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* ================= OPERATIONS / GROWTH CARDS ================= */
.op-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.op-card {
    background-color: #f3f4f6; /* default light grey */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Alternating pastel colors */
.op-card:nth-child(3n+1) { background-color: #d1fae5; } /* light green */
.op-card:nth-child(3n+2) { background-color: #e0f2fe; } /* light blue */
.op-card:nth-child(3n)   { background-color: #f9fafb; } /* very light grey */

/* Hover effect */
.op-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.12);
}

/* Learn More at bottom of each card */
.op-card::after {
    content: "Learn More";
    margin-top: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e40af;
    text-decoration: underline;
    display: inline-block;
}


/* ================= HERO ================= */
.hero.inner-hero {
    background-color: #f3f4f6;
    padding: 2rem 2rem; /* half-height */
    text-align: center;
}

.hero.inner-hero h1 {
    color: #1e40af;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.hero.inner-hero p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

/* ================= CARDS ================= */
.approach-steps,
.why-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Shared card styles */
.step-card,
.why-card {
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: #1f2937;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 160px;
    position: relative;
}

/* Hover effect */
.step-card:hover,
.why-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.12);
}

/* Pastel background colors */
.light-green { background-color: #d1fae5; }
.light-blue  { background-color: #e0f2fe; }
.light-grey  { background-color: #f9fafb; }

/* Step numbers */
.step-number {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Learn More (font only) */
.step-card .learn-more,
.why-card .learn-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e40af;
    text-decoration: underline;
    margin-top: 12px;
    display: inline-block;
}

/* Check icons in Why Choose */
.why-card .check-icon {
    background-color: #1e40af; /* dark circle behind tick */
    color: #fff;
    border-radius: 50%;
    display: inline-block;
    width: 22px;
    height: 22px;
    text-align: center;
    line-height: 22px;
    margin-right: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .approach-steps,
    .why-grid {
        grid-template-columns: 1fr;
    }
}


/* ================= HERO - Revenue Page ================= */
.revenue-hero {
    background-color: #e6f2ff;
    padding: 60px 20px; /* reduced from 100px */
    text-align: center;
}

.revenue-hero .container {
    max-width: 800px;
    margin: 0 auto;
}

.revenue-hero h1 {
    font-size: 2.2rem; /* reduced from 3rem */
    line-height: 1.2;
    margin-bottom: 15px;
    color: #0a3d62;
}

.revenue-hero .hero-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 25px;
    color: #1f2937;
}

.revenue-hero p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #1f2937;
}

.revenue-hero a {
    color: #0a3d62;
    text-decoration: underline;
}

.revenue-hero .primary-btn {
    display: inline-block;
    padding: 12px 35px;
    background: #0a3d62;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: background 0.3s, transform 0.2s;
}

.revenue-hero .primary-btn:hover {
    background: #07315a;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .revenue-hero h1 {
        font-size: 1.8rem;
    }
    .revenue-hero .hero-subtitle {
        font-size: 1rem;
    }
}


/* ================= CHALLENGES IN FAITH-BASED HOSPITALS ================= */
.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.challenge-card {
    display: block;
    padding: 20px;
    border-radius: 10px;
    color: #1f2937;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
    background-color: #d9f0e0; /* default light green */
}

.challenge-card:nth-child(2n) {
    background-color: #d7eafc; /* light blue */
}

.challenge-card:nth-child(3n) {
    background-color: #f3f4f6; /* light grey */
}

.challenge-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.challenge-card::after {
    content: "Learn More →";
    position: absolute;
    bottom: 15px;
    right: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0a3d62; /* link-blue */
    opacity: 0;
    transition: opacity 0.3s;
}

.challenge-card:hover::after {
    opacity: 1;
}

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


/* ================= GOVERNANCE & BOARD CARDS ================= */
.governance-grid,
.board-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.gov-card,
.board-card {
    display: block;
    padding: 20px;
    border-radius: 10px;
    color: #1f2937;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
    background-color: #d9f0e0; /* default light green */
}

.gov-card:nth-child(2n),
.board-card:nth-child(2n) {
    background-color: #d7eafc; /* light blue */
}

.gov-card:nth-child(3n),
.board-card:nth-child(3n) {
    background-color: #f3f4f6; /* light grey */
}

.gov-card:hover,
.board-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.gov-card::after,
.board-card::after {
    content: "Learn More →";
    position: absolute;
    bottom: 15px;
    right: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0a3d62; /* link-blue */
    opacity: 0;
    transition: opacity 0.3s;
}

.gov-card:hover::after,
.board-card:hover::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .governance-grid,
    .board-services-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================
   HEADER / NAVIGATION
===================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  z-index: 1001;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 12px 0;
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =====================
   LOGO
===================== */
.logo img {
  height: 60px;
}

/* =====================
   DESKTOP NAV
===================== */
.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav a {
  color: #1f2937;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
}

.desktop-nav .cta-btn.desktop-cta {
  background: #2563eb;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  transition: background 0.3s;
}

.desktop-nav .cta-btn.desktop-cta:hover {
  background: #1e40af;
}

/* =====================
   DESKTOP DROPDOWN
===================== */
.has-submenu {
  position: relative;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 260px;
  padding: 15px 0;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu li {
  padding: 0;
}

.submenu a {
  display: block;
  padding: 10px 22px;
  font-size: 0.95rem;
  color: #374151;
}

.submenu a:hover {
  background: #f1f5f9;
  color: #2563eb;
}

/* =====================
   BODY RESET
===================== */
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
}

/* =====================
   MOBILE CTA (HEADER)
===================== */
.mobile-cta {
  display: none;
  background: #2563eb;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

/* =====================
   HAMBURGER
===================== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #1f2937;
  margin: 5px 0;
  border-radius: 3px;
}

/* =====================
   MOBILE MENU
===================== */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: #ffffff;
  z-index: 1000;
  padding: 30px 25px;
  transition: right 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu a {
  font-size: 1.05rem;
  font-weight: 500;
  color: #1f2937;
  text-decoration: none;
}

/* =====================
   MOBILE SUBMENU
===================== */
.mobile-submenu {
  border-top: 1px solid #e5e7eb;
  padding-top: 10px;
}

.submenu-title {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  cursor: pointer;
}

.submenu-items {
  display: none;
  flex-direction: column;
  margin-top: 10px;
  gap: 12px;
}

.mobile-submenu.active .submenu-items {
  display: flex;
  flex-direction: column;
}

/* =====================
   MOBILE CTA BUTTON INSIDE MENU
===================== */
.menu-cta {
  margin-top: 20px;
  text-align: center;
  padding: 14px;
  background: #2563eb;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
}

/* =====================
   HOVER FOR SUBMENU LINKS
===================== */
.mobile-menu a:hover {
  color: #2563eb;
}

/* =====================
   MOBILE FIXED BOTTOM BUTTONS
===================== */
.mobile-fixed-buttons {
  display: none;
}

@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-cta {
    display: inline-block;
    margin-left: 20px;
  }

  /* show bottom buttons */
  .mobile-fixed-buttons {
    display: flex;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 15px;
    background: #ffffff;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.15);
    z-index: 1002;
    gap: 10px;
    box-sizing: border-box;
  }

  .mobile-fixed-buttons a {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s;
  }

  .mobile-fixed-buttons a:hover {
    opacity: 0.9;
  }

  .mobile-fixed-buttons .call-btn {
    background: #2563eb;
    color: #fff;
  }

  .mobile-fixed-buttons .whatsapp-btn {
    background: #25D366;
    color: #fff;
  }
}

/* =====================
   FLOATING WHATSAPP (DESKTOP)
===================== */
.whatsapp-float {
  display: none;
}

@media (min-width: 993px) {
  .whatsapp-float {
    display: flex;
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 1001;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  .whatsapp-float img {
    width: 32px;
    height: 32px;
  }

  .whatsapp-float:hover {
    transform: translateY(-5px);
  }
}




/* ===================== GENERAL ===================== */
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
}

/* ===================== DESKTOP NAV ===================== */
.desktop-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 25px;
  align-items: center;
}

.desktop-nav a {
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
  padding: 8px 0;
}

.has-submenu {
  position: relative;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 250px;
  padding: 10px 0;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu a {
  display: block;
  padding: 8px 20px;
  font-size: 0.95rem;
  color: #1f2937;
}

.submenu a:hover {
  background: #f1f5f9;
  color: #2563eb;
}

/* ===================== MOBILE MENU ===================== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #1f2937;
  margin: 5px 0;
  border-radius: 3px;
}

.mobile-cta {
  display: none;
  background: #2563eb;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

/* ===================== MOBILE MENU PANEL ===================== */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: #fff;
  z-index: 1000;
  padding: 30px 25px;
  transition: right 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
}

/* ===================== MOBILE SUBMENU ===================== */
.mobile-submenu .submenu-items {
  display: none;
  flex-direction: column;
  margin-top: 10px;
  gap: 10px;
}

.mobile-submenu.active .submenu-items {
  display: flex;
}

.submenu-title {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  cursor: pointer;
}

/* ===================== CTA BUTTONS ===================== */
.menu-cta {
  margin-top: 20px;
  text-align: center;
  padding: 14px;
  background: #2563eb;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
}

/* ===================== FIXED MOBILE BUTTONS ===================== */
.mobile-fixed-buttons {
  display: none; /* mobile only */
}

@media (max-width: 992px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .mobile-cta { display: inline-block; margin-left: 20px; }

  .mobile-fixed-buttons {
    display: flex;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 15px;
    background: #fff;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.15);
    z-index: 1002;
    gap: 10px;
  }

  .mobile-fixed-buttons a {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s;
  }

  .mobile-fixed-buttons .call-btn { background: #2563eb; color: #fff; }
  .mobile-fixed-buttons .whatsapp-btn { background: #25D366; color: #fff; }
  .mobile-fixed-buttons a:hover { opacity: 0.9; }
}

/* ===================== FLOATING WHATSAPP DESKTOP ===================== */
.whatsapp-float { display: none; }

@media (min-width: 993px) {
  .whatsapp-float {
    display: flex;
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.2s ease;
  }

  .whatsapp-float img {
    width: 32px;
    height: 32px;
  }

  .whatsapp-float:hover {
    transform: translateY(-5px);
  }
}
/* Header fix */
.site-header {
  position: fixed; /* if sticky */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff; /* must have background */
}

/* Add padding to hero so it clears fixed header */
.hero {
  padding-top: 100px; /* equal to header height + some spacing */
}


/* =====================
   FIX HERO SECTION UNDER HEADER
===================== */
.site-header {
  position: fixed;       /* keeps header on top while scrolling */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;        /* ensure it sits above hero */
  background: #ffffff;   /* add background so hero doesn't show through */
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;    /* adjust height */
}

body {
  margin: 0;
  padding: 0;
}

/* push hero below header */
.hero {
  padding-top: 120px;    /* equal to header height + some breathing space */
}

/* optional: make hero text visible properly */
.hero h1, .hero p {
  z-index: 1;
  position: relative;
}


/* =====================
   FIX HERO / CONTENT SLIDING UNDER HEADER
===================== */

/* Header height */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Header inner height */
.header-inner {
  height: 80px; /* adjust if your header is taller */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

/* Push content down everywhere */
body > .hero,
body > section:first-of-type {
  padding-top: calc(80px + 20px); /* header height + extra space */
}

/* Optional: make sure hero image / text are above header */
.hero h1,
.hero p,
.hero img {
  position: relative;
  z-index: 1;
}


/* =====================
   GENERAL BODY
===================== */
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
}

/* =====================
   HEADER FIXED
===================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.header-inner {
  height: 80px; /* adjust if your header is taller */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

/* =====================
   HERO / FIRST SECTION PUSH
===================== */
body > .hero,
body > section:first-of-type {
  padding-top: calc(80px + 20px); /* header height + extra space */
}

/* =====================
   DESKTOP NAVIGATION
===================== */
.desktop-nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.desktop-nav a {
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
}

.has-submenu {
  position: relative;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 260px;
  padding: 15px 0;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu li {
  padding: 0;
}

.submenu a {
  display: block;
  padding: 10px 22px;
  font-size: 0.95rem;
  color: #374151;
}

.submenu a:hover {
  background: #f1f5f9;
  color: #2563eb;
}

/* =====================
   MOBILE CTA
===================== */
.mobile-cta {
  display: none;
  background: #2563eb;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

/* =====================
   HAMBURGER
===================== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #1f2937;
  margin: 5px 0;
  border-radius: 3px;
}

/* =====================
   MOBILE MENU
===================== */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: #ffffff;
  z-index: 1000;
  padding: 30px 25px;
  transition: right 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.05rem;
  color: #1f2937;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu a {
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
}

.menu-cta {
  margin-top: 20px;
  text-align: center;
  padding: 14px;
  background: #2563eb;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
}

/* =====================
   MOBILE SUBMENU
===================== */
.mobile-submenu {
  border-top: 1px solid #e5e7eb;
  padding-top: 10px;
}

.submenu-title {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  cursor: pointer;
}

.submenu-items {
  display: none;
  flex-direction: column;
  margin-top: 10px;
  gap: 12px;
}

.mobile-submenu.active .submenu-items {
  display: flex;
  flex-direction: column;
}

/* =====================
   MOBILE FIXED BUTTONS
===================== */
.mobile-fixed-buttons {
  display: flex;
  justify-content: space-between;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 15px;
  background: #ffffff;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.15);
  z-index: 1002;
  gap: 10px;
  box-sizing: border-box;
}

.mobile-fixed-buttons a {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s;
}

.mobile-fixed-buttons .call-btn {
  background: #2563eb;
  color: #fff;
}

.mobile-fixed-buttons .whatsapp-btn {
  background: #25D366;
  color: #fff;
}

.mobile-fixed-buttons a:hover {
  opacity: 0.9;
}

@media (min-width: 993px) {
  .mobile-fixed-buttons {
    display: none;
  }
}

/* =====================
   FLOATING WHATSAPP DESKTOP
===================== */
.whatsapp-float {
  display: none;
}

@media (min-width: 993px) {
  .whatsapp-float {
    display: flex;
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
    z-index: 1001;
  }

  .whatsapp-float img {
    width: 32px;
    height: 32px;
  }

  .whatsapp-float:hover {
    transform: translateY(-5px);
  }
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-cta {
    display: inline-block;
    margin-left: 20px;
  }
}

.hero, 
.hero.inner-hero,
.revenue-hero {
    padding-top: 120px; /* header height (80px) + 20px extra spacing */
}
:target::before {
  content: "";
  display: block;
  height: 80px; /* same as header */
  margin-top: -80px; /* negative header height */
}

/* Fix hero spacing below fixed header for index and about pages */
.hero {
    padding-top: 122px; /* header height (80px) + extra spacing (42px for 2mm visually) */
}
/* Adjust hero spacing on index and about pages */
body.index .hero,
body.about .hero {
    padding-top: 122px; /* tweak slightly if needed */
}


/* Desktop submenu styling */
.desktop-nav .has-submenu .submenu {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 12px 20px;
    padding: 18px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
    z-index: 999;
}

.desktop-nav .has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
}

.submenu li a {
    display: block;
    padding: 8px 12px;
    color: #1f2937;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.submenu li a:hover {
    background-color: #f3f4f6;
    color: #2563eb;
}
/* Make desktop dropdown multi-column and fit the screen */
.desktop-nav .has-submenu .submenu {
    display: grid; /* grid layout */
    grid-template-columns: repeat(2, max-content); /* 2 columns */
    gap: 0; /* no gap needed, neat alignment */
    padding: 10px 15px;
    max-height: 80vh; /* prevent going beyond viewport height */
    overflow-y: auto; /* scroll if too long */
    min-width: 250px; /* ensure enough width for text */
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Optional: adjust submenu links spacing */
.desktop-nav .has-submenu .submenu li a {
    padding: 8px 12px;
    white-space: nowrap; /* prevent text wrapping */
}

/* Keep your yellow hover intact */
.desktop-nav .has-submenu .submenu li a:hover {
	
    background-color: #ffeb3b; /* your yellow */
}
/* Mobile submenu scroll if too long */
.mobile-submenu .submenu-items {
    max-height: 60vh; /* fits smaller screens */
    overflow-y: auto;
}

/* Optional: smooth padding for mobile links */
.mobile-submenu .submenu-items a {
    display: block;
    padding: 10px 15px;
}


/* Hide Contact CTA inside mobile menu only */
.mobile-menu .menu-cta {
    display: none;
}


.mobile-submenu .submenu-items a {
    padding: 8px 14px;
    font-size: 15px;
    line-height: 1.4;
}
/* Hide WhatsApp button when mobile menu is open */
.menu-overlay.active ~ .whatsapp-float,
.mobile-menu[aria-hidden="false"] ~ .whatsapp-float {
    display: none;
}
/* === WhatsApp Floating Button – Polished Style === */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366; /* WhatsApp green */
    color: #fff;
    padding: 12px 18px;
    border-radius: 999px; /* pill shape */
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    z-index: 999;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover / tap feedback */
.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

/* Mobile refinement */
@media (max-width: 768px) {
    .whatsapp-float {
        padding: 10px 14px;
        font-size: 13px;
        bottom: 16px;
        right: 16px;
    }
}



/* ================= HOSPITAL SETUP LAUNCH PAGE ================= */

/* HERO SECTION */
#hospital-setup-page .hero-section {
    background: #e0e7ff;
    padding: 60px 20px 40px 20px; /* reduce top and bottom padding */
    text-align: center;
    margin-top: 80px; /* add margin to avoid header overlap */
}

#hospital-setup-page .hero-section .container {
    max-width: 850px;
    margin: 0 auto;
}

#hospital-setup-page .hero-section h1 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    line-height: 1.2;
}

#hospital-setup-page .hero-section h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 18px;
}

#hospital-setup-page .hero-section p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* WHY CHOOSE US / CHECKLIST */
#hospital-setup-page .light-bg {
    background: #f9fafb;
    padding: 50px 20px;
}

#hospital-setup-page .checklist {
    list-style: none;
    padding: 0;
    font-size: 1.05rem;
    line-height: 1.6;
    display: inline-block;
    text-align: left;
    max-width: 600px;
    margin: 20px auto 0 auto;
}

/* SERVICES GRID */
#hospital-setup-page .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    padding: 0 10px;
}

#hospital-setup-page .service-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}

#hospital-setup-page .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

#hospital-setup-page .service-card.light-bg {
    background: #f9fafb;
}

#hospital-setup-page .service-card .service-icon {
    font-size: 1.8rem;
    display: inline-block;
    margin-bottom: 12px;
}

#hospital-setup-page .service-card h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

#hospital-setup-page .service-card p {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* HOSPITAL TYPES GRID */
#hospital-setup-page .hospital-types-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

#hospital-setup-page .type-card {
    background: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    font-size: 0.95rem;
    text-align: center;
    flex: 1 1 180px;
}

/* WHY WORK WITH US */
#hospital-setup-page section h2 {
    margin-bottom: 20px;
}

#hospital-setup-page section p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* CTA SECTION */
#hospital-setup-page .cta {
    background: #2563eb;
    color: #fff;
    padding: 50px 20px;
    text-align: center;
}

#hospital-setup-page .cta .container {
    max-width: 750px;
    margin: 0 auto;
}

#hospital-setup-page .cta h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

#hospital-setup-page .cta p {
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 20px auto;
}

#hospital-setup-page .cta .primary-btn {
    background-color: #fbbf24;
    color: #1e40af;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
}

#hospital-setup-page .cta .primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

/* RESPONSIVE ADJUSTMENTS */
@media screen and (max-width: 768px) {
    #hospital-setup-page .hero-section h1 {
        font-size: 1.8rem;
    }
    #hospital-setup-page .hero-section h2 {
        font-size: 1.3rem;
    }
    #hospital-setup-page .services-grid {
        grid-template-columns: 1fr;
    }
    #hospital-setup-page .hospital-types-grid {
        flex-direction: column;
        gap: 10px;
    }
}


/* ================= CONTACT OPTIONS ================= */
.contact-options-section {
    background-color: #f9fafb;
    padding: 60px 20px;
    text-align: center;
}

.contact-options-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1f2937;
}

.contact-options-section p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #4b5563;
}

.contact-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.contact-btn.email-btn { background: #2563eb; color: #fff; }
.contact-btn.call-btn { background: #10b981; color: #fff; }
.contact-btn.whatsapp-btn { background: #25d366; color: #fff; }

/* ================= CONTACT MAP ================= */
.contact-map {
    padding: 60px 20px;
    background-color: #fff;
}

.contact-map-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
}

.contact-details {
    flex: 1 1 400px;
    max-width: 600px;
    color: #1f2937;
}

.contact-details h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-details p {
    margin-bottom: 12px;
    line-height: 1.6;
}

.contact-details a {
    color: #2563eb;
    text-decoration: none;
}

.map-container {
    flex: 1 1 400px;
    min-height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ================= CTA ================= */
.cta {
    background-color: #1e40af;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    border-radius: 12px;
    margin: 40px auto;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 25px;
    color: #e5e7eb;
}

.cta .primary-btn {
    background-color: #fbbf24;
    color: #1e40af;
    padding: 14px 35px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta .primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* ================= FOOTER ================= */
footer {
    background-color: #374151;
    color: #e5e7eb;
    padding: 60px 20px;
    text-align: center;
    line-height: 1.6;
}

footer a {
    color: #e5e7eb;
    text-decoration: none;
}

footer .footer-social {
    margin: 25px 0;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

footer .footer-social a img {
    width: 22px;
    vertical-align: middle;
    margin-right: 6px;
}

/* ================= FLOATING WHATSAPP ================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

.whatsapp-float img {
    width: 28px;
    height: 28px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .contact-map-wrapper {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .contact-options {
        flex-direction: column;
        gap: 15px;
    }
    .cta h2 {
        font-size: 1.6rem;
    }
    .cta p {
        font-size: 1rem;
    }
}

/* ===== FAQ SECTION ===== */
#faq {
  font-family: 'Inter', sans-serif;
  background: #f8fafc;
  color: #1e293b;
  padding: 80px 20px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

#faq h2 {
  margin-bottom: 15px;
}

#faq p {
  margin: 0 auto 40px;
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
}

/* ===== FAQ Cards ===== */
.faq-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-bottom: 15px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq-card:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* FAQ Question Button */
.faq-question {
  width: 100%;
  padding: 20px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  background: #f1f5f9;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: #e2e8f0;
}

/* Plus Icon */
.faq-icon {
  font-size: 20px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background: #ffffff;
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer p {
  margin: 15px 0;
}

/* Active State */
.faq-card.active .faq-answer {
  padding: 20px;
  max-height: 1000px; /* Enough for content */
}

.faq-card.active .faq-icon {
  transform: rotate(45deg);
}

/* CTA Button */
.faq-cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

.faq-cta {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.faq-cta:hover {
  background: #1d4ed8;
}

/* Links inside FAQ Answer */
.faq-answer a {
  color: #2563eb;
  text-decoration: underline;
}

.faq-answer a:hover {
  color: #1d4ed8;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  #faq {
    padding: 50px 15px;
  }
  .faq-question {
    font-size: 15px;
    padding: 18px;
  }
  .faq-answer {
    font-size: 14px;
    padding: 0 18px;
  }
  .faq-card.active .faq-answer {
    padding: 18px;
  }
}


/* ================= PAGE-SPECIFIC: hospital-funding-services ================= */

/* Use a unique wrapper if you want to scope everything, e.g., #hospital-funding-page */
#hospital-funding-page {
    /* optional padding around entire page */
    padding: 0;
}

/* ================= HERO SECTION ================= */
#hospital-funding-page .hero-section {
    background: #f8fafc;
    padding: 80px 20px;
    text-align: center;
}

#hospital-funding-page .hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #111;
}

#hospital-funding-page .hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

#hospital-funding-page .hero-section a.cta-btn {
    display: inline-block;
    padding: 15px 30px;
    background: #4f46e5;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

#hospital-funding-page .hero-section a.cta-btn:hover {
    background: #4338ca;
}

/* ================= SECTION HEADINGS ================= */
#hospital-funding-page section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #111;
    text-align: left;
}

/* ================= LISTS ================= */
#hospital-funding-page section ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

#hospital-funding-page section ul li {
    margin-bottom: 10px;
}

#hospital-funding-page section ul.numeric-list {
    list-style-type: decimal;
}

/* ================= SECTION SPACING ================= */
#hospital-funding-page .service-for, 
#hospital-funding-page .what-we-do, 
#hospital-funding-page .how-we-work, 
#hospital-funding-page .why-us, 
#hospital-funding-page .get-started {
    padding: 80px 20px;
}

#hospital-funding-page .service-for,
#hospital-funding-page .how-we-work,
#hospital-funding-page .get-started {
    background: #fff;
}

#hospital-funding-page .what-we-do,
#hospital-funding-page .why-us {
    background: #f8fafc;
}

/* ================= GET STARTED CTA ================= */
#hospital-funding-page .get-started {
    text-align: center;
}

#hospital-funding-page .get-started p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

#hospital-funding-page .get-started a.cta-btn {
    display: inline-block;
    padding: 15px 30px;
    background: #4f46e5;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

#hospital-funding-page .get-started a.cta-btn:hover {
    background: #4338ca;
}

/* ================= RESPONSIVE ================= */
@media screen and (max-width: 768px) {
    #hospital-funding-page .hero-section h1 {
        font-size: 2rem;
    }
    #hospital-funding-page section h2 {
        font-size: 1.75rem;
    }
    #hospital-funding-page .hero-section p,
    #hospital-funding-page .get-started p {
        font-size: 1rem;
    }
    #hospital-funding-page .hero-section a.cta-btn,
    #hospital-funding-page .get-started a.cta-btn {
        padding: 12px 25px;
    }
}

@media screen and (max-width: 480px) {
    #hospital-funding-page .hero-section h1 {
        font-size: 1.75rem;
    }
    #hospital-funding-page section h2 {
        font-size: 1.5rem;
    }
    #hospital-funding-page .hero-section p,
    #hospital-funding-page .get-started p {
        font-size: 0.95rem;
    }
    #hospital-funding-page .hero-section a.cta-btn,
    #hospital-funding-page .get-started a.cta-btn {
        padding: 10px 20px;
    }
}


/* TRUST / METRICS SECTION */
.trust-section {
  padding: 80px 20px;
  background-color: #f8fafc;
  text-align: center;
  font-family: sans-serif;
}

.trust-section .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 15px;
}

.trust-section .section-intro {
  max-width: 780px;
  margin: 0 auto 50px auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
}

/* METRICS STRIP */
.metrics-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

/* METRIC CARD */
.metric-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.metric-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

/* METRIC NUMBER */
.metric-number {
  font-size: 3rem;
  font-weight: 800;
  color: #0ea5a4; /* teal/healthcare friendly */
  margin-bottom: 8px;
}

/* METRIC LABEL */
.metric-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

/* METRIC DESCRIPTION */
.metric-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .trust-section {
    padding: 60px 15px;
  }
  .trust-section .section-title {
    font-size: 1.9rem;
  }
  .metric-number {
    font-size: 2.6rem;
  }
}
