  /* ============================================================
    KaizenBMS — style.css
    Modern Hospital Management Website
    ============================================================ */

  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --navy:    #0f172a;
    --blue:    #1e3c72;
    --mid:     #2a5298;
    --accent:  #4f8ef7;
    --green:   #2e7d32;
    --green2:  #4caf50;
    --light:   #f0f7f0;
    --gray:    #64748b;
    --border:  #e2e8f0;
    --white:   #ffffff;
    --shadow:  0 4px 20px rgba(0,0,0,.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,.14);
    --radius:  12px;
    --radius-lg: 20px;
  }

  html { scroll-behavior: smooth; }
  body { font-family: 'Inter', system-ui, sans-serif; background: #fff; color: #1e293b; line-height: 1.6; overflow-x: hidden; }

  /* ── TYPOGRAPHY ─────────────────────────────────────────────── */
  h1,h2,h3,h4,h5 { font-weight: 700; line-height: 1.25; }
  p { color: var(--gray); }
  a { text-decoration: none; }
  ul { list-style: none; }
  img { max-width: 100%; display: block; }

  /* ── UTILITIES ──────────────────────────────────────────────── */
  .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; background-image: 'theme.png'; }
  .text-center { text-align: center; }
  .section { padding: 80px 0; }
  .section-sm { padding: 50px 0; }

  .section-tag {
    display: inline-flex; align-items: center; gap: 7px;
    background: #e8f5e9; color: var(--green); padding: 6px 14px;
    border-radius: 30px; font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
    margin-bottom: 16px;
  }
  .section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800; color: var(--blue); margin-bottom: 16px;
  }
  .section-title span { color: var(--green2); }
  .section-sub { font-size: 17px; color: var(--gray); max-width: 800px; margin: 0 auto; }

  /* ── BUTTONS ────────────────────────────────────────────────── */
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 26px; border-radius: 9px; font-size: 14px;
    font-weight: 600; font-family: inherit; cursor: pointer;
    border: none; transition: all .25s; white-space: nowrap;
  }
  .btn-primary {
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: #fff; box-shadow: 0 4px 14px rgba(76,175,80,.35);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(76,175,80,.4); }
  .btn-outline {
    background: transparent; color: var(--blue);
    border: 2px solid var(--blue);
  }
  .btn-outline:hover { background: var(--blue); color: #fff; }
  .btn-white {
    background: #fff; color: var(--blue); font-weight: 700;
    box-shadow: 0 4px 16px rgba(0,0,0,.12);
  }
  .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
  .btn-sm { padding: 8px 18px; font-size: 13px; }
  .btn-lg { padding: 15px 34px; font-size: 16px; }

  /* ── NAVBAR ─────────────────────────────────────────────────── */
  .navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,.07);
    transition: all .3s;
      z-index: 1000;
  }
  .navbar.scrolled {
    background: rgba(15,23,42,0.99);
    box-shadow: 0 4px 24px rgba(0,0,0,.3);
  }
  .navbar-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    height: 80px; display: flex; align-items: center; justify-content: space-between;
    gap: 20px;
  }
 /* ── LOGO FIX: Proper sizing, aspect ratio, no stretch ─────── */
/* ── LOGO CONTAINER ───────────────────────── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.3px;
}

/* ── LOGO ICON BOX (glass + glow effect) ─── */
.nav-logo-icon {
  height: 56px;
  width: auto;

  display: flex;
  align-items: center;

  padding: 0;           /* remove padding */
  background: none;     /* 🔥 key fix */
  box-shadow: none;     /* 🔥 remove glow box */
}
/* ── LOGO IMAGE FIX ───────────────────────── */
.nav-logo-icon img {
  height: 120px;   /* increase visibility */
  width: 120px;    /* force square box */

  object-fit: contain;

  /* premium look */
   filter:
    drop-shadow(0 0 6px rgba(76,175,80,0.3))
    drop-shadow(0 4px 12px rgba(0,0,0,0.6));

  transition: all 0.3s ease;
  border-radius: 50%;
}

/* hover effect */
.nav-logo:hover .nav-logo-icon {
  transform: translateY(-2px) scale(1.03);
}

.nav-logo:hover .nav-logo-icon img {
  transform: scale(1.05);
}

/* ── TEXT STYLING ───────────────────────── */
.nav-logo span {
  color: #4caf50;
  font-weight: 800;
}

/* optional subtitle (if you add tagline) */
.nav-logo small {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  margin-top: -2px;
  letter-spacing: 0.5px;
}

/* ── RESPONSIVE ───────────────────────── */
@media (max-width: 480px) {
  .nav-logo-icon {
    width: 38px;
    height: 38px;
  }

  .nav-logo {
    font-size: 17px;
  }

  .nav-logo-icon img {
    width: 80%;
    height: 80%;
  }
}
  .nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; }
  .nav-menu li { position: relative; }
  .nav-menu a {
    color: rgba(255,255,255,.75); font-size: 14px; font-weight: 500;
    padding: 8px 14px; border-radius: 7px; display: block;
    transition: all .2s; white-space: nowrap;
  }
  .nav-menu a:hover { color: #fff; background: rgba(255,255,255,.1); }
  .nav-menu a.active { color: #4caf50; }

  /* Dropdown */
  .dropdown-menu {
    display: none; position: absolute; top: calc(100% + 8px); left: 0;
    background: #1e293b; border-radius: 12px; min-width: 220px;
    padding: 8px; box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,.06);
    z-index: 100;
  }
  .dropdown:hover .dropdown-menu { display: block; animation: dropIn .18s ease; }
  @keyframes dropIn { from{opacity:0;transform:translateY(-6px)} to{opacity:1;transform:translateY(0)} }
  .dropdown-menu li a {
    padding: 10px 14px; border-radius: 8px;
    color: rgba(255,255,255,.75); font-size: 13px;
  }
  .dropdown-menu li a:hover { background: rgba(255,255,255,.08); color: #fff; }
  .dropdown > a::after { content: ' ▾'; font-size: 10px; }

  .nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
  .menu-toggle {
    display: none; background: none; border: none;
    color: #fff; font-size: 26px; cursor: pointer; padding: 4px;
  }

  /* ── HERO ───────────────────────────────────────────────────── */
  .hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e3c72 50%, #0a2e1a 100%);
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding: 120px 0 80px;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 900"><defs><radialGradient id="g1" cx="20%" cy="50%"><stop offset="0%" stop-color="%23146c1e" stop-opacity="0.25"/><stop offset="100%" stop-color="transparent"/></radialGradient><radialGradient id="g2" cx="80%" cy="30%"><stop offset="0%" stop-color="%231e3c72" stop-opacity="0.3"/><stop offset="100%" stop-color="transparent"/></radialGradient></defs><rect fill="url(%23g1)" width="1440" height="900"/><rect fill="url(%23g2)" width="1440" height="900"/></svg>') no-repeat center;
    background-size: cover;
  }
  .hero-grid {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; gap: 60px; position: relative; z-index: 1;
  }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(76,175,80,.15); color: #4caf50;
    padding: 7px 16px; border-radius: 30px; font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 22px;
    border: 1px solid rgba(76,175,80,.3);
  }
  .hero-tag .pulse {
    width: 8px; height: 8px; background: #4caf50;
    border-radius: 50%; animation: pulse 2s infinite;
  }
  @keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(76,175,80,.5)} 50%{box-shadow:0 0 0 8px rgba(76,175,80,0)} }
  .hero-title {
    font-size: clamp(32px,4.5vw,56px); font-weight: 900;
    color: #fff; line-height: 1.15; margin-bottom: 22px;
  }
  .hero-title .highlight {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero-title .highlight-blue {
    background: linear-gradient(135deg, #7eb3ff, #4f8ef7);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero-desc {
    font-size: 17px; color: rgba(255,255,255,.7);
    margin-bottom: 36px; line-height: 1.7; max-width: 520px;
  }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
  .hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
  .hero-stat-item { }
  .hero-stat-item h3 {
    font-size: 28px; font-weight: 800; color: #fff;
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero-stat-item p { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 2px; }

  .hero-visual {
    position: relative; display: flex;
    align-items: center; justify-content: center;
  }
  .hero-card-stack { position: relative; width: 100%; max-width: 460px; }
  .hero-main-card {
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px; padding: 28px;
    color: #fff;
  }
  .hmc-header {
    display: flex; align-items: center; gap: 12px; margin-bottom: 22px;
  }
  .hmc-icon {
    width: 46px; height: 46px; border-radius: 12px;
    background: linear-gradient(135deg, #27ae60, #4caf50);
    display: flex; align-items: center; justify-content: center; font-size: 20px;
  }
  .hmc-title { font-size: 16px; font-weight: 700; }
  .hmc-sub { font-size: 12px; opacity: .6; }
  .hmc-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 20px; }
  .hmc-stat { background: rgba(255,255,255,.07); border-radius: 10px; padding: 14px 12px; text-align: center; }
  .hmc-stat h4 { font-size: 20px; font-weight: 800; color: #4caf50; }
  .hmc-stat p { font-size: 10px; opacity: .6; margin-top: 2px; }
  .hmc-bar-row { margin-bottom: 10px; }
  .hmc-bar-label { display: flex; justify-content: space-between; font-size: 11px; opacity: .7; margin-bottom: 5px; }
  .hmc-bar-track { height: 6px; background: rgba(255,255,255,.1); border-radius: 3px; overflow: hidden; }
  .hmc-bar-fill { height: 6px; border-radius: 3px; background: linear-gradient(90deg, #4caf50, #66bb6a); }

  .floating-badge {
    position: absolute;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    border-radius: 12px; padding: 10px 14px;
    display: flex; align-items: center; gap: 10px;
    box-shadow: var(--shadow-lg); white-space: nowrap;
  }
  .floating-badge.top-right { top: -20px; right: -30px; }
  .floating-badge.bottom-left { bottom: -20px; left: -20px; }
  .fb-icon {
    width: 34px; height: 34px; border-radius: 9px;
    display: flex; align-items: center; justify-content: center; font-size: 16px;
  }
  .fb-title { font-size: 12px; font-weight: 700; color: #1e293b; }
  .fb-sub { font-size: 10px; color: #64748b; }

  /* ── TRUST STRIP ────────────────────────────────────────────── */
  .trust-strip {
    background: #f8fafc; border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0; padding: 20px 0;
  }
  .trust-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; gap: 32px; flex-wrap: wrap; justify-content: center;
  }
  .trust-label { font-size: 12px; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }
  .trust-logos { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
  .trust-logo {
    height: 36px; opacity: .5; transition: opacity .2s; filter: grayscale(1);
    display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: #64748b;
  }
  .trust-logo i { font-size: 20px; }
  .trust-logo:hover { opacity: .9; }

  /* ── FEATURE CARDS ──────────────────────────────────────────── */
  .features-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 24px; margin-top: 50px;
  }
  .feature-card {
    background: #fff; border-radius: var(--radius-lg); padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid #f0f0f0;
    transition: transform .25s, box-shadow .25s;
    position: relative; overflow: hidden;
  }
  .feature-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--green), var(--green2));
    transform: scaleX(0); transform-origin: left;
    transition: transform .3s;
  }
  .feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
  .feature-card:hover::before { transform: scaleX(1); }
  .feature-icon {
    width: 56px; height: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 20px;
  }
  .feature-card h3 { font-size: 18px; color: var(--blue); margin-bottom: 10px; }
  .feature-card p { font-size: 14px; line-height: 1.7; }
  .feature-list { margin-top: 16px; display: flex; flex-direction: column; gap: 7px; }
  .feature-list li {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: #555;
  }
  .feature-list li::before {
    content: '✓'; color: var(--green2); font-weight: 800;
    font-size: 13px; flex-shrink: 0;
  }

  /* ── HOW IT WORKS ───────────────────────────────────────────── */
  .steps-row {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 30px; margin-top: 50px; position: relative;
  }
  .steps-row::before {
    content: ''; position: absolute; top: 36px; left: 12.5%; right: 12.5%;
    height: 2px; background: linear-gradient(90deg, #4caf50, #2a5298);
    opacity: .25; z-index: 0;
  }
  .step-item { text-align: center; position: relative; z-index: 1; }
  .step-num {
    width: 72px; height: 72px; border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green2));
    color: #fff; font-size: 24px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; box-shadow: 0 6px 20px rgba(76,175,80,.35);
  }
  .step-item h4 { font-size: 16px; color: var(--blue); margin-bottom: 8px; }
  .step-item p { font-size: 13px; }

  /* ── PARTNER HOSPITALS ──────────────────────────────────────── */
  .partners-section { background: #f8fafc; }
  .partners-grid {
    display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr));
    gap: 22px; margin-top: 48px;
  }
  .partner-card {
    background: #fff; border-radius: var(--radius-lg); padding: 24px;
    box-shadow: var(--shadow); border: 1px solid #f0f0f0;
    transition: all .25s; display: flex; flex-direction: column;
  }
  .partner-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: #d0e8d0; }
  .partner-logo-wrap {
    width: 72px; height: 72px; border-radius: 16px;
    background: linear-gradient(135deg, #e8f5e9, #f0f7f0);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px; overflow: hidden; border: 2px solid #e8f5e9;
  }
  .partner-logo-wrap img { width: 100%; height: 100%; object-fit: cover; }
  .partner-logo-wrap .partner-initial {
    font-size: 26px; font-weight: 800; color: var(--blue);
  }
  .partner-name { font-size: 16px; font-weight: 700; color: var(--blue); margin-bottom: 4px; }
  .partner-city { font-size: 12px; color: #94a3b8; margin-bottom: 12px; display: flex; align-items: center; gap: 5px; }
  .partner-badge {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 4px 10px; border-radius: 20px; font-size: 11px; font-weight: 600;
    background: #e8f5e9; color: var(--green);
  }
  .partner-badge.premium { background: #fef3c7; color: #d97706; }
  .partner-badge.enterprise { background: #f3e8ff; color: #7c3aed; }
  .partner-stats {
    display: flex; gap: 16px; margin-top: auto; padding-top: 16px;
    border-top: 1px solid #f0f0f0; font-size: 12px; color: #94a3b8;
  }

  /* ── TESTIMONIALS ───────────────────────────────────────────── */
  .testimonials-section { background: var(--navy); color: #fff; }
  .testimonials-section .section-title { color: #fff; }
  .testimonials-section .section-sub { color: rgba(255,255,255,.6); }
  .testimonials-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 24px; margin-top: 50px;
  }
  .testimonial-card {
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg); padding: 30px;
    transition: all .25s;
  }
  .testimonial-card:hover {
    background: rgba(255,255,255,.1);
    transform: translateY(-4px);
  }
  .tc-stars { display: flex; gap: 3px; margin-bottom: 18px; }
  .tc-stars i { color: #f59e0b; font-size: 14px; }
  .tc-quote { font-size: 15px; color: rgba(255,255,255,.8); line-height: 1.75; font-style: italic; margin-bottom: 22px; }
  .tc-author { display: flex; align-items: center; gap: 12px; }
  .tc-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, #2a5298, #1e3c72);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 700; color: #fff; flex-shrink: 0;
    border: 2px solid rgba(255,255,255,.2);
  }
  .tc-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
  .tc-name { font-size: 14px; font-weight: 700; color: #fff; }
  .tc-role { font-size: 12px; color: rgba(255,255,255,.45); }
  .tc-hospital { font-size: 12px; color: #4caf50; margin-top: 2px; }

  /* ── SERVICES SECTION ───────────────────────────────────────── */
  .services-row {
    display: grid; grid-template-columns: repeat(auto-fill,minmax(320px,1fr));
    gap: 26px; margin-top: 50px;
  }
  .service-card {
    background: #fff; border-radius: var(--radius-lg); padding: 36px;
    box-shadow: var(--shadow); border: 1px solid #f0f0f0;
    transition: all .25s; position: relative; overflow: hidden;
  }
  .service-card::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--green), var(--green2));
    transform: scaleX(0); transform-origin: left; transition: transform .3s;
  }
  .service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
  .service-card:hover::after { transform: scaleX(1); }
  .service-num {
    font-size: 42px; font-weight: 900; color: #e2e8f0;
    line-height: 1; margin-bottom: 14px;
  }
  .service-card h3 { font-size: 20px; color: var(--blue); margin-bottom: 12px; }
  .service-card p { font-size: 14px; line-height: 1.75; }
  .service-card ul { margin-top: 16px; display: flex; flex-direction: column; gap: 7px; }
  .service-card ul li { font-size: 13px; color: #555; display: flex; align-items: flex-start; gap: 8px; }
  .service-card ul li i { color: var(--green2); font-size: 12px; margin-top: 3px; flex-shrink: 0; }

  /* ── CTA SECTION ────────────────────────────────────────────── */
  .cta-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e3c72 50%, #0a2e1a 100%);
    color: #fff; text-align: center; padding: 100px 0; position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(76,175,80,.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(42,82,152,.15) 0%, transparent 50%);
  }
  .cta-section .container { position: relative; z-index: 1; }
  .cta-section h2 { font-size: clamp(28px,4vw,46px); margin-bottom: 18px; color: #fff; }
  .cta-section p { font-size: 18px; color: rgba(255,255,255,.7); margin-bottom: 40px; }
  .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

  /* ── CONTACT ────────────────────────────────────────────────── */
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 50px; align-items: start; margin-top: 50px;
  }
  .contact-info { }
  .contact-detail {
    display: flex; gap: 14px; margin-bottom: 24px; align-items: flex-start;
  }
  .contact-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: linear-gradient(135deg, #e8f5e9, #f0f7f0);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: var(--green); flex-shrink: 0;
  }
  .contact-detail h4 { font-size: 14px; font-weight: 700; color: var(--blue); margin-bottom: 3px; }
  .contact-detail p { font-size: 14px; color: var(--gray); }
  .map-wrap {
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-lg); margin-top: 24px;
    border: 1px solid #e2e8f0;
  }
  .contact-form-card {
    background: #fff; border-radius: var(--radius-lg); padding: 36px;
    box-shadow: var(--shadow-lg); border: 1px solid #f0f0f0;
  }
  .contact-form-card h3 { font-size: 22px; color: var(--blue); margin-bottom: 6px; }
  .contact-form-card > p { font-size: 14px; margin-bottom: 24px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .form-group { margin-bottom: 16px; }
  .form-group label {
    display: block; font-size: 12px; font-weight: 700;
    color: #475569; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .4px;
  }
  .form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 11px 14px;
    border: 1.5px solid #e2e8f0; border-radius: 9px;
    font-size: 14px; font-family: inherit; color: #1e293b;
    background: #fafbfd; outline: none; transition: border .2s, box-shadow .2s;
    box-sizing: border-box;
  }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--green2); background: #fff;
    box-shadow: 0 0 0 4px rgba(76,175,80,.1);
  }
  .form-group textarea { resize: none; height: 110px; }

  /* ── SOCIAL PAGE ────────────────────────────────────────────── */
  .social-page { min-height: 60vh; display: flex; align-items: center; justify-content: center; }
  .social-grid {
    display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
    gap: 20px; margin-top: 40px; max-width: 800px; margin-left: auto; margin-right: auto;
  }
  .social-card {
    display: flex; flex-direction: column; align-items: center;
    padding: 36px 24px; border-radius: var(--radius-lg);
    text-decoration: none; transition: all .25s;
    border: 2px solid transparent;
  }
  .social-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
  .social-card i { font-size: 44px; margin-bottom: 14px; }
  .social-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
  .social-card p { font-size: 13px; text-align: center; }
  .sc-facebook { background: #f0f4ff; border-color: #dce4ff; color: #1877f2; }
  .sc-instagram { background: #fff0f5; border-color: #ffd6e7; color: #e1306c; }
  .sc-linkedin { background: #f0f8ff; border-color: #d0ecff; color: #0077b5; }
  .sc-whatsapp { background: #f0fff4; border-color: #d0f5e0; color: #25d366; }

  /* ── FOOTER ─────────────────────────────────────────────────── */
  .footer {
    background: #0f172a; color: #94a3b8; padding: 64px 0 0;
  }
  .footer-grid {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 40px; padding-bottom: 48px;
  }
  .footer-brand .nav-logo { margin-bottom: 16px; }
  .footer-brand p { font-size: 14px; line-height: 1.75; margin-bottom: 22px; }
  .footer-social { display: flex; gap: 10px; }
  .footer-social a {
    width: 38px; height: 38px; border-radius: 9px;
    background: rgba(255,255,255,.07); color: #94a3b8;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; transition: all .2s;
  }
  .footer-social a:hover { background: #4caf50; color: #fff; transform: translateY(-2px); }
  .footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .5px; }
  .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a { color: #94a3b8; font-size: 14px; transition: color .2s; }
  .footer-col ul li a:hover { color: #4caf50; }
  .footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 14px; }
  .footer-contact-item i { color: #4caf50; font-size: 14px; margin-top: 3px; flex-shrink: 0; }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.07);
    max-width: 1200px; margin: 0 auto; padding: 22px 24px;
    display: flex; align-items: center; justify-content: space-between;
    font-size: 13px; flex-wrap: wrap; gap: 10px;
  }

  /* ── FLOATING ENQUIRY BUTTON ────────────────────────────────── */
  .enquiry-fab {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: #fff; border: none; border-radius: 50px; padding: 14px 22px;
    font-size: 14px; font-weight: 700; cursor: pointer;
    box-shadow: 0 6px 24px rgba(76,175,80,.45);
    display: flex; align-items: center; gap: 8px;
    transition: all .25s; font-family: inherit;
  }
  .enquiry-fab:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 10px 32px rgba(76,175,80,.55); }
  .enquiry-fab-icon { animation: bounce 2s infinite; }
  @keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-3px)} }

  /* ── ENQUIRY POPUP ──────────────────────────────────────────── */
  .popup-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(15,23,42,.7); backdrop-filter: blur(6px);
    z-index: 9998; align-items: center; justify-content: center;
  }
  .popup-overlay.active { display: flex; }
  .popup-box {
    background: #fff; border-radius: var(--radius-lg);
    width: 460px; max-width: 94vw; max-height: 92vh;
    overflow-y: auto; box-shadow: var(--shadow-lg);
    animation: slideUp .3s ease;
  }
  @keyframes slideUp { from{transform:translateY(40px);opacity:0} to{transform:translateY(0);opacity:1} }
  .popup-head {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    padding: 24px 28px; color: #fff; position: relative;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .popup-head h2 { font-size: 20px; color: #fff; margin-bottom: 4px; }
  .popup-head p { font-size: 13px; opacity: .7; }
  .popup-close {
    position: absolute; top: 16px; right: 18px;
    background: rgba(255,255,255,.15); border: none; color: #fff;
    width: 30px; height: 30px; border-radius: 50%; font-size: 16px;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
  }
  .popup-body { padding: 28px; }
  .popup-success {
    display: none; text-align: center; padding: 30px;
    color: var(--green); font-size: 15px; font-weight: 600;
  }
  .popup-success i { font-size: 48px; display: block; margin-bottom: 12px; }

  /* ── PAGE HERO ──────────────────────────────────────────────── */
  .page-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3c72 100%);
    padding: 130px 0 80px; color: #fff; text-align: center;
  }
  .page-hero h1 { font-size: clamp(30px,4vw,50px); font-weight: 900; color: #fff; margin-bottom: 14px; }
  .page-hero p { font-size: 18px; color: rgba(255,255,255,.65); }
  .page-hero .breadcrumb {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 18px;
  }
  .page-hero .breadcrumb a { color: #4caf50; }

  /* ── VACANCIES ──────────────────────────────────────────────── */
  .vacancies-section { background: #f8fafc; }
  .vacancy-card {
    background: #fff; border-radius: var(--radius-lg); padding: 28px 32px;
    box-shadow: var(--shadow); border: 1px solid #f0f0f0;
    margin-bottom: 20px; transition: all .25s;
    display: flex; align-items: flex-start; justify-content: space-between; gap: 20px;
  }
  .vacancy-card:hover { box-shadow: var(--shadow-lg); border-color: #d0e8d0; transform: translateX(4px); }
  .vacancy-left { flex: 1; }
  .vacancy-title { font-size: 20px; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
  .vacancy-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 14px; }
  .vacancy-meta span { font-size: 12px; color: var(--gray); display: flex; align-items: center; gap: 5px; }
  .vacancy-meta span i { color: var(--green2); }
  .vacancy-desc { font-size: 14px; line-height: 1.7; margin-bottom: 14px; }
  .vacancy-tags { display: flex; gap: 7px; flex-wrap: wrap; }
  .v-tag { padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 700; background: #f0f7f0; color: var(--green); }

  /* ── HOSPITAL MANAGEMENT PAGE ───────────────────────────────── */
  .hm-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 50px; }
  .hm-card {
    background: #fff; border-radius: var(--radius-lg); padding: 30px;
    box-shadow: var(--shadow); border: 1px solid #f0f0f0;
    transition: all .25s;
  }
  .hm-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
  .hm-card-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: linear-gradient(135deg, #e8f5e9, #f0f7f0);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: var(--green); margin-bottom: 18px;
  }
  .hm-card h3 { font-size: 18px; color: var(--blue); margin-bottom: 12px; }
  .hm-card ul { display: flex; flex-direction: column; gap: 8px; }
  .hm-card ul li { font-size: 13px; color: #555; display: flex; align-items: flex-start; gap: 8px; }
  .hm-card ul li i { color: var(--green2); font-size: 12px; flex-shrink: 0; margin-top: 2px; }
.mobile-menu {
  display: none;   /* HIDE by default */
}
  /* ── RESPONSIVE ─────────────────────────────────────────────── */
  @media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2,1fr); }
    .testimonials-grid { grid-template-columns: repeat(2,1fr); }
    .steps-row { grid-template-columns: repeat(2,1fr); }
    .steps-row::before { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hm-cards { grid-template-columns: repeat(2,1fr); }
  }

  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
  }

  @media (max-width: 768px) {
    .section { padding: 56px 0; }
    .section-sm { padding: 36px 0; }
    .nav-menu, .nav-cta { display: none; }
    .menu-toggle { display: block; }
    .navbar-inner { flex-wrap: wrap; height: auto; padding: 14px 20px; }
     .mobile-menu {
    position: fixed;
    top: 68px; /* height of navbar */
    left: 0;
    width: 100%;
    height: calc(100vh - 68px);

    background: #1e293b;
    z-index: 999;

    transform: translateX(-100%);
    transition: transform 0.3s ease;

    display: block; /* important */
  }

  .mobile-menu.open {
    transform: translateX(0);
  }
    .mobile-menu ul { list-style: none; padding: 10px 0; }
    .mobile-menu ul li a {
      display: block; padding: 12px 24px;
      color: rgba(255,255,255,.75); font-size: 14px; font-weight: 500;
      border-bottom: 1px solid rgba(255,255,255,.04);
    }
    .mobile-menu ul li a:hover { color: #4caf50; background: rgba(255,255,255,.04); }
    .mobile-menu .mobile-cta { padding: 16px 24px; display: flex; gap: 10px; flex-wrap: wrap; }
    .features-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .steps-row { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hm-cards { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .vacancy-card { flex-direction: column; }
    .vacancy-card .btn { width: 100%; justify-content: center; }
    .partners-grid { grid-template-columns: repeat(2,1fr); }
    .hero-btns { flex-direction: column; align-items: flex-start; }
    .hero-btns .btn { width: 100%; justify-content: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }
    .enquiry-fab { bottom: 16px; right: 16px; padding: 12px 16px; font-size: 13px; }
  }

  @media (max-width: 480px) {
    .steps-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: 1fr; }
    .social-grid { grid-template-columns: 1fr 1fr; }
    .hero-stats { gap: 20px; }
    .trust-logos { gap: 16px; }
  }
  /* .mobile-menu {
    display: none !important;
  } */