/* ============= Base Theme ============= */
body {
  font-family: 'Inter', sans-serif;
  color: #2b2b2b;
  background-color: #fff;
}
h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
}

/* ============= Navbar Styling ============= */
.navbar {
  z-index: 1020;
}
.navbar .nav-link {
  font-weight: 500;
  color: #333 !important;
  transition: color 0.3s ease;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #FF7A00 !important;
}

/* Sticky Contact Button */
.contact-btn {
  border-radius: 30px;
  font-weight: 600;
  padding: 8px 18px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.contact-btn:hover {
  background-color: #e56c00;
}

/* Mobile-specific fix (keep button beside toggle) */
@media (max-width: 991px) {
  .contact-btn {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1050;
  }
}

/* ============= Hero Section ============= */
.hero {
  background: url('../images/banner.png') center/cover no-repeat;
  height: 85vh;
  position: relative;
  overflow: hidden;
}
.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.hero h1 {
  font-size: 3rem;
}
.hero .btn {
  transition: transform 0.3s ease;
}
.hero .btn:hover {
  transform: scale(1.05);
}

/* ============= Mission Cards ============= */
.feature-card {
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

/* ============= CTA Section ============= */
.cta {
  background: linear-gradient(90deg, #FF7A00, #FF9E45);
}


footer {
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}
/* Care Page Header */
.care-header {
  background: linear-gradient(
    rgba(255,255,255,0.85),
    rgba(255,255,255,0.85)
  ),
  url("../images/banner.png") center/cover no-repeat; 
  position: relative;
  overflow: hidden; 
  height: 20vh;
}

/* Guide Cards */
.guide-card img {
  height: 220px;
  object-fit: cover;
}

.page-header.medical-header {
  min-height: 300px;
  padding: 80px 0;

  background-image:
    linear-gradient
      rgba(255,255,255,0.85),
      rgba(255,255,255,0.85)
    ,
    url("../images/trackerbanner.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
            

 

