/* ==========================================================================
   KKR Multitech Engineers - About Us Page Scoped Styles
   ========================================================================== */

/* Wrapper & Global Scope Overrides (Scoped to prevent bleed) */
.kkr-about-page-wrapper {
  --about-blue: #1473be;
  --about-orange: #f6931c;
  --about-navy: #0E233E;
  --about-light-blue: rgba(20, 115, 190, 0.08);
  --about-light-orange: rgba(246, 147, 28, 0.08);
  --about-navy-light: rgba(14, 35, 62, 0.05);
  --about-gray-50: #f8fafc;
  --about-gray-100: #f1f5f9;
  --about-gray-200: #e2e8f0;
  --about-gray-300: #cbd5e1;
  --about-gray-600: #475569;
  --about-gray-700: #334155;
  --about-gray-800: #1e293b;
  --about-border-radius: 24px;
  --about-border-radius-inner: 16px;
  --about-transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --about-font: 'DM Sans', sans-serif;

  font-family: var(--about-font);
  color: var(--about-gray-600);
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Custom Fluid Entry Animations */
@keyframes kkrFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.kkr-about-animate-fade-up {
  opacity: 0;
  animation: kkrFadeUp 1.0s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.kkr-about-delay-100 {
  animation-delay: 0.1s;
}

.kkr-about-delay-200 {
  animation-delay: 0.2s;
}

.kkr-about-delay-300 {
  animation-delay: 0.3s;
}

.kkr-about-delay-400 {
  animation-delay: 0.4s;
}

/* 1. HERO BANNER */
.kkr-about-hero {
  position: relative;
  padding: 150px 0px 70px;
  overflow: hidden;
  background-image: url(../images/banner//about-updated.png);
  background-size: cover;
  background-position: center;
}

.kkr-about-hero:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(105deg, rgba(14, 35, 62, 0.7) 0%, rgba(14, 35, 62, 0.5) 60%, rgba(14, 35, 62, 0.2) 100%);
  content: "";
  z-index: 1;
}

.kkr-about-hero .container {
  position: relative;
  z-index: 2;
}

.kkr-about-hero-content {
  color: #ffffff;
  width: 600px;
}

.kkr-about-breadcrumb {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--about-orange);
  margin-bottom: 24px;
  display: inline-block;
  background: rgba(246, 147, 28, 0.1);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(246, 147, 28, 0.2);
}

.kkr-about-hero-title {
  font-size: 48px;
  line-height: 1.15;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.kkr-about-hero-desc {
  font-size: 17px;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 40px;
  max-width: 600px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Double-Bezel Pattern for Hero Image */
.kkr-about-hero-image-container {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px;
  border-radius: var(--about-border-radius);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
  transition: var(--about-transition);
}

.kkr-about-hero-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--about-border-radius-inner);
  transition: var(--about-transition);
}

.kkr-about-hero-image-container:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.kkr-about-hero-image-container:hover .kkr-about-hero-image {
  transform: scale(1.02);
}

/* Common Section Headers */
.kkr-about-section {
  padding: 120px 0;
  position: relative;
}

.kkr-about-section-whoweare {
  padding: 0px 0;
}

.kkr-about-section-faq,
.kkr-about-section-why,
.kkr-about-section-experience,
.kkr-about-section-approach {
  padding: 80px 0px;
}

.kkr-about-sec-title-area {
  margin-bottom: 50px;
}

.kkr-about-sec-subtitle {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--about-orange);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  display: inline-block;
  position: relative;
  padding-left: 20px;
}

.kkr-about-sec-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 2px;
  background-color: var(--about-orange);
  transform: translateY(-50%);
}

.kkr-about-sec-title {
  font-size: 38px;
  font-weight: 800;
  color: white;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.kkr-about-sec-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--about-gray-600);
  margin-top: 18px;
  max-width: 700px;
}

/* 2. OUR STORY SECTION */
.kkr-about-story-section {
  background-color: #ffffff;
}

.kkr-about-story-img-wrapper {
  position: relative;
  padding-right: 20px;
  z-index: 2;
}

.kkr-about-story-img-container {
  background: var(--about-gray-50);
  border: 1px solid var(--about-gray-200);
  padding: 10px;
  border-radius: var(--about-border-radius);
  box-shadow: 0 20px 40px rgba(14, 35, 62, 0.05);
  position: relative;
  z-index: 2;
}

.kkr-about-story-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--about-border-radius-inner);
}

.kkr-about-story-img-accent {
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 90%;
  height: 90%;
  border: 2px dashed var(--about-orange);
  border-radius: var(--about-border-radius);
  z-index: 1;
  opacity: 0.3;
  pointer-events: none;
}

.kkr-about-story-content {
  padding-left: 20px;
}

.kkr-about-story-p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--about-gray-600);
  margin-bottom: 24px;
}

.kkr-about-story-timeline-accent {
  position: relative;
  padding-left: 24px;
  border-left: 4px solid var(--about-blue);
  margin-top: 36px;
}

.kkr-about-story-timeline-year {
  font-size: 26px;
  font-weight: 800;
  color: var(--about-blue);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.kkr-about-story-timeline-text {
  font-size: 15px;
  color: var(--about-gray-700);
  font-weight: 500;
}

/* 3. WHO WE ARE SECTION */
.kkr-about-whoweare-section {
  background-color: #f8f5f1;
  border-top: 1px solid var(--about-gray-200);
  border-bottom: 1px solid var(--about-gray-200);
  overflow: hidden;
}

/* Grid Container */
.kkr-about-whoweare-grid-container {
  padding: 20px 0 60px 0;
}

.kkr-about-whoweare-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 576px) {
  .kkr-about-whoweare-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Cards layout */
.kkr-about-whoweare-card-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  transition: var(--about-transition);
}

/* Staggered offsets for desktop/tablet */
@media (min-width: 768px) {
  .kkr-about-whoweare-card-wrapper:nth-child(even) {
    transform: translateY(40px);
  }

  .kkr-about-whoweare-card-wrapper:nth-child(5) {
    grid-column: span 2;
    justify-self: center;
    width: calc(50% - 15px);
    transform: translateY(20px);
  }
}

/* Double-Bezel Card Outer Shell */
.kkr-about-whoweare-card-outer {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(14, 35, 62, 0.03);
  border: 1px solid rgba(14, 35, 62, 0.08);
  padding: 8px;
  border-radius: var(--about-border-radius);
  transition: var(--about-transition);
  display: flex;
}

/* Double-Bezel Card Inner Core */
.kkr-about-whoweare-card-inner {
  position: relative;
  width: 100%;
  background: #ffffff;
  border-radius: var(--about-border-radius-inner);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 1);
  transition: var(--about-transition);
}

/* Highlighted/Active Card Style */
.kkr-about-whoweare-card-wrapper.active .kkr-about-whoweare-card-outer {
  background: linear-gradient(135deg, rgba(20, 115, 190, 0.06) 0%, rgba(14, 35, 62, 0.02) 100%);
  border-color: rgba(20, 115, 190, 0.15);

}

.kkr-about-whoweare-card-wrapper.active .kkr-about-whoweare-card-inner {
  color: var(--about-navy);
}

/* Hover effects */
.kkr-about-whoweare-card-wrapper:hover {
  transform: translateY(-6px);
}

/* For staggered on desktop, merge hover translate with grid translate */
@media (min-width: 768px) {
  .kkr-about-whoweare-card-wrapper:nth-child(even):hover {
    transform: translateY(34px);
  }

  .kkr-about-whoweare-card-wrapper:nth-child(5):hover {
    transform: translateY(14px);
  }
}

.kkr-about-whoweare-card-wrapper:hover .kkr-about-whoweare-card-outer {
  border-color: rgba(20, 115, 190, 0.3);
  background: var(--about-light-blue);
}

.kkr-about-whoweare-card-wrapper:hover .kkr-about-whoweare-card-inner {
  background: #ffffff;
}

/* Icons styling */
.kkr-about-whoweare-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--about-light-blue);
  border: 1px solid rgba(20, 115, 190, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--about-transition);
}

.kkr-about-whoweare-icon-box svg {
  stroke: var(--about-blue);
  transition: var(--about-transition);
}

.kkr-about-whoweare-card-wrapper:hover .kkr-about-whoweare-icon-box {
  background: var(--about-blue);
  transform: scale(1.05);
}

.kkr-about-whoweare-card-wrapper:hover .kkr-about-whoweare-icon-box svg {
  stroke: #ffffff;
}

/* Card title styles */
.kkr-about-whoweare-card-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0;
  color: var(--about-navy);
  transition: color 0.3s ease;
}


.kkr-about-whoweare-card-wrapper:hover .kkr-about-whoweare-card-accent-shape {
  opacity: 1;
}

/* 4. ENGINEERING APPROACH SECTION */
.kkr-about-approach-section {
  background-color: #ffffff;
}

.kkr-about-approach-section .auto-container {
  padding-top: 20px;
}

.kkr-about-approach-section .row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.kkr-about-approach-section .feature-block {
  flex: 0 0 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  margin-bottom: 0px;
}

@media (max-width: 991px) {
  .kkr-about-approach-section .feature-block {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}

@media (max-width: 767px) {
  .kkr-about-approach-section .feature-block {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.kkr-about-approach-section .feature-block .inner-box {
  background: var(--about-gray-50);
  border: 1px solid var(--about-gray-200);
  border-radius: var(--about-border-radius-inner);
  padding: 40px 30px;
  height: 100%;
  transition: var(--about-transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  box-shadow: 0 10px 30px rgba(14, 35, 62, 0.01);
}

.kkr-about-approach-section .feature-block .icon-box {
  background: transparent !important;
  background-color: transparent !important;
  min-width: 0 !important;
  padding: 0 !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-direction: row !important;
  width: 100% !important;
  margin-bottom: 30px !important;
  height: auto !important;
  line-height: 1 !important;
  position: static !important;
}

.kkr-about-approach-section .feature-block .icon-box .icon {
  font-size: 36px !important;
  color: var(--about-blue) !important;
  line-height: 1 !important;
  float: none !important;
  margin: 0 !important;
  transition: var(--about-transition) !important;
}

.kkr-about-approach-section .feature-block .icon-box .count {
  font-size: 36px !important;
  font-weight: 800 !important;
  color: rgba(14, 35, 62, 0.1) !important;
  -webkit-text-stroke: 0px transparent !important;
  font-family: var(--about-font) !important;
  transition: var(--about-transition) !important;
  position: static !important;
  float: none !important;
}

.kkr-about-approach-section .feature-block .content-box {
  padding: 0;
}

.kkr-about-approach-section .feature-block .content-box .title {
  font-size: 16px;
  font-weight: 700;
  color: var(--about-navy);
  line-height: 1.45;
  margin-bottom: 0;
  transition: var(--about-transition);
}

/* Hover effects */
.kkr-about-approach-section .feature-block:hover .inner-box {
  background: #ffffff;
  border-color: var(--about-orange);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(246, 147, 28, 0.08);
}

.kkr-about-approach-section .feature-block:hover .icon-box .icon {
  color: var(--about-orange) !important;
  transform: scale(1.05) !important;
}

.kkr-about-approach-section .feature-block:hover .icon-box .count {
  color: rgba(246, 147, 28, 0.15) !important;
}

/* 5. PROJECT EXPERIENCE / INDUSTRIES SECTION */
.kkr-about-experience-section,
.kkr-about-section-experience {
  background-color: var(--bg-theme-color1);
  border-top: 1px solid var(--about-gray-200);
  border-bottom: 1px solid var(--about-gray-200);
}

/* Fix: subtitle text is orange by default but blue bg gives ~2.2:1 contrast — override to white */
.kkr-about-experience-section .kkr-about-sec-subtitle,
.kkr-about-section-experience .kkr-about-sec-subtitle {
  color: #ffffff;
}

.kkr-about-experience-section .kkr-about-sec-subtitle::before,
.kkr-about-section-experience .kkr-about-sec-subtitle::before {
  background-color: #ffffff;
}

/* Intro paragraph under centered title */
.kkr-about-exp-intro {
  font-size: 16px;
  line-height: 1.8;
  color: white;
  margin-bottom: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* 4-column image card grid row */
.kkr-about-exp-img-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

/* Centered variant — used when fewer than 4 cards remain */
.kkr-about-exp-img-grid--centered {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.kkr-about-exp-img-grid--centered .kkr-about-exp-img-card {
  flex: 0 0 calc(25% - 15px); /* match the 4-col grid card width */
  max-width: calc(25% - 15px);
}


/* Individual Image Card */
.kkr-about-exp-img-card {
  position: relative;
  border-radius: var(--about-border-radius-inner);
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(14, 35, 62, 0.08);
  cursor: pointer;
  transition: var(--about-transition);
  background: var(--about-navy);
}

.kkr-about-exp-img-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(14, 35, 62, 0.16);
}

/* Image wrapper — fixed-height tall crop */
.kkr-about-exp-img-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.kkr-about-exp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.kkr-about-exp-img-card:hover .kkr-about-exp-img-wrap img {
  transform: scale(1.08);
}

/* Subtle dark gradient overlay over the image */
.kkr-about-exp-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      transparent 40%,
      rgba(14, 35, 62, 0.45) 100%);
  pointer-events: none;
  transition: var(--about-transition);
}

.kkr-about-exp-img-card:hover .kkr-about-exp-img-overlay {
  background: linear-gradient(180deg,
      transparent 30%,
      rgba(14, 35, 62, 0.60) 100%);
}

/* Bottom White Chip — icon + label + sublabel */
.kkr-about-exp-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  padding: 14px 16px;
  border-top: 1px solid var(--about-gray-200);
  transition: var(--about-transition);
}

.kkr-about-exp-img-card:hover .kkr-about-exp-chip {
  background: var(--about-gray-50);
}

/* Circular icon background */
.kkr-about-exp-chip-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: var(--about-light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--about-transition);
}

.kkr-about-exp-chip-icon svg {
  stroke: var(--about-blue);
  transition: var(--about-transition);
}

.kkr-about-exp-img-card:hover .kkr-about-exp-chip-icon {
  background: var(--about-blue);
}

.kkr-about-exp-img-card:hover .kkr-about-exp-chip-icon svg {
  stroke: #ffffff;
}

/* Chip text */
.kkr-about-exp-chip-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
  min-width: 0;
  flex: 1;
}

.kkr-about-exp-chip-text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--about-navy);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: var(--about-transition);
}

.kkr-about-exp-chip-text span {
  font-size: 11px;
  color: var(--about-gray-600);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.kkr-about-exp-img-card:hover .kkr-about-exp-chip-text strong {
  color: var(--about-blue);
}

/* Closing balance paragraph */
.kkr-about-exp-closing {
  font-size: 16px;
  line-height: 1.85;
  color: white;
  margin-top: 40px;
  margin-bottom: 0;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .kkr-about-exp-img-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .kkr-about-exp-img-wrap {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .kkr-about-exp-img-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 14px;
  }

  .kkr-about-exp-img-wrap {
    height: 200px;
  }
}



/* 6. VISION MISSION COMMITMENT SECTION */
.kkr-about-vmc-section {
  background-color: var(--about-gray-50);
  padding-top: 0;
  padding-bottom: 0;
}

/* Outer wrapper removes default section padding since the panel handles it */
.kkr-about-vmc-section .container {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* === THE HORIZONTAL PANEL === */
.kkr-about-vmc-panel {
  display: flex;
  border-radius: var(--about-border-radius);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(14, 35, 62, 0.12);
  min-height: 480px;
}

/* — Left Sidebar — */
.kkr-about-vmc-sidebar {
  background-color: #ffffff;
  width: 90px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
  border-right: 1px solid var(--about-gray-200);
}

.kkr-about-vmc-sidebar-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--about-font);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--about-navy);
}

.kkr-about-vmc-sidebar-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--about-orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  transition: var(--about-transition);
}

.kkr-about-vmc-sidebar-link svg {
  transform: rotate(270deg);
  transition: var(--about-transition);
}

.kkr-about-vmc-sidebar-link:hover {
  color: var(--about-blue);
  gap: 12px;
}

/* — Middle Image Overlay Column — */
.kkr-about-vmc-image-col {
  width: 220px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.kkr-about-vmc-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(14, 35, 62, 0.70) 0%,
      rgba(20, 115, 190, 0.50) 50%,
      rgba(14, 35, 62, 0.85) 100%);
}

/* — Right Values List — */
.kkr-about-vmc-values-list {
  flex: 1;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

/* Value Row */
.kkr-about-vmc-value-row {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 36px 48px;
  border-bottom: 1px solid var(--about-gray-200);
  transition: var(--about-transition);
}

.kkr-about-vmc-value-row.kkr-vmc-row-last {
  border-bottom: none;
}

.kkr-about-vmc-value-row:hover {
  background-color: var(--about-gray-50);
}

/* Circular Icon Nodes */
.kkr-about-vmc-value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--about-transition);
  margin-top: 4px;
}

.kkr-vmc-icon-orange {
  background-color: var(--about-orange);
  box-shadow: 0 8px 24px rgba(246, 147, 28, 0.30);
}

.kkr-vmc-icon-blue {
  background-color: var(--about-blue);
  box-shadow: 0 8px 24px rgba(20, 115, 190, 0.30);
}

.kkr-vmc-icon-navy {
  background-color: var(--about-navy);
  box-shadow: 0 8px 24px rgba(14, 35, 62, 0.30);
}

.kkr-about-vmc-value-icon svg {
  stroke: #ffffff;
}

.kkr-about-vmc-value-row:hover .kkr-about-vmc-value-icon {
  transform: scale(1.1) rotate(10deg);
}

/* Value Content */
.kkr-about-vmc-value-content {
  flex: 1;
}

.kkr-about-vmc-value-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.2;
}

.kkr-vmc-title-orange {
  color: var(--about-orange);
}

.kkr-vmc-title-blue {
  color: var(--about-blue);
}

.kkr-vmc-title-navy {
  color: var(--about-navy);
}

.kkr-about-vmc-value-desc {
  font-size: 15px;
  line-height: 1.72;
  color: var(--about-gray-600);
  margin: 0;
  max-width: 580px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .kkr-about-vmc-image-col {
    width: 160px;
  }

  .kkr-about-vmc-value-row {
    padding: 28px 36px;
  }
}

@media (max-width: 768px) {
  .kkr-about-vmc-panel {
    flex-direction: column;
    border-radius: var(--about-border-radius-inner);
  }

  .kkr-about-vmc-sidebar {
    width: 100%;
    flex-direction: row;
    padding: 20px 28px;
    border-right: none;
    border-bottom: 1px solid var(--about-gray-200);
  }

  .kkr-about-vmc-sidebar-label {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 12px;
  }

  .kkr-about-vmc-sidebar-link {
    writing-mode: horizontal-tb;
    transform: none;
    flex-direction: row;
  }

  .kkr-about-vmc-sidebar-link svg {
    transform: none;
  }

  .kkr-about-vmc-image-col {
    width: 100%;
    height: 200px;
    flex-shrink: 0;
  }

  .kkr-about-vmc-value-row {
    padding: 24px 24px;
    gap: 20px;
  }

  .kkr-about-vmc-value-icon {
    width: 52px;
    height: 52px;
  }

  .kkr-about-vmc-value-title {
    font-size: 18px;
  }
}



/* 7. WHY CHOOSE KKR SECTION */
.kkr-about-why-section {
  background-color: var(--bg-theme-color1);
  color: #ffffff;
}

.kkr-about-why-section .kkr-about-sec-title {
  color: #ffffff;
}

/* Fix: subtitle is orange by default — override to white on blue background */
.kkr-about-why-section .kkr-about-sec-subtitle {
  color: #ffffff;
}

.kkr-about-why-section .kkr-about-sec-subtitle::before {
  background-color: #ffffff;
}

.about-sec-white {
  color: black;
}

/* Why card description */
.kkr-about-why-card-desc {
  font-size: 16px;
  line-height: 1.85;
  color: #ffff;
  margin-top: 18px;
  margin-bottom: 35px;
}

/* Why list — vertical stack of reason cards */
.kkr-about-why-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Individual reason card row */
.kkr-about-why-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  background: rgba(14, 35, 62, 0.6); /* Rich deep navy overlay */
  border: 1px solid rgba(255, 255, 255, 0.08); /* Precise hairline bezel */
  border-radius: var(--about-border-radius-inner);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.05); /* Double-bezel inner highlight */
  transition: 
    background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.kkr-about-why-card:hover {
  background: rgba(14, 35, 62, 0.85); /* Darker, more contrasty on hover */
  border-color: rgba(246, 147, 28, 0.3); /* Soft brand orange glow border */
  transform: translateY(-2px) translateX(4px); /* Spatial lift and slide */
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

/* Icon box — tinted container designed to make orange icons pop */
.kkr-about-why-icon-box {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgb(246 147 28 / 25%); /* Semi-transparent warm orange tint */
  border: 1px solid rgba(246, 147, 28, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 
    background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.kkr-about-why-icon-box svg {
  stroke: var(--about-orange);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.kkr-about-why-card:hover .kkr-about-why-icon-box {
  background: rgb(246 147 28 / 25%); /* Intense warm background highlight */
  border-color: rgba(246, 147, 28, 0.55); /* Stronger warm border border */
  transform: scale(1.05) rotate(6deg); /* Micro-rotation */
}

/* Card title text */
.kkr-about-why-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.5;
  margin: 0;
  letter-spacing: -0.01em;
}

/* === LAYERED COLLAGE IMAGE COMPOSITION === */
.kkr-about-why-collage {
  position: relative;
  width: 100%;
  height: 520px;
  padding-left: 30px;
  padding-top: 30px;
}

/* Dotted radial-gradient accent background */
.kkr-about-why-dots {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(rgba(246, 147, 28, 0.35) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  border-radius: 16px;
  z-index: 0;
  pointer-events: none;
}

/* Primary large image block */
.kkr-about-why-img-primary {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 80%;
  border-radius: var(--about-border-radius);
  overflow: hidden;
  box-shadow:
    0 30px 70px rgba(14, 35, 62, 0.35),
    0 8px 24px rgba(14, 35, 62, 0.2);
  border: 4px solid rgba(255, 255, 255, 0.08);
  z-index: 2;
  transition: var(--about-transition);
}

.kkr-about-why-img-primary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.kkr-about-why-collage:hover .kkr-about-why-img-primary img {
  transform: scale(1.04);
}

/* Secondary smaller image block — overlapping bottom-right */
.kkr-about-why-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 48%;
  border-radius: var(--about-border-radius-inner);
  overflow: hidden;
  box-shadow:
    0 20px 50px rgba(14, 35, 62, 0.4),
    0 6px 20px rgba(14, 35, 62, 0.25);
  border: 4px solid rgba(255, 255, 255, 0.12);
  z-index: 3;
  transition: var(--about-transition);
}

.kkr-about-why-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.kkr-about-why-collage:hover .kkr-about-why-img-secondary img {
  transform: scale(1.06);
}

/* Floating Stat Badges */
.kkr-about-why-badge {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: var(--about-border-radius-inner);
  z-index: 4;
  min-width: 100px;
  text-align: center;
  transition: var(--about-transition);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.kkr-why-badge-tl {
  top: 16px;
  right: 14px;
  background: var(--about-orange);
  box-shadow: 0 12px 30px rgba(246, 147, 28, 0.45);
}

.kkr-why-badge-br {
  bottom: 50%;
  left: 0;
  transform: translateY(50%);
  background: var(--about-navy);
  box-shadow: 0 12px 30px rgba(14, 35, 62, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.kkr-why-badge-num {
  font-family: var(--about-font);
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.03em;
  display: block;
}

.kkr-why-badge-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-top: 4px;
}

.kkr-about-why-collage:hover .kkr-about-why-badge {
  transform: translateY(-4px);
}

.kkr-about-why-collage:hover .kkr-why-badge-br {
  transform: translateY(calc(50% - 4px));
}

/* Responsive */
@media (max-width: 991px) {
  .kkr-about-why-collage {
    height: 400px;
    margin-top: 48px;
  }
}

@media (max-width: 767px) {
  .kkr-about-why-collage {
    height: 320px;
    padding-left: 16px;
    padding-top: 16px;
    margin-top: 40px;
  }

  .kkr-why-badge-tl {
    top: 10px;
    right: 6px;
    padding: 10px 14px;
    min-width: 80px;
  }

  .kkr-why-badge-num {
    font-size: 18px;
  }

  .kkr-why-badge-br {
    left: -6px;
  }
}

.kkr-about-why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Premium Dark Glassmorphism Cards */
.kkr-about-why-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--about-border-radius-inner);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.03),
    0 10px 25px rgba(0, 0, 0, 0.15);
  transition: var(--about-transition);
}

.kkr-about-why-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--about-orange);
  transform: translateX(8px);
  box-shadow:
    0 15px 30px rgba(246, 147, 28, 0.12),
    inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

.kkr-about-why-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgb(246 147 28 / 25%);
  border: 1px solid rgba(246, 147, 28, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--about-transition);
}

.kkr-about-why-icon-box svg {
  stroke: var(--about-orange);
  width: 22px;
  height: 22px;
  transition: var(--about-transition);
}

.kkr-about-why-card:hover .kkr-about-why-icon-box {
  background: var(--about-orange);
}

.kkr-about-why-card:hover .kkr-about-why-icon-box svg {
  stroke: #ffffff;
  transform: rotate(360deg);
}

.kkr-about-why-card-title {
  font-size: 15.5px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.kkr-about-why-card-desc {
  font-size: 15px;
  color: #ffff;
  line-height: 1.75;
}

/* 8. FAQ SECTION (SPLIT TWO-COLUMN LAYOUT) */
.kkr-about-faq-section {
  background-color: #ffffff;
}

/* Left sidebar styles */
.kkr-about-faq-sidebar-content {
  position: relative;
  top: auto;
}

@media (min-width: 992px) {
  .kkr-about-faq-section .col-lg-4 {
    position: -webkit-sticky;
    position: sticky;
    top: 130px; /* Clears sticky header (~95px) + adds visual spacing */
    align-self: flex-start;
    z-index: 10;
  }
}

.kkr-about-faq-sidebar-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--about-navy);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.kkr-about-faq-contact-btn {
  display: inline-block;
  background-color: var(--about-navy);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 14px 28px;
  border-radius: 100px;
  transition: var(--about-transition);
  text-decoration: none !important;
}

.kkr-about-faq-contact-btn:hover {
  background-color: var(--about-orange);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(246, 147, 28, 0.25);
}

/* Right list container */
.kkr-about-faq-list {
  border-top: 1px solid var(--about-gray-200);
}

/* Individual borderless rows */
.kkr-about-faq-item {
  border: none;
  border-bottom: 1px solid var(--about-gray-200);
  background: transparent;
  border-radius: 0;
  margin-bottom: 0;
  box-shadow: none;
  overflow: hidden;
  transition: var(--about-transition);
}

.kkr-about-faq-item:hover {
  border-color: var(--about-navy);
  box-shadow: none;
}

.kkr-about-faq-header {
  padding: 28px 0;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: var(--about-transition);
}

.kkr-about-faq-question {
  font-size: 18px;
  font-weight: 700;
  color: var(--about-navy);
  margin: 0;
  padding-right: 24px;
  line-height: 1.4;
  transition: var(--about-transition);
}

.kkr-about-faq-item:hover .kkr-about-faq-question,
.kkr-about-faq-item.active .kkr-about-faq-question {
  color: var(--about-blue);
}

/* Reference image solid dark circular FAQ Icon Node */
.kkr-about-faq-icon {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-theme-color1);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--about-transition);
}

.kkr-about-faq-icon::before,
.kkr-about-faq-icon::after {
  content: "";
  position: absolute;
  background-color: #ffffff;
  /* white inside dark circle */
  transition: var(--about-transition);
}

/* Horizontal line inside plus/minus sign */
.kkr-about-faq-icon::before {
  width: 12px;
  height: 2px;
  left: 12px;
  top: 17px;
}

/* Vertical line inside plus/minus sign */
.kkr-about-faq-icon::after {
  width: 2px;
  height: 12px;
  left: 17px;
  top: 12px;
}

/* When active: turns vertical line transparent (making it a minus sign) */
.kkr-about-faq-item.active .kkr-about-faq-icon {
  transform: rotate(180deg);
  background: var(--about-orange);
}

.kkr-about-faq-item.active .kkr-about-faq-icon::after {
  opacity: 0;
}

.kkr-about-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.kkr-about-faq-content {
  padding: 0 0 28px 0;
  /* clean spacing padding only at the bottom */
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--about-gray-600);
}

/* 9. CTA SECTION */
.kkr-about-cta-section {
  background-color: var(--about-gray-50);
  padding: 80px 0;
}

.kkr-about-cta-box {
  background-color: var(--about-orange);
  border-radius: 32px;
  padding: 60px 80px;
  position: relative;
  overflow: hidden;

}

/* Emulating the premium wave pattern background overlay */
.kkr-about-cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.kkr-about-cta-title {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.kkr-about-cta-desc {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  max-width: 620px;
  margin: 0;
}

/* Right-side button layout resembling reference input flow */
.kkr-about-cta-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kkr-about-cta-form-label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.kkr-about-cta-button-group {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 6px;
  gap: 6px;
  transition: var(--about-transition);
}

.kkr-about-cta-button-group:focus-within {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Secondary Button (Contact Our Team) mimicking input-placeholder styling */
.kkr-about-cta-sec-btn {
  flex: 1;
  text-align: center;
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 100px;
  transition: var(--about-transition);
  text-decoration: none !important;
  white-space: nowrap;
}

.kkr-about-cta-sec-btn:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

/* Primary Button (Get a Free Quote) mimicking the subscribe button */
.kkr-about-cta-primary-btn {
  background-color: var(--bg-theme-color1);
  /* Dark Navy */
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 100px;
  transition: var(--about-transition);
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(14, 35, 62, 0.15);
}

.vission-sec h2 {
  color: black;
  padding: 20px 0px;
  text-align: center;
}

.kkr-about-exp-chip-text h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--about-navy);
  line-height: 1.3;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  transition: var(--about-transition);
}

.kkr-about-exp-img-card:hover .kkr-about-exp-chip-text h3 {
  color: var(--about-blue);
}

.kkr-about-cta-primary-btn:hover {
  background-color: #ffffff;
  color: var(--about-navy);
  transform: translateY(-1px);
}

.kkr-about-cta-disclaimer {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.02em;
}

.kkr-about-cta-disclaimer a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 600;
}

/* Responsive CTA */
@media (max-width: 991px) {
  .kkr-about-cta-box {
    padding: 48px;
  }

  .kkr-about-cta-title {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .kkr-about-cta-box {
    padding: 36px 24px;
    border-radius: var(--about-border-radius-inner);
  }

  .kkr-about-cta-title {
    font-size: 28px;
  }

  .kkr-about-cta-button-group {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
    gap: 12px;
  }

  .kkr-about-cta-sec-btn {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background-color: rgba(255, 255, 255, 0.1);
  }

  .kkr-about-cta-primary-btn {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   8. FAQ SECTION
   ========================================================================== */

.kkr-about-faq-section {
  background-color: #ffffff;
}

/* Left sidebar title */
.kkr-about-faq-sidebar-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--about-navy);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

/* FAQ section: explicit padding so the viewport height budget is predictable */
.kkr-about-section-faq {
  padding: 60px 0 !important;
}

/* Inner-scroll layout — viewport-relative height so the whole section
   always fits on screen at once. Left title stays visible naturally. */
@media (min-width: 992px) {
  .kkr-about-faq-section .row {
    align-items: flex-start;
  }

  /* Left column: anchored to the top of the row */
  .kkr-about-faq-section .col-lg-4 {
    align-self: flex-start;
  }

  /* Right column: exactly as tall as the viewport allows.
     265px = ~80px fixed header + 60px top padding + 60px bottom padding + 65px breathing room.
     max-height caps it on tall monitors. min-height prevents it collapsing too small. */
  .kkr-about-faq-section .col-lg-8 {
    height: calc(100vh - 265px);
    max-height: 520px;
    min-height: 240px;
    overflow-y: auto;
    padding-right: 8px;
    scroll-behavior: smooth;
    /* Premium thin orange scrollbar */
    scrollbar-width: thin;
    scrollbar-color: var(--about-orange) rgba(226, 232, 240, 0.4);
  }

  .kkr-about-faq-section .col-lg-8::-webkit-scrollbar {
    width: 4px;
  }

  .kkr-about-faq-section .col-lg-8::-webkit-scrollbar-track {
    background: rgba(226, 232, 240, 0.3);
    border-radius: 100px;
  }

  .kkr-about-faq-section .col-lg-8::-webkit-scrollbar-thumb {
    background: var(--about-orange);
    border-radius: 100px;
    min-height: 30px;
  }
}

/* FAQ accordion list */
.kkr-about-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--about-gray-200);
}

/* Individual FAQ item */
.kkr-about-faq-item {
  border-bottom: 1px solid var(--about-gray-200);
  background-color: #ffffff;
  transition: background 0.25s ease;
}

.kkr-about-faq-item:last-child {
  border-bottom: none;
}

.kkr-about-faq-item.active {
  background-color: var(--about-gray-50);
}

/* Clickable header row */
.kkr-about-faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
}

.kkr-about-faq-header:hover {
  background-color: var(--about-gray-50);
}

/* Question text */
.kkr-about-faq-question {
  font-size: 15px;
  font-weight: 600;
  color: var(--about-navy);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.kkr-about-faq-item.active .kkr-about-faq-question {
  color: var(--about-blue);
}

/* +/- toggle icon */
.kkr-about-faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--about-gray-100);
  border: 1px solid var(--about-gray-200);
  position: relative;
  transition: background 0.25s ease, transform 0.25s ease;
}

.kkr-about-faq-icon::before,
.kkr-about-faq-icon::after {
  content: "";
  position: absolute;
  background-color: var(--about-navy);
  border-radius: 2px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Horizontal bar (always visible) */
.kkr-about-faq-icon::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Vertical bar (hidden when open) */
.kkr-about-faq-icon::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.kkr-about-faq-item.active .kkr-about-faq-icon {
  background-color: var(--about-blue);
  border-color: var(--about-blue);
}

.kkr-about-faq-item.active .kkr-about-faq-icon::before,
.kkr-about-faq-item.active .kkr-about-faq-icon::after {
  background-color: #ffffff;
}

/* Hide vertical bar when open (minus sign) */
.kkr-about-faq-item.active .kkr-about-faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

/* Answer body — collapsed via max-height so JS scrollHeight measurement works */
.kkr-about-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.kkr-about-faq-item.active .kkr-about-faq-body {
  /* JS sets max-height inline via scrollHeight; this is the CSS fallback for no-JS */
  max-height: 600px;
}

/* Answer description text */
.kkr-about-faq-content {
  font-size: 15px;
  line-height: 1.8;
  color: var(--about-gray-600);
  padding: 0 24px 20px 24px;
}

/* ==========================================================================
   RESPONSIVE DESIGN (Media Queries)
   ========================================================================== */

/* Large screens (Widescreen layout optimization) */
@media (min-width: 1400px) {
  .kkr-about-hero-title {
    font-size: 56px;
  }
}

/* Notebook & Tablets */
@media (max-width: 1200px) {
  .kkr-about-whoweare-col {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }


  .kkr-about-approach-line {
    display: none;
  }

  .kkr-about-approach-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .kkr-about-approach-step {
    flex: 0 0 45%;
  }
}

/* Smaller Tablets / Mobile Landscape */
@media (max-width: 991px) {
  .kkr-about-section {
    padding: 70px 0;
  }

  .kkr-about-hero {
    padding: 80px 0;
  }

  .kkr-about-hero-image-container {
    margin-top: 40px;
  }

  .kkr-about-story-img-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }

  /* collage responsive handled inline above */
}

/* Mobile Screens */
@media (max-width: 767px) {
  .kkr-about-hero-title {
    font-size: 32px;
  }

  .kkr-about-hero-desc {
    font-size: 16px;
  }

  .kkr-about-sec-title {
    font-size: 28px;
  }

  .kkr-about-whoweare-col {
    flex: 0 0 50%;
    max-width: 50%;
  }


  .kkr-about-approach-step {
    flex: 0 0 100%;
  }


  .kkr-about-cta-title {
    font-size: 32px;
  }

  .kkr-about-cta-buttons {
    flex-direction: column;
    align-items: stretch;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .kkr-about-whoweare-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .kkr-about-faq-header {
    padding: 15px 20px;
  }

  .kkr-about-faq-question {
    font-size: 16px;
  }
}

.kkr-about-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  font-size: 14px;
}

.kkr-about-breadcrumb a {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
}

.kkr-about-breadcrumb i {
  font-size: 10px;
  opacity: 0.7;
}

.kkr-about-breadcrumb span {
  font-weight: 600;
}