/* ============================= */
/* HERO SECTION */
/* ============================= */
.hero {
  height: 300px;
  background: url('hero-bg.jpg') center/cover no-repeat;
  position: relative;
}

.hero-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay h1 {
  color: #ffffff;
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  padding-top: 100px;
}


/* ============================= */
/* PROGRAM SECTION */
/* ============================= */
.program-section {
  padding: 70px 20px;
}

.program-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.program-image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.program-content p {
  font-size: 16.5px;
  line-height: 1.8;
  color: #222;
  margin-bottom: 22px;
}


/* ============================= */
/* HOME CARE SECTION */
/* ============================= */
.home-care-section {
  padding: 60px 20px;
  background: #ffffff;
  font-family: "Segoe UI", Arial, sans-serif;
}

.pallaitive_container {
  max-width: 1200px;
  margin: auto;
}

/* Image Grid */
.image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 35px;
}

.image-box img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
}

/* Content */
.content {
  max-width: 1000px;
}

.intro-text {
  font-size: 16.5px;
  line-height: 1.7;
  color: #222;
  margin-bottom: 18px;
}

/* List */
.care-list {
  padding-left: 20px;
}

.care-list li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
  color: #333;
}


/* ============================= */
/* IMPACT SECTION */
/* ============================= */
.impact-section {
  padding: 60px 20px;
  background: #ffffff;
}

.text-container {
  max-width: 1200px;
  margin: auto;
}

/* Highlight Box */
.highlight-box {
  background: #fff3dc;
  border: 2px dashed #f4b63c;
  border-radius: 14px;
  padding: 30px 40px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.highlight-box p {
  font-size: 18px;
  line-height: 1.6;
  color: #0b1c3d;
  margin: 0;
  font-weight: 500;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.impact-card {
  border: 1px solid #ddd;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  text-align: center;
  transition: all 0.3s ease;
}

.impact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.impact-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.impact-card p {
  padding: 18px 16px;
  font-size: 15.5px;
  line-height: 1.6;
  color: #222;
}


/* ============================= */
/* 📱 RESPONSIVE BREAKPOINTS */
/* ============================= */

/* Large Tablets */
@media (max-width: 1024px) {

  .program-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .image-row {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-overlay h1 {
    font-size: 30px;
    padding-top: 80px;
  }
}


/* Tablets */
@media (max-width: 768px) {

  .hero {
    height: 220px;
  }

  .hero-overlay h1 {
    font-size: 26px;
    padding: 60px 15px 0;
  }

  .program-section {
    padding: 50px 15px;
  }

  .program-content p {
    font-size: 15px;
  }

  .intro-text {
    font-size: 15px;
  }

  .highlight-box {
    padding: 25px 20px;
  }

  .highlight-box p {
    font-size: 16px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }
}


/* Mobile */
@media (max-width: 480px) {

  html {
    font-size: 14px;
  }

  .hero {
    height: 180px;
  }

  .hero-overlay h1 {
    font-size: 22px;
  }

  .program-content p,
  .intro-text,
  .care-list li {
    font-size: 14px;
  }

  .impact-card img {
    height: 200px;
  }
}


/* Extra Small */
@media (max-width: 360px) {

  .hero-overlay h1 {
    font-size: 20px;
  }

  .highlight-box p {
    font-size: 14px;
  }
}
