.objectivesCardContentContainer p {
  display: -webkit-box; /* Needed for line clamping */
  -webkit-line-clamp: 3; /* Number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease; /* Smooth transition on hover */
  cursor: pointer; /* Optional, to indicate hover effect */
}

.objectivesCardContentContainer p:hover {
  -webkit-line-clamp: unset; /* Remove the clamp on hover */
  white-space: normal; /* Ensure text wraps normally */
}
.missionCard {
  min-height: 175px;
}

/* banner section slider */
.bannerImage {
  position: relative;
  overflow: hidden;
}

.bannerImage img {
  width: 100%;
  height: auto;
  display: block;
}

.bannerOverlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* adjust opacity as needed */
  z-index: 1;
}

.bannerContent {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff; /* makes text readable over overlay */
  padding: 20px;
}

/* Custom font sizes */
.bannerTitle {
  font-size: 80px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 20px;
}

.bannerSubtitle {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 30px;
}

/* end banner section slider */

.text-justify-cstm {
  text-align: justify;
}

.daily-commute-emissions-pdf {
  margin-top: 24px;
  border-radius: 16px;
  overflow: hidden; /* rounds the PDF corners visually */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.daily-commute-emissions-pdf iframe {
  border: none;
  width: 100%;
  height: 600px;
}

/* initiatives section styles */
.CSR-Initiatives-section {
  /* background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f0f9ff 100%); */
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.CSR-Initiatives-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(147, 51, 234, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.CSR-Initiatives-header {
  text-align: center;
  margin-bottom: 70px;
  animation: fadeInUp 0.8s ease-out;
  position: relative;
  z-index: 1;
}

.CSR-Initiatives-intro-text {
  font-size: 1.15rem;
  color: #475569;
  line-height: 2;
  margin-bottom: 70px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  position: relative;
  z-index: 1;
  text-align: justify;
}

.CSR-Initiatives-intro-text p {
  margin-bottom: 1.5rem;
  text-indent: 0;
}

.CSR-Initiatives-sdg-section {
  position: relative;
  z-index: 1;
}

.CSR-Initiatives-sdg-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(226, 232, 240, 0.8);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.CSR-Initiatives-sdg-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(59, 130, 246, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.CSR-Initiatives-sdg-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
  border-color: #fbf5e9;
}

.CSR-Initiatives-sdg-card:hover::before {
  opacity: 1;
}

.CSR-Initiatives-sdg-image-wrapper {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
  border-radius: 24px 24px 0 0;
}

.CSR-Initiatives-sdg-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.CSR-Initiatives-sdg-card:hover .CSR-Initiatives-sdg-image {
  transform: scale(1.1);
}

.CSR-Initiatives-sdg-content {
  padding: 32px 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.CSR-Initiatives-sdg-card h4 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0;
  line-height: 1.4;
  text-align: center;
  transition: color 0.3s ease;
}

.CSR-Initiatives-sdg-card:hover h4 {
  color: #2563eb;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.CSR-Initiatives-sdg-card:nth-child(1) {
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.CSR-Initiatives-sdg-card:nth-child(2) {
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.CSR-Initiatives-sdg-card:nth-child(3) {
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.CSR-Initiatives-sdg-card:nth-child(4) {
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.keySecc {
  list-style: none;
  padding: 0;
  /* margin: 0; */
}

.keySecc li {
  position: relative;
  padding: 14px 20px 14px 48px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 500;
  /* color: #222; */
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
  transition: 0.3s ease;
}

/* Left Icon Circle */
.keySecc li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: #fdf7eb;
  /* beige center */
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(56, 71, 68, 0.25), /* dark gray ring */ 0 6px 14px rgba(56, 71, 68, 0.35);
  /* dark gray depth */
}

/* end initiatives section styles */
