/* ==========================================================================
   KKR Multitech Engineers - Services Page Scoped Styles
   ========================================================================== */

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

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

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

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

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

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

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

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

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

/* Macro-Whitespace Section Spacing */
.kkr-services-page-wrapper section {
  padding: 100px 0;
  position: relative;
  border-bottom: 1px solid var(--services-gray-100);
}

/* Headings */
.kkr-services-page-wrapper h1,
.kkr-services-page-wrapper h2,
.kkr-services-page-wrapper h3,
.kkr-services-page-wrapper h4 {
  font-family: var(--services-font);
  color: var(--services-navy);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 0;
}

/* Eyebrow Micro-Badges */
.services-micro-badge {
  display: inline-block;
  background-color: var(--services-light-blue);
  color: var(--services-blue);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(20, 115, 190, 0.15);
}

/* 1. HERO BANNER */
.kkr-services-hero {
  position: relative;
  padding: 160px 0px 80px !important;
  overflow: hidden;
  background-image: url(../images/banner/services-banner.png);
  background-size: cover;
  background-position: center;
}

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

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

.kkr-services-hero-content {
  color: #ffffff;
  max-width: 650px;
}

.kkr-services-breadcrumb {
  margin-top: 10px;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.kkr-services-breadcrumb a {
  color: rgba(255, 255, 255, 0.9) !important;
  transition: color 0.3s ease;
}

.kkr-services-breadcrumb a:hover {
  color: var(--services-orange, #f6931c);
}

.kkr-services-breadcrumb span {
  color: var(--services-orange, #f6931c);
  margin-left: 8px;
}

.kkr-services-breadcrumb i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  margin: 0 6px;
}

.kkr-services-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-services-hero-desc {
  font-size: 17px;
  line-height: 1.8;
  color: #ffffff !important;
  margin-bottom: 40px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* 2. SERVICES PHILOSOPHY */
.kkr-services-intro-section {
  background-color: #ffffff;
}

.kkr-services-section-title {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.kkr-services-section-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--services-gray-700);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.kkr-services-text-highlight {
  color: var(--services-blue, #1473be);
}

/* Smart Automation Image Wrapper Layout (Task 3) - No Box Shadow */
/* .kkr-services-smart-automation-img-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  border-radius: var(--services-border-radius, 16px);
  overflow: hidden;
  border: 1px solid var(--services-gray-200, #e2e8f0);
} */

.kkr-services-smart-automation-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.kkr-services-smart-automation-img-wrap:hover .kkr-services-smart-automation-img {
  transform: scale(1.04);
}

.kkr-services-section-subtitle {
  font-size: 16px;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 50px;
  color: var(--services-gray-600);
}

/* 3. CORE SERVICES BENTO GRID */
.kkr-services-grid-section {
  background-color: #ffffff;
}

/* Concentric Double-Bezel Architecture */
.kkr-services-card-outer {
  background-color: var(--services-gray-50);
  border: 1px solid var(--services-gray-200);
  padding: 8px;
  border-radius: var(--services-border-radius);
  height: 100%;
  transition: var(--services-cubic);
}

.kkr-services-card-inner {
  background-color: #ffffff;
  border: 1px solid var(--services-gray-300);
  padding: 30px;
  border-radius: calc(var(--services-border-radius) - 8px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--services-cubic);
}

.kkr-services-card-img-wrap {
  width: 100%;
  height: 180px;
  border-radius: var(--services-border-radius-inner);
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid var(--services-gray-200);
}

.kkr-services-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--services-cubic);
}

.kkr-services-card-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background-color: var(--services-light-blue);
  color: var(--services-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: var(--services-transition);
}

.kkr-services-card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  transition: var(--services-transition);
}

.kkr-services-card-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--services-gray-600);
  margin-bottom: 24px;
}

.kkr-services-card-btn {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--services-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--services-transition);
}

.kkr-services-card-btn i {
  margin-left: 8px;
  font-size: 12px;
  transition: var(--services-cubic);
}

/* Hover States for Double-Bezel Card */
.kkr-services-card-outer:hover {
  border-color: var(--services-blue);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(14, 35, 62, 0.06);
}

.kkr-services-card-outer:hover .kkr-services-card-inner {
  border-color: var(--services-blue);
  box-shadow: inset 0 1px 1px rgba(20, 115, 190, 0.1);
}

.kkr-services-card-outer:hover .kkr-services-card-img {
  transform: scale(1.08);
}

.kkr-services-card-outer:hover .kkr-services-card-icon-box {
  background-color: var(--services-blue);
  color: #ffffff;
}

.kkr-services-card-outer:hover .kkr-services-card-title {
  color: var(--services-blue);
}

.kkr-services-card-outer:hover .kkr-services-card-btn {
  color: var(--services-orange);
}

.kkr-services-card-outer:hover .kkr-services-card-btn i {
  transform: translateX(6px);
}

/* 4. SERVICE PROCESS TIMELINE */
.kkr-services-process-section {
  position: relative;
  background-image: url(../images/services-page/process-timeline-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.kkr-services-process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  /* Dark semi-transparent overlay so the image shows through but text is readable */
  z-index: -1;
  pointer-events: none;
}

/* Dark-overlay text overrides for section heading area */
.kkr-services-process-section h2 {
  color: #ffffff;
}

.kkr-services-process-section .kkr-services-section-desc {
  color: rgba(255, 255, 255, 0.8);
}

.kkr-services-process-section .services-micro-badge {
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
}

.kkr-services-process-timeline-container {
  position: relative;
  width: 100%;
  padding: 0 40px; /* Gives visual gutter space for navigation buttons */
}

.kkr-services-process-timeline-scroll {
  overflow-x: auto;
  padding: 20px 10px 40px;
  scroll-snap-type: x mandatory;
  display: block;
  width: 100%;
  position: relative;
  scrollbar-width: none; /* Hide default Firefox scrollbar */
  -ms-overflow-style: none; /* Hide default IE/Edge scrollbar */
}

.kkr-services-process-timeline-scroll::-webkit-scrollbar {
  display: none; /* Hide Chrome/Safari scrollbar */
}

.kkr-timeline-nav-btn {
  position: absolute;
  top: 58%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(20, 115, 190, 0.15);
  color: var(--services-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(14, 35, 62, 0.08);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(4px);
}

.kkr-timeline-nav-btn:hover {
  background: var(--services-orange);
  border-color: var(--services-orange);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(246, 147, 28, 0.35);
  transform: translateY(-50%) scale(1.08);
}

.kkr-timeline-nav-btn.prev {
  left: -10px;
}

.kkr-timeline-nav-btn.next {
  right: -10px;
}

/* Hide navigation buttons on mobile screens where swiping is natural */
@media (max-width: 991px) {
  .kkr-services-process-timeline-container {
    padding: 0 10px;
  }
  .kkr-timeline-nav-btn {
    display: none;
  }
}

.kkr-services-process-timeline-horizontal {
  position: relative;
  display: flex;
  gap: 30px;
  padding-top: 80px;
  width: max-content;
  min-width: 100%;
}

.kkr-services-process-timeline-horizontal::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 36px;
  right: 284px;
  height: 4px;
  background: linear-gradient(90deg, var(--services-blue) 0%, var(--services-orange) 50%, var(--services-blue) 100%);
  border-radius: 4px;
  z-index: 1;
}

.kkr-services-process-step-horizontal {
  width: 320px;
  flex-shrink: 0;
  scroll-snap-align: start;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.kkr-services-process-step-horizontal.active-reveal {
  opacity: 1;
  transform: translateY(0);
}

.kkr-services-process-node-horizontal {
  position: absolute;
  left: 20px;
  top: -60px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--services-navy);
  color: #ffffff;
  display: flex;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
  font-family: var(--services-font);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap !important;
  writing-mode: horizontal-tb !important;
  z-index: 3;
  box-shadow: 0 0 0 4px #ffffff, 0 4px 10px rgba(14, 35, 62, 0.15);
  transition: var(--services-transition);
}

.kkr-services-process-step-horizontal:hover .kkr-services-process-node-horizontal {
  background-color: var(--services-orange);
  box-shadow: 0 0 0 6px #ffffff, 0 6px 15px rgba(246, 147, 28, 0.4);
  transform: scale(1.1);
}

.kkr-services-process-step-horizontal .kkr-services-process-content-wrap {
  background-color: #ffffff;
  border: 1px solid var(--services-gray-200);
  border-radius: var(--services-border-radius);
  padding: 30px;
  box-shadow: 0 10px 30px rgba(14, 35, 62, 0.02);
  position: relative;
  overflow: hidden;
  margin-left: 0 !important;
  height: 100%;
  transition: var(--services-transition);
}

.kkr-services-process-step-horizontal .kkr-services-process-content-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--services-orange);
  transition: var(--services-transition);
}

.kkr-services-process-step-horizontal:hover .kkr-services-process-content-wrap {
  border-color: rgba(20, 115, 190, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(14, 35, 62, 0.08);
}

.kkr-services-process-step-horizontal:hover .kkr-services-process-content-wrap::before {
  height: 100%;
}

.kkr-services-process-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(20, 115, 190, 0.06);
  border: 1px solid rgba(20, 115, 190, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--services-blue);
  flex-shrink: 0;
  transition: var(--services-transition);
}

.kkr-services-process-step-horizontal:hover .kkr-services-process-icon {
  background: var(--services-orange);
  border-color: var(--services-orange);
  color: #ffffff;
  transform: rotate(6deg) scale(1.05);
}

.kkr-services-process-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--services-navy);
  margin-bottom: 0;
  transition: var(--services-transition);
  line-height: 1.35;
}

.kkr-services-process-step-horizontal:hover .kkr-services-process-title {
  color: var(--services-blue);
}

.kkr-services-process-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--services-gray-600);
  margin-bottom: 0;
  margin-top: 15px;
}

@media (max-width: 480px) {
  .kkr-services-process-step-horizontal {
    width: 270px;
  }

  .kkr-services-process-timeline-horizontal::before {
    left: 15px;
    right: 15px;
  }

  .kkr-services-process-node-horizontal {
    left: 15px;
  }
}

/* 5. WHY CHOOSE OUR SERVICES */
.kkr-services-why-section {
  background-color: #ffffff;
}

.kkr-services-why-grid {
  margin-top: 40px;
}

.kkr-services-why-card {
  background-color: var(--services-gray-50);
  border: 1px solid var(--services-gray-200);
  padding: 30px;
  border-radius: var(--services-border-radius-inner);
  height: 100%;
  transition: var(--services-transition);
}

.kkr-services-why-card:hover {
  transform: translateY(-5px);
  background-color: #ffffff;
  border-color: var(--services-blue);
  box-shadow: 0 15px 30px rgba(14, 35, 62, 0.04);
}

.kkr-services-why-icon {
  font-size: 28px;
  color: var(--services-blue);
  margin-bottom: 20px;
}

.kkr-services-why-card:hover .kkr-services-why-icon {
  color: var(--services-orange);
}

.kkr-services-why-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.kkr-services-why-desc {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* 6. FAQ ACCORDION */
.kkr-services-faq-section {
  background-color: var(--services-gray-50);
}

.kkr-services-faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.kkr-services-faq-item {
  background-color: #ffffff;
  border: 1px solid var(--services-gray-200);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--services-transition);
}

.kkr-services-faq-item.active {
  border-color: var(--services-blue);
  box-shadow: 0 10px 25px rgba(14, 35, 62, 0.04);
}

.kkr-services-faq-header {
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.kkr-services-faq-question {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--services-navy);
  transition: var(--services-transition);
}

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

.kkr-services-faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  transition: var(--services-transition);
}

.kkr-services-faq-icon::before,
.kkr-services-faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--services-navy);
  transition: var(--services-transition);
}

.kkr-services-faq-icon::before {
  top: 11px;
  left: 4px;
  width: 16px;
  height: 2px;
}

.kkr-services-faq-icon::after {
  top: 4px;
  left: 11px;
  width: 2px;
  height: 16px;
}

.kkr-services-faq-item.active .kkr-services-faq-icon {
  transform: rotate(45deg);
}

.kkr-services-faq-item.active .kkr-services-faq-icon::before,
.kkr-services-faq-item.active .kkr-services-faq-icon::after {
  background-color: var(--services-blue);
}

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

.kkr-services-faq-content {
  padding: 0 24px 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--services-gray-600);
  border-top: 1px solid var(--services-gray-100);
  padding-top: 16px;
}

/* 7. CALL TO ACTION (CTA) */
.kkr-services-cta-section {
  padding: 100px 0 !important;
  background-color: var(--services-navy);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.kkr-services-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(20, 115, 190, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(246, 147, 28, 0.15) 0%, transparent 40%);
  z-index: 1;
}

.kkr-services-cta-section .container {
  position: relative;
  z-index: 2;
}

.kkr-services-cta-title {
  color: #ffffff !important;
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.kkr-services-cta-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.kkr-services-cta-btn-wrap {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .kkr-services-hero {
    padding: 140px 0 60px !important;
  }

  .kkr-services-hero-title {
    font-size: 38px;
  }

  .kkr-services-section-title {
    font-size: 30px;
  }

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

@media (max-width: 767px) {
  .kkr-services-page-wrapper section {
    padding: 70px 0;
  }

  .kkr-services-hero {
    padding: 120px 0 50px !important;
    text-align: center;
  }

  .kkr-services-hero-content {
    margin: 0 auto;
  }

  .kkr-services-hero-title {
    font-size: 32px;
  }

  .kkr-services-process-timeline::before {
    left: 19px;
  }

  .kkr-services-process-timeline {
    padding-left: 0;
  }

  .kkr-services-process-node {
    left: 9px;
  }

  .kkr-services-process-content-wrap {
    margin-left: 35px;
    padding: 20px;
  }
}

/* ==========================================================================
   TASK 1: U-SHAPE WHY CHOOSE CARDS
   ========================================================================== */
.kkr-why-card-u-shape {
  position: relative;
  background-color: #ffffff;
  border: 1px solid var(--services-gray-200, #e2e8f0);
  border-bottom: 4px solid var(--services-orange, #f6931c);
  padding: 40px 24px;
  text-align: center;
  border-radius: 12px 12px 100px 100px / 12px 12px 35px 35px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);

}

.kkr-why-card-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(246, 147, 28, 0.1);
  color: var(--services-orange, #f6931c);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  border: 1px solid rgba(246, 147, 28, 0.15);
}

.kkr-why-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--services-navy, #0e233e);
  line-height: 1.4;
  margin-bottom: 0;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.kkr-why-card-u-shape:hover {
  background-color: var(--services-orange, #f6931c);
  border-color: var(--services-orange, #f6931c);
  border-bottom-color: rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(246, 147, 28, 0.25);
}

.kkr-why-card-u-shape:hover .kkr-why-card-icon-wrap {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.kkr-why-card-u-shape:hover .kkr-why-card-title {
  color: #ffffff;
}

/* ==========================================================================
   TASK 2: HORIZONTAL BENEFIT CARDS (Task 2 Re-style)
   ========================================================================== */
.kkr-benefit-list-card {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(20, 115, 190, 0.02) 0%, rgba(246, 147, 28, 0.02) 100%);
  background-color: #f8fafc;
  border: 1px solid rgba(20, 115, 190, 0.1);
  border-radius: 12px;
  padding: 20px 24px;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 10px rgba(14, 35, 62, 0.01);
}

.kkr-benefit-icon-only {
  color: var(--services-blue, #1473be);
  font-size: 22px;
  margin-right: 16px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.kkr-benefit-text-box {
  flex-grow: 1;
}

.kkr-benefit-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--services-navy, #0e233e);
  margin-bottom: 0;
  line-height: 1.3;
}

.kkr-benefit-arrow-box {
  color: var(--services-gray-300, #cbd5e1);
  font-size: 12px;
  margin-left: 15px;
  transition: all 0.3s ease;
}

.kkr-benefit-list-card:hover {
  background: linear-gradient(135deg, rgba(20, 115, 190, 0.04) 0%, rgba(246, 147, 28, 0.04) 100%);
  background-color: #f0f5fa;
  border-color: var(--services-blue, #1473be);
  box-shadow: 0 10px 25px rgba(20, 115, 190, 0.08);
  transform: translateY(-4px);
}

.kkr-benefit-list-card:hover .kkr-benefit-icon-only {
  color: var(--services-orange, #f6931c);
  transform: scale(1.15);
}

.kkr-benefit-list-card:hover .kkr-benefit-arrow-box {
  color: var(--services-blue, #1473be);
  transform: translateX(4px);
}

/* ==========================================================================
   TASK: INDUSTRY IMAGE COVER CARDS
   ========================================================================== */
.kkr-industries-section {
  background-color: #ffffff;
}

.kkr-industry-card {
  position: relative;
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.45s ease;
  box-shadow: 0 6px 20px rgba(14, 35, 62, 0.12);
}

.kkr-industry-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px rgba(14, 35, 62, 0.22);
}

.kkr-industry-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14, 35, 62, 0.08) 0%,
    rgba(14, 35, 62, 0.35) 45%,
    rgba(14, 35, 62, 0.82) 100%
  );
  transition: background 0.4s ease;
  z-index: 1;
}

.kkr-industry-card:hover .kkr-industry-card-overlay {
  background: linear-gradient(
    to bottom,
    rgba(20, 115, 190, 0.15) 0%,
    rgba(20, 115, 190, 0.35) 45%,
    rgba(14, 35, 62, 0.9) 100%
  );
}

.kkr-industry-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 2;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  text-align: center;
}

.kkr-industry-card-label i {
  font-size: 18px;
  color: var(--services-orange, #f6931c);
  flex-shrink: 0;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5));
  transition: transform 0.3s ease;
}

.kkr-industry-card:hover .kkr-industry-card-label i {
  transform: scale(1.18);
}

/* ==========================================================================
   CTA SECTION OVERRIDE (use products-page machined bezel style)
   ========================================================================== */
.kkr-services-cta-section.products-cta {
  background-color: #ffffff !important;
  background-image: none !important;
  padding-bottom: 80px !important;
  padding-top: 0px !important;
}

.kkr-services-cta-section.products-cta::before {
  display: none;
}