/* ========================================
   About Us Page Styles
   Uses shared styles from main_rlm.css
   Only page-specific overrides here
   ======================================== */

/* ===== HERO SECTION ===== */
/* Uses homepage .hero class - override flexbox horizontal centering */
.hero {
  justify-content: flex-start; /* Left-align instead of center */
  /* Keep align-items: center from homepage for vertical centering */
  background-color: #1d4662;
  min-height: 0;
  height: 100vh;
  max-height: 1000px;
}

/* At very large screens, show full image height and let gradient fill sides */
@media (min-width: 1921px) {
  .hero {
    background-size: auto 100%; /* Full height, natural width - gradient fills sides */
  }

  .hero .hero-overlay-image {
    object-fit: contain;
    max-width: 100%;
    height: 100%;
  }
}

/* Override homepage center alignment - About Us text and container are left-aligned */
.hero .hero-content {
  text-align: left;
  margin: 0; /* Remove auto-centering */
  padding-left: 97px; /* Match Figma positioning */
}

/* Font weight variations for heading */
.hero-heading .light {
  font-weight: 300; /* Gotham Light */
}

.hero-heading .medium {
  font-weight: 500; /* Gotham Medium */
}

/* ===== CTA BUTTONS SECTION ===== */
.about-cta {
  background: var(--allied-blue);
  padding: 12px 20px; /* Tight padding around buttons */
}

.about-cta-container {
  display: flex;
  gap: 80px;
  justify-content: center;
  align-items: center;
}

.cta-btn {
  background: white;
  color: #055d97;
  border: 3px solid #0072a8;
  padding: 12px 24px;
  font-family: 'Gotham', sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: normal;
  border-radius: 0 0 17px 0; /* Only bottom-right corner */
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--allied-blue);
}

/* ===== OUR APPROACH SECTION ===== */
.about-approach {
  background-image: linear-gradient(rgba(5, 89, 151, 0.5), rgba(5, 89, 151, 0.5)), url('/static/images/about/approach-background.png');
  background-size: cover;
  background-position: center;
  padding: 30px 20px;
  text-align: center;
}

.about-approach-frame {
  border: 1px solid white;
  padding: 60px 0;
  margin: 0;
}

.about-approach-heading {
  color: white;
  font-family: 'Gotham', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 30px 0;
}

.about-approach-text {
  font-family: 'Gotham', sans-serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 36px;
  color: white;
  margin: 0 auto 40px;
  max-width: 633px;
}

/* ===== PRESIDENT SECTION ===== */
.about-president {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.about-president-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(1, 103, 62, 0.5), rgba(5, 93, 151, 0.5));
  opacity: 0.88;
  pointer-events: none;
  z-index: 1;
}

.about-president-content-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  z-index: 3;
}

.about-president-text-wrapper {
  padding: 80px 0 0 0;
}

/* Header container with full-width white background */
.about-president-header {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: white;
  box-shadow: 10px 9px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 20px 0;
  margin-bottom: 30px;
}

/* Center the text content within the full-width header */
.about-president-header h2,
.about-president-header p {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.about-president-person {
  float: left;
  width: 450px;
  max-width: 50%;
  height: auto;
  margin-right: 50px;
  margin-top: 47px;
  shape-outside: url('/static/images/about/object.png');
  shape-margin: 30px;
  shape-image-threshold: 0.1;
  z-index: 2;
}

.about-president-name {
  font-family: 'Gotham', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: normal;
  color: #055d97;
  margin: 0 0 5px 0;
}

.about-president-title {
  font-family: 'Gotham', sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: normal;
  color: #055d97;
  margin: 0;
}

.about-president-quote {
  font-family: 'Gotham', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  line-height: 107.47%;
  color: white;
  margin: 0 0 30px 0;
  padding: 0;
  border: none;
}

.about-president-link {
  font-family: 'Gotham', sans-serif;
  font-weight: 700;
  font-size: 28.7px;
  line-height: normal;
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
  display: inline-block;
}

.about-president-link:hover {
  opacity: 0.8;
}

/* ===== INFO CARDS SECTION (ACCORDION) ===== */
.about-info-cards-section {
  background: white;
  padding: 60px 20px;
}

.about-info-cards-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Remove default accordion styling */
.about-info-accordion {
  display: flex;
  flex-direction: column;
  gap: 30px;
  --bs-accordion-border-width: 0;
  --bs-accordion-border-radius: 0;
}

.about-info-card-wrapper {
  border: none !important;
  background: transparent;
}

/* Accordion button (header) */
.about-info-card.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 83px;
  padding: 20px 40px;
  border: none;
  box-shadow: none;
  background: linear-gradient(to right, #055d97, #01673e);
  color: white;
  border-radius: 0;
  transition: border-radius 0s 0.35s; /* Delay border-radius change by 350ms (Bootstrap's collapse duration) */
}

.about-info-card.accordion-button.collapsed {
  border-radius: 0 0 17px 0;
}

.about-info-card.accordion-button:not(.collapsed) {
  border-radius: 0;
  transition: border-radius 0s; /* No delay when opening - corner goes straight immediately */
}

.about-info-card-gradient {
  background: linear-gradient(to right, #055d97, #01673e);
}

/* Remove default accordion arrow */
.about-info-card.accordion-button::after {
  display: none;
}

.about-info-card.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.about-info-card-title {
  font-family: 'Gotham', sans-serif;
  font-size: 32px;
  font-weight: 400; /* Book weight per Figma */
  line-height: 37px;
  color: white;
  margin: 0;
  flex: 1;
  padding-right: 240px; /* Make room for absolutely positioned icon */
}

.about-info-card-icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 226px; /* Per Figma node 279:170 */
  height: 100%; /* Full header height */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Teal gradient overlay per Figma node 279:171 */
.about-info-card-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 130px;
  height: 100%;
  background: linear-gradient(to right, #026455, rgba(1, 103, 62, 0));
  pointer-events: none;
  z-index: 1;
}

.about-info-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 0; /* Below the gradient overlay */
}

/* Position specific card images */
.who-we-support .about-info-card-icon img {
  object-position: center 25%; /* Between top and center */
}

.what-we-offer .about-info-card-icon img {
  object-position: top;
}

/* Accordion body */
.about-info-card-body {
  background: linear-gradient(to right, #055d97, #01673e);
  padding: 20px 40px 30px 40px;
  border-radius: 0 0 75px 0; /* 75px corner per Figma node 279:160 */
  margin-top: 0;
  position: relative;
  color: black; /* Black text on white background */
}

/* White inset rectangle creates 9px gradient "border" effect */
.about-info-card-body::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 9px;
  right: 9px;
  bottom: 9px;
  background: white;
  border-radius: 0 0 66px 0; /* 75px - 9px = 66px to maintain curve */
  z-index: 0;
}

.about-info-card-list {
  list-style: disc;
  padding: 0;
  margin: 0;
  padding-left: 42px;
  position: relative;
  z-index: 1; /* Above white background */
}

.about-info-card-list li {
  font-family: 'Gotham', sans-serif;
  font-size: 28.2px;
  font-weight: 200; /* Extra Light per Figma node 279:165 */
  line-height: 40px;
  margin-bottom: 12px;
}

.about-info-card-list li:last-child {
  margin-bottom: 0;
}

.about-info-card-body p {
  font-family: 'Gotham', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  margin: 0;
  position: relative;
  z-index: 1;
}

.about-info-card-text {
  position: relative;
  z-index: 1; /* Above white background */
}

.about-info-card-text p {
  font-family: 'Gotham', sans-serif;
  font-size: 28px;
  font-weight: 200; /* Extra Light */
  line-height: 33px;
  margin: 0;
}

.about-info-card-text em {
  font-family: 'Gotham', sans-serif;
  font-style: italic;
  font-weight: 200;
}

.about-info-card-text strong {
  font-family: 'Gotham', sans-serif;
  font-weight: 500; /* Medium */
  font-style: normal;
}

/* ===== SPECIALISTS SECTION ===== */
.about-specialists {
  background-image: url('/static/images/aerial-view-background.png');
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  position: relative;
}

.about-specialists::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.about-specialists .services-container {
  position: relative;
  z-index: 1;
}

.about-specialists-heading {
  font-family: 'Gotham', sans-serif;
  font-size: 48px;
  font-weight: 300; /* Light */
  color: white;
  text-align: center;
  text-shadow: 0px 10px 4px rgba(0, 0, 0, 0.38);
  margin: 0 0 40px 0;
}

.about-specialists-heading-bold {
  font-weight: 500; /* Medium */
}

.about-specialists-carousel {
  margin-bottom: 25px;
  overflow: hidden;
  overflow-y: visible; /* Allow shadows to show vertically */
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding-top: 5px; /* Extra space for hover lift at top */
  padding-bottom: 20px; /* Extra space for shadow at bottom */
}

.about-specialists-track {
  display: flex;
  gap: 20px;
  will-change: transform;
  /* Animation now controlled by JavaScript for constant speed */
}

@keyframes scroll-specialists {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(var(--scroll-distance, -50%));
  }
}

.about-specialists-card {
  flex: 0 0 auto;
  width: clamp(150px, 15vw, 200px); /* Shrinks proportionally from 200px down to 150px */
  max-width: 100%;
  aspect-ratio: 200 / 213;
  overflow: visible;
  border-radius: 12px;
  box-shadow: clamp(10.5px, 1.05vw, 14px) clamp(10.5px, 1.05vw, 14px) 0px rgba(0, 0, 0, 0.57); /* Shadow scales proportionally */
  display: block;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  background: transparent;
}

.about-specialists-card:hover {
  transform: translateY(-3px);
  box-shadow: clamp(12px, 1.2vw, 16px) clamp(12px, 1.2vw, 16px) 0px rgba(0, 0, 0, 0.65); /* Hover shadow also scales */
}

.about-specialists-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.about-specialists-description {
  font-family: 'Gotham', sans-serif;
  font-size: 26px;
  font-weight: 400; /* Book */
  line-height: 35px;
  color: white;
  text-align: center;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 1);
  margin: 0 auto;
  max-width: 900px;
}

.about-specialists-description strong {
  font-weight: 700; /* Bold */
}

/* ===== NEPA AND BEYOND SECTION ===== */
/* Gradient accent bar above NEPA section */
.about-nepa-gradient-bar {
  width: 100%;
  height: 15px;
  background: linear-gradient(90deg, #0072a8 0%, #12935b 100%);
}

/* NEPA Section - Container */
.about-nepa {
  background-color: #055d97;
  padding: 80px 20px;
}

.about-nepa .call-now-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* NEPA Section - Heading */
.about-nepa-heading {
  font-family: 'Gotham', sans-serif;
  font-size: 48px;
  line-height: 1.3;
  color: white;
  text-align: center;
  max-width: 1066px;
  margin: 0 auto 40px;
  white-space: normal;
}

.about-nepa-heading .light {
  font-family: 'Gotham-Light', 'Gotham', sans-serif;
  font-weight: 300;
}

.about-nepa-heading .black {
  font-family: 'Gotham-Black', 'Gotham', sans-serif;
  font-weight: 900;
  white-space: nowrap;
}

/* NEPA Section - Description */
.about-nepa-description {
  font-family: 'Gotham-Book', 'Gotham', sans-serif;
  font-size: 26px;
  line-height: 32px;
  color: white;
  text-align: center;
  max-width: 805px;
  margin: 0 auto 50px;
}

.about-nepa-description strong {
  font-family: 'Gotham-Black', 'Gotham', sans-serif;
  font-weight: 900;
}

/* NEPA Section - Button */
.about-nepa-button {
  display: inline-block;
  width: 534px;
  max-width: 90%;
  padding: 12px 24px;
  background: white;
  border: 3px solid #0072a8;
  border-radius: 0 0 17px 0;
  font-family: 'Gotham-Light', 'Gotham', sans-serif;
  font-size: 29px;
  color: #055d97;
  text-decoration: none;
  line-height: normal;
  transition: all 0.3s ease;
}

.about-nepa-button:hover {
  background: #f8f8f8;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: #055d97;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-nepa {
    padding: 50px 20px;
  }

  .about-nepa-heading {
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 30px;
  }

  .about-nepa-description {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 35px;
  }

  .about-nepa-button {
    font-size: 24px;
    width: 100%;
  }
}

/* ===== EXCELLENCE SECTION ===== */
/* Gradient accent bar above Excellence section */
.about-excellence-gradient-bar {
  height: 15px;
  background: linear-gradient(90deg, #0072a8 0%, #12935b 100%);
}

/* Excellence Section - Main container with background */
.about-excellence {
  position: relative;
  background-image: url('/static/images/about/excellence-background.jpg');
  background-size: cover;
  background-position: center;
  padding: 30px 20px;
  text-align: center;
}

/* Green overlay using pseudo-element */
.about-excellence::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #026455;
  opacity: 0.82;
  z-index: 1;
}

/* Outer bordered frame - no margin, section padding provides spacing */
.about-excellence-border-frame {
  position: relative;
  z-index: 2;
  border: 1px solid white;
  padding: 60px 0;
  margin: 0;
}

/* Inner container - centers content with max-width */
.about-excellence .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Text content */
.about-excellence-text {
  font-family: 'Gotham-Book', 'Gotham', sans-serif;
  font-size: 39px;
  line-height: 1.3;
  color: white;
  max-width: 775px;
  margin: 0 auto 55px;
}

.about-excellence-text em {
  font-family: 'Gotham', sans-serif;
  font-style: italic;
  font-weight: 700;
  white-space: nowrap;
}

/* Button */
.about-excellence-button {
  display: inline-block;
  width: 458px;
  max-width: 100%;
  padding: 12px 24px;
  background: white;
  border: 5px solid #0072a8;
  border-radius: 0 0 17px 0;
  font-family: 'Gotham-Light', 'Gotham', sans-serif;
  font-size: 29px;
  color: #036173;
  text-decoration: none;
  line-height: normal;
  transition: all 0.3s ease;
  mix-blend-mode: soft-light;
}

.about-excellence-button:hover {
  background: #f8f8f8;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: #036173;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-excellence-border-frame {
    margin: 0 15px;
    padding: 40px 0;
  }

  .about-excellence-text {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 35px;
  }

  .about-excellence-button {
    width: 100%;
    font-size: 24px;
  }
}

/* ===== BOARD OF DIRECTORS SECTION ===== */
.about-board {
  /* Uses pathways class styles from main_rlm.css */
}

.about-board-card {
  background: var(--allied-blue);
  padding: 40px 60px;
  border-radius: 12px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  display: inline-block;
}

.about-board-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: white;
  text-decoration: none;
  font-family: 'Gotham', sans-serif;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.about-board-link:hover {
  opacity: 0.9;
  color: white;
}

.about-board-arrow {
  transition: transform 0.3s ease;
}

.about-board-link:hover .about-board-arrow {
  transform: translateX(5px);
}


/* ===== MORE INFORMATION SCROLLING WHEEL ===== */
.more-info-wheel {
  position: relative;
  background: white;
  padding: 250px 0;
  overflow: hidden;
}

.more-info-heading {
  width: 100%;
  background: #01673e;
  font-family: 'Gotham-Black', 'Gotham', sans-serif;
  font-size: 50px;
  line-height: 95px;
  color: white;
  margin: 0;
  padding: 13px 0 13px 100px;
  text-align: left;
}

.more-info-cards-area {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
}

.more-info-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.more-info-card {
  position: absolute;
  width: 400px;
  height: 213px;
  background: linear-gradient(117.48deg, #0072a8 3.527%, #12935b 100%);
  border-radius: 0 0 35px 0;
  padding: 40px 30px 30px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.1s ease, opacity 0.1s ease;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.more-info-card-title {
  font-family: 'Gotham-Book', 'Gotham', sans-serif;
  font-size: 51.7px;
  line-height: 53px;
  color: white;
  text-align: left;
  text-shadow: 0px 7px 4px rgba(0, 0, 0, 0.39);
  margin: 0;
}

.more-info-card-title .book {
  font-family: 'Gotham-Book', 'Gotham', sans-serif;
  font-weight: 400;
}

.more-info-card-title .bold {
  font-family: 'Gotham-Bold', 'Gotham', sans-serif;
  font-weight: 700;
}

/* Smaller text variations */
.more-info-card.small-text .more-info-card-title {
  font-size: 37.7px;
  line-height: 39px;
}

.more-info-card.tiny-text .more-info-card-title {
  font-size: 33.7px;
  line-height: 42px;
}

/* Arrow icon */
.more-info-card-arrow {
  position: absolute;
  top: 82px;
  right: 29px;
}

/* "Click to View" CTA */
.more-info-card-cta {
  position: absolute;
  bottom: 20px;
  left: 30px;
  font-family: 'Gotham-Light', 'Gotham', sans-serif;
  font-size: 17px;
  color: white;
}

/* Fade overlays for partial card visibility */
.more-info-fade {
  position: absolute;
  left: 0;
  width: 100%;
  height: 180px;
  pointer-events: none;
  z-index: 10;
}

.more-info-fade-top {
  top: 0;
  background: linear-gradient(to bottom, white 28.365%, transparent);
}

.more-info-fade-bottom {
  bottom: 0;
  background: linear-gradient(to top, white 28.365%, transparent);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
  /* About Us hero adjustments for smaller screens to prevent people's heads from getting cut off */
  .hero {
    background-position: center bottom;
  }

  .hero .hero-overlay-image {
    object-position: center bottom;
  }

  .more-info-wheel {
    padding: 150px 0;
  }

  .more-info-heading {
    font-size: 42px;
    line-height: 80px;
    padding: 10px 0 10px 60px;
  }

  .more-info-cards-area {
  }

  /* Padding shrinks to 150px at this breakpoint — keep fade inside padding zone */
  .more-info-fade {
    height: 130px;
  }

  .more-info-card {
    width: 350px;
    height: 186px;
    padding: 35px 26px 26px;
  }

  .more-info-card-title {
    font-size: 45px;
    line-height: 46px;
  }

  .more-info-card.small-text .more-info-card-title {
    font-size: 33px;
    line-height: 34px;
  }

  .more-info-card.tiny-text .more-info-card-title {
    font-size: 29px;
    line-height: 36px;
  }

  .more-info-card-arrow {
    transform: scale(0.65);
    transform-origin: center;
  }
}

@media (max-width: 1024px) {
  .about-president-content-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .about-president-text-wrapper {
    padding: 60px 0 0 0;
  }

  .about-president-header {
    padding: 15px 0;
  }

  .about-president-header h2,
  .about-president-header p {
    padding-left: 30px;
    padding-right: 30px;
  }

  .about-president-person {
    width: 350px;
    margin-right: 20px;
  }

  .about-president-name {
    font-size: clamp(32px, 5vw, 48px);
  }

  .about-president-quote {
    font-size: clamp(20px, 3vw, 32px);
  }

  .about-president-link {
    font-size: clamp(20px, 3vw, 28.7px);
  }

  .more-info-wheel {
    padding: 120px 0;
  }

  .more-info-heading {
    font-size: 38px;
    line-height: 72px;
    padding: 8px 0 8px 50px;
  }

  .more-info-cards-area {
  }

  /* Padding shrinks to 120px at this breakpoint — keep fade inside padding zone */
  .more-info-fade {
    height: 100px;
  }

  .more-info-card {
    width: 320px;
    height: 170px;
    padding: 32px 24px 24px;
  }

  .more-info-card-title {
    font-size: 41px;
    line-height: 42px;
  }

  .more-info-card.small-text .more-info-card-title {
    font-size: 30px;
    line-height: 31px;
  }

  .more-info-card.tiny-text .more-info-card-title {
    font-size: 26px;
    line-height: 33px;
  }

  .more-info-card-arrow {
    transform: scale(0.6);
  }
}

@media (max-width: 768px) {
  .navbar-rlm {
    position: sticky;
    top: 0;
    background: white;
    z-index: 100;
  }

  .navbar-rlm__toggle-bar {
    background-color: #000;
  }

  .hero {
    height: auto;
    min-height: 0;
    aspect-ratio: 1440 / 816;
    padding-top: 80px;
  }

  .hero-square {
    width: 60px;
    height: 60px;
    top: calc(50% + 40px);
  }

  .hero .hero-content {
    padding-top: 40px;
  }

  .about-cta-container {
    justify-content: space-between;
    gap: 0;
  }


  .about-president-content-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-president-text-wrapper {
    padding: 50px 0 0 0;
  }

  .about-president-header {
    padding: 12px 0;
  }

  .about-president-header h2,
  .about-president-header p {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-president-person {
    width: 250px;
    max-width: 45%;
    margin-right: 15px;
  }

  .about-president-name {
    font-size: clamp(24px, 5vw, 36px);
  }

  .about-president-title {
    font-size: clamp(16px, 3vw, 19px);
  }

  .about-specialists-heading {
    font-size: clamp(32px, 5vw, 48px);
  }

  .about-specialists-description {
    font-size: clamp(18px, 3vw, 26px);
    line-height: 1.5;
    padding: 0 20px;
  }

  .about-board-card {
    padding: 30px 20px;
    width: 100%;
  }

  .about-approach-frame {
    margin: 0 15px;
    padding: 40px 0;
  }

  .about-info-card.accordion-button {
    padding: 20px;
  }

  .about-info-card-title {
    font-size: clamp(24px, 4vw, 32px);
  }

  .about-info-card-body {
    padding: 15px 20px 20px 20px;
  }

  .about-info-card-list {
    padding-left: 25px;
  }

  .about-info-card-list li {
    font-size: clamp(16px, 4vw, 28.2px);
    line-height: 1.6;
    margin-bottom: 10px;
  }

  .about-info-card-text p {
    font-size: clamp(16px, 4vw, 28px);
    line-height: 1.5;
  }

  .more-info-wheel {
    padding: 100px 0;
  }

  .more-info-heading {
    font-size: clamp(28px, 4.5vw, 34px);
    line-height: clamp(56px, 8.5vw, 64px);
    padding: 6px 0 6px 40px;
  }

  .more-info-cards-area {
  }

  .more-info-card {
    width: 280px;
    height: 149px;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 70px;
    grid-template-rows: 1fr auto;
    gap: 0;
    align-items: center;
  }

  .more-info-card-title {
    font-size: 32px;
    line-height: 33px;
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    margin: 0;
  }

  .more-info-card.small-text .more-info-card-title {
    font-size: 24px;
    line-height: 25px;
  }

  .more-info-card.tiny-text .more-info-card-title {
    font-size: 21px;
    line-height: 26px;
  }

  .more-info-card-arrow {
    position: static;
    width: 65px;
    height: auto;
    grid-column: 2;
    grid-row: 1 / -1;
    align-self: center;
    justify-self: center;
    overflow: hidden;
  }

  .more-info-card-arrow svg,
  .more-info-card-arrow img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .more-info-card-cta {
    font-size: 15px;
    position: static;
    grid-column: 1;
    grid-row: 2;
    align-self: end;
  }

  /* Padding shrinks to 100px at this breakpoint — keep fade inside padding zone */
  .more-info-fade {
    height: 80px;
  }
}

@media (max-width: 576px) {
  .hero .hero-content {
    padding-left: 20px;
  }

  .hero-heading {
    font-size: 24px;
  }

  .about-cta-container {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .cta-btn {
    flex: 0 1 auto;
  }

  .cta-btn {
    font-size: 18px;
  }

  .about-approach {
    padding: 15px 0;
  }

  .about-excellence {
    padding: 15px 0;
  }

  .about-president-content-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .about-president-text-wrapper {
    padding: 30px 0 0 0;
  }

  .about-president-person {
    width: 300px;
    max-width: 55%;
    margin-right: 10px;
    shape-margin: 15px;
  }

  .about-president-header {
    margin-bottom: 15px;
  }

  .about-president-header h2,
  .about-president-header p {
    padding-left: 10px;
    padding-right: 10px;
  }

  .about-president-quote {
    margin-bottom: 3px;
  }

  .more-info-wheel {
    padding: 60px 0 20px 0;
    display: flex;
    flex-direction: column;
  }

  .more-info-heading {
    font-size: 30px;
    line-height: 56px;
    padding: 10px 0;
    width: 100%;
    text-align: center;
    position: static;
    margin-bottom: 10px;
  }

  .more-info-cards-area {
    height: 200px;
    position: relative;
    width: 100%;
    top: auto;
    bottom: auto;
    right: auto;
    overflow: hidden;
  }

  .more-info-track {
    position: relative;
  }

  .more-info-card {
    width: 240px;
    height: 128px;
    padding: 18px;
  }

  .more-info-card-title {
    font-size: 28px;
    line-height: 29px;
  }

  .more-info-card.small-text .more-info-card-title {
    font-size: 21px;
    line-height: 22px;
  }

  .more-info-card.tiny-text .more-info-card-title {
    font-size: 18px;
    line-height: 23px;
  }

  .more-info-card-arrow {
    width: 55px;
  }

  .more-info-card-cta {
    font-size: 13px;
  }

  .more-info-fade {
    height: 50px;
    width: 100%;
    left: 0;
    right: 0;
  }
}

@media (max-width: 425px) {
  .about-cta-container {
    justify-content: center;
  }

  .about-nepa-heading .black {
    white-space: normal;
  }

  .about-excellence-text em {
    white-space: normal;
  }

  .about-info-card-icon {
    width: 100px; /* Narrower icon area to prevent text cutoff */
  }

  .about-info-card-icon::before {
    width: 60px; /* Proportional gradient fade */
  }

  .about-info-card-title {
    padding-right: 110px; /* Adjust for narrower icon */
  }

  .our-approach .about-info-card-icon img {
    object-position: 35% center; /* Shift image left so accordion cuts into it */
  }

  .about-president-content-container {
    position: relative;
  }

  .about-president-person {
    position: absolute;
    float: none;
    bottom: 0;
    left: 0;
    width: auto;
    height: 100%;
    max-width: none;
    margin: 0;
    shape-outside: none;
    opacity: 0.5;
    z-index: 0;
    object-fit: contain;
    object-position: bottom left;
  }

  .about-president-text-wrapper {
    position: relative;
    text-align: center;
    padding: 100px 0 40px 0;
    z-index: 1;
  }

  .about-president-quote {
    text-align: center;
  }

  .about-president-link {
    text-align: center;
  }
}
