/* ============================================================
   🌿 Eden Multicare Hospital – Modernized Global Styles (DCMS)
   ============================================================ */

/* --- Brand Palette: Soft Medical Tones --- */
:root {
  --eden-primary: #112d54;    /* Calm medical blue */
  --eden-accent: #1abc9c;     /* Soft hospital green */
  --eden-light: #f0f8ff;      /* Gentle background tone */
  --eden-text-dark: #1b2733;
  --eden-text-muted: #6b7a8f;
}

/* --- Base Layout --- */
body {
  font-family: 'Open Sans', 'Roboto', sans-serif;
  background-color: var(--eden-light);
  font-size: 15px;
  color: var(--eden-text-dark);
  line-height: 1.7;
  scroll-behavior: smooth;
}

        .skip-link{position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden;}
        .skip-link:focus{left:0;top:0;width:auto;height:auto;background:#000;color:#fff;padding:.5rem;z-index:1000;}
/* --- Navbar --- */
.navbar {
  background: var(--eden-primary) !important;
  box-shadow: 0 3px 6px rgba(0,0,0,0.08);
}
.navbar-brand img {
  height: 42px;
  margin-right: 8px;
}
.nav-link {
  color: #fff !important;
  font-weight: 500;
  transition: 0.3s;
}
.nav-link:hover,
.nav-link:focus-visible {
  color: var(--eden-accent) !important;
  outline: none;
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(120deg, var(--eden-primary), var(--eden-accent));
  color: #fff;
  padding: 100px 0;
  text-align: center;
}
.hero h1 {
  font-weight: 700;
  letter-spacing: 0.5px;
}
.hero p {
  font-size: 18px;
  opacity: 0.9;
}
.hero .btn {
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.hero .btn-light:hover {
  background-color: var(--eden-accent);
  color: #fff !important;
}
.hero .btn-outline-light:hover {
  background-color: #fff;
  color: var(--eden-primary);
}

/* --- About Section --- */
#about img {
  border-radius: 14px;
  transition: transform 0.3s ease;
}
#about img:hover {
  transform: scale(1.02);
}
#about h2 {
  color: var(--eden-primary);
}
#about p {
  color: var(--eden-text-muted);
}

/* --- Feature Cards --- */
.feature-card {
  background: var(--eden-primary);
  border-radius: 10px;
  color: #fff;
  padding: 22px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.feature-card:hover {
  transform: translateY(-5px);
  background: var(--eden-accent);
}
.icon-box {
  font-size: 2rem;
  border-right: 2px solid rgba(255,255,255,0.4);
  padding-right: 16px;
  margin-right: 14px;
}

/* --- Who Section --- */
#who h2 {
  color: var(--eden-primary);
}
#who .list-group-item {
  border: none;
  border-left: 4px solid var(--eden-accent);
  background: #fff;
  margin-bottom: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: all 0.2s ease;
}
#who .list-group-item:hover {
  transform: translateX(4px);
}
.navbar-nav .nav-link {
  transition: all 0.2s ease-in-out;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #00b894 !important; /* Eden green hover */
  text-decoration: none;
}
.navbar-nav .nav-link.active {
  border-bottom: 2px solid #00b894;
}


/* --- Why Choose Us --- */
#why-choose {
  background-color: #fff;
}
#why-choose h2, #why-choose h5 {
  color: var(--eden-primary);
  font-size: 18px;
}
#why-choose p {
  color: var(--eden-text-muted);
}
#why-choose .btn-primary {
  background-color: var(--eden-primary);
  border: none;
  border-radius: 30px;
}
#why-choose .btn-primary:hover {
  background-color: var(--eden-accent);
}

/* --- Stats Banner --- */
.stats-banner {
  background: var(--eden-primary);
  position: relative;
  overflow: hidden;
}
.stats-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 180%;
  height: 100%;
  background: radial-gradient(circle at right, rgba(26,188,156,0.3), transparent 70%);
}
.stats-banner h3 {
  font-size: 2rem;
  color: #fff;
}
.stats-banner p {
  color: rgba(255,255,255,0.9);
}
.stat-icon i {
  font-size: 2.5rem;
  color: var(--eden-accent);
}

/* --- Footer --- */
footer {
  background: var(--eden-primary);
  color: #fff;
  padding: 50px 0 30px;
  font-size: 14px;
}
footer a {
  color: var(--eden-accent);
  text-decoration: none;
}
footer a:hover,
footer a:focus-visible {
  text-decoration: underline;
}
footer small {
  color: rgba(255,255,255,0.8);
}

/* --- Buttons --- */
.btn-primary {
  background-color: var(--eden-primary);
  border: none;
  border-radius: 30px;
  font-weight: 600;
}
.btn-primary:hover {
  background-color: var(--eden-accent);
}

/* --- Accessibility --- */
:focus-visible {
  outline: 3px solid var(--eden-accent);
  outline-offset: 3px;
}

/* --- Responsiveness --- */
@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
  }
  h1, h2 {
    font-size: 1.5rem;
  }
  .feature-card {
    flex-direction: column;
    text-align: center;
  }
  .icon-box {
    border-right: none;
    border-bottom: 2px solid rgba(255,255,255,0.4);
    margin-bottom: 12px;
  }
}
