.main-content { padding: 0 !important; }

:root {
  --blue:       #1769FE;
  --blue-dark:  #0d55d4;
  --blue-light: #EAF1FF;
  --text-dark:  #0D1B3E;
  --text-mid:   #444;
  --text-muted: #777;
  --border:     #DDE6F5;
  --bg-gray:    #F4F7FD;
}


/* ─── SHARED ─── */
.section      { padding: 64px 0; }
.container    { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.sec-label    { font-size: 14px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--blue); text-align: center; margin-bottom: 6px; }
.sec-title    { font-size: 32px; font-weight: 800; color: var(--text-dark); text-align: center; margin-bottom: 10px; line-height: 1.2; }
.sec-desc     { font-size: 14px; color: var(--text-muted); text-align: center; max-width: 660px; margin: 0 auto 40px; line-height: 1.75; }

.btn-blue {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff;
  padding: 11px 26px; border-radius: 6px;
  font-size: 13px; font-weight: 600; border: none; cursor: pointer;
  transition: background .2s;
}
.btn-blue:hover { background: var(--blue-dark); }
.btn-blue svg   { width: 15px; height: 15px; fill: #fff; flex-shrink: 0; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; color: var(--blue);
  border: 2px solid var(--blue); padding: 10px 36px; border-radius: 6px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--blue); color: #fff; }

/* LANDING PAGE */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: #fff;
  display: flex;
  align-items: center;
  padding: 60px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: 70%;
  background: url('../asset/111.png') center top / cover no-repeat;
  z-index: 0;
}
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to right,
      #ffffff 0%,
      #ffffff 30%,
      rgba(255,255,255,0.85) 45%,
      rgba(255,255,255,0.30) 62%,
      rgba(255,255,255,0.0) 75%);
    z-index: 1;
    pointer-events: none;
  }

/* LEFT WHITE CARD */
.hero-card {
  position: relative;
  z-index: 2;
  background: transparent;
  border-radius: 14px;
  padding: 0px 40px 150px 44px;
  margin-left: 0;
  max-width: 360px;
}
.hero-card h1 {
  font-size: 36px; font-weight: 800;
  color: var(--text-dark); line-height: 1.18;
  margin-bottom: 14px;
}
.hero-card p {
  font-size: 13px; color: #555;
  line-height: 1.72; margin-bottom: 28px;
}
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.85); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.15); transition: background .2s;
}
.hero-arrow:hover { background: #fff; }
.hero-arrow svg   { width: 18px; height: 18px; fill: var(--text-dark); }
.hero-arrow.left  { left: 14px; }
.hero-arrow.right { right: 14px; }
/* END */

/* WELCOME SECTION */
.welcome-section { background: #fff; }

a {
  text-decoration: none;
}

.welcome-img {
  width: 100%; max-width: 820px; margin: 0 auto 36px;
  border-radius: 12px; overflow: hidden;
  aspect-ratio: 820 / 310;
  background: var(--blue-light);
}
.welcome-img img { width: 100%; height: 100%; object-fit: cover; }

.why-box { text-align: center; margin-top: 8px; }
.why-box .wc-label {
  font-size: 11px; font-weight: 700; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--blue); margin-bottom: 10px;
}
.why-divider {
  width: 50px; height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin: 0 auto 14px;
}
.why-box p {
  font-size: 13px; color: var(--text-muted);
  max-width: 660px; margin: 0 auto;
  line-height: 1.75;
}
/* END */

/* HEALTH SERVICES SECTION */
.services-section { background: var(--bg-gray); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}
.svc-card {
  background: #fff; border-radius: 12px;
  border: 1.5px solid var(--border);
  padding: 22px 18px 24px;
  transition: box-shadow .2s, border-color .2s;
}
.svc-card:hover { box-shadow: 0 6px 24px rgba(23,105,254,.1); border-color: var(--blue); }

.svc-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.svc-icon {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.svc-icon svg { width: 19px; height: 19px; fill: var(--blue); }
.svc-card h3  { font-size: 13px; font-weight: 700; color: var(--text-dark); line-height: 1.3; }

.svc-card ul  { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.svc-card li  {
  font-size: 12px; color: var(--text-mid); line-height: 1.5;
  padding-left: 13px; position: relative;
}
.svc-card li::before { content: '•'; position: absolute; left: 0; color: var(--blue); }

.services-cta { display: flex; justify-content: center; }
/* END */

/* NEWS AND EVENTS SECTION */
.news-section {
  background: #fff;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}

.news-section .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding-top: 64px;
  padding-bottom: 64px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  flex: 1;
}

.news-card {
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--border);
  border-radius: 10px; overflow: hidden;
  background: #fff;
  transition: box-shadow .2s;
  height: 100%;
}
.news-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,.07); }

.news-thumb {
  width: 100%;
  height: 150px;
  flex-shrink: 0;
  background: var(--blue-light);
  overflow: hidden;
  position: relative;
}
.news-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.news-badge {
  position: absolute; top: 6px; left: 6px;
  background: #fff; border-radius: 4px; padding: 3px 5px;
  display: flex; align-items: center; gap: 3px;
}
.news-badge svg  { width: 14px; height: 14px; fill: var(--blue); }
.news-badge span { font-size: 9px; font-weight: 800; color: var(--blue); }

.news-body {
  flex: 1; padding: 16px 16px 16px 16px;
  display: flex; flex-direction: column;
}
.news-meta { font-size: 10px; color: var(--blue); font-weight: 600; margin-bottom: 6px; }
.news-title { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; line-height: 1.35; }
.news-text  { font-size: 12.5px; color: var(--text-muted); line-height: 1.65; flex: 1; margin-bottom: 14px; }

.btn-sm {
  display: inline-block; align-self: flex-start;
  background: var(--blue); color: #fff;
  padding: 7px 18px; border-radius: 5px;
  font-size: 11px; font-weight: 600; border: none; cursor: pointer;
  transition: background .2s;
}
.btn-sm:hover { background: var(--blue-dark); }
/* END */

/* OUR SUPPORT/ GET THE CARE YOU NEED SECTION  */
.care-section {
  background: var(--bg-gray);
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}

.care-section .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding-top: 64px;
  padding-bottom: 64px;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  flex: 1;
  align-items: stretch;
}

.care-card {
  background: #fff; border-radius: 12px;
  border: 1.5px solid var(--border);
  padding: 40px 28px 36px;
  display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 14px;
  transition: box-shadow .2s, border-color .2s;
  height: 400px;
  flex: 1;
}
.care-card:hover { box-shadow: 0 6px 24px rgba(23,105,254,.1); border-color: var(--blue); }

.care-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
}
.care-icon svg { width: 36px; height: 36px; fill: var(--blue); }
.care-card h3  { font-size: 18px; font-weight: 800; color: var(--text-dark); }
.care-card p   { font-size: 14px; color: var(--text-muted); line-height: 1.75; flex: 1; }

.btn-care {
  display: inline-block;
  background: var(--blue); color: #fff;
  padding: 13px 36px; border-radius: 6px;
  font-size: 14px; font-weight: 600; border: none; cursor: pointer;
  transition: background .2s; margin-top: 8px;
}
.btn-care:hover { background: var(--blue-dark); }
/* END */


/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid     { grid-template-columns: repeat(2, 1fr); }
  .care-grid     { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero { padding: 40px 32px; min-height: 360px; }
  .hero-card { max-width: 100%; margin-left: 0; }
  .hero-card h1 { font-size: 28px; }
  .section { padding: 48px 0; }
  .container { padding: 0 24px; }
  .news-grid { grid-template-columns: 1fr; }
  .care-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .news-section, .care-section { min-height: unset; }
}
@media (max-width: 540px) {
  .hero-card h1 { font-size: 23px; }
  .services-grid { grid-template-columns: 1fr; }
  .care-grid     { grid-template-columns: 1fr; }
  .news-grid     { grid-template-columns: 1fr; }
  .sec-title { font-size: 22px; }
}
/* END OF RESPONSIVE CSS */