/* Top Header - Common */
html{
  scroll-behavior: smooth;
}
*, h1, p {
    padding: 0;
    margin: 0;
}

body {
    font-family: "Roboto", sans-serif;
    box-sizing: border-box;
}



/* Our Focus Page - Image Carousel Section */
.img-carousel-section {
  text-align: center;
  padding: 40px 16px;
  padding-bottom: 0;
}

.carousel-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.image-container {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.15),
    0 20px 60px rgba(0, 0, 0, 0.25);
}

.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Gradient overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.35) 40%,
    rgba(0, 0, 0, 0.1) 100%
  );
  pointer-events: none;
}

/* Caption animation */
/* SIMPLIFIED: Static centered heading at bottom */
.caption {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
  text-align: center;
  color: #fff;
  z-index: 3;
  /* Always visible, no hover animation */
}

.caption h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  margin: 0;
  padding: 0 20px;
}


.caption p {
  max-width: 520px;
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.9;
}

/* Navigation buttons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.nav-btn:hover {
  background: rgba(0, 0, 0, 0.75);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.nav-btn:active {
  transform: translateY(-50%) scale(0.97);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.prev-btn {
  left: 16px;
}

.next-btn {
  right: 16px;
}

/* Dots navigation */
.dots-container {
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #99CA3B;
  transform: scale(1.2);
  border-color: #98ca3b73;
}

.dot:hover {
  border-color: #00ADEF;
  background: #00abef4d;
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .image-container {
    height: 420px;
  }

  .caption {
    bottom: 24px;
  }

  .caption h2 {
    font-size: 1.8rem;
  }

  .caption p {
    font-size: 0.9rem;
  }

  .dots-container {
    bottom: 120px;
    gap: 8px;
  }
  
  .dot {
    width: 10px;
    height: 10px;
  }
}



/* specific */
/* Focus Content Sections */
.focus-content-sections {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 16px;
}

.content-row {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
}

.content-row.alternate {
  flex-direction: row-reverse;
}

.content-text {
  flex: 1;
}

.section-heading {
  font-size: 28px;
  color: #00ADEF;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-para {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 24px;
  max-width: 500px;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  font-size: 1rem;
  color: #555;
  margin-bottom: 12px;
  padding-left: 0;
  position: relative;
  padding-left: 28px;
}

.features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #99CA3B;
  font-weight: bold;
  font-size: 1.1rem;
}


.content-image {
  flex: 1;
}

.section-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.1),
    0 5px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.section-img:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.15),
    0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 900px) {
  .content-row,
  .content-row.alternate {
    flex-direction: column !important;
    gap: 32px;
    text-align: center;
  }
  
  .content-image {
    order: -1; /* Image always on top on mobile */
  }
  
  .section-heading {
    font-size: 2.2rem;
  }
  
  .section-img {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .section-heading {
    font-size: 1.8rem;
  }
  
  .section-para {
    font-size: 1rem;
  }
}



/* Rebuilding Lives Section */
.rebuilding-lives-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
  padding: 100px 16px;
  margin: 80px 8px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.rebuilding-lives-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%2399CA3B" stop-opacity="0.1"/><stop offset="100%" stop-color="%2300ADEF" stop-opacity="0.05"/></radialGradient></defs><circle cx="20" cy="20" r="2" fill="url(%23a)"/><circle cx="80" cy="80" r="1.5" fill="url(%23a)"/><circle cx="60" cy="30" r="1" fill="url(%23a)"/></svg>');
  pointer-events: none;
  z-index: 1;
}

.rebuilding-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.rebuilding-image {
  flex: 1;
}

.rebuild-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.3),
    0 10px 25px rgba(153, 202, 59, 0.2);
  transition: all 0.4s ease;
}

.rebuild-img:hover {
  transform: scale(1.02);
  box-shadow: 
    0 35px 70px rgba(0, 0, 0, 0.4),
    0 15px 35px rgba(153, 202, 59, 0.3);
}

.rebuilding-content {
  flex: 1;
  color: white;
}

.rebuild-heading {
  font-size: 3.2rem;
  color: #99CA3B;
  margin-bottom: 24px;
  line-height: 1.2;
  font-weight: 700;
}

.rebuild-para {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.95;
  max-width: 500px;
}

/* Responsive */
@media (max-width: 900px) {
  .rebuilding-lives-section {
    padding: 80px 16px;
    margin: 60px 0;
  }
  
  .rebuilding-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  
  .rebuild-img {
    height: 350px;
  }
  
  .rebuild-heading {
    font-size: 2.4rem;
  }
  
  .rebuild-para {
    font-size: 1.1rem;
  }
}

@media (max-width: 600px) {
  .rebuild-heading {
    font-size: 2rem;
  }
  
  .rebuild-img {
    height: 280px;
  }
}

