/* ===============================
   HERO - CAPACITY BUILDING
================================= */
.capacity-hero {
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.7)),
              url('../assets/images/capacity-hero.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay Content */
.capacity-content {
  text-align: center;
  color: #fff;
  max-width: 850px;
  padding: 20px;
  animation: fadeSlide 1.2s ease;
}

.capacity-content h1 {
  font-size: 3.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.capacity-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 35px;
}

/* Buttons */
.capacity-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary {
  background: #007bff;
  color: #fff;
}

.btn-primary:hover {
  background: #0056b3;
  transform: translateY(-3px);
}

.btn-secondary {
  border: 2px solid #fff;
  color: #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #000;
}

/* Animation */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}








/* ===============================
   CAPACITY ACTIVITIES SECTION
================================= */
.capacity-activities {
  padding: 80px 20px;
  background: #f9f9f9;
}

.container {
  max-width: 1100px;
  margin: auto;
}

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-header p {
  color: #555;
  max-width: 700px;
  margin: auto;
}

/* Timeline */
.activities-timeline {
  position: relative;
  padding-left: 30px;
  border-left: 3px solid #28a745;
}

/* Each Activity */
.activity {
  margin-bottom: 40px;
  position: relative;
}

.activity::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 5px;
  width: 20px;
  height: 20px;
  background: #28a745;
  border-radius: 50%;
}

/* Content */
.activity-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.activity-content h3 {
  color: #28a745;
  margin-bottom: 10px;
}

.activity-content p {
  color: #555;
  line-height: 1.7;
}


/* ===============================
   THIRD SECTION - HIGHLIGHT STYLE
================================= */
.capacity-highlight {
  padding: 80px 20px;
  background: #ffffff;
}

.highlight-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Image */
.highlight-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* Content */
.highlight-content h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: #222;
}

.highlight-content p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* List */
.highlight-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.highlight-list li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #333;
  display: flex;
  align-items: center;
}

.highlight-list span {
  color: #28a745;
  font-weight: bold;
  margin-right: 10px;
}

/* Button */
.highlight-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #28a745;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  transition: 0.3s ease;
}

.highlight-btn:hover {
  background: #1e7e34;
  transform: translateY(-3px);
}

/* ===============================
   FOURTH SECTION - SHOWCASE
================================= */
.capacity-showcase {
  padding: 80px 20px;
  background: #f4f7f6;
}

.showcase-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

/* IMAGE GRID */
.showcase-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.img {
  overflow: hidden;
}

.img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

/* Big Images */
.img.big {
  height: 250px;
}

/* Small Images */
.img.small {
  height: 120px;
}

/* Hover */
.img:hover img {
  transform: scale(1.1);
}

/* CONTENT */
.showcase-content h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.showcase-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* ICON LIST */
.icon-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.icon-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.icon-item i {
  font-size: 22px;
  color: #28a745;
  margin-top: 5px;
}

.icon-item h4 {
  margin-bottom: 5px;
}

.icon-item p {
  font-size: 0.95rem;
  color: #555;
}











/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 992px) {
  .showcase-container {
    grid-template-columns: 1fr;
  }

  .showcase-images {
    order: 1;
  }

  .showcase-content {
    order: 2;
    text-align: center;
  }

  .icon-item {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .img.big {
    height: 180px;
  }

  .img.small {
    height: 100px;
  }

  .showcase-content h2 {
    font-size: 2rem;
  }
}





/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 768px) {
  .capacity-content h1 {
    font-size: 2.4rem;
  }

  .capacity-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .capacity-hero {
    height: 85vh;
  }

  .capacity-content h1 {
    font-size: 1.9rem;
  }
}


/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 768px) {
  .activities-timeline {
    padding-left: 20px;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 992px) {
  .highlight-container {
    grid-template-columns: 1fr;
  }

  .highlight-image img {
    height: 300px;
  }

  .highlight-content {
    text-align: center;
  }

  .highlight-list li {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .highlight-content h2 {
    font-size: 2rem;
  }
}

