/* colors */
:root {
  --color-primary: #164d92;
  --color-secondary: #f0f4ff;
  --color-tertiary: #58595b;
  --bg-banner-color: #F3F6FA;
  --bg-color-primary: rgba(88, 89, 91, 0.05);
  --bg-color-green: rgba(0, 180, 141, 1);
  --bg-color-orange: rgba(232, 119, 34, 1);
  --bg-color-grey: rgba(88, 89, 91, 1);
  --bg-gradient-news: linear-gradient(90deg,
      rgba(232, 119, 34, 0.15) 0%,
      rgba(22, 77, 146, 0.15) 100%);
}

/* font */
.body2 {
  font-family: Lato;
  font-weight: 700;
  font-size: clamp(12px, 1vw, 16px);

  line-height: 100%;
  letter-spacing: 0%;
}

.body2-link {
  color: var(--color-primary);
  text-decoration: none;
  font-family: Lato;
  font-weight: 700;
  font-size: clamp(12px, 1vw, 16px);
  line-height: 100%;
  letter-spacing: 0%;
}

.body2-link:hover {
  color: var(--bg-color-orange);
}

/* header */
.header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

#mainHeader {
  transition: top 0.3s;
}

.header-logo img {
  height: 48px;
}

.header-nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 500;
  font-size: 16px;
}

.header-nav a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s;
}

.carousel-inner {
  overflow: visible !important;
}

.header-cta {
  padding: 8px 16px;
  border-radius: 100px;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
  /* Prevent text from breaking */
  box-shadow: 0 2px 8px rgba(0, 150, 136, 0.08);
  transition: background 0.2s;
}

.btn-login {
  border: var(--color-primary) 3px solid;
  background-color: var(--color-primary);
  color: var(--color-secondary);

}

.btn-login:hover {
  background-color: var(--color-secondary);
  color: var(--bg-color-orange);
  transform: translateZ(5px) scale(1.01);
}

.btn-signup.header-cta {
  position: relative;
  display: inline-block;
  font-weight: bold;
  color: var(--color-primary);
  background: linear-gradient(to left, #164d92, #e87722);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.btn-signup.header-cta:hover {
  color: var(--bg-color-orange);
  background: linear-gradient(to left, #e87722, #164d92);
  transform: translateZ(5px) scale(1.01);
  /* background-color: var(--color-primary);
  color: var(--color-secondary); */
}

.btn-signup.header-cta::before {
  content: "";
  position: absolute;
  top: 5%;
  left: 3%;
  right: 3%;
  bottom: 5%;
  background: var(--color-secondary);
  /* button bg */
  border-radius: 22px;
  z-index: 1;
}

.btn-signup.header-cta span {
  position: relative;
  z-index: 2;
  display: inline-block;
}

footer {
  background-color: var(--color-primary);
}

.download-buttons a {
  color: var(--color-primary);
  font-size: clamp(10px, 0.8vw, 16px);
}

footer ul li a {
  font-size: 11px;
}

footer h6 {
  font-size: 17px;
}

/* Footer mobile responsiveness - stack columns vertically */
@media (max-width: 576px) {

  /* Make all footer columns full width (stacked one by one) */
  footer .row.gy-4>div[class*="col-"] {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  footer .row.gy-4>div[class*="col-"] ul {
    margin-bottom: 0;
  }

  footer .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }

  footer .row.gy-4 {
    --bs-gutter-y: 1.5rem;
  }
}

.swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.swiper {
  border-radius: 24px;
}

.gradient-text {
  font-weight: 700;
  font-size: 2.5rem;
  background: linear-gradient(90deg, #e87722 0%, #164d92 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

#about-us p {
  color: var(--color-tertiary);
  line-height: 22px;
  letter-spacing: 0%;
  font-size: 16px;
}

#about-us a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: bold;
}

.about-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 20px;
}

.about-highlight {
  color: var(--color-primary);
  font-weight: bold;
}

.swiper {
  width: 100%;
  height: auto;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* geographies */
#geographies {
  background-color: var(--bg-color-primary);

  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
}

section {
  padding: 40px 20px;
}

h2 {
  color: var(--color-primary);
  margin-bottom: 20px;
  margin-top: 20px;
  font-size: 40px;
}

#geographies p {
  color: var(--color-tertiary);
  text-align: center;
  margin-bottom: 40px;
  font-size: 20px;
}

.strategic-focus-section {
  text-align: center;
  margin: 40px 0;
}

.focus-cards {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.focus-card {
  background: linear-gradient(53.58deg, #022551 0%, #1e5aa4 100%);

  color: #fff;
  border-radius: 16px;
  width: 200px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(44, 62, 80, 0.12);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  background: linear-gradient(to right, #164d92, #e87722);
}

.focus-card::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: linear-gradient(53.58deg,
      #022551 0%,
      #1e5aa4 100%);
  /* button bg */
  border-radius: 14px;
  z-index: 1;
}

.focus-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 32px rgba(44, 62, 80, 0.18);
}

.focus-card-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  margin-top: 8px;
  z-index: 2;
}

.focus-icon {
  width: 44px;
  height: 40px;
  z-index: 2;
}

/* social impact */
#social-impact {
  background-color: var(--bg-color-primary);
  padding: 10px 20px;
  text-align: center;
}

#global-impact-film {
  padding: 10px 20px;
}

#about-us {
  padding: 10px 20px;
}

#strategic-focus {
  padding: 10px 20px;
}


#regional-highlights {
  padding: 10px 20px;
}

.social-cards {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.social-card {
  background: linear-gradient(53.58deg, #022551 0%, #1e5aa4 100%);
  padding: 20px;
  border-radius: 16px;
  /* width: 234px; */
  height: 229px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  background: linear-gradient(to right, #164d92, #e87722);
}

.social-card::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: white;
  border-radius: 14px;
  z-index: 1;
}

.social-card:hover {
  transform: translateY(-6px) scale(1.03);
}

.social-card-title {
  /* font-size: 1.1rem; */
  font-weight: 650;
  font-size: 17px;
  color: var(--color-primary);
  margin-top: 8px;
  z-index: 2;
}

.social-icon {
  width: 44px;
  height: 40px;
  z-index: 2;
}

.social-card-count {
  color: var(--color-primary);
  font-weight: 650;
  font-size: 32px;
  z-index: 2;
}

.social-card-text {
  z-index: 2;
  font-weight: 700;
  font-size: 14px;
  margin: 0;
}

.bottom-social {
  z-index: 2;
  position: absolute;
  bottom: 20px;
}

.icon-column {
  padding: 12px;
  border-top-left-radius: 14px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 14px;

  font-size: 18px;
  font-weight: 600;
}

.icon-column.aid {
  background-color: var(--bg-color-green);
}

.pillar-content {
  background: linear-gradient(53.58deg, #022551 0%, #1e5aa4 100%);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  /* box-shadow: 0 6px 24px rgba(44, 62, 80, 0.12); */
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  background: linear-gradient(to right, #164d92, #e87722);
}

.pillar-content::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: white;
  /* border-radius: 14px; */
  z-index: 1;
}

.end-icon-column {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  padding: 12px;
  border-top-left-radius: 2px;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 2px;

  font-size: 12px;

  font-weight: 600;
  /* box-shadow: 0 6px 24px rgba(44, 62, 80, 0.12); */
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  background: linear-gradient(to left, #164d92, #e87722);
}

.end-icon-column::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: white;
  /* border-top-left-radius: 2px; */
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  /* border-bottom-left-radius: 2px; */
  z-index: 1;
}

.pillar-pill {
  padding-inline: 10px;
  border-radius: 5px;
  margin-right: 4px;
  margin-bottom: 8px;
  font-size: 13px;
  z-index: 2;
  color: black;
  background: var(--bg-color-primary);
}

.count-para {
  align-items: center;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.belong {
  background: var(--color-primary);
}

.coach {
  background: var(--bg-color-orange);
}

.disaster {
  background: var(--bg-color-grey);
}

/* responsiveness */
/* mobile and under */
@media (max-width: 768px) {
  .social-cards {
    gap: 12px;
  }

  .focus-cards {
    gap: 12px;
  }

  .focus-card {
    width: 47%;
    /* height: 100px;
    font-size: 60px;
    flex-direction: row;
    gap: 30px;
    align-items: center; */
  }

  .focus-card-title {
    font-size: 1rem;
  }

  /* socaial card */
  .social-card {
    width: 100%;
    height: 180px;
    /* flex-direction: row; */

    align-items: center;
  }

  .social-card-title {
    font-size: 18px;
  }

  .social-card-count {
    font-size: 20px;
  }

  .bottom-social {
    position: relative;
    bottom: 0;
    /* margin-top: 20px; */
  }
}

/* @media (min-width: 1400px) {
  .social-pillars .container {
    padding-inline: 86px;
  }
} */

@media (max-width: 576px) {
  .pillar-count.col-sm-3 {
    width: 100% !important;
  }

  .end-icon-column {
    background: linear-gradient(to right, #164d92, #e87722);
  }

  .end-icon-column,
  .end-icon-column::after {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 14px;
    border-bottom-left-radius: 14px;
  }

  .icon-column {
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
  }

  .aid-focus-card {
    width: 97%;
  }
}

.custom-card {
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 20px;
  display: flex;
  flex-direction: column;

  background: #fff;
  max-width: 600px;
  height: 462px;
  /* margin: 1rem auto; */
  position: relative;
}

.news-img {
  border-radius: 12px;
  width: 100%;
  height: 192px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.news-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.news-meta {
  position: absolute;
  width: 90%;
  bottom: 3%;
  font-size: 12px;
  color: var(--color-tertiary);
  display: flex;
  align-items: center;
  /* gap: 4rem; */
}

.news-meta i {
  margin-right: 0.3rem;
}

/* .arrow-circle {
      display: inline-flex;
      position: relative;
      align-items: center;
      border-radius: 50%;
    padding: 10px;
      font-size: 1.2rem;
      color: #2b7cff;
        background: linear-gradient(to right, #164D92, #E87722);
      margin-right: 0.7rem;
      z-index: 2;
    } */
/* .arrow-circle::before {
      content: "";
      border-radius: 50%;
    position: absolute;
    top: 4%; left: 4%; right: 3%; bottom: 4%;
    background:white;
   
     z-index: 1;
    } 

    /* .arrow-outward{
      color: var(--color-primary);
      z-index: 2;
      width: 24px;
    } */
#news-and-newsletter {
  background: var(--bg-gradient-news);
}

.arrow-circle {
  width: 44px;
}

.custom-card-2 {
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 30px;
  background: #fff;
  height: 156px;
  margin: 1rem auto;
  position: relative;
}

.custom-card-2 .row {
  height: 100%;
  align-items: center;
}

.custom-card-2 .col-6:first-child {
  display: flex;
  justify-content: center;
  align-items: center;
}

.herald-img {
  max-width: 158px;
  max-height: 106px;
}

.herald-month {
  font-size: 24px;
}

.herald-year {
  font-size: 32px;
  font-weight: 700;
}

/* Herald responsive — 1024px and below */
@media (max-width: 1024px) {
  .herald-img {
    max-width: 130px;
    max-height: 90px;
  }

  .herald-month {
    font-size: 20px;
  }

  .herald-year {
    font-size: 26px;
  }

  .custom-card-2 {
    padding: 20px;
    height: 136px;
  }
}

@media (max-width: 768px) {
  .herald-img {
    max-width: 110px;
    max-height: 78px;
  }

  .herald-month {
    font-size: 17px;
  }

  .herald-year {
    font-size: 22px;
  }

  .custom-card-2 {
    padding: 16px;
    height: 120px;
  }
}

@media (max-width: 576px) {
  .herald-img {
    max-width: 95px;
    max-height: 68px;
  }

  .herald-month {
    font-size: 15px;
  }

  .herald-year {
    font-size: 20px;
  }

  .custom-card-2 {
    padding: 14px;
    height: 110px;
  }
}

@media (max-width: 375px) {
  .herald-img {
    max-width: 80px;
    max-height: 58px;
  }

  .herald-month {
    font-size: 13px;
  }

  .herald-year {
    font-size: 18px;
    font-weight: 700;
  }

  .custom-card-2 {
    padding: 12px;
    height: 100px;
  }
}

@media (min-width: 992px) {
  .social-card.col-lg-2 {
    width: 19.666667% !important;
  }
}

@media (max-width: 992px) {
  .header {
    padding: 0px !important;
  }

  .nav-container {
    padding: 15px 40px;
  }

  /* tr */
}

@media (min-width: 992px) and (max-width: 1400px) {
  .focus-card {
    width: 17% !important;
  }
}

/* carousel */
.carousel-inner img {
  object-fit: cover;
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 0.4s ease-in-out !important;
  /* adjust time as needed */
}

.carousel-fade .carousel-item.active {
  opacity: 1;
}

.carousel-indicators {
  bottom: 60px;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid white;
  background-color: transparent;
  opacity: 1;
  margin: 0 6px;
}

.carousel-indicators .active {
  background-color: var(--bg-color-orange);
  border-color: var(--bg-color-orange);
}

/* .banner-container {
  position: absolute; */
/* max-height: 89vh;
} */

.banner-text {
  color: white;
  font-size: 3.1vw;
}

.banner-text-2 {
  color: white;
  font-size: 35px;
}

.banner-text-3 {
  color: white;
  font-size: 56px;
}

.sub-text {
  font-size: 32px;
  color: rgba(255, 255, 255, 0.693);
  line-height: 120%;
}

.sub-text-2 {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.693);
  line-height: 120%;
}

.fade-swiper {
  width: 100%;
  height: 60vh;
}

@media (max-width: 576px) {
  .fade-swiper {
    width: 100%;
    height: 30vh !important;
  }

  .explore-volunteers-btn {

    font-size: 0.7rem !important;
  }
}

.fade-swiper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.second-banner-col {
  min-height: 320px;
}

.banner-img-desc {
  position: absolute;

  background-color: var(--color-primary);
  color: white;
  max-width: 600px;
  bottom: 20%;
  left: 20%;
  right: 20%;
  border-radius: 12px;
  padding: 10px;
  gap: 10px;
}

.banner-img-desc p {
  line-height: 100%;
  font-size: 16px;
}

@media (min-width: 769px) and (max-width: 805px) {
  .carousel-inner img {
    height: 62vh;
    object-fit: cover;
  }
}


@media (max-width: 768px) {
  .banner-img-desc p {
    font-size: 9px;
  }

  .banner-text {
    font-size: 30px !important;
  }

  .banner-text-2 {
    font-size: 24px !important;
  }

  .banner-text-3 {
    font-size: 30px !important;
  }

  .sub-text {
    font-size: 16px;
  }

  .sub-text-2 {
    font-size: 14px;
  }

  .carousel-inner img {
    height: 64vh;
    object-fit: cover;
  }

  .carousel-indicators {
    bottom: 10px !important;
  }

  .news-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .carousel-inner img {
    height: 50vh;
    object-fit: cover;
  }
}

#esg-para p {
  font-size: 20px;
}

@media (max-width: 1025px) {
  #geographies p {
    font-size: 15px;
  }

  #esg-para p {
    font-size: 15px;
  }

  /* .content-container{
      padding: 10px !important;
    } */
  .content-container {
    padding: 6% 3% !important;
  }

  .banner-text-3 {
    font-size: 30px !important;
  }

  .banner-text-2 {
    font-size: 30px !important;
  }

  .sub-text-2 {
    font-size: 12px;
  }
}

.content-container {
  padding: 12% 5%;
}

.col-sm-3 {
  width: 23% !important;
}

.icon-column img {
  height: 32px;
  width: 32px;
}

.explore-volunteers-btn {
  border: var(--color-primary) 2px solid;
  background-color: var(--color-primary);
  border-radius: 100px;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.explore-volunteers-btn:hover {
  cursor: pointer;

  transform: translateZ(3px) scale(1.01);
  background-color: var(--color-secondary);
  color: var(--color-primary);
}

.custom-card {
  transition: transform 0.2s, box-shadow 0.2s;
}

.custom-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 32px rgba(44, 62, 80, 0.18);
}

.custom-card-2 {
  transition: transform 0.2s, box-shadow 0.2s;
}

.custom-card-2:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 32px rgba(44, 62, 80, 0.18);
}

.arrow-circle {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.custom-card:hover .arrow-circle {
  transform: translateZ(10px) scale(1.2);
  opacity: 0.9;
}

@media (min-width: 768px) and (max-width: 992px) {
  .social-card.col-lg-2.col-md-4 {
    flex: 0 0 auto;
    width: 47.333333% !important;
  }

  .social-cards {
    gap: 20px !important;
  }
}

@media (min-width: 576px) and (max-width: 768px) {

  .container,
  .container-sm {
    max-width: 720px;
  }
}

/* Common Banner Background */
.banner-bg {
  background: url('/assets/images/banner_map_2.webp') center center / cover no-repeat;
}

.banner-bg-alt {
  background: url('/assets/images/banner_map_2.webp') center center / cover no-repeat;
}

/* Positioning */
.position-relative {
  position: relative;
}

.abs-slide {
  position: absolute;
}

/* Custom Slide Content */
.custom-slide-content {
  padding-top: 15%;
  padding-bottom: 50%;
}

.play-btn {
  width: 80px;
  height: 80px !important;
}

/* Slide Images */
.banner-img {
  max-height: 89vh;
}

.log-size {
  max-height: 50px;
}

.card-icon-size {
  height: 44px;
}

/* ========================= */
/* aster-ecg-reports-page */
/* ========================= */
.hero-banner {
  background-color: var(--bg-banner-color);
}

.banner-content {
  padding: 42px 20px;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
}

/* Sustainability Reports Section */
.sustainability-reports-section {
  padding: 0 !important;
}

.reports-container {
  padding: 0;
}

.reports-header-title {
  background-color: #004F95;
  margin: 0 auto;
  text-align: center;
  padding: 15px 40px;
}

.reports-header-title p {
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .reports-header-title {
    max-width: 95%;
    padding: 12px 20px;
  }

  .reports-header-title p {
    font-size: 16px;
  }
}

/* Reports Content Section */
.reports-content-section {
  background-color: #ffffff;
  /* User requested white background potentially, or consistent with image. Let's keep it clean white as per image looks white/transparent. */
  padding: 40px 0;
}

/* Centered Section Header */
.section-header-centered {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  width: 100%;
}

.header-line {
  flex-grow: 1;
  height: 2px;
  background-color: #005DA6;
  /* Aster Blue */
  margin: 0 15px;
}

.header-title {
  color: #005DA6;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  text-transform: capitalize;
  white-space: nowrap;
}

/* Report Category Container */
.report-category {
  margin-bottom: 60px;
}

/* Report Item Wrapper */
.report-item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 250px;
  /* Constrain width to match design */
  margin: 0 auto;
}

.report-link {
  text-decoration: none;
  display: block;
  width: 100%;
  transition: transform 0.3s ease;
}

.report-link:hover {
  transform: translateY(-5px);
}

/* Gradient Box for Image */
.report-gradient-box {
  position: relative;
  background: linear-gradient(to bottom, #164d92, #e87722);
  /* Blue to Orange Gradient */
  padding: 2px;
  /* Thickness of the border */
  border-radius: 0;
  /* Square corners as per image */
  margin-bottom: 15px;
  height: 350px;
  /* Fixed height for consistency */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Inner White Box */
.report-gradient-box::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: #fff;
  /* White background inside */
  z-index: 1;
}

/* Logo Image */
.report-logo {
  position: relative;
  z-index: 2;
  max-width: 120px;
  height: auto;
}

/* Text Content Below */
.report-text-content {
  text-align: center;
  padding-top: 10px;
}

.report-title {
  color: #005DA6;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px !important;
  line-height: 1.4;
}

.report-subtitle {
  color: #005DA6;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

@media (max-width: 768px) {
  .header-title {
    font-size: 20px;
  }

  .report-gradient-box {
    height: 280px;
  }
}

/* ==================================== */
/* About us page */
/* ==================================== */
.left-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.left-content-title {
  color: #004F95;
  text-align: left;
  font-size: 36px;
  font-weight: 600;
}

.left-content-subtitle {
  color: #004F95;
  text-align: left;
  font-weight: 500;
  font-size: 12px;
}

.left-content-description {
  text-align: left;
  font-size: 16px;
}

.left-content-description span {
  color: #004F95;
  font-weight: 700;
}

.read-more {
  text-align: left;
}

.read-more-btn {
  border: none;
  padding: 10px 30px;
  border-radius: 50px;
  background-color: #004F95;
  color: white;
  font-size: 20px;
  font-weight: 400;
  cursor: default !important;
}

.image-container img {
  border-radius: 28px;
}

.who-we-are-section {
  background-color: #F3F6FA;
  padding: 80px 0;
}

.gradient-border-card {
  position: relative;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #164d92, #e87722) border-box;
  border: 3px solid transparent;
  padding: 40px;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.who-we-are-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(to right, #164d92, #e87722);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}



.who-we-are-title span {
  background: inherit;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.who-we-are-text {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

.who-we-are-text span {
  color: #164d92;
  /* Highlight numbers or key terms in blue */
  font-weight: 700;
}

.know-more-link {
  color: #164d92;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
}

.know-more-link:hover {
  color: #e87722;
  text-decoration: underline;
}

.image-container {
  height: 100%;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.about-aster-section {
  background-color: white;
}

/* ==================================== */
/* Aster Volunteers in Media Section */
/* ==================================== */
.media-section {
  background: linear-gradient(90deg, #F9E8D9 0%, #E2EFF9 100%);
  /* Warm beige to light blue */
  padding: 80px 0;
}

.media-section-title {
  color: #004F95;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
}

.media-card {
  background: #fff;
  border-radius: 24px;
  padding: 20px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.media-card:hover {
  transform: translateY(-5px);
}

.media-card-img-wrapper {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 16px;
  overflow: hidden;
}

.media-card-img {
  width: 100%;
  height: 200px;
  /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.media-card-text {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  text-align: center;
}

/* PDF Modal */
.pdf-modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.pdf-modal.active {
  display: flex;
}

.pdf-modal-content {
  position: relative;
  background: #fff;
  width: 90%;
  max-width: 900px;
  height: 85vh;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.pdf-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 32px;
  color: #333;
  cursor: pointer;
  z-index: 10;
  transition: color 0.3s;
}

.pdf-modal-close:hover {
  color: #e87722;
}

#pdfViewer {
  width: 100%;
  height: 100%;
  border: none;
}

.btn-footer-download {
  color: var(--color-primary) !important;
  font-weight: 700;
  font-size: 12px;
  border-radius: 50rem;
  /* rounded-pill */
  padding: 0.5rem 1.5rem;
  display: inline-flex;
  align-items: center;
  border: 2px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to left, #164d92, #e87722) border-box;
  transition: all 0.3s ease;
}

.btn-footer-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background: linear-gradient(#f0f0f0, #f0f0f0) padding-box,
    linear-gradient(to left, #164d92, #e87722) border-box;
}

.btn-footer-download i {
  font-weight: bold;
}

/* Enhance Footer Links Visibility */
footer a.text-white-50 {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none;
  transition: color 0.2s;
}

footer a.text-white-50:hover {
  color: #fff !important;
}

/* Footer layout spacing */
.footer-separator {
  border-top: 1px solid rgba(255, 255, 255, 0.3) !important;
  margin-top: 20px;
  padding-top: 20px;
  font-size: 11px;
}

.address-text {
  font-size: 14px;
}

/* ==================================== */
/* About Page Responsiveness */
/* ==================================== */

/* Base styles for about-banner */
.about-banner {
  background-color: var(--bg-banner-color);
  padding: 80px 0 60px;
}

.about-banner .banner-content {
  display: flex;
  align-items: center;
}

.about-banner .right-content .image-container {
  height: 100%;
}

.about-banner .right-content .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

@media (max-width: 991px) {
  .about-banner {
    padding: 60px 0 40px;
  }

  .left-content-title {
    font-size: 28px;
  }

  .left-content-subtitle {
    font-size: 14px;
  }

  .left-content-description {
    font-size: 14px;
  }

  .read-more {
    margin-bottom: 30px;
  }

  /* Reset height for image container to be auto so it doesn't leave gaps */
  .image-container {
    height: auto;
  }

  .who-we-are-section {
    padding: 40px 0;
  }

  .who-we-are-title {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .gradient-border-card {
    padding: 30px;
  }

  .media-section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {

  /* About banner mobile styles */
  .about-banner {
    padding: 40px 0 30px;
  }

  .about-banner .right-content {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  .about-banner .right-content .image-container {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: auto;
    min-height: 300px;
    margin-top: 25px;
  }

  .about-banner .right-content .image-container img {
    width: 90%;
    border-radius: 18px;
    height: auto;
    min-height: 300px;
    max-height: 450px;
    object-fit: cover;
    /* Full width looks better with 0 radius at edges */
  }

  .left-content-description {
    font-size: 20px;
  }

  /* Center align content on mobile for better visual balance */
  .left-content-title,
  .left-content-subtitle,
  .left-content-description,
  .read-more {
    text-align: center;
  }

  .about-banner .image-container {
    margin-top: 20px;
  }

  .who-we-are-title,
  .who-we-are-text,
  .know-more-link {
    text-align: center;
    display: block;
    /* Ensure link behaves as block for centering */
  }

  .who-we-are-text ul {
    text-align: left !important;
  }

  .gradient-border-card {
    padding: 20px;
  }

  .media-card-img {
    height: 180px;
  }
}

/* Pending Report Modal Styles */
.pending-report-modal-content {
  position: relative;
  background: linear-gradient(to right, #164d92, #e87722);
  border: none;
  border-radius: 16px;
  z-index: 1;
}

.pending-report-modal-content::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: #fff;
  border-radius: 14px;
  z-index: -1;
}

.pending-report-text {
  color: #58595b !important;
}

.banner-logo {
  max-width: 300px;
  width: 100%;
  height: auto;
}

.swiper {
  cursor: pointer;
}