:root {
  --brand: #1d4ed8;
  --brand-2: #0ea5e9;
  --ink: #0f172a;
  --muted: #475569;
  --bg: #f5f7fb;
  --card: #ffffff;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

body {
  background: radial-gradient(1200px 600px at 10% 0%, #eef6ff 0%, #f8fafc 45%, #f4f8fb 100%);
  color: var(--ink);
  font-family: "Poppins", "Roboto", "Raleway", sans-serif;
}

.header.sticky-top {
  backdrop-filter: blur(8px);
}

.topbar {
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-2) 100%);
}

.topbar .contact-info a,
.topbar .contact-info span {
  color: rgba(255,255,255,0.95) !important;
  font-weight: 600;
}

.branding {
  /* background: linear-gradient(180deg, var(--brand) 0%, var(--brand-2) 100%); */
  /* border-bottom: 2px solid rgba(255,255,255,0.08); */
   box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

.branding .container {
  display: flex;
  align-items: center;
}

.navmenu a {
  font-weight: 600;
}

.cta-btn {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border: none;
  color: #fff !important;
  border-radius: 999px;
  padding: 10px 18px;
}

.main {
  background: transparent;
}

.section-title h2 {
  color: var(--brand);
}

.section-title p {
  color: var(--muted);
}

.about .content h3 {
  color: var(--ink);
}

.stats .stats-item,
.services .card,
.doctors .team-member,
.testimonials .testimonial-item,
.contact .info-item {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, 0.08);
 
}
.info-item{
  padding-left: 10px;
}

.services .card img {
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}

.services .card-title {
  color: var(--brand);
}

.video-box {
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.floating-buttons .float-button {
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.25);
}

.footer {
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #ffffff;
  padding: 60px 0;
}

.footer a {
  color: rgba(255,255,255,0.95);
  text-decoration: none;
}

.footer .footer-top {
  padding-bottom: 18px;
}

.footer .footer-about img {
  max-width: 140px;
  margin-bottom: 12px;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.18));
}

.footer .footer-links ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.footer .footer-links ul li a {
  display: inline-block;
  padding: 6px 0;
  color: rgba(255,255,255,0.92);
  transition: color .15s ease, transform .15s ease;
}

.footer .footer-links ul li a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer .credits {
  color: rgba(255,255,255,0.9);
}

.footer .social-links {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.footer .social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  color: #fff;
  transition: background .12s ease, transform .12s ease;
}

.footer .social-links a:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .footer {
    padding: 36px 0;
  }
  .footer .footer-top .row > div {
    margin-bottom: 18px;
  }
  .footer .footer-about img { max-width: 120px; }
}

.footer .footer-contact p {
  margin: 6px 0;
}

.footer h4 {
  color: #f8fafc;
}

@media (max-width: 768px) {
  .topbar .contact-info {
    flex-direction: column;
    gap: 6px;
  }
  .cta-btn {
    display: none !important;
  }
}

/* Basic navigation/header styles to match template expectations */
.branding .container {
  display: flex;
  align-items: center;
  gap: 20px;
}
.navmenu {
  display: flex;
  align-items: center;
}
.navmenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 18px;
}
.navmenu ul li a {
  color: #0b7ef1;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 6px;
}
.navmenu ul li a.active,
.navmenu ul li a:hover {
  background: rgba(244, 238, 238, 0.385);
 color: #0b7ef1;
}
.mobile-nav-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 1199px) {
  /* Keep the nav container visible so the toggle (inside it) can be clicked.
     Hide the UL until `.open` is added — this avoids the toggle being hidden
     when the menu is collapsed. */
  .navmenu {
    position: absolute;
    top: 72px;
    right: 20px;
    background: linear-gradient(180deg, var(--brand) 0%, var(--brand-2) 100%);
    padding: 12px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    flex-direction: column;
    display: flex;
    align-items: flex-end;
    z-index: 999;
  }

  .navmenu ul {
    display: none;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .navmenu.open ul {
    display: flex;
  }

  .mobile-nav-toggle {
    display: inline-block;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
  }
}

/* Header scrolled state */
.header.header-scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 6px 18px rgba(15,23,42,0.08);
}

/* Floating CTA buttons */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.float-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.float-button img {
  width: 25px;
  height: 25px;
  transition: transform 0.25s ease;
}

.float-button:hover {
  transform: scale(1.15);
  box-shadow: 0 10px 20px rgba(0,0,0,0.35);
}

.float-button:hover img {
  transform: rotate(15deg);
}

.float-button.whatsapp {
  background-color: #25D366;
}

.float-button.phone {
  background-color: #1977cc;
}

.float-button.phone img {
  filter: brightness(0) invert(1);
}

.float-button span {
  position: absolute;
  left: 70px;
  background: #fff;
  color: #000;
  padding: 6px 12px;
  border-radius: 10px;
  display: none;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.float-button:hover span {
  display: block;
}

/* own code */
/* Remove hover color change for Book Now button */
.btn-no-hover {
    background-color: #007bff; /* original blue */
    color: #fff;
    border: none;
}
.btn-no-hover:hover, 
.btn-no-hover:focus, 
.btn-no-hover:active {
    background-color: #007bff !important; /* keep the same blue */
    color: #fff !important;
    box-shadow: none;
}
.member-info{
  padding: 10px;
}
toggle.d-xl-none.bi.bi-list {
    color: rebeccapurple;
}