/* --- HEALTHCARE GLOBAL STYLES --- */
.js-hc-hero {
  padding: 120px 0;
  background: #111a27;
  color: #fff;
}

.js-hc-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.js-hc-label {
  color: #ec5408;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: block;
}

.js-hc-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
}

.js-hc-peach {
  color: #e5b3a3;
}

.js-hc-hero-desc {
  font-size: 18px;
  color: #94a3b8;
  margin-bottom: 40px;
  max-width: 500px;
}

.js-hc-hero-btns {
  display: flex;
  gap: 20px;
}

.js-hc-hero-img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}


.js-stats-card {
    background: #111a27; /* Dark Navy Card */
    padding: 40px 30px;
    border-radius: 12px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.js-stats-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.5); /* Blue glow on hover */
}

.js-stats-card i {
    font-size: 28px;
    color: #3b82f6; /* Icon Color */
    margin-bottom: 20px;
}

.js-stats-counter {
    font-family: 'Kanit', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1;
}

.js-stats-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #f97316;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.js-stats-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #94a3b8;
    margin: 0;
}

/* Responsive Fix */
@media (max-width: 991px) {
    .js-stats-counter {
        font-size: 38px;
    }
    .js-stats-card {
        padding: 30px 20px;
    }
}

/* --- CHALLENGE SECTION --- */
.js-hc-dual-wrap {
  padding: 100px 0;
  background: #000f2b;
  color: #0a0e14;
}

.js-hc-tag-orange {
  color: #d97706;
  font-size: 12px;
  font-weight: 800;
  display: block;
  margin-bottom: 15px;
}

.js-hc-sec-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color:white;

}

.js-hc-sec-desc {
  font-size: 18px;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

/* --- HUB SECTION --- */
.js-hc-hub-section {
  padding: 100px 0;
  background: #ffffff;
}

.js-hc-hub-visual-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.js-hc-hub-img {
  width: 100%;
  height: auto;
}

.js-hc-hub-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.js-hc-hub-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.js-hc-hub-icon {
  width: 45px;
  height: 45px;
  background: #fef2e0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d97706;
  flex-shrink: 0;
}

.js-hc-hub-text strong {
  display: block;
  font-size: 18px;
  color: #0a0e14;
  margin-bottom: 5px;
}

.js-hc-hub-text p {
  color: #64748b;
  font-size: 15px;
  margin: 0;
}

/* --- CTA SECTION --- */
.js-hc-cta-section {
  padding: 120px 0;
  background: #0a0e14;
}

.js-hc-cta-card {
  background: #161d2a;
  padding: 80px;
  border-radius: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.js-hc-cta-title {
  font-size: 38px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
}

.js-hc-cta-subtitle {
  color: #94a3b8;
  margin-bottom: 0;
}

.js-hc-input {
  width: 100%;
  padding: 16px 20px;
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  margin-bottom: 10px;
}

.js-hc-btn-primary {
  background: #f97316;
  color: #fff;
  border: none;
  padding: 16px 35px;
  border-radius: 8px;
  font-weight: 700;
  display: inline-block;
  transition: 0.3s;
  text-align: center;
}

.js-hc-btn-primary:hover {
  background: #f97316;
  transform: scale(1.02);
}

.js-hc-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 16px 35px;
  border-radius: 8px;
  font-weight: 700;
  display: inline-block;
  transition: 0.3s;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .js-hc-hero-grid {
    grid-template-columns: 1fr;
  }

  .js-hc-hero-btns {
    flex-direction: column;
  }

  .js-hc-cta-card {
    padding: 40px 20px;
  }

  .js-hc-sec-title {
    font-size: 28px;
  }
}