:root {
  --deep: #1a1340;
  --kg: #362C6A;
  --kg-mid: #0b0171;
  --kg-light: #5046a0;
  --kg-pale: #ece9f8;
  --kg-palest: #f6f4fc;
  --accent: #c8404a;
  --accent-light: #e8556a;
  --gold: #c9973e;
  --gold-light: #e8b355;
  --white: #ffffff;
  --off-white: #faf9fd;
  --text-dark: #0f0d22;
  --text-mid: #3d3660;
  --text-soft: #7a74a8;
  --text-muted: #a09cc0;
  --border: rgba(54,44,106,0.10);
  --border-strong: rgba(54,44,106,0.20);
  --r: 14px;
  --r-sm: 8px;
}

.coe-tag {
  padding: 9px 18px;
  border-radius: 50px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  display: inline-block;
  transition: all 0.2s ease;
}

.coe-tag:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

/* Styling for Technology Cards with Photos */
.tech-card {
    background: #f8f7ff; /* matches var(--kg-palest) */
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 0; /* Remove padding to let image reach edges if desired, or keep for inset look */
    overflow: hidden;
    transition: all 0.3s ease;
}

.tech-card:hover {
    box-shadow: 0 12px 32px rgba(54, 44, 106, 0.12);
    transform: translateY(-5px);
}

.tech-img-wrap {
    width: 100%;
    height: 300px; /* Adjust height as needed */
    overflow: hidden;
    border-bottom: 1px solid #eee;
}

.tech-photo {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This ensures the photo fills the area without stretching */
    transition: transform 0.5s ease;
}

.tech-card:hover .tech-photo {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

.tech-h3 {
    font-size: 16px;
    font-weight: 700;
    color: #362c6a; /* var(--kg) */
    margin: 16px 20px 8px;
}

.tech-p {
    font-size: 13.5px;
    color: #666;
    line-height: 1.6;
    margin: 0 20px 20px;
}

@media (max-width: 992px) {
    #technology .container > div[style*="grid"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 576px) {
    #technology .container > div[style*="grid"] {
        grid-template-columns: 1fr !important;
    }
}

/* 1. Removes solid blue, keeps it as fallback only */
.hero { background-image: url('assets/img/kghospital-building.webp'); }

/* 2. Building photo as absolute layer behind everything */
.hero-bg-photo {
  position: absolute; inset: 0;
  background-image: url('assets/img/kghospital-building.webp');
  background-size: cover; background-position: center top;
  z-index: 0;
}

/* 3. Dark gradient overlay so text stays readable */
.hero-bg-overlay {
  position: absolute; inset: 0;
  background-image: url('assets/img/kghospital-building.webp');
  z-index: 1;
}

/* 4. Content sits above all layers */
.hero-left, .hero-right { position: relative; z-index: 3; }


/* TOPBAR */

.kgh-topbar{background:#362C6A;padding:8px 5%;display:flex;justify-content:space-between;align-items:center;font-size:12px;color:rgba(255,255,255,0.65);}
.kgh-topbar a{color:rgba(255,255,255,0.85);text-decoration:none;}
.kgh-topbar a:hover{color:#fff;}
.kgh-nav{background:#fff;border-bottom:1px solid rgba(54,44,106,0.10);position:sticky;top:0;z-index:300;padding:0 3%;display:flex;align-items:center;justify-content:space-between;height:64px;font-family:'Outfit',sans-serif;max-width:100%;box-sizing:border-box;}
.kgh-logo{display:flex;align-items:center;gap:12px;text-decoration:none;flex-shrink:0;}
.kgh-logo-mark{width:42px;height:42px;border-radius:10px;background:#362C6A;display:flex;align-items:center;justify-content:center;font-family:'Cormorant Garamond',serif;font-size:19px;font-weight:700;color:white;}
.kgh-logo-text strong{display:block;font-size:14.5px;font-weight:600;color:#362C6A;line-height:1.2;}
.kgh-logo-text span{font-size:10.5px;color:#7a74a8;letter-spacing:0.08em;text-transform:uppercase;}
.kgh-menu{display:flex;gap:0;list-style:none;margin:0;padding:0;align-items:center;flex-shrink:1;overflow:hidden;}
.kgh-menu > li{position:relative;}
.kgh-menu > li > a{display:flex;align-items:center;gap:4px;color:#3d3660;text-decoration:none;font-size:12.5px;font-weight:500;padding:6px 10px;border-radius:6px;transition:all 0.18s;white-space:nowrap;}
.kgh-menu > li > a:hover,.kgh-menu > li:hover > a{background:#f6f4fc;color:#362C6A;}
.kgh-menu > li > a .chev{font-size:9px;opacity:0.5;transition:transform 0.2s;}
.kgh-menu > li:hover > a .chev{transform:rotate(180deg);}
.kgh-drop{display:none;position:absolute;top:calc(100% + 6px);left:0;min-width:210px;background:white;border:1px solid rgba(54,44,106,0.12);border-radius:12px;box-shadow:0 12px 40px rgba(54,44,106,0.14);padding:8px;z-index:400;}
.kgh-menu > li:hover .kgh-drop{display:block;}
.kgh-drop a{display:block;padding:9px 14px;border-radius:8px;font-size:13px;font-weight:500;color:#3d3660;text-decoration:none;transition:background 0.15s;}
.kgh-drop a:hover{background:#f6f4fc;color:#362C6A;}
.kgh-drop .drop-divider{height:1px;background:rgba(54,44,106,0.08);margin:4px 0;}
.kgh-nav-right{display:flex;gap:8px;align-items:center;flex-shrink:0;margin-left:8px;}
.kgh-phone{font-size:13px;font-weight:600;color:#362C6A;text-decoration:none;white-space:nowrap;}
.kgh-book-btn{background:#c8404a;color:white;padding:8px 18px;border-radius:50px;font-size:13px;font-weight:600;text-decoration:none;transition:all 0.2s;white-space:nowrap;}
.kgh-book-btn:hover{background:#e8556a;transform:translateY(-1px);}
@media(max-width:1100px){.kgh-menu{display:none;}}
.kgh-hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:8px;background:none;border:none;}
.kgh-hamburger span{display:block;width:22px;height:2px;background:#362C6A;border-radius:2px;transition:all 0.3s;}
@media(max-width:768px){.kgh-hamburger{display:flex;}}
.kgh-mobile-menu{display:none;position:fixed;top:58px;left:0;right:0;bottom:0;background:white;z-index:299;overflow-y:auto;padding:16px 5% 40px;}
.kgh-mobile-menu.open{display:block;}
.kgh-mobile-item{display:block;padding:14px 0;border-bottom:1px solid rgba(54,44,106,0.08);font-size:15px;font-weight:500;color:#3d3660;text-decoration:none;}
.kgh-mobile-item:last-child{border-bottom:none;}
.kgh-mobile-phone{display:block;margin-top:24px;background:#362C6A;color:white;text-align:center;padding:14px;border-radius:50px;font-size:15px;font-weight:600;text-decoration:none;}
.kgh-mobile-book{display:block;margin-top:12px;background:#c8404a;color:white;text-align:center;padding:14px;border-radius:50px;font-size:15px;font-weight:600;text-decoration:none;}



*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}

/* ── HERO ── */
.hero {
  background: var(--kg);
  min-height: 92vh;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 5%;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  background-image: url('https://www.kghospital.com/images/kg-hospital-building.jpg');

}

/* Building photo background */
.hero-bg-photo {
  position: absolute;
  inset: 0;
  background-image: url('https://www.kghospital.com/images/kg-hospital-building.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
/* Dark overlay so text remains readable */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    105deg,
    rgba(26,19,64,0.92) 0%,
    rgba(26,19,64,0.80) 45%,
    rgba(11,1,113,0.55) 100%
  ); */
  
}
/* Architectural grid on top */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
 background-image: url('https://www.kghospital.com/images/kg-hospital-building.jpg');
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-left { position: relative; z-index: 2; padding: 80px 0; }
.hero-right { position: relative; z-index: 2; display: flex; justify-content: flex-end; align-items: center; padding: 80px 0; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 28px;
}
.hero-badge-dot { width: 6px; height: 6px; background: #4ade80; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: 1.06;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.hero h1 em { font-style: italic; color: #b8aff0; }
.hero h1 span.accent-line {
  display: block;
  background: linear-gradient(90deg, #c8b8ff, #e8b355);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.65);
  max-width: 440px; line-height: 1.75; margin-bottom: 36px;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }
.btn-primary {
  background: var(--accent); color: white; padding: 14px 28px;
  border-radius: 50px; font-size: 15px; font-weight: 600;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s; border: none; cursor: pointer;
  font-family: 'Outfit', sans-serif;
}
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,64,74,0.35); }
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.25); color: white; padding: 13px 28px;
  border-radius: 50px; font-size: 15px; font-weight: 500;
  text-decoration: none; display: inline-block; transition: all 0.2s;
  font-family: 'Outfit', sans-serif;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,0.08);
  border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.hero-stat {
  padding: 18px 16px;
  background: rgba(255,255,255,0.04);
  transition: background 0.2s;
}
.hero-stat:hover { background: rgba(255,255,255,0.08); }
.hero-stat strong { display: block; font-size: 24px; font-weight: 700; color: white; line-height: 1; margin-bottom: 4px; }
.hero-stat span { font-size: 11.5px; color: rgba(255,255,255,0.55); letter-spacing: 0.04em; }

.hero-card-stack { position: relative; width: 340px; }
.hero-card-main {
  background: white; border-radius: 20px; padding: 32px 28px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.35);
}
.hero-card-main h3 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-soft); margin-bottom: 20px;
}
.pkg-item {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; border-radius: 10px; margin-bottom: 6px;
  border: 1px solid var(--border); transition: all 0.2s; cursor: default;
}
.pkg-item:hover { background: var(--kg-palest); border-color: var(--kg-pale); }
.pkg-item:last-child { margin-bottom: 0; }
.pkg-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.pkg-name { font-size: 13.5px; font-weight: 500; color: var(--text-dark); flex: 1; }
.pkg-arrow { font-size: 12px; color: var(--text-muted); }
.hero-card-footer {
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12.5px;
}
.hero-card-footer span { color: var(--text-soft); }
.hero-card-footer strong { color: var(--kg); font-weight: 600; }

/* ── SECTIONS ── */
.section { padding: 88px 5%; }
.section-white { background: var(--white); }
.section-pale { background: var(--kg-palest); }
.section-deep { background: var(--deep); }
.section-kg { background: var(--kg); }
.container { max-width: 1200px; margin: 0 auto; }

.tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--kg-light); margin-bottom: 12px;
}
.tag-light { color: rgba(255,255,255,0.5); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 600; line-height: 1.1;
  color: var(--text-dark); margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-title em { font-style: italic; color: var(--kg-light); }
.section-body { font-size: 16.5px; color: var(--text-mid); line-height: 1.8; max-width: 560px; }
.section-body.light { color: rgba(255,255,255,0.65); }

/* ── ABOUT ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.about-text { }
.about-text p { font-size: 16.5px; color: var(--text-mid); line-height: 1.8; margin-bottom: 18px; }
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--text-dark); font-weight: 600; }
.about-panel {
  background: var(--kg-palest);
  border-radius: 20px; padding: 36px;
  border: 1px solid var(--border);
}
.about-panel-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-soft); margin-bottom: 24px;
}
.about-fact {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 14.5px;
}
.about-fact:last-child { border-bottom: none; padding-bottom: 0; }
.about-fact-label { color: var(--text-soft); }
.about-fact-value { font-weight: 600; color: var(--text-dark); text-align: right; }
.about-cta {
  display: block; text-align: center; margin-top: 24px;
  padding: 12px 24px; background: var(--kg); color: white;
  border-radius: 50px; font-size: 14px; font-weight: 600;
  text-decoration: none; transition: all 0.2s;
}
.about-cta:hover { background: var(--kg-light); }

/* YouTube embed */
.yt-embed-wrap {
  position: relative; width: 100%; padding-bottom: 56.25%;
  border-radius: 14px; overflow: hidden; margin-bottom: 20px;
  background: #000;
}
.yt-embed-wrap iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: 0;
}

/* ── SPECIALTIES ── */
.spec-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px;
}
.spec-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px 22px;
  text-decoration: none; transition: all 0.25s;
  position: relative; overflow: hidden;
}
.spec-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--kg); transform: scaleX(0); transition: transform 0.25s;
  transform-origin: left;
}
.spec-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(54,44,106,0.1); border-color: var(--border-strong); }
.spec-card:hover::before { transform: scaleX(1); }
.spec-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--kg-palest); display: flex; align-items: center;
  justify-content: center; font-size: 24px; margin-bottom: 16px;
}
.spec-card h3 { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.spec-card p { font-size: 13px; color: var(--text-soft); line-height: 1.6; }
.spec-link { font-size: 13px; font-weight: 600; color: var(--kg); margin-top: 14px; display: inline-flex; align-items: center; gap: 4px; }

/* ── WHY CHOOSE / FIRSTS ── */
.why-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 56px;
}
.firsts-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.firsts-category {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px 26px;
  transition: box-shadow 0.2s;
}
.firsts-category:hover { box-shadow: 0 8px 32px rgba(54,44,106,0.08); }
.firsts-cat-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px; padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.firsts-cat-icon { font-size: 20px; }
.firsts-cat-title { font-size: 14px; font-weight: 700; color: var(--kg); }
.firsts-cat-count {
  margin-left: auto; background: var(--kg-palest); color: var(--kg-light);
  font-size: 11px; font-weight: 700; padding: 3px 10px;
  border-radius: 50px; letter-spacing: 0.04em;
}
.firsts-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.firsts-list li {
  font-size: 13px; color: var(--text-mid); line-height: 1.5;
  padding-left: 16px; position: relative;
}
.firsts-list li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--kg-light);
}
.firsts-list li strong { color: var(--text-dark); font-weight: 600; }

/* Stat counter row */
.stats-band {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border-radius: var(--r); overflow: hidden; margin-top: 48px;
  border: 1px solid var(--border);
}
.stat-box {
  background: var(--white); padding: 28px 20px; text-align: center;
}
.stat-box strong { display: block; font-size: 28px; font-weight: 700; color: var(--kg); line-height: 1; margin-bottom: 6px; }
.stat-box span { font-size: 12px; color: var(--text-soft); line-height: 1.4; }

/* ── TRUST BAR ── */
.trust-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.trust-item {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r); padding: 24px 18px; text-align: center;
  transition: background 0.2s;
}
.trust-item:hover { background: rgba(255,255,255,0.1); }
.trust-icon { font-size: 28px; margin-bottom: 10px; }
.trust-item strong { display: block; font-size: 14px; font-weight: 600; color: white; margin-bottom: 4px; }
.trust-item span { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.4; }

/* ── APPOINTMENTS ── */
.appt-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px;
}
.appt-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 26px 22px; text-align: center;
  text-decoration: none; transition: all 0.25s;
}
.appt-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(54,44,106,0.1); border-color: var(--kg); }
.appt-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--kg-palest); display: flex; align-items: center;
  justify-content: center; font-size: 26px; margin: 0 auto 14px;
}
.appt-card h3 { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.appt-card p { font-size: 12.5px; color: var(--text-soft); margin-bottom: 16px; }
.appt-btn {
  display: inline-block; background: var(--kg); color: white;
  font-size: 12.5px; font-weight: 600; padding: 8px 20px;
  border-radius: 50px; text-decoration: none; transition: background 0.2s;
  font-family: 'Outfit', sans-serif;
}
.appt-card:hover .appt-btn { background: var(--kg-light); }

/* ── FAQ ── */
.faq-grid { max-width: 780px; margin: 44px auto 0; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--r-sm);
  overflow: hidden; margin-bottom: 8px;
  background: var(--white);
}
.faq-q {
  padding: 20px 24px; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-size: 15px; font-weight: 500; color: var(--text-dark);
  transition: background 0.18s; user-select: none;
}
.faq-q:hover { background: var(--kg-palest); }
.faq-toggle {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--kg-palest); color: var(--kg);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 300; flex-shrink: 0;
  transition: transform 0.3s, background 0.2s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--kg); color: white; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 14.5px; color: var(--text-mid); line-height: 1.75;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 300px; padding: 4px 24px 22px; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.testi-card {
  background: var(--kg-palest); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px 26px; position: relative;
}
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; color: var(--kg-pale); line-height: 0.6;
  position: absolute; top: 24px; right: 24px; user-select: none;
}
.testi-text { font-size: 14.5px; color: var(--text-mid); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-author strong { display: block; font-size: 14px; font-weight: 600; color: var(--text-dark); }
.testi-author span { font-size: 12.5px; color: var(--text-soft); }

/* ── BOTTOM CTA ── */
.bottom-cta {
  background: var(--kg); padding: 88px 5%;
  text-align: center; position: relative; overflow: hidden;
}
.bottom-cta::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
}
.bottom-cta > * { position: relative; z-index: 2; }
.bottom-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px); font-weight: 600;
  color: white; line-height: 1.15; margin-bottom: 16px;
}
.bottom-cta h2 em { font-style: italic; color: #b8aff0; }
.bottom-cta p { font-size: 17px; color: rgba(255,255,255,0.62); margin-bottom: 36px; }
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer { background: var(--deep); padding: 32px 5%; }
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,0.45);
}
.footer a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer a:hover { color: rgba(255,255,255,0.9); }
.footer-links { display: flex; gap: 20px; }

/* ── CORPORATE BANNER ── */
.corp-band { background: var(--deep); padding: 44px 5%; }
.corp-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.corp-left p { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 6px; }
.corp-left strong { font-size: 16px; font-weight: 600; color: white; }
.corp-logos { display: flex; gap: 10px; flex-wrap: wrap; }
.corp-chip {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; padding: 8px 14px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.6);
  transition: all 0.2s;
}
.corp-chip:hover { background: rgba(255,255,255,0.12); color: white; }

/* ── ACCREDITATIONS ── */
.accred-row {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px;
}
.accred-pill {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px; padding: 7px 16px;
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.75);
  display: flex; align-items: center; gap: 6px;
}
.accred-pill-check { color: #4ade80; font-size: 13px; }

/* ── COE Grid ── */
.coe-inner-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
}
.coe-left-panel {
  padding: 40px 36px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ── COE TABS ── */
#coe-tabs {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
  margin-bottom: 24px;
}

/* ── FLOATING SOCIAL BAR ── */
.float-bar {
  position: fixed;
  right: 20px;
  bottom: 32px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.float-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.float-btn:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.float-wa-btn { background: #25D366; }
.float-fb-btn { background: #1877F2; }
.float-ig-btn { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.float-yt-btn { background: #FF0000; }
.float-li-btn { background: #0A66C2; }

.float-tip {
  position: absolute;
  right: 58px;
  background: rgba(15,13,34,0.90);
  color: white;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  font-family: 'Outfit', sans-serif;
}
.float-tip::after {
  content: '';
  position: absolute;
  right: -5px; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(15,13,34,0.90);
  border-right: none;
}
.float-btn:hover .float-tip { opacity: 1; }

.float-socials-group {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: all 0.3s;
}
.float-socials-group.float-hidden {
  opacity: 0; pointer-events: none; transform: translateY(10px);
}
.float-socials-group:not(.float-hidden) {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}

.float-toggle-btn {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--kg);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(54,44,106,0.4);
  transition: background 0.2s, transform 0.2s;
  position: relative;
}
.float-toggle-btn:hover { transform: scale(1.08); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-left > * { animation: fadeUp 0.7s ease both; }
.hero-badge { animation-delay: 0.05s; }
.hero h1    { animation-delay: 0.15s; }
.hero-sub   { animation-delay: 0.25s; }
.hero-ctas  { animation-delay: 0.35s; }
.hero-stats { animation-delay: 0.45s; }
.hero-right { animation: fadeUp 0.8s 0.3s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .section { padding: 64px 5%; }
  .firsts-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .appt-grid { grid-template-columns: repeat(2, 1fr); }
  #doctors-grid, #doctors-grid + div { grid-template-columns: repeat(2, 1fr) !important; }
  #coe-tabs { grid-template-columns: repeat(2,1fr) !important; }
  .coe-inner-grid { grid-template-columns: 1fr !important; display: flex !important; flex-direction: column !important; }
  .coe-left-panel { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.08); }
}

@media (max-width: 768px) {
  body { overflow-x: hidden; }
  .section { padding: 52px 5%; }
  .kgh-menu { display: none !important; }
  .kgh-topbar > div:first-child { display: none; }
  .kgh-nav { height: 58px; padding: 0 4%; }
  .kgh-logo-text span { display: none; }
  .hero { grid-template-columns: 1fr !important; min-height: auto; padding: 60px 5% 52px; }
  .hero-right { display: none !important; }
  .hero h1 { font-size: clamp(32px, 8vw, 44px); }
  .hero-sub { font-size: 15px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat strong { font-size: 20px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { text-align: center; }
  .about-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .why-header { grid-template-columns: 1fr !important; gap: 24px; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .appt-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .firsts-grid { grid-template-columns: 1fr; }
  .corp-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  #coe-tabs { grid-template-columns: repeat(2,1fr) !important; gap: 8px !important; }
  #coe-tabs button > div { padding: 16px 14px !important; }
  .coe-inner-grid { grid-template-columns: 1fr !important; display: flex !important; flex-direction: column !important; }
  .coe-left-panel { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.08) !important; padding: 28px 24px !important; }
  #doctors-grid, #doctors-grid + div { grid-template-columns: repeat(2, 1fr) !important; }
  .section-title { font-size: clamp(26px, 7vw, 36px); }
  .why-header > p { display: none; }
  .accred-row { gap: 8px; }
  .accred-pill { font-size: 11px; padding: 6px 12px; }
  .float-btn { width: 44px; height: 44px; }
  .float-toggle-btn { width: 44px; height: 44px; }
  .float-bar { right: 16px; bottom: 24px; }
}

@media (max-width: 480px) {
  .section { padding: 44px 4%; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  #doctors-grid, #doctors-grid + div { grid-template-columns: 1fr !important; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  #coe-tabs { grid-template-columns: 1fr 1fr !important; }
  .appt-grid { grid-template-columns: 1fr; }
  .hero-ctas { gap: 10px; }
  .btn-primary, .btn-ghost { padding: 12px 20px; font-size: 14px; }
}

html {
  width: 100%;
  display: inline-block;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
:focus {
  outline: 0;
}
ins {
  text-decoration: none;
}
del {
  text-decoration: line-through;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
.clear {
  clear: both;
  height: 0;
  overflow: hidden;
}
.clearfix {
  display: inline-block;
  width: 100%;
}
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
figure,
figcaption {
  margin: 0;
  padding: 0;
}
svg {
  overflow: hidden;
  vertical-align: middle;
}
*,
::before,
::after {
  box-sizing: border-box;
}
a,
a > * {
  -webkit-transition: background-color 1.2s ease, border 1.2s ease,
    color 0.5s ease, opacity 1.2s ease-in-out;
  -moz-transition: background-color 1.2s ease, border 1.2s ease, color 0.5s ease,
    opacity 1.2s ease-in-out;
  -ms-transition: background-color 1.2s ease, border 1.2s ease, color 0.5s ease,
    opacity 1.2s ease-in-out;
  -o-transition: background-color 1.2s ease, border 1.2s ease, color 0.5s ease,
    opacity 1.2s ease-in-out;
  transition: background-color 1.2s ease, border 1.2s ease, color 0.5s ease,
    opacity 1.2s ease-in-out;
}
a,
a:hover {
  text-decoration: none;
}
body {
  font-family: "Montserrat", sans-serif !important;
}
h1 {
  font-size: 40px;
  font-weight: 600;
}
h2 {
  color: #000096;
  font-size: 35px;
  margin-bottom: 20px;
  font-weight: 600;
}
.smooth,
.bxinner:after {
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}
.btn.btn-primary.emergency-button {
  color: #fff;
  background-color: #000096;
  min-width: 140px;
  max-width: 200px;
}
.p-top-bottom {
  padding-top: 80px;
  padding-bottom: 100px;
}
.p-top-20 {
  padding-top: 30px;
}
.one {
  color: #fff;
}
a.one {
  color: #c9cacc;
  font-size: 11px;
  text-transform: uppercase;
}
#footer p {
  color: #c9cacc;
  font-size: 11px;
}
a.one:hover {
  color: #ffc107;
  text-decoration: none;
}
.news {
  color: #fff;
}
a.news {
  color: #fff;
}
a.news:hover {
  color: #fcbd00;
  text-decoration: none;
}
.two {
  color: #ffc107;
}
a.two:link {
  color: #000096;
  font-weight: 600;
}
a.two:hover {
  color: #000096;
}
.header-link {
  color: #000;
}
a.header-link:link {
  color: #000096;
  font-size: 12px;
  font-weight: 400;
}
a.header-link:hover {
  color: #000096;
  text-decoration: none;
}
.footer-p {
  font-size: 14px;
  font-weight: 400;
}
.footer-title-branches {
  font-size: 20px;
}
.banner-heading-font {
  font-size: 25px;
}
.banner-font {
  font-size: 38px;
  font-weight: 700;
}
.whats-app {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 120px;
  left: 50px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.my-float {
  margin-top: 16px;
}
.about-text {
  text-align: left !important;
}
.card-box {
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid #e7eaed;
  padding: 1.5rem;
  margin-bottom: 24px;
  border-radius: 0.25rem;
}
.uk-visa-card-one {
  display: block;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #293462;
  border-radius: 2px;
  box-shadow: 0 2px 5px 0 #000 0 2px 10px 0 #000;
  transition: box-shadow 0.25s;
  min-height: 210px;
  color: #fff;
}
.uk-visa-card-appointment {
  display: block;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #293462;
  border-radius: 2px;
  box-shadow: 0 2px 5px 0 #000 0 2px 10px 0 #000;
  transition: box-shadow 0.25s;
  min-height: 100px;
  color: #fff;
}
.uk-visa-card-two {
  display: block;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #ec9b3b;
  border-radius: 2px;
  box-shadow: 0 2px 5px 0 #000 0 2px 10px 0 #000;
  transition: box-shadow 0.25s;
  min-height: 210px;
  color: #fff;
}
.uk-visa-card-mail {
  display: block;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #ec9b3b;
  border-radius: 2px;
  box-shadow: 0 2px 5px 0 #000 0 2px 10px 0 #000;
  transition: box-shadow 0.25s;
  min-height: 100px;
  color: #fff;
}
.uk-visa-card-three {
  display: block;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #f24c4c;
  border-radius: 2px;
  box-shadow: 0 2px 5px 0 #000 0 2px 10px 0 #000;
  transition: box-shadow 0.25s;
  min-height: 210px;
  color: #fff;
  display: block;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #f24c4c;
  border-radius: 2px;
  box-shadow: 0 2px 5px 0 #000 0 2px 10px 0 #000;
  transition: box-shadow 0.25s;
  min-height: 100px;
  color: #fff;
}
.avatar-xl {
  height: 6rem;
  width: 6rem;
}
.rounded-circle {
  border-radius: 50% !important;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1abc9c;
}
.nav-pills .nav-link {
  border-radius: 0.25rem;
}
.navtab-bg li > a {
  background-color: #f7f7f7;
  margin: 0 5px;
}
.nav-pills > li > a,
.nav-tabs > li > a {
  color: #6c757d;
  font-weight: 600;
}
.mb-4,
.my-4 {
  margin-bottom: 2.25rem !important;
}
.tab-content {
  padding: 20px 0 0;
}
.progress-sm {
  height: 5px;
}
.m-0 {
  margin: 0 !important;
}
.table .thead-light th {
  color: #6c757d;
  background-color: #f1f5f7;
  border-color: #dee2e6;
}
.social-list-item {
  height: 2rem;
  width: 2rem;
  line-height: calc(2rem - 4px);
  display: block;
  border: 2px solid #adb5bd;
  border-radius: 50%;
  color: #adb5bd;
}
.text-purple {
  color: #6559cc !important;
}
.border-purple {
  border-color: #6559cc !important;
}
.timeline {
  margin-bottom: 50px;
  position: relative;
}
.timeline:before {
  background-color: #dee2e6;
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  top: 30px;
  width: 2px;
  z-index: 0;
}
.timeline .time-show {
  margin-bottom: 30px;
  margin-top: 30px;
  position: relative;
}
.timeline .timeline-box {
  background: #fff;
  display: block;
  margin: 15px 0;
  position: relative;
  padding: 20px;
}
.timeline .timeline-album {
  margin-top: 12px;
}
.timeline .timeline-album a {
  display: inline-block;
  margin-right: 5px;
}
.timeline .timeline-album img {
  height: 36px;
  width: auto;
  border-radius: 3px;
}
.profile-button {
  background-color: #ffc93c;
  font-size: 12px;
  padding-bottom: 10px;
  padding-top: 10px;
  color: #000 !important;
}
.appointment-button {
  background-color: #000096;
  font-size: 12px;
  padding-bottom: 10px;
  padding-top: 10px;
}
.p-title-page {
  font-size: 20px;
  background-color: #ffc93c;
  padding: 10px 0 10px 30px;
  font-weight: 700;
}
.p-title-health {
  font-size: 20px;
  background-color: #ffc93c;
  padding: 10px 0 10px 30px;
  font-weight: 700;
  color: #000 !important;
}
.p-title-page-blue {
  font-size: 20px;
  background-color: #000096;
  padding: 10px 0 10px 30px;
  font-weight: 700;
  color: #fff;
}
.text-background-color,
.text-background-color-grey {
  padding: 10px 30px;
  text-align: justify;
  color: #000 !important;
}
.text-background-color {
  background-color: #d1dcf8;
  border-left: 5px solid #4460a7;
}
.text-background-color-grey {
  background-color: #e8e8e8;
  border-left: 5px solid #ffc93c;
}
.blog-grid {
  box-shadow: 0 0 7px #2e0000;
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
  width: 95%;
  margin: 15px auto;
  height: 100%;
  min-height: 330px;
}
.blog-grid .blog-img {
  position: relative;
}
.blog-grid .blog-img .date {
  position: absolute;
  background: #ffc93c;
  color: #000096;
  padding: 8px 15px;
  left: 10px;
  top: 10px;
  border-radius: 4px;
}
.blog-grid .blog-img .date span {
  font-size: 22px;
  display: block;
  line-height: 22px;
  font-weight: 700;
}
.blog-grid .blog-img .date label {
  font-size: 14px;
  margin: 0;
}
.blog-grid .blog-info {
  padding: 20px;
}
.blog-grid .blog-info h5 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
}
.blog-grid .blog-info h5 a {
  color: #20247b;
  font-size: 16px;
  line-height: 25px;
}
.blog-grid .blog-info p {
  margin: 0;
}
.blog-grid .blog-info .btn-bar {
  margin-top: 20px;
}
.blog-aside .widget {
  box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
  margin-top: 15px;
  margin-bottom: 15px;
  width: 100%;
  display: inline-block;
  vertical-align: top;
}
.blog-aside .widget-body {
  padding: 15px;
}
.blog-aside .widget-title {
  padding: 15px;
  border-bottom: 1px solid #eee;
}
.blog-aside .widget-title h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fc5356;
  margin: 0;
}
.blog-aside .widget-author .media {
  margin-bottom: 15px;
}
.blog-aside .widget-author p {
  font-size: 16px;
  margin: 0;
}
.blog-aside .widget-author .avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
}
.blog-aside .widget-author h6 {
  font-weight: 600;
  color: #20247b;
  font-size: 22px;
  margin: 0;
  padding-left: 20px;
}
.blog-aside .post-aside {
  margin-bottom: 15px;
}
.blog-aside .post-aside .post-aside-title h5 {
  margin: 0;
}
.blog-aside .post-aside .post-aside-title a {
  font-size: 18px;
  color: #20247b;
  font-weight: 600;
}
.blog-aside .post-aside .post-aside-meta {
  padding-bottom: 10px;
}
.blog-aside .post-aside .post-aside-meta a {
  color: #6f8ba4;
  font-size: 12px;
  text-transform: uppercase;
  display: inline-block;
  margin-right: 10px;
}
.blog-aside .latest-post-aside + .latest-post-aside {
  border-top: 1px solid #eee;
  padding-top: 15px;
  margin-top: 15px;
}
.blog-aside .latest-post-aside .lpa-right {
  width: 90px;
}
.blog-aside .latest-post-aside .lpa-right img {
  border-radius: 3px;
}
.blog-aside .latest-post-aside .lpa-left {
  padding-right: 15px;
}
.blog-aside .latest-post-aside .lpa-title h5 {
  margin: 0;
  font-size: 15px;
}
.blog-aside .latest-post-aside .lpa-title a {
  color: #20247b;
  font-weight: 600;
}
.blog-aside .latest-post-aside .lpa-meta a {
  color: #6f8ba4;
  font-size: 12px;
  text-transform: uppercase;
  display: inline-block;
  margin-right: 10px;
}
.tag-cloud a {
  padding: 4px 15px;
  font-size: 13px;
  color: #fff;
  background: #20247b;
  border-radius: 3px;
  margin-right: 4px;
  margin-bottom: 4px;
}
.tag-cloud a:hover {
  background: #ffc93c;
  color: #000096;
}
.blog-single {
  padding-top: 30px;
  padding-bottom: 30px;
}
.article {
  box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
  padding: 15px;
  margin: 15px 0 30px;
}
.article .article-title {
  padding: 15px 0 20px;
}
.article .article-title h6 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}
.article .article-title h6 a {
  text-transform: uppercase;
  color: #fc5356;
  border-bottom: 1px solid #fc5356;
}
.article .article-title h2 {
  color: #20247b;
  font-weight: 600;
}
.article .article-title .media {
  padding-top: 15px;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 20px;
}
.article .article-title .media .avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
}
.article .article-title .media .media-body {
  padding-left: 8px;
}
.article .article-title .media .media-body label {
  font-weight: 600;
  color: #fc5356;
  margin: 0;
}
.article .article-title .media .media-body span {
  display: block;
  font-size: 12px;
}
.article .article-content h1,
.article .article-content h2,
.article .article-content h3,
.article .article-content h4,
.article .article-content h5,
.article .article-content h6 {
  color: #20247b;
  font-weight: 600;
  margin-bottom: 15px;
}
.article .article-content blockquote {
  max-width: 600px;
  padding: 15px 0 30px;
  margin: 0;
}
.article .article-content blockquote p {
  font-size: 20px;
  font-weight: 500;
  color: #fc5356;
  margin: 0;
}
.article .article-content blockquote .blockquote-footer {
  color: #20247b;
  font-size: 16px;
}
.article .article-content blockquote .blockquote-footer cite {
  font-weight: 600;
}
.article .tag-cloud {
  padding-top: 10px;
}
.article-comment {
  box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
  padding: 20px;
}
.article-comment h4 {
  color: #20247b;
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 22px;
}
img {
  max-width: 100%;
  vertical-align: middle;
  border-style: none;
}
.vl {
  border-left: 2px solid #bdbcc2;
  height: auto;
}
.text-justify {
  text-align: justify !important;
}
.robotic-img-align-centre {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .timeline .time-show {
    margin-right: -69px;
    text-align: right;
  }
  .timeline .timeline-box {
    margin-left: 45px;
  }
  .timeline .timeline-icon {
    background: #dee2e6;
    border-radius: 50%;
    display: block;
    height: 20px;
    left: -54px;
    margin-top: -10px;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 20px;
  }
  .timeline .timeline-icon i {
    color: #98a6ad;
    font-size: 13px;
    position: absolute;
    left: 4px;
  }
  .timeline .timeline-desk {
    display: table-cell;
    vertical-align: top;
    width: 50%;
  }
  .timeline-item {
    display: table-row;
  }
  .timeline-item:before {
    content: "";
    display: block;
    width: 50%;
  }
  .timeline-item .timeline-desk .arrow {
    border-bottom: 12px solid transparent;
    border-right: 12px solid #fff !important;
    border-top: 12px solid transparent;
    display: block;
    height: 0;
    left: -12px;
    margin-top: -12px;
    position: absolute;
    top: 50%;
    width: 0;
  }
  .timeline-item.timeline-item-left:after {
    content: "";
    display: block;
    width: 50%;
  }
  .timeline-item.timeline-item-left .timeline-desk .arrow-alt {
    border-bottom: 12px solid transparent;
    border-left: 12px solid #fff !important;
    border-top: 12px solid transparent;
    display: block;
    height: 0;
    left: auto;
    margin-top: -12px;
    position: absolute;
    right: -12px;
    top: 50%;
    width: 0;
  }
  .timeline-item.timeline-item-left .timeline-desk .album {
    float: right;
    margin-top: 20px;
  }
  .timeline-item.timeline-item-left .timeline-desk .album a {
    float: right;
    margin-left: 5px;
  }
  .timeline-item.timeline-item-left .timeline-icon {
    left: auto;
    right: -56px;
  }
  .timeline-item.timeline-item-left:before {
    display: none;
  }
  .timeline-item.timeline-item-left .timeline-box {
    margin-right: 45px;
    margin-left: 0;
    text-align: right;
  }
}
@media (max-width: 767.98px) {
  .timeline .time-show {
    text-align: center;
    position: relative;
  }
  .timeline .timeline-icon {
    display: none;
  }
}
.timeline-sm {
  padding-left: 110px;
}
.timeline-sm .timeline-sm-item {
  position: relative;
  padding-bottom: 20px;
  padding-left: 40px;
  border-left: 2px solid #dee2e6;
}
.timeline-sm .timeline-sm-item:after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: -7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #1abc9c;
}
.timeline-sm .timeline-sm-item .timeline-sm-date {
  position: absolute;
  left: -104px;
}
@media (max-width: 420px) {
  .timeline-sm {
    padding-left: 0;
  }
  .timeline-sm .timeline-sm-date {
    position: relative !important;
    display: block;
    left: 0 !important;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 480px) {
  .banner-font {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
  }
  .whats-app {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 120px;
    left: 10px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px;
    z-index: 100;
  }
  .my-float {
    margin-top: 16px;
  }
}
.subpageContent ul.slick-slider {
  margin: 0;
}
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  margin: 0;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
  width: 100%;
  height: auto;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
.slick-dots li {
  float: left;
}
.slick-dots span {
  width: 8px;
  height: 8px;
  background: #4c4c4c;
  border-radius: 100%;
  border: 0;
  text-indent: -9999px;
  display: block;
  cursor: pointer;
  margin: 0 10px;
}
.slick-dots span:hover {
  background: #7fab13;
}
.mainBanner {
  position: relative;
  overflow: hidden;
}
.mainBanner li {
  list-style: none;
}
.mainBanner .carArrow.slick-prev {
  left: 100px;
}
.mainBanner .carArrow.slick-next {
  right: 130px;
}
.mainBanner .carArrow svg {
  width: 30px;
}
.mainBanner .carArrow polyline {
  stroke: #545454;
}
.mainBanner .carArrow:hover polyline {
  stroke: #ddd;
}
.mainBanner .carArrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10000;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
}
.mainBanner .slick-dots {
  display: block;
  margin: auto;
  width: 200px;
}
.dropdown-item {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
}
.searchBox img {
  width: 35px;
}
.searchBx {
  position: absolute;
  right: 0;
  top: -100px;
  width: 400px;
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}
.searchBx.searchBxshow {
  top: -13px;
  background: #f1f1f1;
  padding: 10px;
}
.clicksearch,
.closeBtn {
  cursor: pointer;
}
.searchBox .form-control {
  width: 92%;
  float: left;
}
.closeBtn {
  margin: 10px 0 0 10px;
  display: inline-block;
}
.nabhLogo {
  width: 80%;
  margin: auto;
  display: block;
}
.mainBanner ul {
  margin: 0;
  padding: 0;
}
.bannerCaption span {
  color: #000;
  display: block;
  line-height: 130%;
}
.bannerCaption .mediumfont {
  font-size: 30px;
}
.bannerCaption .bigfont {
  font-size: 43px;
  font-weight: 700;
}
.bannerCaption .smallfont {
  font-size: 25px;
}
.bannerBotom {
  position: relative;
  margin-top: 30px;
}
.bannerBotom:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #000096;
  content: "";
  height: 330px;
  z-index: -1;
}
.bxinner {
  background: #e7e7e7;
  padding: 35px;
  position: relative;
  overflow: hidden;
}
.bxinner:after,
.bxinner:before {
  position: absolute;
  content: "";
}
.bxinner:after {
  right: -30px;
  bottom: -40px;
  background: #d1d1d1;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  z-index: 5;
}
.bxinner:hover:after {
  background: #f9b222;
}
.bxinner img {
  position: absolute;
  right: 0;
  top: 0;
  width: 90px;
}
.bxinner img.ambulanceV {
  top: -12px;
  width: 100px;
  z-index: 10;
}
.cardBtn {
  color: #000096;
  width: 150px;
  border: 1px solid #000096;
  border-radius: 0;
  line-height: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 700;
  display: block;
  text-align: center;
}

.cardBtntcr {
  color: #000096;
  width: 150px;
  border: 1px solid #000096;
  border-radius: 0;
  line-height: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 50%;
  font-weight: 700;
  display: block;
  text-align: center;
}
.colorblock
{
  color: #000;
}
.colorwhite
{
  background-color: #000096;
  color: #fff;
}
.bxinner:hover .cardBtn {
  background-color: #000096;
  color: #fff;
}
.bxinner p {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 23px;
}
.aboutussec h6 {
  font-size: 14px;
  font-weight: 600;
  margin: 15px 0;
  color: #000;
  background: #f9b222;
  display: inline-block;
  padding: 5px 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.serviceSec {
  background: #e7e7e7;
}
.department {
  background-color: #fff;
}
.serviceSecinner {
  width: 80%;
  margin: auto;
}
.serviceBx {
  text-align: center;
  background: #fff;
  box-shadow: 1px 1px 4px 2px #d7d7d7;
  width: 100%;
  margin: auto;
  padding: 14px;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: block;
}
.serviceBx:hover {
  background: #ffc93d;
}
.serviceBx img {
  width: 80px;
}
.serviceBx:hover img {
  filter: brightness(0) invert(1);
}
.serviceBx p {
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
  color: #212529;
  margin-top: 10px;
}
.serviceBx:hover p {
  color: #fff;
}
.serviceBx:hover:before {
  transform: scale(1);
  opacity: 0.2;
  transition-delay: 300ms;
}
.serviceBx:before,
.serviceBx:after {
  position: absolute;
  height: 200px;
  width: 200px;
  right: -100px;
  top: -100px;
  border-radius: 50%;
  background-color: #fff;
  z-index: 9;
  transform: scale(0);
  content: "";
  transition: all 600ms ease;
}
.serviceBx:hover:after {
  transform: scale(1.7);
  opacity: 0.1;
  transition-delay: 400ms;
}
.serviceBx:before,
.serviceBx:after {
  position: absolute;
  height: 200px;
  width: 200px;
  right: -100px;
  top: -100px;
  border-radius: 50%;
  background-color: #fff;
  z-index: 9;
  transform: scale(0);
  content: "";
  transition: all 600ms ease;
}
.imgContainer {
  width: 80px;
  height: 80px;
  background: #ffc93c;
  border-radius: 100%;
  text-align: center;
  margin: 0 auto 20px;
}
.chooseBx img {
  width: 50px;
  margin-top: 16px;
}
.chooseBx p {
  font-size: 25px;
  font-weight: 700;
}
.chooseBx.lastChild .imgContainer {
  width: 175px;
  background: none;
}
.chooseBx.lastChild img {
  width: 100%;
  margin: 0;
}
.doctorsProfilesec {
  background-color: #e7e7e7;
}
.profileListInner {
  width: 95%;
  margin: auto;
  background: #fff;
  padding: 10px;
}
.doctorsProfile .carArrow.slick-prev {
  left: -50px;
}
.doctorsProfile .carArrow.slick-next {
  right: -50px;
}
.doctorsProfile .carArrow svg {
  width: 30px;
}
.doctorsProfile li {
  list-style: none;
}
.doctorsProfile .carArrow polyline {
  stroke: #545454;
}
.doctorsProfile .carArrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10000;
  width: 50px;
  height: 50px;
  line-height: 0;
  text-align: center;
}
.doctorsProfile .slick-dots {
  display: block;
  margin: auto;
  width: 220px;
  padding-top: 20px;
}
.doctorsProfile h4 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
  color: #5e5e5e;
}
.doctorsProfile p {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #5e5e5e;
}
.doctorsProfile .cardBtn {
  width: 100%;
}
.doctorsProfile .cardBtn:hover {
  background-color: #000096;
  color: #fff;
}
.doctorsProfile .cardBtn:hover i {
  color: #fff;
}
.doctorsProfile .cardBtn.appBtn {
  background: #000096;
  color: #fff;
  font-weight: 600;
}
.doctorsProfile .cardBtn.appBtn:hover {
  background: #ffc93c;
  border-color: #ffc93c;
}
.doctorsProfile .cardBtn i {
  font-size: 17px;
  margin-right: 8px;
}
.doctorsProfile p i {
  margin-right: 10px;
  color: #000096;
}
.belowBtn {
  margin-top: 15px;
}
.newspost {
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  margin-bottom: 28px;
}
.newsevents .post-inner {
  height: 310px;
  overflow: hidden;
}
.newspost p {
  font-size: 14px;
  margin-bottom: 10px;
  display: inline;
}
.newspost h5 a {
  color: #545454;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.post-date {
  margin-bottom: 10px;
  background: #e7e7e7;
  display: inline-block;
  color: #545454;
  padding: 5px 10px;
  font-size: 10px;
}
.post-date span {
  font-weight: 600;
  margin-left: 10px;
}
.newsBtn {
  color: #000096;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  padding: 5px 10px;
  margin: 7px 0;
  border-left: 1px solid #000096;
  display: inline-block;
}
.newspost:hover .newsBtn,
.newsBtn:hover {
  background: #000096;
  color: #fff;
}
.newsBtn i {
  font-size: 20px;
}
.newsevents h2 {
  position: relative;
  padding-bottom: 10px;
}
.newsevents h2:after,
.newsevents h2:before {
  position: absolute;
  content: "";
  display: block;
}
.newsevents h2:after {
  background: #ccc;
  width: 7px;
  height: 7px;
  border-radius: 100%;
  bottom: -7px;
}
.newsevents h2:before {
  border-bottom: 1px solid #ccc;
  width: 100%;
  bottom: -4px;
}
.testiCarousel {
  text-align: center;
}
.testiCarousel li {
  list-style: none;
}
.testiCarousel li img {
  width: 50px;
  margin: auto;
  display: inline-block;
}
.testiCarousel .slick-dots {
  margin: 20px auto 0;
  width: 130px;
}
.slick-dots span {
  background: none;
  border: 1px solid #4c4c4c;
}
.slick-dots span:hover,
.slick-dots .slick-active span {
  background: #000096;
}
.divderBor {
  border-left: 1px solid #ccc;
  width: 1px;
  height: 100%;
  margin: auto;
}
.videoTesti .carArrow.slick-prev {
  left: 0;
}
.videoTesti .carArrow.slick-next {
  right: -30px;
}
.videoTesti .carArrow svg {
  width: 30px;
}
.videoTesti li {
  list-style: none;
}
.videoTesti .carArrow polyline {
  stroke: #545454;
}
.videoTesti .carArrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10000;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
}
.videoTesti .slick-dots {
  display: block;
  margin: auto;
  width: 430px;
}
.deparmentdoctors .carArrow.slick-prev {
  left: 0;
}
.deparmentdoctors .carArrow.slick-next {
  right: -30px;
}
.deparmentdoctors .carArrow svg {
  width: 30px;
}
.deparmentdoctors .carArrow polyline {
  stroke: #545454;
}
.deparmentdoctors .carArrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10000;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
}
.deparmentdoctors .slick-dots {
  display: block;
  margin: auto;
  width: 150px;
}
#footer h6 {
  font-size: 14px;
  font-weight: 600;
  margin: 10px 0;
}
#footer h4 {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}
#footer h6.locationName {
  color: #ffc93c;
}
#footer p {
  margin-bottom: 10px;
}
#footer .addressCol p i {
  width: 20px;
}
#footer .addressCol p {
  font-size: 13px;
}
.mapl iframe {
  height: 200px;
}
#footer .copyright {
  margin-bottom: 0;
}
.listarrow p {
  position: relative;
  padding-left: 12px;
}
.listarrow p:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 4px;
  width: 0;
  height: 0;
  border-top: 3px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 3px solid #c9cacc;
}
.listarrow p:hover:after {
  border-left: 3px solid #ffc93c;
}
.serviceBxmr {
  margin-bottom: 20px;
}
.bxinnermr {
  margin-bottom: 10px;
}
.scroll-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 99;
  background: #000096;
  color: #fff;
  border-radius: 5px;
  padding: 15px;
  font-weight: 700;
  line-height: normal;
  border: none;
}
.card-header {
  color: #fff !important;
  background-color: #28a745 !important;
}
.card-form {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.accordion-button:not(.collapsed) {
  color: #fff !important;
  background-color: #28a745 !important;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
  font-weight: 700;
}
.card-form:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}
@media (min-width: 320px) {
  .bxinner p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 23px;
  }
}

/* Tabs*/
/* section {
  padding: 60px 0;
} */

section .section-title {
  text-align: left;
  color: #010000;
  margin-bottom: 50px;
  text-transform: uppercase;
}

section .section-title1 {
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
  text-transform: uppercase;
}
#tabs{
background: rgba(0,0,0,.03);
  color: #010000;
}
#tabs h6.section-title{
  color: #010000;
}

#tabs h6.section-title1{
  color: #010000;
}

#tabs .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  color: #010000;;
  background-color: transparent;
  border-color: transparent transparent #010000;;
  border-bottom: 4px solid !important;
  font-size: 20px;
  font-weight: bold;
  
}
#tabs .nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  color: #010000;;
  font-size: 20px;
}
.footer-copy
{
  color: #000 !important;
  text-align: center;
  align-items: center;
  padding-top: 10px;

}


/* time card */


.mt-70 {
    margin-top: 70px;
}

.mb-70 {
    margin-bottom: 70px;
}

/* ---- Card Styling ---- */
.card {
    box-shadow: 0 0.46875rem 2.1875rem rgba(4,9,20,0.03),
                0 0.9375rem 1.40625rem rgba(4,9,20,0.03),
                0 0.25rem 0.53125rem rgba(4,9,20,0.05),
                0 0.125rem 0.1875rem rgba(4,9,20,0.03);
    border: none;
    transition: all .2s;
    border-radius: .75rem;
    background-color: #fff;
}

.card-body {
    flex: 1 1 auto;
    padding: 2rem;
}

.card-title {
    font-weight: 700;
    text-transform: uppercase;
    color: #2f3640;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* ---- Vertical Timeline ---- */
.vertical-timeline {
    width: 100%;
    position: relative;
    padding: 1.5rem 0 1rem;
}

.vertical-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 67px;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, #007bff, #28a745, #ffc107, #dc3545);
    border-radius: .25rem;
}

/* ---- Timeline Elements ---- */
.vertical-timeline-element {
    position: relative;
    margin: 0 0 1.5rem;
}

.vertical-timeline-element-icon {
    position: absolute;
    top: 0;
    left: 60px;
    z-index: 10;
}

.badge-dot-xl {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    position: relative;
    border: 3px solid #fff;
    box-shadow: 0 0 0 5px #fff;
}

/* ---- Badge Colors ---- */
.badge-success {
    background-color: #28a745;
}

.badge-warning {
    background-color: #ffc107;
}

.badge-danger {
    background-color: #dc3545;
}

.badge-primary {
    background-color: #007bff;
}

.badge-info {
    background-color: #17a2b8;
}

/* ---- Timeline Content ---- */
.vertical-timeline-element-content {
    position: relative;
    margin-left: 100px;
    font-size: 0.9rem;
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    border-left: 4px solid #007bff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform .3s ease, box-shadow .3s ease;
}

.vertical-timeline-element-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.vertical-timeline-element-content .timeline-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1e272e;
    margin-bottom: .5rem;
}

.vertical-timeline-element-content p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.vertical-timeline-element-content .vertical-timeline-element-date {
    display: block;
    position: absolute;
    left: -90px;
    top: 5px;
    padding-right: 10px;
    text-align: right;
    color: #6c757d;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

/* ---- Responsive Design ---- */
@media (max-width: 768px) {
    .vertical-timeline::before {
        left: 30px;
    }

    .vertical-timeline-element-icon {
        left: 23px;
    }

    .vertical-timeline-element-content {
        margin-left: 70px;
        font-size: 0.9rem;
    }

    .vertical-timeline-element-content .vertical-timeline-element-date {
        left: -70px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .vertical-timeline::before {
        left: 20px;
    }

    .vertical-timeline-element-icon {
        left: 15px;
    }

    .vertical-timeline-element-content {
        margin-left: 60px;
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
    }

    .vertical-timeline-element-content .vertical-timeline-element-date {
        left: -60px;
        font-size: 0.7rem;
    }
}

/* Kg Heart Centre CSS * /