/* Top Header - Common */

*, h1, p {
    padding: 0;
    margin: 0;
}

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




/* specific */

.about-hero-section {
  padding: 40px 16px;
}

.about-hero-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.15),
    0 20px 60px rgba(0, 0, 0, 0.25);
}

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

/* dark gradient overlay similar to index page */
.about-hero-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;
}

/* centered text */
.about-hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.about-hero-text h1 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}


/* below that */

/* Vision / Mission sections */
.vm-section {
  max-width: 1100px;
  margin: 32px auto 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* heading + paragraph */
.vm-text-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vm-text-block h2 {
  font-size: 28px;
  color: #00ADEF;
}

.vm-text-block p {
  font-size: 16px;
  line-height: 1.6;
}

/* image card with bottom-aligned overlay text */
.vm-card {
  width: 100%;
}

.vm-image-wrapper {
  position: relative;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

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

/* slight gradient so bottom text is readable */
.vm-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.0) 60%
  );
  pointer-events: none;
}

/* text aligned at bottom of image */
.vm-img-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Responsive: side‑by‑side on wider screens */
@media (min-width: 900px) {
  .vm-section {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .vm-text-block,
  .vm-card {
    flex: 1;
  }
}


/* Knowing Hope section */
.knowing-hope-section {
  max-width: 1100px;
  margin: 40px auto 0 auto;
  padding: 0 16px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.knowing-hope-text h2 {
  font-size: 28px;
  color: #00ADEF;
  margin-bottom: 12px;
}

.knowing-hope-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.knowing-hope-image img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Side-by-side on larger screens */
@media (min-width: 900px) {
  .knowing-hope-section {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }

  .knowing-hope-text{
    flex: 1;
  }
}
  .knowing-hope-image {
    flex: 1;
    align-self: center;   /* <- only this item is centered vertically */
  }


/* responsive */
@media (max-width: 768px) {
  .about-hero-container {
    height: 320px;
  }

  .about-hero-text h1 {
    font-size: 1rem;
  }

}


/* Our Focus block on About page */
.about-our-focus-section {
  max-width: 1100px;
  margin: 40px auto 40px;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-ourfocus-content h2 {
  font-size: 32px;
  color: #00ADEF;
  text-align: center;
}

/* grid: 1 col mobile, 2 col tablet, 3 col desktop */
.about-focus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

/* 2 columns */
@media (min-width: 600px) {
  .about-focus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 3 columns */
@media (min-width: 1024px) {
  .about-focus-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* card link */
.about-focus-card {
  text-decoration: none;
  color: inherit;
}

/* image card styling (similar to index) */
.about-focus-image-wrapper {
  position: relative;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

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

.about-focus-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(transparent, #00ADEF);
  pointer-events: none;
}

.about-focus-text {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
}

.about-focus-text h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.about-focus-text p {
  font-size: 1rem;
  opacity: 0.95;
}

/* our core team */

/* Our Core Team Section */
.core-team-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.core-team-heading h2 {
  font-size: 32px;
  color: #00ADEF;
  text-align: center;
}

/* Individual item */
.core-team-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Image */
.core-team-image {
  flex: 1;
}

.core-team-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Text */
.core-team-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.core-team-text h3 {
  font-size: 24px;
  color: #00ADEF;
  margin-bottom: 8px;
}

.core-team-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* Leadership Highlight inside Core Team */
.core-team-leadership {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 24px;
}

/* Card */
.leadership-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(0, 173, 239, 0.08),
    rgba(153, 202, 59, 0.08)
  );
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Rounded Portrait */
.leadership-image img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #00ADEF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Text */
.leadership-text h3 {
  font-size: 22px;
  color: #00ADEF;
  margin-bottom: 1px;
}

.leadership-text h6{
  font-weight: normal;
  color: #00ADEF;

}

.leadership-text p {
  font-size: 12px;
  /* font-weight: 500; */
  color: #333;
  margin-top: 6px;
}



/* Desktop layout */
@media (min-width: 900px) {
  .core-team-item {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .core-team-item.reverse {
    flex-direction: row-reverse;
  }

  .core-team-leadership {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* next one */
/* Awards carousel */
.awards-section {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 16px;
}

.awards-content {
  text-align: center;
  margin-bottom: 32px;
}

.awards-content h2 {
  font-size: 32px;
  color: #00ADEF;
  margin-bottom: 12px;
}

.awards-content p {
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.awards-carousel-wrapper {
  position: relative;
  max-width: 100%;
  height: 120px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.awards-carousel {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}

.award-logo {
  flex: 1;
  max-width: calc(100% / 4);
  height: 100%;
  object-fit: contain;
  padding: 20px;
  /* filter: grayscale(1); */
  transition: filter 0.3s ease;
}

/* .award-logo:hover {
  filter: grayscale(0);
} */

.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
}

.carousel-nav-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

#awardsPrev { left: 8px; }
#awardsNext { right: 8px; }


/* Featured Awards below carousel */
.awards-featured {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

/* Card */
.featured-award-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  border-radius: 16px;
  background: #f8f9fa;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Portrait Image Container */
.featured-award-image {
  width: 100%;
  max-width: 260px;
  height: 360px; /* Portrait ratio */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  align-self: center;
}

.featured-award-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures portrait image fits perfectly */
  object-position: center;
}

/* Text */
.featured-award-text h3 {
  font-size: 22px;
  color: #00ADEF;
  margin-bottom: 8px;
  text-align: center;
}

.featured-award-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  text-align: center;
}

/* Desktop layout */
@media (min-width: 900px) {
  .featured-award-card {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .featured-award-text {
    text-align: left;
  }

  .featured-award-text h3,
  .featured-award-text p {
    text-align: left;
  }

  .featured-award-image {
    align-self: flex-start;
  }
}


/* Annual Reports button */
.reports-section {
  text-align: center;
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 16px;
}

.reports-content h2 {
  font-size: 32px;
  color: #00ADEF;
  margin-bottom: 12px;
}

.reports-btn-wrapper {
  margin-top: 24px;
}

.reports-btn {
  display: inline-flex;
  padding: 14px 32px;
  background: linear-gradient(135deg, #99CA3B 0%, #80B732 100%);
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(153, 202, 59, 0.4);
  transition: all 0.3s ease;
  min-width: 220px;
  justify-content: center;
  text-align: center;
}

.reports-btn:hover {
  background: linear-gradient(135deg, #80B732 0%, #6A9C28 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(153, 202, 59, 0.5);
}

/* FCRA */
.fcra-section {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 16px 40px;
  text-align: center;
}

.fcra-content {
  margin-bottom: 24px;
}

.fcra-content h2 {
  font-size: 32px;
  color: #00ADEF;
  margin-bottom: 12px;
}

.fcra-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.fcra-link {
  display: block;
  padding: 12px 16px;
  background: #f8f9fa;
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  transition: all 0.2s ease;
}

.fcra-link:hover {
  background: #00ADEF;
  color: white;
  border-color: #00ADEF;
}


