/* ===============================
   IMPACTS & REPORTS HERO
================================= */
.ir-hero-section {
  position: relative;
  height: 90vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('../assets/images/impact-bg.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

/* Content */
.ir-hero-content {
  max-width: 800px;
  padding: 20px;
}

.ir-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.ir-hero-text {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Buttons */
.ir-hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.ir-btn-primary {
  background: #28a745;
  color: #fff;
  padding: 12px 28px;
  text-decoration: none;
  transition: 0.3s ease;
}

.ir-btn-primary:hover {
  background: #218838;
}

.ir-btn-secondary {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 28px;
  text-decoration: none;
  transition: 0.3s ease;
}

.ir-btn-secondary:hover {
  background: #fff;
  color: #000;
}







/* ===============================
   REPORT SECTION
================================= */
.ir-report-section {
  background: #ffffff;
  padding: 90px 20px;
}

.ir-report-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.ir-report-header {
  text-align: center;
  margin-bottom: 60px;
}

.ir-report-header h2 {
  font-size: 2.6rem;
  margin-bottom: 15px;
}

.ir-report-header p {
  max-width: 700px;
  margin: auto;
  color: #555;
}

/* Grid */
.ir-report-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Card */
.ir-report-card {
  background: #f9f9f9;
  padding: 25px;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s ease;
}

/* Top */
.ir-report-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.ir-report-year {
  background: #28a745;
  color: #fff;
  padding: 5px 12px;
  font-size: 0.85rem;
}

.ir-report-type {
  font-size: 0.8rem;
  color: #888;
}

/* Text */
.ir-report-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.ir-report-card p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 20px;
}

/* Footer */
.ir-report-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ir-file-info {
  font-size: 0.85rem;
  color: #888;
}

/* Button */
.ir-report-btn {
  background: #28a745;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

.ir-report-btn:hover {
  background: #218838;
}

/* Hover */
.ir-report-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ===============================
   IMPACT SECTION
================================= */
.impact-main {
  background: #f8f9fa;
  padding: 80px 20px;
}

.impact-container {
  max-width: 1100px;
  margin: auto;
}

/* Header */
.impact-header {
  text-align: center;
  margin-bottom: 50px;
}

.impact-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.impact-header p {
  max-width: 700px;
  margin: auto;
  color: #555;
}

/* Grid */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Cards */
.impact-card {
  background: #ffffff;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid #eee;
  transition: 0.3s ease;
}

.impact-card h3 {
  font-size: 1.6rem;
  color: #28a745;
  margin-bottom: 10px;
}

.impact-card p {
  font-size: 0.95rem;
  color: #444;
}

/* Hover */
.impact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ===============================
   RESOURCE ALT SECTION
================================= */
.resource-alt-section {
  padding: 80px 20px;
  background: #ffffff;
}

.resource-alt-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.resource-alt-header {
  text-align: center;
  margin-bottom: 50px;
}

.resource-alt-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.resource-alt-header p {
  max-width: 700px;
  margin: auto;
  color: #555;
}

/* Grid */
.resource-alt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card */
.resource-alt-card {
  position: relative;
  overflow: hidden;
}

/* Image */
.resource-alt-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: 0.4s ease;
}

/* Overlay Content */
.resource-alt-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
}

.resource-alt-content h3 {
  margin-bottom: 8px;
}

.resource-alt-content p {
  font-size: 0.9rem;
}

/* Hover Effect */
.resource-alt-card:hover img {
  transform: scale(1.1);
}

/* ===============================
   STORY / BACKGROUND SECTION
================================= */
.story-section {
  position: relative;
  background: url('../assets/images/story-bg.png') no-repeat center center/cover;
  padding: 100px 20px;
  color: #fff;
}

/* Overlay */
.story-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

/* Container */
.story-container {
  position: relative;
  max-width: 900px;
  margin: auto;
}

/* Content */
.story-content {
  text-align: left;
}

.story-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.story-content p {
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1rem;
  color: #f1f1f1;
}



/* ===============================
   FINAL ICONS SECTION
================================= */
.final-icons-section {
  background: #ffffff;
  padding: 80px 20px;
}

.final-icons-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* Header */
.final-icons-container h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.final-icons-container p {
  max-width: 700px;
  margin: auto;
  color: #555;
  margin-bottom: 50px;
}

/* Grid */
.final-icons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Box */
.final-icon-box {
  padding: 30px 20px;
  border: 1px solid #eee;
  transition: 0.3s ease;
  background: #fafafa;
}

/* Icon */
.final-icon-box .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

/* Text */
.final-icon-box h3 {
  margin-bottom: 10px;
  color: #28a745;
}

.final-icon-box p {
  font-size: 0.95rem;
  color: #444;
}

/* Hover */
.final-icon-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ===============================
   BENEFICIARIES SECTION
================================= */
.beneficiaries-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.beneficiaries-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.beneficiaries-header {
  text-align: center;
  margin-bottom: 50px;
}

.beneficiaries-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.beneficiaries-header p {
  max-width: 700px;
  margin: auto;
  color: #555;
}

/* Grid */
.beneficiaries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card */
.beneficiaries-card {
  position: relative;
  overflow: hidden;
}

.beneficiaries-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: 0.4s ease;
}

/* Overlay */
.beneficiaries-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: #fff;
}

.beneficiaries-overlay h3 {
  margin-bottom: 8px;
}

.beneficiaries-overlay p {
  font-size: 0.9rem;
}

/* Hover */
.beneficiaries-card:hover img {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
  .beneficiaries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .beneficiaries-grid {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 768px) {
  .ir-hero-title {
    font-size: 2.3rem;
  }

  .ir-hero-text {
    font-size: 1rem;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .ir-report-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ir-report-grid {
    grid-template-columns: 1fr;
  }
}
/* Responsive */
@media (max-width: 992px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }
}
/* Responsive */
@media (max-width: 992px) {
  .resource-alt-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .resource-alt-grid {
    grid-template-columns: 1fr;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .story-content h2 {
    font-size: 2rem;
  }

  .story-content p {
    font-size: 0.95rem;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .final-icons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .final-icons-grid {
    grid-template-columns: 1fr;
  }
}