@import url("global-variables.css");

* {
  --primary-color: #ea1f27;
}

span {
  font-size: inherit;
  line-height: normal;
}

.buy-forex-banner-sec {
  background-color: #ffffff;
  background-image: url("../images/buy-foreign-currency/world-map-dots.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 90%;
  padding: 140px 0 80px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.buy-forex-banner-sec .rbi-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #fff0f2;
  color: #ea1f27;
  font-size: 14px;
  font-weight: 600;
  padding: 2px 14px;
  border-radius: 50px;
  border: 1px solid rgba(230, 35, 41, 0.15);
  margin-bottom: 24px;
}

.buy-forex-banner-sec .rbi-badge i {
  font-size: 14px;
  color: #ea1f27;
}
.forex-travel-hero-img {
  display: flex;
  justify-content: end;
}
.forex-travel-hero-sec h1 {
  margin-bottom: 10px !important;
}
.forex-travel-hero-sec h4 {
  margin-bottom: 10px;
  font-size: 24px;
  color: #000;
  font-weight: 500;
}
.forex-travel-hero-img img {
  width: 100%;
  max-width: 420px;
  height: auto;
}

.outward-remittance-banner-sec .forex-travel-hero-img img,
.forex-travel-hero-sec .forex-travel-hero-img img {
  max-width: 644px;
  /* filter: drop-shadow(0px 40px 60px rgba(0, 0, 0, 0.18)); */
  transform: scale(1.2);
}
.forex-travel-hero-sec {
  background-image: none;
}
.outward-remittance-banner-sec {
  background-image: url("../images/buy-foreign-currency/world-map-dots.png");
}
.buy-forex-banner-sec .buy-forex-title {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1.15;
  color: #0d0d0d;
  margin-bottom: 20px;
  letter-spacing: 0;
  max-width: 660px;
}
/* ====================================================
   BENEFITS OF FOREX TRAVEL CARD SECTION
==================================================== */
.forex-card-benefits-sec {
  padding: 60px 0;
  background: #f7f7f8;
  position: relative;
  overflow: hidden;
}

.forex-card-benefits-sec .heading {
  text-align: center;
  margin-bottom: 60px;
}

/* Benefits Grid Layout */
.benefits-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 30px;
  align-items: center;
  position: relative;
}

/* Full Overlay SVG Dotted Connecting Lines */
.connector-lines-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.connecting-svg {
  width: 100%;
  height: 100%;
}

.connecting-svg .line-pulse {
  animation: flowPulse 2.5s linear infinite;
}

.connecting-svg .line-pulse.reverse {
  animation: flowPulseReverse 2.5s linear infinite;
}

@keyframes flowPulse {
  0% {
    stroke-dashoffset: 56;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes flowPulseReverse {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 56;
  }
}

.benefits-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Individual Benefit Card */
.benefit-card {
  background: rgba(255, 255, 255, 0.002);
  box-shadow:
    0px 1px 2px rgba(13, 13, 15, 0.04),
    0px 8px 24px -12px rgba(13, 13, 15, 0.12);
  border-radius: 20px;
  padding: 22px;
  display: flex;
  border: 1px solid #e2e3e5;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  z-index: 3;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 14px 30px rgba(234, 31, 39, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.03);
  border-color: rgba(234, 31, 39, 0.25);
}

.benefit-card .benefit-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff0f2;
  border: 1px solid rgba(234, 31, 39, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform 0.35s ease,
    background-color 0.35s ease;
}

.benefit-card .benefit-icon-box i {
  font-size: 18px;
  color: #ea1f27;
  transition: color 0.35s ease;
}

.benefit-card:hover .benefit-icon-box {
  transform: scale(1.1);
  background: #ea1f27;
}

.benefit-card:hover .benefit-icon-box i {
  color: #ffffff;
}

.benefit-card:hover .benefit-icon-box svg path,
.benefit-card:hover .benefit-icon-box svg circle,
.benefit-card:hover .benefit-icon-box svg rect {
  stroke: #ffffff;
}

.benefit-card .benefit-text h4 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.benefit-card .benefit-text p {
  font-size: 16px;
  color: #58585b;
  margin: 0;
  line-height: 1.5;
  font-weight: 400;
}

/* ----------------------------------------------------
   CENTER 3D FLIPPING CARD & ANIMATED CIRCLES STAGE
---------------------------------------------------- */
.center-card-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

/* Animated Concentric Background Rings */
.animated-card-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 440px;
  height: 440px;
  pointer-events: none;
  z-index: 1;
}

.card-bg-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px dashed rgba(234, 31, 39, 0.5);
  pointer-events: none;
}

.card-bg-ring.ring-1 {
  width: 245px;
  height: 245px;
  animation: rotateRing 25s linear infinite;
  border-color: rgb(234 31 39 / 53%);
}

.card-bg-ring.ring-2 {
  width: 330px;
  height: 330px;
  animation: rotateRingReverse 35s linear infinite;
  border-color: rgb(234 31 39 / 58%);
}

.card-bg-ring.ring-3 {
  width: 430px;
  height: 430px;
  animation: pulseRing 4s ease-in-out infinite alternate;
  border-color: rgb(234 31 39 / 52%);
}

@keyframes rotateRing {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rotateRingReverse {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes pulseRing {
  0% {
    transform: translate(-50%, -50%) scale(0.96);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.04);
    opacity: 1;
  }
}

.dotted-connectors-svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* 3D Interactive Parallax Tilt Container */
.card-tilt-wrapper {
  width: 340px;
  height: 215px;
  perspective: 1000px;
  position: relative;
  z-index: 5;
  cursor: pointer;
}

.card-tilt-inner {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.35),
    0 8px 18px rgba(234, 31, 39, 0.2);
}

.card-tilt-inner .card-png-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: inset 0 0 1px rgba(255, 255, 255, 0.2);
}

.card-glare-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-3d-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.22),
    0 8px 18px rgba(234, 31, 39, 0.15);
  border-radius: 18px;
}

.card-3d-wrapper.is-flipped .card-3d-inner {
  transform: rotateY(180deg);
}

.card-flip-side {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 18px;
  overflow: hidden;
}

.card-flip-side.card-front {
  transform: rotateY(0deg);
}

.card-flip-side.card-back {
  transform: rotateY(180deg);
}

.card-png-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

/* Fallback Styled Transcorp Visa Card */
.styled-forex-card {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #b8161d 0%, #700a0e 40%, #15161a 100%);
  border-radius: 18px;
  padding: 20px 24px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  text-align: left;
  position: relative;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.styled-forex-card .card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.styled-forex-card .brand-logo {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #ffffff;
  font-style: italic;
}

.styled-forex-card .visa-logo {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #ffffff;
  font-style: italic;
}

.styled-forex-card .card-chip-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.styled-forex-card .card-chip {
  width: 36px;
  height: 26px;
  background: linear-gradient(135deg, #ffe082 0%, #ffb300 100%);
  border-radius: 5px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.styled-forex-card .card-number {
  font-size: 16px;
  letter-spacing: 2px;
  font-family: monospace;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.styled-forex-card .card-holder-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
}

/* Card Back Fallback */
.styled-forex-card.back-card-fallback {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.styled-forex-card .card-magnetic-strip {
  width: 100%;
  height: 38px;
  background: #111;
  margin-top: 20px;
}

.styled-forex-card .card-cvv-row {
  display: flex;
  align-items: center;
  padding: 12px 20px;
}

.styled-forex-card .sign-strip {
  flex: 1;
  height: 30px;
  background: #e0e0e0;
  font-size: 10px;
  color: #444;
  display: flex;
  align-items: center;
  padding-left: 10px;
}

.styled-forex-card .cvv-box {
  width: 45px;
  height: 30px;
  background: #ffffff;
  color: #111;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.styled-forex-card .card-back-info {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.6);
  padding: 10px 20px;
  line-height: 1.3;
}

/* ====================================================
   HOW TO GET A FOREX TRAVEL CARD SECTION
==================================================== */
.how-get-forex-sec {
  padding: 60px 0;
  position: relative;
}

.process-steps-wrapper {
  position: relative;
  margin-top: 50px;
}

.process-connector-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 62px;
  z-index: 1;
  pointer-events: none;
}

.process-connector-line .connector-svg {
  width: 100%;
  height: 100%;
}

.process-connector-line .mask-grow-line-5 {
  stroke-dasharray: 820;
  stroke-dashoffset: 820;
  animation: fillLineFromZero5 4.5s linear infinite;
}

.process-connector-line .mask-grow-line-4 {
  stroke-dasharray: 750;
  stroke-dashoffset: 750;
  animation: fillLineFromZero4 4.5s linear infinite;
}

.process-connector-line .chevron-fixed {
  opacity: 0.95;
}

@keyframes fillLineFromZero5 {
  0% {
    stroke-dashoffset: 820;
  }
  45% {
    stroke-dashoffset: 0;
  }
  60% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -820;
  }
}

@keyframes fillLineFromZero4 {
  0% {
    stroke-dashoffset: 750;
  }
  45% {
    stroke-dashoffset: 0;
  }
  60% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -750;
  }
}

/* Steps 5 Grid Layout */
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.process-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Step Icon Node Circles */
.step-icon-node {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  z-index: 3;
}

.step-icon-node.node-red {
  background: #ea1f27;
  box-shadow: 0 8px 24px rgba(234, 31, 39, 0.35);
}

.step-icon-node.node-dark {
  background: linear-gradient(106.15deg, #ea1f27 -13.54%, #0b0b0b 93.48%);
  box-shadow:
    0px 4px 6px rgba(0, 0, 0, 0.1),
    0px 10px 15px rgba(0, 0, 0, 0.1);
}

.step-icon-node i {
  font-size: 22px;
  color: #ffffff;
}

.process-step-item:hover .step-icon-node {
  transform: translateY(-6px) scale(1.1);
}

.process-step-item:hover .step-icon-node.node-red {
  box-shadow: 0 14px 32px rgba(234, 31, 39, 0.55);
}

.process-step-item:hover .step-icon-node.node-dark {
  box-shadow: 0 14px 32px rgba(234, 31, 39, 0.45);
}

/* Step Text Content */
.process-step-item .step-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
  line-height: 1.3;
}

.process-step-item .step-content p {
  font-size: 16px;
  color: #58585b;
  margin: 0;
  line-height: 1.5;
  font-weight: 400;
}

/* 4-Steps Process Section (How to Send Money Abroad) */
.four-steps-process-sec .process-steps-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ====================================================
   BECOME OUR REMITTANCE PARTNER SECTION
==================================================== */

.become-partner-card {
  background: #ffffff;
  border: 1px solid #e4e5e8;
  border-radius: 28px;
  padding: 60px 56px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
  transition: all 0.35s ease;
}

.become-partner-card:hover {
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.05);
  border-color: #dce2ed;
}

.partner-title {
  font-size: 38px;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.partner-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #58585b;
  margin-bottom: 35px;
  line-height: 1.5;
}

/* 2-Column Benefit Pills */
.partner-benefit-pill {
  background: #ffffff;
  border: 1px solid #e6eaf2;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  height: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.partner-benefit-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(234, 31, 39, 0.1);
  border-color: rgba(234, 31, 39, 0.25);
}

.pill-icon-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffefed;
  border: 1px solid rgba(234, 31, 39, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.partner-benefit-pill:hover .pill-icon-badge {
  background: #ea1f27;
  border-color: #ea1f27;
}

.partner-benefit-pill:hover .pill-icon-badge svg {
  stroke: #ffffff;
}

.pill-title {
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  line-height: 1.35;
}

/* CTA Join Now Button */
.partner-cta-wrap {
  margin-top: 32px;
}

.btn-join-now {
  display: inline-block;
  background: #ea1f27;
  color: #ffffff !important;
  padding: 10px 41px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(234, 31, 39, 0.3);
  transition: all 0.3s ease;
}

.btn-join-now:hover {
  background: #000;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(104, 103, 103, 0.42);
}

/* 3D Illustration Image */
.become-partner-img-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.become-partner-img-box img {
  max-width: 485px;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
  filter: drop-shadow(0px 20px 40px rgba(0, 0, 0, 0.18));
}

.become-partner-card:hover .become-partner-img-box img {
  transform: translateY(-4px) scale(1.02);
}

.what-is-remittance-card {
  background: #f7f7f8;
  border: 1px solid #e6eaf2;
  border-radius: 28px;
  padding: 80px 60px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
  transition: all 0.35s ease;
}

.what-is-remittance-card:hover {
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.05);
  border-color: #e5ebf2;
}

.what-is-remittance-img-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.what-is-remittance-img-box img {
  max-width: 560px;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
  /* filter: drop-shadow(0px 20px 40px rgba(0, 0, 0, 0.18)); */
}

.what-is-remittance-card:hover .what-is-remittance-img-box img {
  transform: translateY(-4px) scale(1.02);
}

.what-is-remittance-content .what-is-title {
  font-size: 40px;
  font-weight: 700;
  color: #000000;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.what-is-remittance-content .what-is-desc {
  font-size: 16px;
  font-weight: 400;
  color: #58585b;
  line-height: 1.65;
  margin-bottom: 28px;
}

.remittance-tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.remittance-tag-pill {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e4e5e8;
  border-radius: 50px;
  padding: 9px 22px;
  font-size: 14.5px;
  font-weight: 500;
  color: #1a1a1a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.remittance-tag-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(234, 31, 39, 0.35);
  box-shadow: 0 6px 16px rgba(234, 31, 39, 0.12);
  color: #ea1f27;
}

/* ====================================================
   TYPES OF OUTWARD REMITTANCE SLIDER SECTION
==================================================== */
.types-remittance-sec {
  padding: 60px 0;
  overflow: hidden;
}

.types-remittance-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}

.types-main-title {
  font-size: 40px;
  font-weight: 700;
  color: #000000;
  margin: 0;
}

/* Slider Nav Arrows */
.slider-nav-arrows {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Dynamic Slider Nav Arrow Buttons */
.slider-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #ea1f27;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(234, 31, 39, 0.3);
  transition: all 0.3s ease;
}

.slider-arrow-btn:hover:not(.swiper-button-disabled) {
  background: #d01820;
  box-shadow: 0 6px 18px rgba(234, 31, 39, 0.45);
  transform: scale(1.06);
}

.slider-arrow-btn.swiper-button-disabled,
.slider-arrow-btn:disabled {
  background: #eef1f5 !important;
  color: #9aa0a6 !important;
  box-shadow: none !important;
  cursor: not-allowed;
  pointer-events: none;
  transform: none !important;
}

/* Swiper Container Adjustments */
.typesRemittanceSwiper {
  width: 100%;
  padding: 10px 4px 25px 4px;
}

.typesRemittanceSwiper .swiper-slide {
  height: auto;
  display: flex;
}

.types-card-inner {
  background: #ffffff;
  border: 1px solid #e6eaf2;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.types-card-inner:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.09);
  border-color: rgba(234, 31, 39, 0.25);
}

.types-card-inner .card-img-wrap {
  width: 100%;
  height: 150px;
  overflow: hidden;
  position: relative;
  background: #f4f6f9;
}

.types-card-inner .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.types-card-inner:hover .card-img-wrap img {
  transform: scale(1.06);
}

.types-card-inner .card-content-body {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.types-card-inner .card-title {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  line-height: 1.35;
  margin-bottom: 8px;
}

.types-card-inner .card-desc {
  font-size: 16px;
  font-weight: 400;
  color: #58585b;
  line-height: 1.5;
  margin: 0;
}

/* ====================================================
   WHY CHOOSE TRANSCORP SCROLL SECTION (FULL SCREEN 4 CARDS)
==================================================== */

.why-choose-pinned-wrapper {
  position: relative;
  width: 100%;
}

.why-choose-scroll-sec {
  position: relative;
  width: 100%;
  padding: 60px 0 50px 0;
  background: #ffffff;
  overflow: hidden;
  z-index: 10;
  box-sizing: border-box;
}

.why-choose-scroll-sec .heading {
  margin-bottom: 25px;
  padding: 0 20px;
}

.why-scroll-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 40px 85px 40px;
}

/* Background Horizontal Connecting Line */
.scroll-connecting-line {
  position: absolute;
  top: 208px;
  left: 0;
  width: 4000px;
  height: 1px;
  background: #ea1f27;
  z-index: 1;
}

.why-scroll-track {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: max-content;
  position: relative;
  z-index: 2;
  will-change: transform;
  transition: transform 0.1s ease-out;
}

/* Exactly 4 cards fill full screen width minus side padding and gaps */
.why-card-item {
  width: calc((100vw - 80px - 72px) / 4);
  min-width: 250px;
  min-height: 185px;
  background: #ffffff;
  border: 1px solid #e2e3e5;
  border-radius: 20px;
  padding: 30px;
  box-shadow:
    0px 1px 2px rgba(13, 13, 15, 0.04),
    0px 8px 24px -12px rgba(13, 13, 15, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.why-card-item.card-odd {
  margin-top: 0;
}

.why-card-item.card-even {
  margin-top: 55px;
}

.why-card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(234, 31, 39, 0.12);
  border-color: rgba(234, 31, 39, 0.25);
}

.card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.card-num {
  font-weight: 700;
  font-size: 60px;
  line-height: normal;
  letter-spacing: -2.7px;
  color: #dedede;
}

.card-icon-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background: #ffefed;
  border: 1px solid rgba(234, 31, 39, 0.18);
}

.why-card-item:hover .card-icon-badge {
  background: #ea1f27;
}

.why-card-item:hover .card-icon-badge svg {
  stroke: #ffffff;
}

.card-body-content .card-tag {
  display: block;
  color: #ea1f27;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  margin-bottom: 8px;
}

.card-body-content .card-title {
  margin: 0;
  font-weight: 600;
  font-size: 20px;
  line-height: 29px;
  color: #000000;
}

.buy-forex-banner-sec .buy-forex-title .text-red {
  color: #ea1f27;
  font-size: 3.75rem;
  font-weight: 700;
  display: contents;
  width: fit-content;
}

.buy-forex-banner-sec .buy-forex-desc {
  font-size: 1rem;
  line-height: 1.65;
  color: #58585b;
  margin-bottom: 32px;
  max-width: 650px;
}

.buy-forex-banner-sec .btn-get-rate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ea1f27;
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 500;
  padding: 11px 31px;
  border-radius: 50px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(230, 35, 41, 0.25);
}

.buy-forex-banner-sec .btn-get-rate:hover {
  background-color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/* Hero Section Trust Badges */
.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-trust-badges .trust-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #e5e9f0;
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}
.hero-trust-badges .trust-badge-pill span {
  color: #000;
}

.hero-trust-badges .trust-badge-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(234, 31, 39, 0.12);
  border-color: rgba(234, 31, 39, 0.3);
}

.hero-trust-badges .trust-badge-pill svg {
  flex-shrink: 0;
}

@property --calc-gradient-angle {
  syntax: "<angle>";
  initial-value: 153.01deg;
  inherits: false;
}

.forex-calc-card {
  --calc-gradient-angle: 153.01deg;
  background: linear-gradient(
    var(--calc-gradient-angle),
    rgba(227, 30, 36, 0.35) 0%,
    rgba(16, 17, 20, 0.06) 40%,
    rgba(16, 17, 20, 0) 70%
  );
  border-radius: 28px;
  padding: 10px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.07);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.forex-calc-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    153.01deg,
    rgba(227, 30, 36, 0.35) 0%,
    rgba(16, 17, 20, 0.06) 40%,
    rgba(16, 17, 20, 0) 70%
  );
  animation: rotateCalcBg 8s linear infinite;
  z-index: -1;
}

@keyframes rotateCalcBg {
  0% {
    transform: rotate(0deg);
    --calc-gradient-angle: 0deg;
  }
  100% {
    transform: rotate(360deg);
    --calc-gradient-angle: 360deg;
  }
}

.forex-calc-card-inner {
  background: rgba(255, 255, 255, 0.55);
  border-radius: 22px;
  padding: 26px;
  position: relative;
  z-index: 2;
}
.calc-tabs-wrapper {
  display: flex;
  background: #faf9f7;
  border-radius: 50px;
  padding: 5px;
  margin-bottom: 24px;
}

.calc-tab {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #7a7d87;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.calc-tab.active {
  color: #ffffff !important;
  background: #101114 !important;
  box-shadow: 0px 6px 16px -6px rgba(16, 17, 20, 0.4);
}

/* ---------------------------------------------------- */
/* Custom Pure CSS Infinite Marquee Ticker (No Marquee Tag) */
/* ---------------------------------------------------- */
.rates-ticker-bar {
  width: 100%;
  background: #ea1f27;
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.custom-marquee-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
  animation: customMarqueeAnimation 35s linear infinite;
}

.rates-ticker-bar:hover .custom-marquee-track {
  animation-play-state: paused;
}

.ticker-content-group {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 16px;
}

.ticker-pair {
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
}

.ticker-val {
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
}

.ticker-change {
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
}

.ticker-sep {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 10px;
}

@keyframes customMarqueeAnimation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Field Input Box */
.calc-field-group {
  margin-bottom: 18px;
}

.calc-field-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #7a7d87;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.calc-input-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid #e6e6ec;
  border-radius: 20px;
  padding: 8px 18px;
  min-height: 60px;
  transition: border-color 0.3s ease;
}

.calc-input-box:focus-within,
.calc-input-box:hover {
  border-color: #bbbbcc;
}

.curr-select-wrapper {
  position: relative;
  display: inline-block;
}

.curr-select-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8f8fb;
  padding: 6px 14px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s ease;
}

.curr-select-btn:hover {
  background: #efeff5;
}

.curr-select-btn .curr-arrow {
  font-size: 10px;
  color: #666666;
  transition: transform 0.2s ease;
}

.curr-select-wrapper.open .curr-arrow {
  transform: rotate(180deg);
}

.curr-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  padding: 8px;
  z-index: 100;
  display: none;
  max-height: 280px;
  overflow-y: auto;
}

.curr-select-wrapper.open .curr-dropdown-menu {
  display: block;
  animation: currDropdownFade 0.2s ease-out;
}

@keyframes currDropdownFade {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.curr-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.curr-dropdown-item:hover {
  background: #f4f4f8;
}

.curr-dropdown-item.active {
  background: #fff0f2;
}

.curr-dropdown-item .curr-flag {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}

.curr-dropdown-item .item-code {
  font-size: 14px;
  font-weight: 700;
  color: #0d0d0d;
}

.curr-dropdown-item .item-name {
  font-size: 12px;
  color: #777788;
  margin-left: auto;
}

.curr-select-btn.readonly-btn {
  cursor: default;
}

.curr-select-btn .curr-flag {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}

.curr-select-btn .curr-flag-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
}

.curr-select-btn .curr-code {
  font-size: 14px;
  font-weight: 700;
  color: #0d0d0d;
}

.curr-select-btn .curr-arrow {
  font-size: 10px;
  color: #666666;
}

.calc-amount-input {
  border: none;
  background: transparent;
  text-align: right;
  font-size: 22px;
  font-weight: 800;
  color: #0d0d0d;
  letter-spacing: -0.5px;
  width: 100%;
  outline: none;
}

/* Live Exchange Rate Bar */
.live-rate-bar {
  background: #000000;
  border-radius: 20px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 24px 0 20px;
}

.live-rate-bar .rate-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #888888;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.live-rate-bar .rate-value {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.live-rate-bar .save-badge {
  background: #222226;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 12px;
  line-height: normal;
}

/* Submit Button */
.btn-calc-submit {
  display: block;
  width: 100%;
  background: #ea1f27;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  padding: 17px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(230, 35, 41, 0.35);
  transition: all 0.3s ease;
  margin-bottom: 12px;
}

.btn-calc-submit:hover {
  background: #000000;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

/* Footer note */
.calc-footer-note {
  font-size: 12px;
  color: #7a7d87;
  text-align: center;
  margin: 0;
  font-weight: 500;
  line-height: normal;
  margin-top: 20px;
}

.rates-ticker-bar {
  background-color: #ea1f27;
  color: #ffffff;
  padding: 7px 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  white-space: nowrap;
  z-index: 10;
}

.rates-marquee-tag {
  vertical-align: middle;
  display: block;
}

.rates-marquee-tag .ticker-pair {
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
  margin-left: 24px;
  letter-spacing: 0.3px;
}

.rates-marquee-tag .ticker-val {
  font-weight: 500;
  font-size: 14px;
  color: #ffffff;
  margin-left: 8px;
}

.rates-marquee-tag .ticker-change {
  font-weight: 500;
  font-size: 14px;
  color: #ffffff;
  margin-left: 6px;
}

.rates-marquee-tag .ticker-sep {
  font-weight: 300;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-left: 24px;
}

.ticker-item strong {
  font-weight: 800;
  letter-spacing: 0.3px;
}

.ticker-item .rate-val {
  font-weight: 600;
}

.ticker-item .rate-change {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.95;
}

.ticker-item .rate-change.text-green {
  color: #ffffff;
}

.ticker-item .rate-change.text-red {
  color: #ffd1d3;
}

.ticker-slash {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 300;
  margin: 0 6px;
}

.foreign-currencies-sec {
  background-color: #fff;
  padding: 70px 0;
  position: relative;
}

.heading {
  text-align: center;
  margin-bottom: 40px;
}

.main-title {
  font-weight: 700;
  font-size: 40px;
  line-height: 42px;
  text-align: center;
  color: #000000;
}

.sub-heading {
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  text-transform: capitalize;
  color: #58585b;
  margin-top: 16px;
  text-align: center;
}

.foreign-currencies-sec .currency-card {
  border: 1px solid #e6eaf2;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  height: 100%;
  padding: 20px 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
}

.foreign-currencies-sec .currency-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(230, 35, 41, 0.12);
  border-color: rgba(230, 35, 41, 0.3);
}

.foreign-currencies-sec .currency-card .curr-flag {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.foreign-currencies-sec .currency-card .curr-info h5 {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin: 0 0 3px 0;
  line-height: normal;
}

.foreign-currencies-sec .currency-card .curr-info p {
  font-size: 14px;
  color: #58585b;
  margin: 0;
  font-weight: 500;
  line-height: normal;
}

.foreign-currencies-sec .btn-view-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ea1f27;
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 38px;
  border-radius: 50px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(230, 35, 41, 0.25);
  margin-top: 30px;
}

.foreign-currencies-sec .btn-view-more:hover {
  background-color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/* Documents Required Section */
.docs-required-sec {
  background-color: #ffffff;
  padding: 80px 0;
  position: relative;
}

.docs-required-sec .docs-img-card {
  display: flex;
  align-items: center;
  justify-content: center;
}

.docs-required-sec .docs-img-card img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0px 1px 24px rgba(0, 0, 0, 0.05));
}

.docs-required-sec .doc-badge-pill {
  background: #ffffff;
  border: 1px solid #eef0f4;
  border-radius: 20px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  height: 100%;
}

.docs-required-sec .doc-badge-pill:hover {
  border-color: #ea1f27;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(234, 31, 39, 0.08);
}

.docs-required-sec .badge-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff0f2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.docs-required-sec .badge-icon svg {
  width: 18px;
  height: 18px;
}

.docs-required-sec .badge-text {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
}

/* Why Choose Transcorp Section */
.why-choose-sec {
  background-color: #ffffff;
  position: relative;
}

.why-choose-card {
  background: #ffffff;
  border: 1px solid #e6eaf2;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.03);
}

.why-col {
  border-right: 1px solid #e6eaf2;
  border-bottom: 1px solid #e6eaf2;
}

.why-col:nth-child(3n) {
  border-right: none;
}

.why-col:nth-last-child(-n + 3) {
  border-bottom: none;
}

.why-item {
  padding: 55px 35px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.why-item:hover {
  background: #fffcfc;
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #ea1f27;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  box-shadow: 0 6px 16px rgba(234, 31, 39, 0.25);
  transition: transform 0.3s ease;
}

.why-item:hover .why-icon {
  transform: scale(1.08);
}

.why-title {
  font-size: 20px;
  font-weight: 500;
  color: #000000;
  margin: 25px 0 10px 0;
  line-height: 1.35;
}

.why-desc {
  font-size: 18px;
  line-height: 1.6;
  color: #58585b;
  margin: 0;
}

.faq-sec {
  background-color: #f7f7f8;
  padding: 80px 0;
  position: relative;
  margin: 60px 0 !important;
}

.custom-faq-accordion {
  border-top: 1px solid #e0ded8;
}

.custom-faq-accordion .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid #e0ded8;
  border-radius: 0 !important;
}

.custom-faq-accordion .accordion-button {
  background: transparent !important;
  box-shadow: none !important;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.3s ease;
  border: none !important;
}
.custom-faq-accordion .accordion-header {
  line-height: normal;
  margin-top: 0;
}
.custom-faq-accordion .accordion-button:not(.collapsed) {
  color: #ea1f27;
}

.custom-faq-accordion .accordion-button::after {
  display: none;
}

.custom-faq-accordion .faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #f0f2f5;
  color: #333333;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
  margin-left: 15px;
  transition: all 0.3s ease;
}

.custom-faq-accordion .faq-icon::before {
  content: "+";
  line-height: 1;
}

.custom-faq-accordion .accordion-button:not(.collapsed) .faq-icon {
  background-color: #ea1f27;
  color: #ffffff;
}

.custom-faq-accordion .accordion-button:not(.collapsed) .faq-icon::before {
  content: "−";
  font-size: 16px;
  line-height: 1;
}

.custom-faq-accordion .accordion-body {
  padding: 0 0 24px 0;
  font-size: 18px;
  line-height: 1.65;
  color: #58585b;
}

.how-buy-forex-sec {
  background-color: #070304;
  background-image:
    linear-gradient(rgba(230, 35, 41, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230, 35, 41, 0.07) 1px, transparent 1px),
    url("../images/buy-foreign-currency/how-buy-foreign-currency-bg.png");
  background-size:
    45px 45px,
    45px 45px,
    cover;
  background-position:
    center center,
    center center,
    center;
  background-repeat: repeat, repeat, no-repeat;
  padding: 90px 0;
  position: relative;
  color: #ffffff;
  overflow: hidden;
}

.how-buy-forex-sec .sec-sub-title {
  display: block;
  color: #cccccc;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;
}

.how-buy-forex-sec .sec-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  text-align: center;
  margin-bottom: 70px;
  letter-spacing: -0.5px;
}

.how-buy-forex-sec .sec-title .text-red {
  color: #ea1f27;
}

.how-buy-forex-sec .timeline-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.how-buy-forex-sec .timeline-line-base {
  position: absolute;
  top: 114px;
  left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-50%);
  z-index: 1;
}

.how-buy-forex-sec .timeline-line-progress {
  position: absolute;
  top: 114px;
  left: 50%;
  width: 2px;
  height: 0%;
  background: linear-gradient(180deg, #ff4d52 0%, #ea1f27 100%);
  box-shadow:
    0 0 14px #ea1f27,
    0 0 28px rgba(230, 35, 41, 0.85);
  transform: translateX(-50%);
  z-index: 1;
  transition: height 0.1s ease-out;
}

.how-buy-forex-sec .timeline-item {
  position: relative;
  margin-bottom: 50px;
}

.how-buy-forex-sec .timeline-item:last-child {
  margin-bottom: 0;
}

/* Node Dot */
.how-buy-forex-sec .timeline-node {
  position: absolute;
  top: 114px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(107.93deg, #bb5858 -2.39%, #360808 92.36%);
  z-index: 3;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.how-buy-forex-sec .timeline-item.active .timeline-node {
  background: radial-gradient(circle, #ff5c62 0%, #ea1f27 100%);
  border-color: #ffffff;
  box-shadow:
    0 0 16px #ea1f27,
    0 0 32px rgba(230, 35, 41, 0.95);
  transform: translate(-50%, -50%) scale(1.35);
}

.how-buy-forex-sec .timeline-connector {
  position: absolute;
  top: 114px;
  height: 2px;
  z-index: 2;
  pointer-events: none;
}

.how-buy-forex-sec .timeline-connector.left {
  right: 50%;
  width: 57px;
  background: repeating-linear-gradient(
    90deg,
    #6c1216 0,
    #6c1216 3px,
    transparent 3px,
    transparent 8px
  );
}

.how-buy-forex-sec .timeline-connector.right {
  left: 50%;
  width: 57px;
  background: repeating-linear-gradient(
    90deg,
    #6c1216 0,
    #6c1216 3px,
    transparent 3px,
    transparent 8px
  );
}

/* Arrowhead pointing to card on left side */
.how-buy-forex-sec .timeline-connector.left::before {
  content: "";
  position: absolute;
  left: 0;
  top: -4px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 7px solid #6c1216;
  transition: all 0.3s ease;
}

/* Arrowhead pointing to card on right side */
.how-buy-forex-sec .timeline-connector.right::before {
  content: "";
  position: absolute;
  right: 0;
  top: -4px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #6c1216;
  transition: all 0.3s ease;
}

/* Active Connector highlight */
.how-buy-forex-sec .timeline-item.active .timeline-connector.left,
.how-buy-forex-sec .timeline-item.active .timeline-connector.right {
  background: repeating-linear-gradient(
    90deg,
    #ea1f27 0,
    #ea1f27 4px,
    transparent 4px,
    transparent 10px
  );
  filter: drop-shadow(0 0 5px rgba(230, 35, 41, 0.7));
}

.how-buy-forex-sec .timeline-item.active .timeline-connector.left::before {
  border-right-color: #ea1f27;
  filter: drop-shadow(0 0 6px #ea1f27);
}

.how-buy-forex-sec .timeline-item.active .timeline-connector.right::before {
  border-left-color: #ea1f27;
  filter: drop-shadow(0 0 6px #ea1f27);
}

.how-buy-forex-sec .glass-card {
  background: rgba(14, 14, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 15px 25px;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.75),
    inset 0 1px 1px rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
  position: relative;
}

.how-buy-forex-sec .left-step .glass-card::before {
  content: "";
  position: absolute;
  top: -8px;
  bottom: -8px;
  left: -8px;
  right: -8px;
  border-radius: 28px;
  padding: 2.5px;
  background: linear-gradient(
    270deg,
    #a3151b 0%,
    #a3151b 8%,
    rgba(230, 35, 41, 0.3) 14%,
    transparent 20%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  filter: drop-shadow(0 0 8px rgba(230, 35, 41, 0.75));
  z-index: 1;
  transition: all 0.4s ease;
}
.timeline-item.left-step.active .glass-card::before {
  background: linear-gradient(
    270deg,
    #ea1f27 0%,
    #ea1f27 8%,
    rgba(230, 35, 41, 0.3) 14%,
    transparent 20%
  );
}
.how-buy-forex-sec .left-step .glass-card {
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.75),
    10px 0 25px -5px rgba(230, 35, 41, 0.2);
}

.how-buy-forex-sec .right-step .glass-card::before {
  content: "";
  position: absolute;
  top: -8px;
  bottom: -8px;
  left: -8px;
  right: -8px;
  border-radius: 28px;
  padding: 2.5px;
  background: linear-gradient(
    90deg,
    #ff1e27 0%,
    #ea1f27 8%,
    rgba(230, 35, 41, 0.3) 14%,
    transparent 20%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  filter: drop-shadow(0 0 8px rgba(230, 35, 41, 0.75));
  z-index: 1;
  transition: all 0.4s ease;
}

.how-buy-forex-sec .right-step .glass-card {
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.75),
    -10px 0 25px -5px rgba(230, 35, 41, 0.2);
}

.how-buy-forex-sec .timeline-item.active.left-step .glass-card {
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.85),
    15px 0 35px -5px rgba(230, 35, 41, 0.45),
    inset -10px 0 25px -12px rgba(230, 35, 41, 0.25);
  border-color: rgba(255, 255, 255, 0.2);
}

.how-buy-forex-sec .timeline-item.active.left-step .glass-card::before {
  filter: drop-shadow(0 0 12px #ea1f27);
}

.how-buy-forex-sec .timeline-item.active.right-step .glass-card {
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.85),
    -15px 0 35px -5px rgba(230, 35, 41, 0.45),
    inset 10px 0 25px -12px rgba(230, 35, 41, 0.25);
  border-color: rgba(255, 255, 255, 0.2);
}

.how-buy-forex-sec .timeline-item.active.right-step .glass-card::before {
  filter: drop-shadow(0 0 12px #ea1f27);
}

.how-buy-forex-sec .glass-card:hover {
  transform: translateY(-4px);
}

.how-buy-forex-sec .glass-card .card-icon {
  font-size: 22px;
  color: #f0f0f5;
  margin-bottom: 16px;
  display: inline-block;
}

.how-buy-forex-sec .glass-card h4 {
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.how-buy-forex-sec .glass-card p {
  font-size: 16px;
  color: #b9b9bb;
  line-height: 28px;
  margin: 0;
}

/* ========================================================================= */
/* BUSINESS ASSOCIATE - 02. STATS / METRICS STRIP SECTION                    */
/* ========================================================================= */

.ba-stats-sec {
  position: relative;
}

.ba-stats-card {
  background-color: #fff8f8;
  border: 1px solid #f7cbc1;
  border-radius: 20px;
  padding: 32px 20px;
  box-shadow: 0 4px 20px rgba(234, 31, 39, 0.04);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.ba-stats-sec.ba-stats-animated .ba-stats-card {
  opacity: 0;
  transform: translateY(24px);
}

.ba-stats-sec.ba-stats-animated.is-in-view .ba-stats-card {
  opacity: 1;
  transform: translateY(0);
}

.ba-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
}

.ba-stat-item {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid #ebdada;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease;
}

.ba-stat-item:last-child {
  border-right: none;
}

.ba-stats-sec.ba-stats-animated .ba-stat-item {
  opacity: 0;
  transform: translateY(16px);
}

.ba-stats-sec.ba-stats-animated.is-in-view .ba-stat-item {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--item-index, 0) * 0.08s);
}

@media (hover: hover) and (pointer: fine) {
  .ba-stat-item:hover {
    transform: translateY(-4px);
  }
  .ba-stat-item:hover .ba-stat-number {
    transform: scale(1.05);
  }
}

.ba-stat-number {
  font-size: 38px;
  font-weight: 700;
  color: #ea1f27;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  transition: transform 0.3s ease;
}

.ba-odometer.odometer {
  font-size: inherit;
  font-family: inherit !important;
  font-weight: 700;
  color: #ea1f27 !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  vertical-align: middle !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #ea1f27 !important;
  text-fill-color: #ea1f27 !important;
}

.ba-odometer.odometer .odometer-inside {
  display: inline-flex !important;
  align-items: center !important;
  vertical-align: middle !important;
  line-height: 1 !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #ea1f27 !important;
  text-fill-color: #ea1f27 !important;
}

.ba-odometer.odometer .odometer-digit {
  display: inline-flex !important;
  align-items: center !important;
  vertical-align: middle !important;
  position: relative !important;
  line-height: 1 !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #ea1f27 !important;
  text-fill-color: #ea1f27 !important;
}

.ba-odometer.odometer .odometer-digit-spacer {
  display: inline-block !important;
  vertical-align: middle !important;
  visibility: hidden !important;
  opacity: 0 !important;
  font-size: inherit;
  font-family: inherit !important;
  font-weight: 700;
  line-height: 1 !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}

.ba-odometer.odometer .odometer-digit-inner {
  text-align: left !important;
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  overflow: hidden !important;
  font-size: inherit;
  font-family: inherit !important;
  font-weight: 700;
  color: #ea1f27 !important;
  line-height: 1 !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #ea1f27 !important;
  text-fill-color: #ea1f27 !important;
}

.ba-odometer.odometer .odometer-ribbon {
  display: block !important;
  line-height: 1 !important;
}

.ba-odometer.odometer .odometer-ribbon-inner {
  display: block !important;
  line-height: 1 !important;
}

.ba-odometer.odometer .odometer-value {
  display: block !important;
  font-size: inherit;
  font-family: inherit !important;
  font-weight: 700;
  color: #ea1f27 !important;
  line-height: 1 !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #ea1f27 !important;
  text-fill-color: #ea1f27 !important;
}

.ba-odometer.odometer .odometer-formatting-mark {
  display: inline-block !important;
  vertical-align: middle !important;
  font-size: inherit;
  font-family: inherit !important;
  font-weight: 700;
  color: #ea1f27 !important;
  line-height: 1 !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #ea1f27 !important;
  text-fill-color: #ea1f27 !important;
}

/* Odometer roll animation duration (2s smooth transition) */
.ba-odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner,
.ba-odometer.odometer-theme-minimal .odometer-digit .odometer-ribbon-inner {
  -webkit-transition-duration: 2s !important;
  -moz-transition-duration: 2s !important;
  -ms-transition-duration: 2s !important;
  -o-transition-duration: 2s !important;
  transition-duration: 2s !important;
}

.ba-stat-symbol {
  font-size: inherit;
  font-family: inherit !important;
  font-weight: 700;
  color: #ea1f27;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  vertical-align: middle !important;
}

.ba-stat-label {
  font-size: 14px;
  font-weight: 500;
  color: #58585b;
  line-height: 1.4;
  margin: 0;
}

/* ========================================================================= */
/* BUSINESS ASSOCIATE - 03. PARTNER WITH TRANSCORP SECTION                   */
/* ========================================================================= */
.ba-partner-sec {
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.ba-partner-image-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 20px;
  overflow: visible;
}

.ba-partner-img {
  width: 100%;
  border-radius: 20px;
  display: block;
  box-shadow:
    0px 1px 24px rgba(0, 0, 0, 0.05),
    0px 12px 32px -12px rgba(11, 20, 55, 0.12),
    0px 4px 8px -4px rgba(11, 20, 55, 0.06);
  max-width: 35.6875rem;
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.55s ease;
}

/* Image Sheen light beam sweep */
.ba-partner-image-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.ba-partner-image-wrap::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -120%;
  width: 60%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.38) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  pointer-events: none;
  transition: transform 0.9s ease;
  z-index: 1;
  opacity: 0;
}

.ba-partner-image-wrap:hover .ba-partner-img {
  transform: scale(1.025);
  box-shadow:
    0px 18px 45px rgba(234, 31, 39, 0.12),
    0px 8px 24px rgba(0, 0, 0, 0.08);
}

.ba-partner-image-wrap:hover::after {
  opacity: 1;
  transform: rotate(25deg) translateX(360%);
}

.ba-partner-badge {
  position: absolute;
  bottom: 25px;
  right: -15px;
  background: #ffffff;
  border: 1px solid #f7cbc1;
  border-radius: 14px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  z-index: 2;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.ba-partner-badge:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 36px rgba(234, 31, 39, 0.14);
  border-color: #ea1f27;
}

.ba-partner-badge:hover .ba-badge-icon svg {
  transform: scale(1.15) rotate(6deg);
}

.ba-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ba-badge-icon svg {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ba-badge-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.ba-badge-title {
  font-size: 13px;
  font-weight: 500;
  color: #58585b;
  line-height: 1.35;
}

.ba-badge-subtitle {
  font-size: 13.5px;
  font-weight: 700;
  color: #0d0d0d;
  line-height: 1.35;
}

.ba-partner-content {
  padding-left: 25px;
}

.ba-partner-sec .heading {
  margin-bottom: 20px;
}

.ba-partner-paragraphs p {
  font-size: 14.5px;
  line-height: 1.68;
  color: #58585b;
  margin-bottom: 14px;
}

.ba-partner-paragraphs p:last-child {
  margin-bottom: 0;
}

.ba-partner-highlight-box {
  background: #ffffff;
  border: 1px solid #f2c2ba;
  border-left: 4px solid #ea1f27;
  border-radius: 16px;
  padding: 18px 24px;
  margin-top: 24px;
  box-shadow: 0 4px 18px rgba(234, 31, 39, 0.04);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.ba-partner-highlight-box:hover {
  transform: translateX(6px) translateY(-2px);
  box-shadow: 0 10px 28px rgba(234, 31, 39, 0.1);
  border-color: #f0a89d;
  border-left-color: #c71219;
}

.ba-partner-highlight-box p {
  font-size: 14px;
  font-weight: 500;
  color: #58585b;
  line-height: 1.6;
  margin: 0;
}

/* Partner With Transcorp - Scroll Entrance & Floating Badge Keyframes */
.ba-partner-sec.ba-partner-animated .ba-partner-image-wrap {
  opacity: 0;
  transform: translateX(-35px) scale(0.96);
  transition:
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.8s ease;
}

.ba-partner-sec.ba-partner-animated .ba-partner-badge {
  opacity: 0;
  transform: translateY(24px) scale(0.8);
  transition:
    transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.35s,
    opacity 0.6s ease 0.35s;
}

.ba-partner-sec.ba-partner-animated .ba-partner-content .heading {
  opacity: 0;
  transform: translateX(30px);
  transition:
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.15s,
    opacity 0.65s ease 0.15s;
}

.ba-partner-sec.ba-partner-animated .ba-partner-paragraphs p:nth-child(1) {
  opacity: 0;
  transform: translateX(30px);
  transition:
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.25s,
    opacity 0.65s ease 0.25s;
}

.ba-partner-sec.ba-partner-animated .ba-partner-paragraphs p:nth-child(2) {
  opacity: 0;
  transform: translateX(30px);
  transition:
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.35s,
    opacity 0.65s ease 0.35s;
}

.ba-partner-sec.ba-partner-animated .ba-partner-highlight-box {
  opacity: 0;
  transform: translateY(24px);
  transition:
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.45s,
    opacity 0.7s ease 0.45s;
}

.ba-partner-sec.ba-partner-animated.is-in-view .ba-partner-image-wrap,
.ba-partner-sec.ba-partner-animated.is-in-view .ba-partner-content .heading,
.ba-partner-sec.ba-partner-animated.is-in-view .ba-partner-paragraphs p,
.ba-partner-sec.ba-partner-animated.is-in-view .ba-partner-highlight-box {
  opacity: 1;
  transform: translate(0) scale(1);
}

.ba-partner-sec.ba-partner-animated.is-in-view .ba-partner-badge {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: baFloatBadge 3.6s ease-in-out infinite 0.9s;
}

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

/* ========================================================================= */
/* BUSINESS ASSOCIATE - 04. SERVICES & BENEFITS DARK SECTION                 */
/* ========================================================================= */
.ba-services-benefits-sec {
  background-color: #070304;
  background-image:
    linear-gradient(rgba(230, 35, 41, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230, 35, 41, 0.07) 1px, transparent 1px),
    url("../images/buy-foreign-currency/how-buy-foreign-currency-bg.png");
  background-size:
    45px 45px,
    45px 45px,
    cover;
  background-position:
    center center,
    center center,
    center;
  background-repeat: repeat, repeat, no-repeat;
  padding: 90px 0;
  position: relative;
  color: #ffffff;
  overflow: hidden;
}

/* Part 1: Services You Can Offer */
.ba-services-block {
  margin-bottom: 75px;
}

.ba-services-block .heading,
.ba-benefits-block .heading {
  margin-bottom: 35px;
}

.ba-services-benefits-sec .heading .main-title {
  color: #ffffff !important;
}

.ba-services-img-wrap {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.ba-services-img {
  width: 100%;
  border-radius: 20px;
  display: block;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
  height: 15.625rem;
  object-fit: cover;
  transition:
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.65s ease;
}

.ba-services-img-wrap:hover .ba-services-img {
  transform: scale(1.035);
  filter: brightness(1.05);
}

.ba-services-pills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.ba-service-pill {
  background: #0d0d0f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 14px 18px;
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.35s ease;
}

.ba-service-pill:hover {
  background: #151518;
  border-color: rgba(234, 31, 39, 0.65);
  transform: translateX(6px) translateY(-3px);
  box-shadow:
    0 12px 30px rgba(234, 31, 39, 0.22),
    0 4px 12px rgba(0, 0, 0, 0.4);
}

.ba-pill-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: #ffefee;
  color: #ea1f27;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

.ba-service-pill:hover .ba-pill-icon {
  background: #ea1f27;
  color: #ffffff;
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 4px 16px rgba(234, 31, 39, 0.45);
}

.ba-pill-text {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.35;
  transition: transform 0.3s ease;
}

.ba-service-pill:hover .ba-pill-text {
  transform: translateX(3px);
}

/* Services You Can Offer - Scroll Entrance & Ripple Wave */
.ba-services-block.ba-services-animated .heading {
  opacity: 0;
  transform: translateY(22px);
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.6s ease;
}

.ba-services-block.ba-services-animated .ba-services-img-wrap {
  opacity: 0;
  transform: translateX(-35px) scale(0.96);
  transition:
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
    opacity 0.75s ease 0.1s;
}

.ba-services-block.ba-services-animated .ba-service-pill {
  opacity: 0;
  transform: translateX(35px) scale(0.96);
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.55s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.ba-services-block.ba-services-animated.is-in-view .heading,
.ba-services-block.ba-services-animated.is-in-view .ba-services-img-wrap {
  opacity: 1;
  transform: translate(0) scale(1);
}

.ba-services-block.ba-services-animated.is-in-view .ba-service-pill {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition-delay: calc(var(--item-index, 0) * 0.08s);
}

@keyframes pillWavePulse {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    transform: translateX(0);
  }
  50% {
    border-color: rgba(234, 31, 39, 0.75);
    box-shadow:
      0 8px 26px rgba(234, 31, 39, 0.32),
      inset 0 0 14px rgba(234, 31, 39, 0.1);
    transform: translateX(5px);
  }
}

.ba-service-pill.pill-wave {
  animation: pillWavePulse 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Part 2: Benefits */
.ba-eyebrow-subtitle {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
  transition: letter-spacing 0.5s ease;
}

.ba-benefits-card-wrapper {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s ease;
}

.ba-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.ba-benefit-cell {
  padding: 26px 30px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  transition:
    background 0.35s ease,
    transform 0.35s ease;
}

.ba-benefit-cell:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.ba-benefit-cell:nth-last-child(-n + 2) {
  border-bottom: none;
}

/* Left accent bar on hover */
.ba-benefit-cell::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3.5px;
  background: #ea1f27;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: center;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s ease;
}

.ba-benefit-cell:hover {
  background: linear-gradient(
    135deg,
    rgba(234, 31, 39, 0.09) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
}

.ba-benefit-cell:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.ba-benefit-num {
  font-size: 16px;
  font-weight: 700;
  color: #ea1f27;
  min-width: 24px;
  line-height: 1.4;
  flex-shrink: 0;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    color 0.3s ease,
    text-shadow 0.3s ease;
}

.ba-benefit-cell:hover .ba-benefit-num {
  transform: scale(1.18) translateX(2px);
  color: #ff3e45;
  text-shadow: 0 0 12px rgba(234, 31, 39, 0.6);
}

.ba-benefit-body h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.35;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.ba-benefit-cell:hover .ba-benefit-body h4 {
  transform: translateX(4px);
  color: #ffffff;
}

.ba-benefit-body p {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.55;
  margin: 0;
  opacity: 0.9;
}

/* Benefits Section - Scroll Entrance & Number Wave Flash */
.ba-benefits-block.ba-benefits-animated .heading {
  opacity: 0;
  transform: translateY(22px);
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.6s ease;
}

.ba-benefits-block.ba-benefits-animated .ba-benefits-card-wrapper {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition:
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.15s,
    opacity 0.7s ease 0.15s;
}

.ba-benefits-block.ba-benefits-animated .ba-benefit-cell {
  opacity: 0;
  transform: translateY(18px);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.5s ease,
    background 0.3s ease;
}

.ba-benefits-block.ba-benefits-animated.is-in-view .heading {
  opacity: 1;
  transform: translateY(0);
}

.ba-benefits-block.ba-benefits-animated.is-in-view .ba-benefits-card-wrapper {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.ba-benefits-block.ba-benefits-animated.is-in-view .ba-benefit-cell {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--item-index, 0) * 0.07s + 0.15s);
}

@keyframes numFlashWave {
  0%,
  100% {
    transform: scale(1);
    color: #ea1f27;
    text-shadow: none;
  }
  50% {
    transform: scale(1.3) translateX(2px);
    color: #ff4a50;
    text-shadow: 0 0 14px rgba(234, 31, 39, 0.85);
  }
}

.ba-benefit-num.num-flash {
  animation: numFlashWave 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ========================================================================= */
/* BUSINESS ASSOCIATE - 05. WHO CAN APPLY SECTION                            */
/* ========================================================================= */
.ba-who-apply-sec {
  padding: 50px 0;
}

.ba-who-apply-sec .heading {
  margin-bottom: 45px;
}

.ba-who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 20px;
}

.ba-who-card {
  background: #ffffff;
  border: 1px solid #e2e3e5;
  border-radius: 18px;
  padding: 16px 20px;
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease,
    box-shadow 0.35s ease;
}

/* Diagonal Sheen Sweep effect */
.ba-who-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.7),
    transparent
  );
  transform: skewX(-20deg);
  pointer-events: none;
  opacity: 0;
}

.ba-who-card.entrance-shine::after {
  opacity: 1;
  animation: baWhoSheen 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes baWhoSheen {
  0% {
    left: -120%;
  }
  100% {
    left: 160%;
  }
}

.ba-who-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(234, 31, 39, 0.4);
  box-shadow:
    0 16px 36px rgba(234, 31, 39, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.04);
}

.ba-who-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: #ffefed;
  border: 1px solid #ed747254;
  color: #ea1f27;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
  flex-shrink: 0;
}

.ba-who-card:hover .ba-who-icon {
  background: #ea1f27;
  border: 1px solid #ea1f27;
  color: #ffffff;
  transform: scale(1.14) rotate(10deg);
  box-shadow: 0 6px 18px rgba(234, 31, 39, 0.38);
}

.ba-who-title {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 1.35;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.ba-who-card:hover .ba-who-title {
  color: #ea1f27;
  font-weight: 600;
  transform: translateX(2px);
}

/* Who Can Apply - Scroll Entrance */
.ba-who-apply-sec.ba-who-animated .heading {
  opacity: 0;
  transform: translateY(22px);
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.6s ease;
}

.ba-who-apply-sec.ba-who-animated .ba-who-card {
  opacity: 0;
  transform: perspective(600px) translateY(28px) rotateX(7deg) scale(0.95);
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.55s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.ba-who-apply-sec.ba-who-animated.is-in-view .heading {
  opacity: 1;
  transform: translateY(0);
}

.ba-who-apply-sec.ba-who-animated.is-in-view .ba-who-card {
  opacity: 1;
  transform: perspective(600px) translateY(0) rotateX(0deg) scale(1);
  transition-delay: calc(var(--item-index, 0) * 0.06s);
}

/* ========================================================================= */
/* BUSINESS ASSOCIATE - 06. BASIC REQUIREMENTS SECTION                       */
/* ========================================================================= */

.ba-requirements-sec .heading {
  margin-bottom: 45px;
}

.ba-requirements-sec .heading .main-title {
  margin-bottom: 8px;
}

.ba-requirements-sec .heading .sub-heading {
  font-size: 15.5px;
  color: #58585b;
  margin-top: 0;
  font-weight: 400;
}

.ba-req-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}

.ba-req-card {
  background: #ffffff;
  border: 1px solid #e3e9f1;
  border-radius: 20px;
  padding: 26px 12px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0px 7px 25px rgba(0, 0, 0, 0.07);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease,
    box-shadow 0.35s ease;
}

.ba-req-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(234, 31, 39, 0.38);
  box-shadow:
    0 18px 40px rgba(234, 31, 39, 0.14),
    0 4px 12px rgba(0, 0, 0, 0.04);
}

.ba-req-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: #ffefed;
  border: 1px solid #ed747254;
  color: #ea1f27;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  margin-bottom: 18px;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
  flex-shrink: 0;
}

.ba-req-card:hover .ba-req-icon {
  background: linear-gradient(135deg, #ea1f27 0%, #d6131b 100%);
  border-color: #ea1f27;
  color: #ffffff !important;
  transform: scale(1.15) rotate(-6deg);
  box-shadow: 0 8px 22px rgba(234, 31, 39, 0.4);
}

.ba-req-card:hover .ba-req-icon i,
.ba-req-card:hover .ba-req-icon span,
.ba-req-card:hover .ba-req-icon sup,
.ba-req-card:hover .ba-age-badge,
.ba-req-card:hover .ba-age-badge sup {
  color: #ffffff !important;
}

.ba-age-badge {
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1.5px solid #ea1f27;
  border-radius: 50%;
  position: relative;
  color: #ea1f27;
  transition: all 0.3s ease;
}

.ba-age-badge sup {
  font-size: 8.5px;
  font-weight: 800;
  top: -3px;
  margin-left: 1px;
  color: inherit;
  transition: all 0.3s ease;
}

.ba-age-badge::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5px;
  height: 3px;
  background: #ea1f27;
  box-shadow:
    -6px 2px 0 #ea1f27,
    6px 2px 0 #ea1f27;
  transition: all 0.3s ease;
}

.ba-req-card:hover .ba-age-badge {
  border-color: #ffffff !important;
  transform: scale(1.15);
}

.ba-req-card:hover .ba-age-badge::before {
  background: #ffffff !important;
  box-shadow:
    -6px 2px 0 #ffffff,
    6px 2px 0 #ffffff !important;
}

.ba-req-icon.ba-device-icon {
  position: relative;
}

.ba-req-icon.ba-device-icon .fa-laptop {
  font-size: 20px;
  margin-right: 4px;
  transition: transform 0.3s ease;
}

.ba-req-icon.ba-device-icon .fa-mobile-screen {
  font-size: 12px;
  position: absolute;
  right: 10px;
  bottom: 11px;
  background: #ffefed;
  border-radius: 2px;
  padding: 1px;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.ba-req-card:hover .ba-req-icon.ba-device-icon .fa-laptop {
  transform: translateX(-2px) scale(1.1);
}

.ba-req-card:hover .ba-req-icon.ba-device-icon .fa-mobile-screen {
  background: #ea1f27;
  color: #ffffff !important;
  transform: translateX(2px) scale(1.22) rotate(6deg);
}

.ba-req-title {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  line-height: 1.35;
  margin: 0;
  transition: color 0.3s ease;
}

.ba-req-card:hover .ba-req-title {
  color: #ea1f27;
}

/* Basic Requirements - Scroll Entrance & Sequential Icon Wave */
.ba-requirements-sec.ba-req-animated .heading {
  opacity: 0;
  transform: translateY(22px);
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.6s ease;
}

.ba-requirements-sec.ba-req-animated .ba-req-card {
  opacity: 0;
  transform: translateY(32px) scale(0.92);
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.55s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.ba-requirements-sec.ba-req-animated.is-in-view .heading {
  opacity: 1;
  transform: translateY(0);
}

.ba-requirements-sec.ba-req-animated.is-in-view .ba-req-card {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: calc(var(--item-index, 0) * 0.07s);
}

@keyframes reqIconBounce {
  0%,
  100% {
    transform: scale(1) translateY(0);
  }
  40% {
    transform: scale(1.2) translateY(-6px) rotate(-6deg);
    background: #ea1f27;
    border-color: #ea1f27;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(234, 31, 39, 0.4);
  }
}

.ba-req-icon.icon-bounce-wave {
  animation: reqIconBounce 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ba-req-icon.icon-bounce-wave i,
.ba-req-icon.icon-bounce-wave span,
.ba-req-icon.icon-bounce-wave sup,
.ba-req-icon.icon-bounce-wave .ba-age-badge,
.ba-req-icon.icon-bounce-wave .ba-age-badge sup {
  color: #ffffff !important;
}

.ba-req-icon.icon-bounce-wave .ba-age-badge {
  border-color: #ffffff !important;
}

.ba-req-icon.icon-bounce-wave .ba-age-badge::before {
  background: #ffffff !important;
  box-shadow:
    -6px 2px 0 #ffffff,
    6px 2px 0 #ffffff !important;
}

/* about us page */

/* ========================================================================= */
/* ABOUT US PAGE - BASE STYLES                                               */
/* ========================================================================= */

/* ========================================================================= */
/* ABOUT US - 01. HERO BANNER SECTION                                       */
/* ========================================================================= */
.about-us-banner-sec {
  background:
    radial-gradient(
      120% 100% at 50% 0%,
      rgba(219, 23, 28, 0.09) 0%,
      rgba(219, 23, 28, 0) 62%
    ),
    #ffffff;
}
.about-us-banner-sec::before {
  content: "";
  background-image: url("../images/about-us/about-us-vector.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right 280px top 120px;
  width: 100%;
  height: 425px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.banner-content-left {
  position: relative;
  z-index: 10;
}

.about-us-banner-sec {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  background-image: radial-gradient(
    circle at 8% 12%,
    rgba(234, 31, 39, 0.08) 0%,
    rgba(255, 240, 242, 0.45) 28%,
    rgba(255, 255, 255, 0) 65%
  );
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
}

.about-hero-vector-bg {
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1200px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.1;
}

.about-hero-vector-bg img {
  width: 100%;
  height: auto;
  display: block;
}

.about-us-banner-sec .container {
  position: relative;
  z-index: 1;
}

.about-us-banner-sec .about-badge {
  padding: 4px 16px;
  margin-bottom: 22px;
}

.about-us-banner-sec .about-hero-title {
  font-size: 3.35rem;
  font-weight: 700;
  line-height: 1.16;
  color: #0d0d0d;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
}

.about-us-banner-sec .about-hero-title .text-red {
  color: var(--primary-color, #ea1f27);
  font-weight: 700;
}

.about-us-banner-sec .about-hero-desc {
  font-size: 15.5px;
  line-height: 1.7;
  color: #58585b;
  margin-bottom: 34px;
  max-width: 530px;
}

.about-us-banner-sec .btn-about-hero {
  padding: 13px 34px;
  font-size: 15.5px;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(234, 31, 39, 0.28);
}

/* 3-Column Staggered Image Gallery */
.about-hero-gallery-wrap {
  position: relative;
  width: 100%;
  max-width: 590px;
  margin-left: auto;
}

/* Subtle top gradient fade matching the Figma design */
.about-hero-gallery-wrap::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  right: 0;
  height: 85px;
  background: linear-gradient(
    180deg,
    #ffffff 15%,
    rgba(255, 255, 255, 0.65) 45%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 3;
  pointer-events: none;
}

/* Subtle bottom gradient fade */
.about-hero-gallery-wrap::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 85px;
  background: linear-gradient(
    0deg,
    #ffffff 15%,
    rgba(255, 255, 255, 0.65) 45%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 3;
  pointer-events: none;
}

.about-hero-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}

.about-gallery-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Vertical Stagger Offsets */
.about-gallery-col-1 {
  margin-top: 120px;
}

.about-gallery-col-2 {
  margin-top: 0;
}

.about-gallery-col-3 {
  margin-top: 60px;
}

.about-gallery-card {
  border-radius: 18px;
  overflow: hidden;
  background-color: #f7f7f9;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.about-gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
}

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

/* ========================================================================= */
/* ABOUT US - 02. OUR STORY SECTION                                         */
/* ========================================================================= */
.about-our-story-sec {
  padding: 0px 0 50px 0;
  position: relative;
}

.about-our-story-sec .heading {
  margin-bottom: 20px;
}

.about-our-story-sec .heading .sub-heading {
  margin-bottom: 0;
}

.about-our-story-sec .our-story-paragraphs p {
  font-size: 15px;
  line-height: 1.68;
  color: #58585b;
  margin-bottom: 18px;
}

.about-our-story-sec .our-story-paragraphs p:last-child {
  margin-bottom: 0;
}

/* Our Story Milestone Card */
.about-our-story-sec .our-story-card {
  background: #fef5f5;
  border-radius: 20px;
  padding: 8px;
  box-shadow:
    0 1px 0 0 #ea1f27,
    0 14px 32px rgba(234, 31, 39, 0.06);
  position: relative;
  max-width: 440px;
  margin-left: auto;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.about-our-story-sec .our-story-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 3px 0 0 #ea1f27,
    0 18px 38px rgba(234, 31, 39, 0.1);
}

.about-our-story-sec .our-story-card-inner {
  border: 1.5px dashed #dfcfd1;
  border-radius: 15px;
  padding: 1.25rem;
}

.about-our-story-sec .story-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  line-height: 1.45;
  margin-bottom: 20px;
}

.about-our-story-sec .story-card-divider {
  height: 1px;
  background-color: #dbd5d5;
  margin-bottom: 6px;
}

.about-our-story-sec .story-milestones-list {
  display: flex;
  flex-direction: column;
}

.about-our-story-sec .milestone-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #dbd5d5;
}

.about-our-story-sec .milestone-item:last-child {
  border-bottom: none;
  padding-bottom: 4px;
}

.about-our-story-sec .milestone-label {
  font-size: 16px;
  font-weight: 500;
  color: #58585b;
}

.about-our-story-sec .milestone-year {
  font-size: 16px;
  font-weight: 600;
  color: #ea1f27;
  letter-spacing: 0.2px;
}

/* ========================================================================= */
/* ABOUT US - 03. TRANSCORP AT A GLANCE SECTION                             */
/* ========================================================================= */
.about-glance-sec {
  background:
    radial-gradient(
      circle at 50% 30%,
      rgba(234, 31, 39, 0.04) 0%,
      transparent 65%
    ),
    #fff8f8;
  padding: 50px 0 50px 0;
  position: relative;
  overflow: hidden;
}

.about-glance-sec .heading {
  margin-bottom: 50px;
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-glance-sec .heading .main-title {
  font-size: 40px;
  font-weight: 700;
  color: #0d0d0d;
}

.about-glance-sec .about-glance-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
}

.about-glance-sec .about-glance-item {
  padding: 0 28px;
  border-right: 1px solid #ebdada;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition:
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1)
      calc(var(--item-index, 0) * 0.1s),
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1)
      calc(var(--item-index, 0) * 0.1s),
    border-color 0.3s ease;
}

.about-glance-sec .about-glance-item:first-child {
  padding-left: 0;
}

.about-glance-sec .about-glance-item:last-child {
  border-right: none;
  padding-right: 0;
}

.about-glance-sec .glance-number {
  font-size: 42px;
  font-weight: 700;
  color: #ea1f27;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    text-shadow 0.35s ease,
    color 0.3s ease;
}

.about-glance-sec .glance-odometer.odometer {
  font-size: inherit;
  font-family: inherit !important;
  font-weight: 700;
  color: #ea1f27 !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  vertical-align: middle !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #ea1f27 !important;
  text-fill-color: #ea1f27 !important;
}

.about-glance-sec .glance-odometer.odometer .odometer-inside {
  display: inline-flex !important;
  align-items: center !important;
  vertical-align: middle !important;
  line-height: 1 !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #ea1f27 !important;
  text-fill-color: #ea1f27 !important;
}

.about-glance-sec .glance-odometer.odometer .odometer-digit {
  display: inline-flex !important;
  align-items: center !important;
  vertical-align: middle !important;
  position: relative !important;
  line-height: 1 !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #ea1f27 !important;
  text-fill-color: #ea1f27 !important;
}

.about-glance-sec .glance-odometer.odometer .odometer-digit-spacer {
  display: inline-block !important;
  vertical-align: middle !important;
  visibility: hidden !important;
  opacity: 0 !important;
  font-size: inherit;
  font-family: inherit !important;
  font-weight: 700;
  line-height: 1 !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}

.about-glance-sec .glance-odometer.odometer .odometer-digit-inner {
  text-align: left !important;
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  overflow: hidden !important;
  font-size: inherit;
  font-family: inherit !important;
  font-weight: 700;
  color: #ea1f27 !important;
  line-height: 1 !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #ea1f27 !important;
  text-fill-color: #ea1f27 !important;
}

.about-glance-sec .glance-odometer.odometer .odometer-ribbon {
  display: block !important;
  line-height: 1 !important;
}

.about-glance-sec .glance-odometer.odometer .odometer-ribbon-inner {
  display: block !important;
  line-height: 1 !important;
}

.about-glance-sec .glance-odometer.odometer .odometer-value {
  display: block !important;
  font-size: inherit;
  font-family: inherit !important;
  font-weight: 700;
  color: #ea1f27 !important;
  line-height: 1 !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #ea1f27 !important;
  text-fill-color: #ea1f27 !important;
}

.about-glance-sec .glance-odometer.odometer .odometer-formatting-mark {
  display: inline-block !important;
  vertical-align: middle !important;
  font-size: inherit;
  font-family: inherit !important;
  font-weight: 700;
  color: #ea1f27 !important;
  line-height: 1 !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #ea1f27 !important;
  text-fill-color: #ea1f27 !important;
}

/* Odometer roll animation duration (2s smooth transition) */
.about-glance-sec
  .glance-odometer.odometer-auto-theme
  .odometer-digit
  .odometer-ribbon-inner,
.about-glance-sec
  .glance-odometer.odometer-theme-minimal
  .odometer-digit
  .odometer-ribbon-inner {
  -webkit-transition-duration: 2s !important;
  -moz-transition-duration: 2s !important;
  -ms-transition-duration: 2s !important;
  -o-transition-duration: 2s !important;
  transition-duration: 2s !important;
}

.about-glance-sec .glance-symbol {
  font-size: inherit;
  font-family: inherit !important;
  font-weight: 700;
  color: #ea1f27;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  vertical-align: middle !important;
}

.about-glance-sec .glance-label {
  font-size: 14px;
  font-weight: 500;
  color: #58585b;
  line-height: 1.45;
  transition: color 0.3s ease;
}

/* Progressive enhancement: when JS animation enabled */
.about-glance-sec.glance-animated .heading {
  opacity: 0;
  transform: translateY(22px);
}

.about-glance-sec.glance-animated .about-glance-item {
  opacity: 0;
  transform: translateY(28px);
}

.about-glance-sec.glance-animated.is-in-view .heading {
  opacity: 1;
  transform: translateY(0);
}

.about-glance-sec.glance-animated.is-in-view .about-glance-item {
  opacity: 1;
  transform: translateY(0);
}

/* Desktop Hover Interactive Touch */
@media (hover: hover) and (min-width: 992px) {
  .about-glance-sec.is-in-view .about-glance-item:hover {
    transform: translateY(-5px);
    transition:
      transform 0.3s ease,
      border-color 0.3s ease;
  }
  .about-glance-sec .about-glance-item:hover .glance-number {
    transform: scale(1.06);
    color: #cf151c;
    text-shadow: 0 6px 18px rgba(234, 31, 39, 0.28);
  }
  .about-glance-sec .about-glance-item:hover .glance-label {
    color: #111111;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .about-glance-sec.glance-animated .heading,
  .about-glance-sec.glance-animated .about-glance-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .about-glance-sec .glance-number.counter-done {
    animation: none !important;
  }
}

/* ========================================================================= */
/* ABOUT US - 04. REGULATED. RELIABLE. RESPONSIBLE. SECTION                 */
/* ========================================================================= */
.about-regulated-sec {
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.about-regulated-sec .regulated-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.about-regulated-sec .regulated-content-card {
  position: relative;
  z-index: 2;
  background: #ffffff;
  border: 1px solid #e3e9f1;
  border-radius: 20px;
  padding: 40px;
  width: 47%;
  max-width: 530px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.04);
  margin-right: -13%;
  overflow: hidden;
}

.about-regulated-sec .regulated-content-card::after {
  content: "";
  position: absolute;
  bottom: -35px;
  right: -35px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  width: 167px;
  height: 167px;
  background: linear-gradient(
    180deg,
    rgba(253, 212, 215, 0.5) 0%,
    rgba(254, 247, 247, 0.5) 100%
  );
}
.about-regulated-sec .regulated-content-card::before {
  content: "";
  position: absolute;
  bottom: -51px;
  opacity: 0.4;
  right: -45px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  width: 167px;
  height: 167px;
  background: linear-gradient(180deg, #fdd4d7 0%, #fef7f7 100%);
}

.about-regulated-sec .regulated-title {
  font-size: 38px;
  font-weight: 600;
  color: #000;
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.about-regulated-sec .regulated-desc {
  font-size: 15px;
  line-height: 1.65;
  color: #58585b;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.about-regulated-sec .regulated-image-card {
  position: relative;
  z-index: 1;
  width: 66%;
  border: 1px solid #e3e9f1;
  border-radius: 20px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
  border-left: 0;
}

.about-regulated-sec .regulated-image-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ========================================================================= */
/* ABOUT US - 05. OUR LICENSES AND CREDENTIALS SECTION                      */
/* ========================================================================= */
.about-credentials-sec {
  padding: 20px 0 50px 0;
  position: relative;
  overflow: hidden;
}

.about-credentials-sec .heading {
  margin-bottom: 40px;
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Progressive enhancement entrance state */
.about-credentials-sec.credentials-animated .heading {
  opacity: 0;
  transform: translateY(22px);
}

.about-credentials-sec.credentials-animated.is-in-view .heading {
  opacity: 1;
  transform: translateY(0);
}

.about-credentials-sec .credentials-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  align-items: stretch;
  perspective: 1200px;
}

.about-credentials-sec .credential-card {
  background: #ffffff;
  border: 1px solid #e3e9f1;
  border-radius: 20px;
  padding: 18px 14px 16px 14px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  cursor: default;
  transform-style: preserve-3d;
  will-change: transform, box-shadow, border-color;
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    background 0.35s ease;
}

/* Progressive enhancement: hidden before scroll reveal */
.about-credentials-sec.credentials-animated .credential-card {
  opacity: 0;
  transform: translateY(35px) scale(0.92);
}

.about-credentials-sec.credentials-animated.is-in-view .credential-card {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1)
      calc(var(--card-index, 0) * 0.08s),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1)
      calc(var(--card-index, 0) * 0.08s),
    box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    background 0.35s ease;
}

/* Top accent indicator that blooms on hover */
.about-credentials-sec .credential-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #ea1f27, #ff5b62);
  border-radius: 0 0 4px 4px;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
}

/* Light sheen reflection sweep */
.about-credentials-sec .credential-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -120%;
  width: 75%;
  height: 200%;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.65) 45%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(255, 255, 255, 0.65) 55%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* Hover state on desktop */
@media (hover: hover) and (pointer: fine) {
  .about-credentials-sec .credential-card:hover {
    transform: translateY(-8px) scale(1.025);
    box-shadow:
      0 16px 36px rgba(234, 31, 39, 0.12),
      0 4px 12px rgba(0, 0, 0, 0.04);
    border-color: rgba(234, 31, 39, 0.32);
  }

  .about-credentials-sec .credential-card:hover::before {
    width: 44px;
  }

  .about-credentials-sec .credential-card:hover::after {
    opacity: 1;
    animation: credentialSheenSweep 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
}

@keyframes credentialSheenSweep {
  0% {
    left: -120%;
  }
  100% {
    left: 160%;
  }
}

/* Entrance sequential sheen sweep when first revealed */
.about-credentials-sec.credentials-animated.is-in-view
  .credential-card.entrance-shine::after {
  opacity: 1;
  animation: credentialSheenSweep 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Circular Icon Badge Animation */
.about-credentials-sec .credential-icon-circle {
  width: 64px;
  height: 64px;
  background: linear-gradient(180deg, #fdf6f6 0%, #fcebeb 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
  position: relative;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.4s ease;
  box-shadow: 0 2px 10px rgba(234, 31, 39, 0.05);
}

.about-credentials-sec .credential-card:hover .credential-icon-circle {
  transform: translateY(-4px) scale(1.08);
  box-shadow:
    0 10px 22px rgba(234, 31, 39, 0.18),
    0 0 0 4px rgba(234, 31, 39, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #fde8e8 100%);
}

.about-credentials-sec .credential-icon-circle img {
  width: 100%;
  max-width: 44px;
  max-height: 44px;
  object-fit: contain;
  display: block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-credentials-sec .credential-card:hover .credential-icon-circle img {
  transform: scale(1.1);
}

.about-credentials-sec .credential-desc {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.45;
  margin: 0;
  transition: color 0.3s ease;
}

.about-credentials-sec .credential-card:hover .credential-desc {
  color: #000000;
}

/* ========================================================================= */
/* ABOUT US - 06. OUR SERVICES SECTION                                      */
/* ========================================================================= */
.about-services-sec {
  position: relative;
  padding: 90px 0 50px 0;
  background-image: url("../images/about-us/about-services-bg.svg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  overflow: hidden;
}

.about-services-sec .container {
  position: relative;
  z-index: 2;
}

.about-services-sec .heading {
  margin-bottom: 48px;
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Progressive enhancement entrance state */
.about-services-sec.services-animated .heading {
  opacity: 0;
  transform: translateY(24px);
}

.about-services-sec.services-animated.is-in-view .heading {
  opacity: 1;
  transform: translateY(0);
}

.about-services-sec .heading .main-title {
  font-weight: 700;
  font-size: 40px;
  line-height: 44px;
  color: #000000;
  margin-bottom: 12px;
}

.about-services-sec .heading .sub-heading {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #58585b;
  margin-top: 0;
  margin-bottom: 0;
}

.about-services-sec .about-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  perspective: 1200px;
}

.about-services-sec .about-service-card {
  background: #ffffff;
  border: 1px solid #e3e9f1;
  border-radius: 20px;
  padding: 38px 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  cursor: default;
  transform-style: preserve-3d;
  will-change: transform, box-shadow, border-color;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    background 0.35s ease;
}

/* Progressive enhancement: hidden before scroll reveal */
.about-services-sec.services-animated .about-service-card {
  opacity: 0;
  transform: translateY(42px) scale(0.93);
}

.about-services-sec.services-animated.is-in-view .about-service-card {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1)
      calc(var(--service-index, 0) * 0.09s),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1)
      calc(var(--service-index, 0) * 0.09s),
    box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    background 0.35s ease;
}

/* Top accent indicator that blooms on hover */
.about-services-sec .about-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  width: 0;
  height: 3.5px;
  background: linear-gradient(90deg, #ea1f27, #ff5b62);
  border-radius: 0 0 4px 4px;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
}

/* Light sheen reflection sweep */
.about-services-sec .about-service-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -120%;
  width: 80%;
  height: 200%;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.65) 45%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(255, 255, 255, 0.65) 55%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* Desktop hover */
@media (hover: hover) and (pointer: fine) {
  .about-services-sec .about-service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
      0 20px 42px rgba(234, 31, 39, 0.1),
      0 6px 16px rgba(0, 0, 0, 0.04);
    border-color: rgba(234, 31, 39, 0.32);
  }

  .about-services-sec .about-service-card:hover::before {
    width: 60px;
  }

  .about-services-sec .about-service-card:hover::after {
    opacity: 1;
    animation: serviceSheenSweep 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
}

@keyframes serviceSheenSweep {
  0% {
    left: -120%;
  }
  100% {
    left: 160%;
  }
}

/* Entrance sequential sheen sweep */
.about-services-sec.services-animated.is-in-view
  .about-service-card.entrance-shine::after {
  opacity: 1;
  animation: serviceSheenSweep 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Service Icon Badge Container */
.about-services-sec .service-icon-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
  border-radius: 16px;
  position: relative;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.4s ease;
}

.about-services-sec .service-icon-wrap img,
.about-services-sec .service-icon-wrap svg {
  width: 48px;
  height: 48px;
  max-width: 48px;
  max-height: 48px;
  object-fit: contain;
  display: block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-services-sec .about-service-card:hover .service-icon-wrap {
  transform: translateY(-4px) scale(1.08);
}

.about-services-sec .about-service-card:hover .service-icon-wrap img,
.about-services-sec .about-service-card:hover .service-icon-wrap svg {
  transform: scale(1.12);
}

.about-services-sec .service-card-title {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  line-height: 1.35;
  margin: 0 0 12px 0;
  transition: color 0.35s ease;
}

.about-services-sec .about-service-card:hover .service-card-title {
  color: #ea1f27;
}

.about-services-sec .service-card-desc {
  font-size: 15px;
  font-weight: 400;
  color: #58585b;
  line-height: 1.6;
  margin: 0;
  transition: color 0.3s ease;
}

.about-services-sec .about-service-card:hover .service-card-desc {
  color: #333333;
}

/* ========================================================================= */
/* ABOUT US - 07. OUR NATIONAL PRESENCE SECTION                             */
/* ========================================================================= */
/* ========================================================================= */
/* ABOUT US - 07. OUR NATIONAL PRESENCE SECTION                             */
/* ========================================================================= */
.about-national-presence-sec {
  padding: 30px 0 20px 0;
  position: relative;
  background-color: #ffffff;
}

.about-national-presence-sec .national-presence-image-wrap {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow:
    0px 1px 24px rgba(0, 0, 0, 0.05),
    0px 14px 36px -12px rgba(234, 31, 39, 0.12),
    0px 4px 8px -4px rgba(11, 20, 55, 0.06);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-national-presence-sec .national-presence-image-wrap::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -120%;
  width: 80%;
  height: 200%;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.about-national-presence-sec .national-presence-image-wrap:hover {
  transform: translateY(-6px);
  box-shadow:
    0px 20px 48px -10px rgba(234, 31, 39, 0.18),
    0px 6px 14px rgba(0, 0, 0, 0.04);
}

.about-national-presence-sec .national-presence-image-wrap:hover::after {
  opacity: 1;
  animation: presenceSheenSweep 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes presenceSheenSweep {
  0% {
    left: -120%;
  }
  100% {
    left: 160%;
  }
}

.about-national-presence-sec .national-presence-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-national-presence-sec .national-presence-image-wrap:hover img {
  transform: scale(1.03);
}

.about-national-presence-sec .heading {
  margin-bottom: 22px;
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-national-presence-sec .national-presence-paragraphs p {
  font-size: 15px;
  font-weight: 400;
  color: #58585b;
  line-height: 1.68;
  margin-bottom: 14px;
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-national-presence-sec .national-presence-paragraphs p:last-child {
  margin-bottom: 0;
}

/* Scroll entrance animation states */
.about-national-presence-sec.presence-animated .national-presence-image-wrap {
  opacity: 0;
  transform: translateX(-40px) scale(0.95);
}

.about-national-presence-sec.presence-animated.is-in-view
  .national-presence-image-wrap {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.about-national-presence-sec.presence-animated .heading {
  opacity: 0;
  transform: translateY(22px);
}

.about-national-presence-sec.presence-animated.is-in-view .heading {
  opacity: 1;
  transform: translateY(0);
}

.about-national-presence-sec.presence-animated
  .national-presence-paragraphs
  p:nth-child(1) {
  opacity: 0;
  transform: translateX(30px);
}

.about-national-presence-sec.presence-animated.is-in-view
  .national-presence-paragraphs
  p:nth-child(1) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.12s;
}

.about-national-presence-sec.presence-animated
  .national-presence-paragraphs
  p:nth-child(2) {
  opacity: 0;
  transform: translateX(30px);
}

.about-national-presence-sec.presence-animated.is-in-view
  .national-presence-paragraphs
  p:nth-child(2) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.22s;
}

/* ========================================================================= */
/* ABOUT US - 08. OUR NETWORK SECTION                                       */
/* ========================================================================= */
.about-network-sec {
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.about-network-sec .about-network-card {
  border: 1px solid #e3e9f1;
  border-radius: 32px;
  background: #ffffff;
  padding: 38px 30px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease;
}

.about-network-sec .heading {
  margin-bottom: 35px;
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Card entrance */
.about-network-sec.network-animated .about-network-card {
  opacity: 0;
  transform: translateY(30px);
}

.about-network-sec.network-animated.is-in-view .about-network-card {
  opacity: 1;
  transform: translateY(0);
}

.about-network-sec.network-animated .heading {
  opacity: 0;
  transform: translateY(20px);
}

.about-network-sec.network-animated.is-in-view .heading {
  opacity: 1;
  transform: translateY(0);
}

.about-network-sec .about-network-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
}

.about-network-sec .about-network-item {
  padding: 16px 18px;
  border-right: 1px solid #e3e9f1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 0 !important;
  cursor: default;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.35s ease,
    box-shadow 0.35s ease;
}

.about-network-sec .about-network-item:last-child {
  border-right: none;
}

/* Items staggered entrance */
.about-network-sec.network-animated .about-network-item {
  opacity: 0;
  transform: translateY(35px) scale(0.92);
}

.about-network-sec.network-animated.is-in-view .about-network-item {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--net-index, 0) * 0.1s),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1)
      calc(var(--net-index, 0) * 0.1s),
    background-color 0.35s ease,
    box-shadow 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
  .about-network-sec .about-network-item:hover {
    transform: translateY(-8px);
  }
}

.about-network-sec .network-icon-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #fef2f2 0%, #fde8e8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 4px 12px rgba(234, 31, 39, 0.06);
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.35s ease,
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-network-sec .network-icon-circle i {
  font-size: 22px;
  color: #ea1f27;
  line-height: 1;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-network-sec .about-network-item:hover .network-icon-circle {
  transform: translateY(-4px) scale(1.14);
  background: linear-gradient(135deg, #ffffff 0%, #fce8e8 100%);
  box-shadow:
    0 10px 24px rgba(234, 31, 39, 0.22),
    0 0 0 4px rgba(234, 31, 39, 0.1);
}

.about-network-sec .about-network-item:hover .network-icon-circle i {
  transform: scale(1.1) rotate(6deg);
}

/* Sequential pulse animation on revealed network badges */
.about-network-sec .network-icon-circle.net-pulse {
  animation: networkPulseGlow 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes networkPulseGlow {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(234, 31, 39, 0.06);
  }
  50% {
    transform: scale(1.12);
    box-shadow:
      0 8px 22px rgba(234, 31, 39, 0.25),
      0 0 0 6px rgba(234, 31, 39, 0.12);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(234, 31, 39, 0.06);
  }
}

.about-network-sec .network-title {
  font-size: 20px;
  font-weight: 700;
  color: #ea1f27;
  line-height: 1.25;
  margin-bottom: 8px;
  transition: transform 0.3s ease;
}

.about-network-sec .about-network-item:hover .network-title {
  transform: scale(1.05);
}

.about-network-sec .network-desc {
  font-size: 14px;
  font-weight: 400;
  color: #58585b;
  line-height: 1.5;
  margin: 0;
  transition: color 0.3s ease;
}

.about-network-sec .about-network-item:hover .network-desc {
  color: #222222;
}

/* ========================================================================= */
/* ABOUT US - 09. POWERING DIGITAL PAYMENT ECOSYSTEM SECTION                */
/* ========================================================================= */
.about-powering-sec {
  position: relative;
  padding: 95px 0 50px 0;
  background-image: url("../images/about-us/powering-sec-bg.svg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  overflow: hidden;
}

.about-powering-sec .heading {
  margin-bottom: 0;
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-powering-sec .powering-header-desc {
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-powering-sec .powering-header-desc p {
  font-size: 14.5px;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.68;
  margin-bottom: 14px;
}

.about-powering-sec .powering-header-desc p:last-child {
  margin-bottom: 0;
}

/* Progressive entrance for Header */
.about-powering-sec.powering-animated .heading {
  opacity: 0;
  transform: translateX(-30px);
}

.about-powering-sec.powering-animated.is-in-view .heading {
  opacity: 1;
  transform: translateX(0);
}

.about-powering-sec.powering-animated .powering-header-desc {
  opacity: 0;
  transform: translateX(30px);
}

.about-powering-sec.powering-animated.is-in-view .powering-header-desc {
  opacity: 1;
  transform: translateX(0);
}

/* Capabilities Header Bar */
.about-powering-sec .capabilities-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0 20px 0;
  border-top: 1px solid #e5e9f2;
  margin-top: 50px;
  transition: opacity 0.6s ease;
}

.about-powering-sec.powering-animated .capabilities-header-bar {
  opacity: 0;
}

.about-powering-sec.powering-animated.is-in-view .capabilities-header-bar {
  opacity: 1;
}

.about-powering-sec .capabilities-title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-powering-sec .capabilities-accent-bar {
  width: 24px;
  height: 3px;
  background: linear-gradient(90deg, #ea1f27, #ff5b62);
  border-radius: 2px;
  display: inline-block;
  box-shadow: 0 2px 6px rgba(234, 31, 39, 0.35);
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-powering-sec.powering-animated .capabilities-accent-bar {
  width: 0;
}

.about-powering-sec.powering-animated.is-in-view .capabilities-accent-bar {
  width: 28px;
}

.about-powering-sec .capabilities-title {
  font-size: 21px;
  font-weight: 700;
  color: #111111;
  margin: 0;
  line-height: 1;
}

.about-powering-sec .capabilities-counter {
  font-size: 14px;
  font-weight: 600;
  color: #ea1f27;
  background: #fdf2f2;
  padding: 4px 12px;
  border-radius: 12px;
  letter-spacing: 0.5px;
}

.about-powering-sec .capabilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-powering-sec .capability-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 34px 20px;
  border-bottom: 1px solid #e5e9f2;
  border-radius: 0 !important;
  cursor: default;
  position: relative;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.about-powering-sec .capability-item:nth-child(odd) {
  border-right: 1px solid #e5e9f2;
  padding-left: 12px;
  padding-right: 36px;
}

.about-powering-sec .capability-item:nth-child(even) {
  padding-left: 36px;
  padding-right: 12px;
}

.about-powering-sec .capability-item:nth-child(9) {
  border-bottom: none;
}

/* Staggered entrance for the 9 capability items */
.about-powering-sec.powering-animated .capability-item:nth-child(odd) {
  opacity: 0;
  transform: translateX(-30px);
}

.about-powering-sec.powering-animated .capability-item:nth-child(even) {
  opacity: 0;
  transform: translateX(30px);
}

.about-powering-sec.powering-animated.is-in-view .capability-item {
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1)
      calc(var(--cap-index, 0) * 0.07s),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1)
      calc(var(--cap-index, 0) * 0.07s),
    background 0.3s ease,
    box-shadow 0.3s ease;
}

/* Hover effect on capability items */
@media (hover: hover) and (pointer: fine) {
  .about-powering-sec .capability-item:hover {
    transform: translateX(6px);
    background: linear-gradient(
      90deg,
      rgba(234, 31, 39, 0.04) 0%,
      rgba(234, 31, 39, 0.01) 100%
    );
    box-shadow: 0 4px 16px rgba(234, 31, 39, 0.06);
  }
}

.about-powering-sec .capability-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.about-powering-sec .capability-num {
  font-size: 15px;
  font-weight: 800;
  color: #ea1f27;
  flex-shrink: 0;
  min-width: 28px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #fdf2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

.about-powering-sec .capability-item:hover .capability-num {
  transform: scale(1.15);
  background: #ea1f27;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(234, 31, 39, 0.3);
}

/* Highlight ripple */
.about-powering-sec .capability-item.cap-highlight .capability-num {
  transform: scale(1.2);
  background: #ea1f27;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(234, 31, 39, 0.35);
}

.about-powering-sec .capability-text {
  font-size: 18px;
  font-weight: 500;
  color: #111111;
  line-height: 1.45;
  transition: color 0.3s ease;
}

.about-powering-sec .capability-item:hover .capability-text {
  color: #ea1f27;
}

.about-powering-sec .capability-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f8fafc;
  color: #94a3b8;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

.about-powering-sec .capability-icon i,
.about-powering-sec .capability-icon svg {
  font-size: 16px;
  width: 18px;
  height: 18px;
  stroke: #94a3b8;
  transition:
    color 0.3s ease,
    stroke 0.3s ease,
    transform 0.3s ease;
}

.about-powering-sec .capability-item:hover .capability-icon {
  transform: scale(1.12) rotate(6deg);
  background: #fde8e8;
  color: #ea1f27;
  box-shadow: 0 4px 12px rgba(234, 31, 39, 0.18);
}

.about-powering-sec .capability-item:hover .capability-icon svg {
  stroke: #ea1f27;
}

.about-powering-sec .capability-item:hover .capability-icon i {
  color: #ea1f27;
}

/* ========================================================================= */
/* ABOUT US - 10. INNOVATION IN DIGITAL PAYMENTS SECTION                    */
/* ========================================================================= */
.about-innovation-sec {
  position: relative;
  padding: 100px 0;
  background-image: url("../images/about-us/innovation-in-digital-payments-bg.png");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
}

.about-innovation-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1;
  pointer-events: none;
}

.about-innovation-sec .container {
  position: relative;
  z-index: 2;
}

.about-innovation-sec .innovation-content {
  position: relative;
  z-index: 2;
}

.about-innovation-sec .heading {
  margin-bottom: 24px;
}

.about-innovation-sec .innovation-desc p {
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 6px;
}

.about-innovation-sec .innovation-desc p:last-child {
  margin-bottom: 0;
}

/* ========================================================================= */
/* ABOUT US - 11. OVER THREE DECADES OF TRUST AND PROGRESS (TIMELINE)       */
/* ========================================================================= */
.about-decades-timeline-sec {
  position: relative;
  padding: 50px 0;
  background-color: #ffffff;
}

.about-decades-timeline-sec .heading {
  margin-bottom: 70px;
}

.about-decades-timeline-sec .timeline-container {
  position: relative;
  max-width: 1028px;
  margin: 0 auto;
  padding: 20px 0;
}

.about-decades-timeline-sec .timeline-vertical-line {
  position: absolute;
  top: 40px;
  bottom: 53px;
  left: 50%;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(234, 31, 39, 0.3) 0,
    rgba(234, 31, 39, 0.3) 4px,
    transparent 4px,
    transparent 9px
  );
  transform: translateX(-50%);
  z-index: 1;
}

/* Dynamic scroll-progress fill line */
.about-decades-timeline-sec .timeline-line-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: #ea1f27;
  box-shadow: 0 0 10px rgba(234, 31, 39, 0.7);
  border-radius: 2px;
  transition:
    height 0.08s ease-out,
    opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.about-decades-timeline-sec .timeline-line-progress.is-active {
  opacity: 1;
}

.about-decades-timeline-sec .timeline-line-progress::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #ea1f27;
  border: 2px solid #ffffff;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow:
    0 0 10px #ea1f27,
    0 0 18px rgba(234, 31, 39, 0.8);
}

/* Row layout */
.about-decades-timeline-sec .timeline-row {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 58px;
  z-index: 2;
  transition: transform 0.35s ease;
}

.about-decades-timeline-sec .timeline-row:last-child {
  margin-bottom: 0;
}

/* Columns take 50% each */
.about-decades-timeline-sec .timeline-col {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
}

.about-decades-timeline-sec .timeline-col-left {
  justify-content: flex-end;
}

.about-decades-timeline-sec .timeline-col-right {
  justify-content: flex-start;
}

/* Timeline center node */
.about-decades-timeline-sec .timeline-node {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  border: 2px solid #ea1f27;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  transition:
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.4s ease,
    background-color 0.4s ease,
    box-shadow 0.4s ease,
    opacity 0.4s ease;
}

/* Year wrapper with connector */
.about-decades-timeline-sec .timeline-year-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-decades-timeline-sec .timeline-year {
  font-size: 3rem;
  font-weight: 700;
  color: #ea1f27;
  line-height: 1;
  letter-spacing: -0.5px;
  display: inline-block;
  transition:
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.6s ease,
    color 0.3s ease,
    text-shadow 0.3s ease;
}

/* Horizontal dashed connector line */
.about-decades-timeline-sec .timeline-connector {
  display: inline-block;
  width: 36px;
  height: 1.5px;
  background: repeating-linear-gradient(
    to right,
    #ea1f27 0,
    #ea1f27 4px,
    transparent 4px,
    transparent 8px
  );
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.1s,
    opacity 0.4s ease 0.1s;
}

.about-decades-timeline-sec .timeline-col-left .timeline-connector {
  margin-right: 5px;
  transform-origin: right center;
}

.about-decades-timeline-sec .timeline-col-right .timeline-connector {
  margin-left: 5px;
  transform-origin: left center;
}

/* Description text */
.about-decades-timeline-sec .timeline-desc {
  font-size: 16px;
  font-weight: 400;
  color: #58585b;
  line-height: 1.55;
  max-width: 420px;
  margin: 0;
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.12s,
    opacity 0.65s ease 0.12s,
    color 0.3s ease;
}

.about-decades-timeline-sec .timeline-col-left .timeline-desc {
  margin-right: 53px;
  text-align: right;
}

.about-decades-timeline-sec .timeline-col-right .timeline-desc {
  margin-left: 53px;
  text-align: left;
}

/* ------------------------------------------------------------- */
/* ON-SCROLL ANIMATION STATES (Activated by JS: .timeline-animated) */
/* ------------------------------------------------------------- */
.about-decades-timeline-sec.timeline-animated .timeline-node {
  transform: translate(-50%, -50%) scale(0.35);
  opacity: 0.3;
  border-color: rgba(234, 31, 39, 0.4);
  background-color: #ffffff;
}

.about-decades-timeline-sec.timeline-animated .timeline-connector {
  transform: scaleX(0);
  opacity: 0;
}

.about-decades-timeline-sec.timeline-animated
  .timeline-row-year-left
  .timeline-year {
  transform: translateX(-40px);
  opacity: 0;
}

.about-decades-timeline-sec.timeline-animated
  .timeline-row-year-right
  .timeline-year {
  transform: translateX(40px);
  opacity: 0;
}

.about-decades-timeline-sec.timeline-animated
  .timeline-col-left
  .timeline-desc {
  transform: translateX(-35px);
  opacity: 0;
}

.about-decades-timeline-sec.timeline-animated
  .timeline-col-right
  .timeline-desc {
  transform: translateX(35px);
  opacity: 0;
}

/* When Row Enters Viewport (.is-visible) */
.about-decades-timeline-sec.timeline-animated
  .timeline-row.is-visible
  .timeline-node {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  border-color: #ea1f27;
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(234, 31, 39, 0.16);
}

.about-decades-timeline-sec.timeline-animated
  .timeline-row.is-visible
  .timeline-connector {
  transform: scaleX(1);
  opacity: 1;
}

.about-decades-timeline-sec.timeline-animated
  .timeline-row.is-visible
  .timeline-year {
  transform: translateX(0);
  opacity: 1;
}

.about-decades-timeline-sec.timeline-animated
  .timeline-row.is-visible
  .timeline-desc {
  transform: translateX(0);
  opacity: 1;
}

/* Active Highlight for current scroll focus (.is-active) */
.about-decades-timeline-sec.timeline-animated
  .timeline-row.is-active
  .timeline-node {
  background-color: #ea1f27;
  border-color: #ffffff;
  transform: translate(-50%, -50%) scale(1.3);
  box-shadow:
    0 0 0 6px rgba(234, 31, 39, 0.25),
    0 0 16px rgba(234, 31, 39, 0.6);
  animation: timelineNodePulse 2.2s infinite ease-in-out;
}

.about-decades-timeline-sec.timeline-animated
  .timeline-row.is-active
  .timeline-year {
  transform: translateX(0) scale(1.04);
  text-shadow: 0 4px 16px rgba(234, 31, 39, 0.28);
}

.about-decades-timeline-sec.timeline-animated
  .timeline-row.is-active
  .timeline-desc {
  color: #1a1a1a;
}

@keyframes timelineNodePulse {
  0%,
  100% {
    box-shadow:
      0 0 0 4px rgba(234, 31, 39, 0.22),
      0 0 10px rgba(234, 31, 39, 0.4);
  }
  50% {
    box-shadow:
      0 0 0 8px rgba(234, 31, 39, 0.35),
      0 0 20px rgba(234, 31, 39, 0.65);
  }
}

/* Desktop Hover Interactive Touch */
@media (hover: hover) and (min-width: 768px) {
  .about-decades-timeline-sec .timeline-row:hover .timeline-year {
    transform: scale(1.06);
    color: #cf151c;
  }
  .about-decades-timeline-sec .timeline-row:hover .timeline-node {
    transform: translate(-50%, -50%) scale(1.35) !important;
    background-color: #ea1f27 !important;
    border-color: #ffffff !important;
    box-shadow:
      0 0 0 6px rgba(234, 31, 39, 0.3),
      0 0 16px rgba(234, 31, 39, 0.5) !important;
  }
  .about-decades-timeline-sec .timeline-row:hover .timeline-desc {
    color: #0f0f10;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .about-decades-timeline-sec.timeline-animated .timeline-year,
  .about-decades-timeline-sec.timeline-animated .timeline-desc,
  .about-decades-timeline-sec.timeline-animated .timeline-connector,
  .about-decades-timeline-sec.timeline-animated .timeline-node,
  .about-decades-timeline-sec .timeline-line-progress {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}

/* ========================================================================= */
/* ABOUT US - 12. WHY CHOOSE TRANSCORP SECTION                              */
/* ========================================================================= */
.about-why-choose-sec {
  position: relative;
  padding: 130px 0 50px 0;
  background-image: url("../images/about-us/powering-sec-bg.svg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  overflow: hidden;
}

.about-why-choose-sec .why-choose-img-wrap {
  position: relative;
  text-align: center;
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-why-choose-sec .why-choose-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.06));
  transition: transform 0.4s ease;
}

/* Ambient gentle floating animation for illustration */
.about-why-choose-sec.is-in-view .why-choose-img {
  animation: whyChooseFloat 4.5s ease-in-out infinite 0.8s;
  box-shadow:
    0px 1px 24px rgba(0, 0, 0, 0.05),
    0px 12px 32px -12px rgba(11, 20, 55, 0.12),
    0px 4px 8px -4px rgba(11, 20, 55, 0.06);
  border-radius: 20px;
}

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

.about-why-choose-sec .heading {
  margin-bottom: 24px;
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-why-choose-sec .heading .main-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  color: #000000;
}

.about-why-choose-sec .why-choose-cards-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-why-choose-sec .why-choose-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  padding: 20px 22px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
  cursor: default;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease,
    background 0.3s ease;
}

/* Left accent bar on hover */
.about-why-choose-sec .why-choose-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 3.5px;
  height: 0;
  background: linear-gradient(180deg, #ea1f27, #ff6b6b);
  border-radius: 0 4px 4px 0;
  transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
}

/* Light sheen reflection sweep */
.about-why-choose-sec .why-choose-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -120%;
  width: 70%;
  height: 200%;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* Scroll entrance progressive enhancement */
.about-why-choose-sec.why-animated .why-choose-img-wrap {
  opacity: 0;
  transform: translateX(-40px) scale(0.94);
}

.about-why-choose-sec.why-animated.is-in-view .why-choose-img-wrap {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.about-why-choose-sec.why-animated .heading {
  opacity: 0;
  transform: translateY(22px);
}

.about-why-choose-sec.why-animated.is-in-view .heading {
  opacity: 1;
  transform: translateY(0);
}

.about-why-choose-sec.why-animated .why-choose-card {
  opacity: 0;
  transform: translateX(35px) translateY(10px);
}

.about-why-choose-sec.why-animated.is-in-view .why-choose-card {
  opacity: 1;
  transform: translateX(0) translateY(0);
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1)
      calc(var(--why-index, 0) * 0.08s),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1)
      calc(var(--why-index, 0) * 0.08s),
    box-shadow 0.35s ease,
    border-color 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .about-why-choose-sec .why-choose-card:hover {
    transform: translateX(8px) translateY(-2px);
    box-shadow:
      0 12px 28px rgba(234, 31, 39, 0.08),
      0 2px 8px rgba(0, 0, 0, 0.02);
    border-color: rgba(234, 31, 39, 0.28);
  }

  .about-why-choose-sec .why-choose-card:hover::before {
    height: 60%;
  }

  .about-why-choose-sec .why-choose-card:hover::after {
    opacity: 1;
    animation: whySheenSweep 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
}

@keyframes whySheenSweep {
  0% {
    left: -120%;
  }
  100% {
    left: 160%;
  }
}

.about-why-choose-sec .why-choose-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  color: #ea1f27;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 2px 8px rgba(234, 31, 39, 0.06);
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.3s ease,
    box-shadow 0.35s ease;
}

.about-why-choose-sec .why-choose-icon i {
  font-size: 17px;
  color: #ea1f27;
  line-height: 1;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-why-choose-sec .why-choose-card:hover .why-choose-icon {
  transform: scale(1.14) rotate(6deg);
  background: linear-gradient(135deg, #ffffff 0%, #fde8e8 100%);
  box-shadow:
    0 8px 20px rgba(234, 31, 39, 0.2),
    0 0 0 4px rgba(234, 31, 39, 0.08);
}

.about-why-choose-sec .why-choose-card:hover .why-choose-icon i {
  transform: scale(1.1);
}

/* Sequential pulse on revealed icon badges */
.about-why-choose-sec .why-choose-icon.why-pulse {
  animation: whyPulseGlow 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes whyPulseGlow {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.18);
    box-shadow:
      0 8px 20px rgba(234, 31, 39, 0.28),
      0 0 0 5px rgba(234, 31, 39, 0.12);
  }
  100% {
    transform: scale(1);
  }
}

.about-why-choose-sec .why-choose-card-body {
  flex: 1;
}

.about-why-choose-sec .why-choose-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 4px;
  line-height: 1.35;
  transition: color 0.3s ease;
}

.about-why-choose-sec .why-choose-card:hover .why-choose-card-title {
  color: #ea1f27;
}

.about-why-choose-sec .why-choose-card-desc {
  font-size: 15px;
  font-weight: 400;
  color: #58585b;
  line-height: 1.55;
  margin: 0;
  transition: color 0.3s ease;
}

.about-why-choose-sec .why-choose-card:hover .why-choose-card-desc {
  color: #2b2b2b;
}

/* ========================================================================= */
/* ABOUT US - 13. WHAT DRIVES US SECTION                                    */
/* ========================================================================= */
.about-drives-sec {
  position: relative;
  padding: 50px 0;
  background-color: #ffffff;
}

.about-drives-sec .heading {
  margin-bottom: 60px;
}

/* Card wrapper with layered hover effect */
.about-drives-sec .drives-card-wrap {
  position: relative;
  height: 100%;
}

.about-drives-sec .drives-card-backdrop {
  position: absolute;
  inset: 0;
  background-color: #ea1f27;
  border-radius: 24px;
  z-index: 1;
  opacity: 0;
  transform: translate(0, 0) rotate(0deg);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s ease;
  pointer-events: none;
}

/* Front white card */
.about-drives-sec .drives-card {
  position: relative;
  z-index: 2;
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* Red Icon Box with soft red glow */
.about-drives-sec .drives-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background-color: #ea1f27;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(234, 31, 39, 0.32);
  margin-bottom: 28px;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease;
}

.about-drives-sec .drives-icon-box i {
  font-size: 30px;
  color: #ffffff;
  line-height: 1;
}

.about-drives-sec .drives-icon-box svg {
  stroke: #ffffff;
}

.about-drives-sec .drives-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 14px;
  line-height: 1.3;
}

.about-drives-sec .drives-card-desc {
  font-size: 13.5px;
  font-weight: 400;
  color: #58585b;
  line-height: 1.6;
  margin: 0;
}

.about-drives-sec .drives-card-wrap:hover .drives-card-backdrop {
  opacity: 1;
  transform: translate(5px, 9px) rotate(-1.5deg);
}

.about-drives-sec .drives-card-wrap:hover .drives-card {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.04);
}

.about-drives-sec .drives-card-wrap:hover .drives-icon-box {
  transform: scale(1.06);
  box-shadow: 0 14px 28px rgba(234, 31, 39, 0.42);
}

/* ==================================================== */
/* Consolidated Responsive Media Queries                */
/* ==================================================== */

@media (min-width: 992px) {
  .how-buy-forex-sec .left-step .timeline-content-col {
    padding-right: 65px !important;
  }
  .how-buy-forex-sec .right-step .timeline-content-col {
    padding-left: 65px !important;
  }
}

.why-choose-scroll-sec.is-fixed {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100vh !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  z-index: 9999 !important;
  background: #ffffff !important;
}
.why-choose-scroll-sec.is-bottom {
  position: absolute !important;
  left: 0 !important;
  width: 100% !important;
  height: 100vh !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  background: #ffffff !important;
}
@media (max-width: 1400px) {
  .connecting-svg {
    max-width: 960px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }
}
@media (max-width: 1199px) {
  .what-is-remittance-card {
    padding: 40px 40px;
  }
  .what-is-remittance-content .what-is-title {
    font-size: 30px;
  }
  .what-is-remittance-content .what-is-desc {
    font-size: 15px;
  }
  .become-partner-card {
    padding: 45px 40px;
  }
  .partner-title {
    font-size: 32px;
  }
  .buy-forex-banner-sec {
    background-size: contain;
    padding: 110px 0px 60px 0;
  }
  .buy-forex-banner-sec .buy-forex-title {
    font-size: 2.75rem;
  }
  .buy-forex-banner-sec .buy-forex-title .text-red {
    font-size: 2.75rem;
  }

  .connecting-svg {
    display: none;
  }

  .forex-card-benefits-sec {
    padding: 70px 0;
  }
  .benefits-grid-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
  .benefit-card {
    padding: 18px;
  }
  .benefit-card .benefit-text h4 {
    font-size: 16px;
  }
  .benefit-card .benefit-text p {
    font-size: 14px;
  }
  .card-tilt-wrapper {
    width: 290px;
    height: 180px;
  }
  .animated-card-bg {
    width: 380px;
    height: 380px;
  }
  .card-bg-ring.ring-3 {
    width: 325px;
    height: 325px;
  }
  .card-bg-ring.ring-2 {
    width: 280px;
    height: 280px;
  }
  .card-bg-ring.ring-1 {
    width: 190px;
    height: 190px;
  }

  /* ===================================================================== */
  /* BUSINESS ASSOCIATE - RESPONSIVE (MAX-WIDTH: 1199px)                   */
  /* ===================================================================== */
  .ba-stats-card {
    padding: 28px 14px;
  }
  .ba-stat-item {
    padding: 0 12px;
  }
  .ba-stat-number {
    font-size: 34px;
  }
  .ba-stat-label {
    font-size: 13px;
  }

  /* --- Business Associate: 03. Partner With Transcorp --- */
  .ba-partner-content {
    padding-left: 15px;
  }

  .ba-partner-badge {
    right: 0;
    bottom: 20px;
  }

  /* --- Business Associate: 04. Services & Benefits --- */
  .ba-services-benefits-sec {
    padding: 75px 0;
  }
  .ba-services-block {
    margin-bottom: 60px;
  }
  .ba-pill-text {
    font-size: 13px;
  }
  .ba-benefit-cell {
    padding: 22px 24px;
  }

  /* --- Business Associate: 05. Who Can Apply --- */

  .ba-who-grid {
    gap: 18px 14px;
  }
  .ba-who-card {
    padding: 14px 16px;
    gap: 12px;
  }
  .ba-who-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 17px;
  }
  .ba-who-title {
    font-size: 13.5px;
  }

  /* --- Business Associate: 06. Basic Requirements --- */
  .ba-req-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
  .ba-req-card {
    padding: 22px 10px 18px;
  }
  .ba-req-title {
    font-size: 13.5px;
  }
  /* ===================================================================== */
  /* ABOUT US - RESPONSIVE (MAX-WIDTH: 1199px)                             */
  /* ===================================================================== */

  /* --- About Us: 01. HERO BANNER SECTION --- */
  .about-gallery-col-1 {
    margin-top: 90px;
  }
  .about-gallery-col-3 {
    margin-top: 45px;
  }

  /* --- About Us: 02. OUR STORY SECTION --- */
  .about-our-story-sec .heading .main-title {
    font-size: 38px;
  }
  .about-our-story-sec .our-story-card-inner {
    padding: 24px 20px 20px 20px;
  }

  /* --- About Us: 03. TRANSCORP AT A GLANCE SECTION --- */
  .about-glance-sec .about-glance-item {
    padding: 0 20px;
  }
  .about-glance-sec .glance-number {
    font-size: 36px;
  }
  .about-glance-sec .glance-label {
    font-size: 13.5px;
  }

  /* --- About Us: 04. REGULATED. RELIABLE. RESPONSIBLE. SECTION --- */
  .about-regulated-sec .regulated-content-card {
    padding: 38px 34px;
    width: 48%;
    margin-right: -10%;
  }
  .about-regulated-sec .regulated-title {
    font-size: 34px;
  }
  .about-regulated-sec .regulated-image-card {
    width: 62%;
  }

  /* --- About Us: 05. OUR LICENSES AND CREDENTIALS SECTION --- */
  .about-credentials-sec .credentials-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  /* --- About Us: 08. OUR NETWORK SECTION --- */
  .about-network-sec .about-network-card {
    padding: 35px 20px;
  }
  .about-network-sec .about-network-item {
    padding: 0 12px;
  }
  .about-network-sec .network-title {
    font-size: 18px;
  }
  .about-network-sec .network-desc {
    font-size: 13.5px;
  }

  /* --- About Us: 10. INNOVATION IN DIGITAL PAYMENTS SECTION --- */
  .about-innovation-sec {
    padding: 85px 0;
  }
  .about-innovation-sec .innovation-content {
    max-width: 500px;
  }
}

@media (max-width: 991px) {
  .why-choose-mobile-sec .why-card-item {
    width: 100% !important;
    min-height: 200px;
    height: 100%;
    margin-top: 0 !important;
  }
  .why-choose-pagination {
    position: relative !important;
    bottom: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .why-choose-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #cbd5e1;
    opacity: 1;
    margin: 0 !important;
    transition: all 0.3s ease;
  }
  .why-choose-pagination .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 6px;
    background: #ea1f27 !important;
  }
  .why-choose-mobile-sec {
    padding: 30px 0 !important;
  }
  .forex-travel-hero-img {
    justify-content: center;
  }
  .buy-forex-banner-sec {
    padding: 90px 0px 60px 0;
    background-position: center bottom;
    background-size: contain;
  }
  .buy-forex-banner-sec .buy-forex-title {
    font-size: 30px;
  }
  .buy-forex-banner-sec .buy-forex-title .text-red {
    font-size: 30px;
  }
  .buy-forex-banner-sec .buy-forex-desc {
    font-size: 15px;
    max-width: 100%;
  }
  .foreign-currencies-sec {
    padding: 50px 0;
  }
  .foreign-currencies-sec .sec-title {
    font-size: 30px;
    margin-bottom: 35px;
  }
  .docs-required-sec {
    padding: 50px 0;
  }
  .docs-required-sec .docs-title {
    font-size: 30px;
    margin-top: 15px;
  }
  .docs-required-sec .docs-sub-heading {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .docs-required-sec .doc-badge-pill {
    padding: 12px 18px;
  }
  .why-col:nth-child(3n) {
    border-right: 1px solid #eef0f4;
  }
  .why-col:nth-child(2n) {
    border-right: none;
  }
  .why-col:nth-last-child(-n + 3) {
    border-bottom: 1px solid #eef0f4;
  }
  .why-col:nth-last-child(-n + 2) {
    border-bottom: none;
  }
  .why-item {
    padding: 35px 20px;
  }
  .how-buy-forex-sec {
    padding: 60px 0;
  }
  .how-buy-forex-sec .timeline-line-base,
  .how-buy-forex-sec .timeline-line-progress {
    left: -15px;
  }
  .how-buy-forex-sec .timeline-node {
    left: -16px;
  }
  .how-buy-forex-sec .timeline-connector {
    display: none;
  }
  .how-buy-forex-sec .timeline-content-col {
    padding-left: 50px !important;
    padding-right: 15px !important;
  }
  .how-buy-forex-sec .left-step .glass-card::before,
  .how-buy-forex-sec .right-step .glass-card::before {
    background: linear-gradient(
      90deg,
      #a3151b 0%,
      #a3151b 8%,
      rgba(230, 35, 41, 0.3) 14%,
      transparent 20%
    );
  }
  .how-buy-forex-sec .left-step .glass-card,
  .how-buy-forex-sec .right-step .glass-card {
    box-shadow:
      0 15px 35px rgba(0, 0, 0, 0.65),
      -10px 0 25px -5px rgba(230, 35, 41, 0.15);
  }
  .how-buy-forex-sec .timeline-item.active.left-step .glass-card,
  .how-buy-forex-sec .timeline-item.active.right-step .glass-card {
    box-shadow:
      0 18px 40px rgba(0, 0, 0, 0.75),
      -15px 0 35px -5px rgba(230, 35, 41, 0.35),
      inset 10px 0 25px -12px rgba(230, 35, 41, 0.25);
  }
  .how-buy-forex-sec .sec-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .how-buy-forex-sec .glass-card {
    padding: 22px;
  }
  .heading {
    margin-bottom: 30px;
  }
  .main-title {
    font-size: 30px;
    line-height: 23px;
  }
  .sub-heading {
    font-size: 15px;
    line-height: 23px;
    margin-top: 12px;
  }
  .main-title {
    font-size: 30px !important;
    line-height: normal !important;
  }
  .foreign-currencies-sec .currency-card {
    padding: 14px 18px;
    gap: 10px;
  }
  .foreign-currencies-sec .currency-card .curr-flag {
    width: 38px;
    height: 38px;
  }

  .forex-card-benefits-sec {
    padding: 60px 0;
  }
  .forex-card-benefits-sec .heading {
    margin-bottom: 40px;
  }
  .benefits-grid-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .center-card-stage {
    order: -1;
    min-height: 350px;
    margin-bottom: 10px;
  }
  .left-benefits,
  .right-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
  }
  .card-tilt-wrapper {
    width: 320px;
    height: 200px;
  }
  .animated-card-bg {
    width: 380px;
    height: 380px;
  }
  .card-bg-ring.ring-3 {
    width: 360px;
    height: 360px;
  }
  .card-bg-ring.ring-2 {
    width: 270px;
    height: 270px;
  }
  .card-bg-ring.ring-1 {
    width: 180px;
    height: 180px;
  }

  .how-get-forex-sec {
    padding: 40px 0;
  }
  .process-steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .what-is-outward-remittance-sec {
    padding: 50px 0;
  }
  .what-is-remittance-card {
    padding: 36px 28px;
    border-radius: 20px;
  }
  .what-is-remittance-content {
    text-align: center;
  }
  .what-is-remittance-content .what-is-title {
    font-size: 26px;
  }
  .remittance-tags-wrapper {
    justify-content: center;
  }
  .what-is-remittance-img-box img {
    max-width: 340px;
    margin: 0 auto 15px auto;
  }
  .four-steps-process-sec .process-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .become-partner-sec {
    padding: 50px 0;
  }
  .become-partner-card {
    padding: 36px 28px;
    border-radius: 20px;
  }
  .partner-title {
    font-size: 28px;
  }
  .become-partner-img-box img {
    max-width: 360px;
    margin: 20px auto 0 auto;
  }
  .why-choose-scroll-sec {
    padding: 40px 0;
  }
  .why-scroll-container {
    padding: 20px 40px 0 40px;
  }
  .types-main-title {
    font-size: 28px;
  }
  .types-remittance-sec {
    padding: 30px 0;
  }

  /* ===================================================================== */
  /* BUSINESS ASSOCIATE - RESPONSIVE (MAX-WIDTH: 991px)                    */
  /* ===================================================================== */
  .ba-banner-sec .forex-travel-hero-img {
    margin-top: 40px;
  }
  .ba-banner-sec .buy-forex-desc {
    margin-bottom: 20px;
  }
  .ba-stats-card {
    padding: 24px 14px;
  }
  .ba-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: stretch;
  }
  .ba-stat-item {
    padding: 0 10px;
    border-right: 1px solid #ebdada;
    border-bottom: none;
    margin: 0;
  }
  .ba-stat-item:last-child {
    border-right: none;
  }
  .ba-stat-number {
    font-size: 30px;
    margin-bottom: 6px;
  }
  .ba-stat-label {
    font-size: 12.5px;
  }

  /* --- Business Associate: 03. Partner With Transcorp --- */
  .ba-partner-sec {
    padding: 45px 0;
  }
  .ba-partner-image-wrap {
    max-width: 540px;
    display: block;
    margin: 0 auto 35px auto;
  }
  .ba-partner-content {
    padding-left: 0;
    max-width: 600px;
    margin: 0 auto;
  }
  .ba-partner-badge {
    right: 15px;
    bottom: 15px;
  }

  /* --- Business Associate: 04. Services & Benefits --- */
  .ba-services-benefits-sec {
    padding: 60px 0;
  }
  .ba-services-img-wrap {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
  .ba-services-block {
    margin-bottom: 50px;
  }
  .ba-benefit-cell {
    padding: 20px 20px;
  }
  .ba-benefit-body h4 {
    font-size: 15px;
  }
  .ba-benefit-body p {
    font-size: 13px;
  }

  /* --- Business Associate: 05. Who Can Apply --- */
  .ba-who-apply-sec {
    padding: 35px 0;
  }
  .ba-who-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .ba-who-card {
    padding: 14px 18px;
  }

  /* ===================================================================== */
  /* ABOUT US - RESPONSIVE (MAX-WIDTH: 991px)                              */
  /* ===================================================================== */

  /* --- About Us: 01. HERO BANNER SECTION --- */
  .about-hero-gallery-wrap {
    margin: 40px auto 0;
    max-width: 520px;
  }
  .about-gallery-col-1 {
    margin-top: 70px;
  }
  .about-gallery-col-3 {
    margin-top: 35px;
  }

  /* --- About Us: 02. OUR STORY SECTION --- */
  .about-our-story-sec {
    padding: 40px 0;
  }
  .about-our-story-sec .heading .main-title {
    font-size: 34px;
    line-height: 38px;
  }
  .about-our-story-sec .our-story-card {
    margin: 20px auto 0 auto;
    max-width: 480px;
  }

  /* --- About Us: 03. TRANSCORP AT A GLANCE SECTION --- */
  .about-glance-sec {
    padding: 35px 0;
  }
  .about-glance-sec .heading {
    margin-bottom: 35px;
  }
  .about-glance-sec .heading .main-title {
    font-size: 32px;
  }
  .about-glance-sec .about-glance-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 20px;
  }
  .about-glance-sec .about-glance-item:first-child {
    padding: 0 0 0 16px;
  }
  .about-glance-sec .about-glance-item {
    border-right: none;
    padding: 0 0 0 16px;
    border-left: 3px solid #ea1f27;
  }

  /* --- About Us: 04. REGULATED. RELIABLE. RESPONSIBLE. SECTION --- */
  .about-regulated-sec {
    padding: 45px 0 55px 0;
  }
  .about-regulated-sec .regulated-wrapper {
    flex-direction: column;
    gap: 24px;
  }
  .about-regulated-sec .regulated-content-card {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    padding: 34px 28px;
  }
  .about-regulated-sec .regulated-title {
    font-size: 30px;
  }
  .about-regulated-sec .regulated-image-card {
    width: 100%;
    border-radius: 20px;
  }

  /* --- About Us: 05. OUR LICENSES AND CREDENTIALS SECTION --- */
  .about-credentials-sec {
    padding: 0;
  }
  .about-credentials-sec .heading {
    margin-bottom: 30px;
  }
  .about-credentials-sec .heading .main-title {
    font-size: 32px;
  }
  .about-credentials-sec .credentials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  /* --- About Us: 06. OUR SERVICES SECTION --- */
  .about-services-sec {
    padding: 120px 0 30px 0;
  }
  .about-services-sec .heading {
    margin-bottom: 35px;
  }
  .about-services-sec .heading .main-title {
    font-size: 32px;
    line-height: 36px;
  }
  .about-services-sec .about-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .about-services-sec .about-service-card {
    padding: 25px;
  }
  .about-services-sec .service-icon-wrap {
    margin-bottom: 18px;
  }
  .about-services-sec .service-card-title {
    font-size: 18px;
  }

  /* --- About Us: 07. OUR NATIONAL PRESENCE SECTION --- */
  .about-national-presence-sec .national-presence-image-wrap {
    max-width: 100%;
    margin: 0 auto;
  }

  /* --- About Us: 08. OUR NETWORK SECTION --- */
  .about-network-sec {
    padding: 35px 0 15px 0;
  }
  .about-network-sec .about-network-card {
    padding: 30px 18px;
  }
  .about-network-sec .heading {
    margin-bottom: 25px;
  }
  .about-network-sec .about-network-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px 14px;
  }
  .about-network-sec .about-network-item {
    border-right: none;
    padding: 0 8px;
  }

  /* --- About Us: 09. POWERING DIGITAL PAYMENT ECOSYSTEM SECTION --- */
  .about-powering-sec {
    padding: 110px 0 40px 0;
  }
  .about-powering-sec .capabilities-header-bar {
    margin-top: 35px;
    padding: 16px 0;
  }
  .about-powering-sec .capabilities-grid {
    grid-template-columns: 1fr;
  }
  .about-powering-sec .capability-item {
    padding: 20px 0;
  }
  .about-powering-sec .capability-item:nth-child(odd) {
    border-right: none;
    padding-left: 0;
    padding-right: 0;
  }
  .about-powering-sec .capability-item:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
  }
  .about-powering-sec .capability-item:nth-child(8) {
    border-bottom: 1px solid #e5e9f2;
  }
  .about-powering-sec .capability-item:last-child {
    border-bottom: none;
  }

  /* --- About Us: 10. INNOVATION IN DIGITAL PAYMENTS SECTION --- */
  .about-innovation-sec {
    padding: 70px 0;
    background-position: center center;
  }
  .about-innovation-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(138, 21, 33, 0.88) 0%,
      rgba(10, 18, 42, 0.92) 100%
    );
    z-index: 1;
    pointer-events: none;
  }

  .about-innovation-sec .innovation-content {
    max-width: 100%;
  }

  /* --- About Us: 11. OVER THREE DECADES OF TRUST AND PROGRESS (TIMELINE) --- */
  .about-decades-timeline-sec {
    padding: 40px 0;
  }
  .about-decades-timeline-sec .heading {
    margin-bottom: 55px;
  }
  .about-decades-timeline-sec .timeline-year {
    font-size: 30px;
  }
  .about-decades-timeline-sec .timeline-desc {
    font-size: 13px;
    max-width: 340px;
  }
  .about-decades-timeline-sec .timeline-col-left .timeline-desc {
    margin-right: 38px;
  }
  .about-decades-timeline-sec .timeline-col-right .timeline-desc {
    margin-left: 38px;
  }
  .about-decades-timeline-sec .timeline-connector {
    width: 26px;
  }
  .about-decades-timeline-sec .timeline-row {
    margin-bottom: 48px;
  }

  /* --- About Us: 12. WHY CHOOSE TRANSCORP SECTION --- */
  .about-why-choose-sec {
    padding: 125px 0 0px 0;
  }
  .about-why-choose-sec .heading .main-title {
    font-size: 30px;
  }
  .about-why-choose-sec .why-choose-img-wrap {
    margin-bottom: 20px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  .about-why-choose-sec .why-choose-card {
    padding: 15px 18px;
  }

  /* --- About Us: 13. WHAT DRIVES US SECTION --- */
  .about-drives-sec {
    padding: 40px 0;
  }
  .about-drives-sec .heading {
    margin-bottom: 45px;
  }
  .about-drives-sec .drives-card {
    padding: 25px;
  }
  .about-drives-sec .drives-icon-box {
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
  }
  .about-drives-sec .drives-icon-box i {
    font-size: 26px;
  }
  .about-drives-sec .drives-icon-box svg {
    width: 28px;
    height: 28px;
  }
  .about-drives-sec .drives-card-title {
    font-size: 18px;
  }
}

/* Max-Width 767px (Mobile & Small Tablets) */
@media (max-width: 767px) {
  .forex-travel-hero-sec h4 {
    font-size: 18px;
    line-height: normal;
  }
  .become-partner-sec {
    padding-bottom: 0 !important;
  }
  .types-remittance-header {
    margin-bottom: 15px;
  }
  .types-main-title {
    font-size: 22px;
  }
  .main-title {
    font-size: 24px !important;
    line-height: normal !important;
    font-weight: 600;
  }
  .faq-sec {
    padding: 50px 0;
  }
  .custom-faq-accordion .accordion-button {
    font-size: 15px;
    padding: 18px 0;
  }
  .custom-faq-accordion .accordion-body {
    font-size: 14px;
    padding: 0 0 18px 0;
  }
  .btn-calc-submit {
    font-size: 16px;
    font-weight: 500;
    padding: 10px;
  }
  .live-rate-bar {
    padding: 13px 14px;
    margin: 16px 0 16px;
  }
  .live-rate-bar .rate-value {
    font-size: 15px;
  }
  .how-buy-forex-sec .timeline-node {
    left: -15px;
  }
  .why-item {
    padding: 20px;
  }

  .left-benefits,
  .right-benefits {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .benefit-card {
    padding: 16px 18px;
  }
  .benefit-card .benefit-text h4 {
    font-size: 16px;
  }
  .benefit-card .benefit-text p {
    font-size: 14px;
  }
  .center-card-stage {
    min-height: 300px;
  }
  .card-tilt-wrapper {
    width: 280px;
    height: 175px;
  }
  .animated-card-bg {
    width: 310px;
    height: 310px;
  }
  .card-bg-ring.ring-3 {
    width: 300px;
    height: 300px;
  }
  .card-bg-ring.ring-2 {
    width: 220px;
    height: 220px;
  }
  .card-bg-ring.ring-1 {
    width: 150px;
    height: 150px;
  }

  .process-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .step-icon-node {
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
  }
  .step-icon-node i {
    font-size: 18px;
  }
  .process-step-item .step-content h4 {
    font-size: 15px;
  }
  .process-step-item .step-content p {
    font-size: 13px;
  }
  .why-card-item {
    padding: 18px;
  }
  .card-num {
    font-size: 30px;
  }
  .card-body-content .card-title {
    font-size: 16px;
    line-height: normal;
  }
  .card-icon-badge {
    width: 40px;
    height: 40px;
  }
  .scroll-connecting-line {
    top: 148px;
  }
  .remittance-tags-wrapper {
    gap: 6px;
  }

  /* ===================================================================== */
  /* BUSINESS ASSOCIATE - RESPONSIVE (MAX-WIDTH: 767px)                    */
  /* ===================================================================== */

  .ba-stats-card {
    padding: 18px 10px;
    border-radius: 16px;
  }
  .ba-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }
  .ba-stat-item {
    flex: unset;
    max-width: 100%;
    width: 100%;
    margin: 0 !important;
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-right: 1px solid #ebdada;
    border-bottom: 1px solid #ebdada;
  }
  .ba-stat-item:nth-child(2),
  .ba-stat-item:nth-child(4) {
    border-right: none;
  }
  .ba-stat-item:nth-child(1),
  .ba-stat-item:nth-child(3) {
    border-right: 1px solid #ebdada;
  }
  .ba-stat-item:last-child {
    grid-column: 1 / -1;
    border-right: none;
    border-bottom: none;
    padding: 16px 10px 6px;
    margin: 0 !important;
  }
  .ba-stat-number {
    font-size: 28px;
    margin-bottom: 5px;
  }
  .ba-stat-label {
    font-size: 12.5px;
    line-height: 1.35;
    max-width: 170px;
    margin: 0 auto;
  }

  /* --- Business Associate: 03. Partner With Transcorp --- */
  .ba-partner-sec {
    padding: 35px 0;
  }

  .ba-partner-paragraphs p {
    font-size: 14px;
    line-height: 1.6;
  }
  .ba-partner-highlight-box {
    padding: 16px 18px;
    border-radius: 14px;
  }
  .ba-partner-highlight-box p {
    font-size: 13.5px;
  }
  .ba-partner-badge {
    padding: 8px 14px;
    border-radius: 12px;
  }
  .ba-badge-title {
    font-size: 12px;
  }
  .ba-badge-subtitle {
    font-size: 12px;
  }

  /* --- Business Associate: 04. Services & Benefits --- */
  .ba-services-benefits-sec {
    padding: 50px 0;
  }
  .ba-services-pills-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .ba-benefits-grid {
    grid-template-columns: 1fr;
  }
  .ba-benefit-cell {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 20px;
  }
  .ba-benefit-cell:last-child {
    border-bottom: none;
  }

  /* --- Business Associate: 05. Who Can Apply --- */
  .ba-who-apply-sec {
    padding: 40px 0;
  }
  .ba-who-apply-sec .heading {
    margin-bottom: 30px;
  }
  .ba-who-card {
    padding: 12px 16px;
  }
  .ba-who-title {
    font-size: 13.5px;
  }

  /* --- Business Associate: 06. Basic Requirements --- */
  .ba-requirements-sec .heading {
    margin-bottom: 25px;
  }
  .ba-req-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .ba-req-card {
    padding: 18px 10px 16px;
  }
  .ba-req-title {
    font-size: 13px;
  }

  /* ===================================================================== */
  /* ABOUT US - RESPONSIVE (MAX-WIDTH: 767px)                              */
  /* ===================================================================== */

  /* --- About Us: 11. OVER THREE DECADES OF TRUST AND PROGRESS (TIMELINE) --- */
  .about-decades-timeline-sec {
    padding: 30px 0;
  }
  .about-decades-timeline-sec .heading {
    margin-bottom: 40px;
  }
  .about-decades-timeline-sec .timeline-vertical-line {
    left: 20px;
    transform: none;
    bottom: 74px;
  }
  .about-decades-timeline-sec .timeline-row {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 48px;
    margin-bottom: 35px;
  }
  .about-decades-timeline-sec .timeline-node {
    left: 20px;
    top: 14px;
    transform: translate(-50%, -50%);
  }
  .about-decades-timeline-sec .timeline-col {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: left !important;
    justify-content: flex-start !important;
  }
  .about-decades-timeline-sec .timeline-row-year-left {
    flex-direction: column;
  }
  .about-decades-timeline-sec .timeline-row-year-right {
    flex-direction: column-reverse;
  }
  .about-decades-timeline-sec .timeline-col-left .timeline-desc,
  .about-decades-timeline-sec .timeline-col-right .timeline-desc {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    max-width: 100%;
    font-size: 13.5px;
  }
  .about-decades-timeline-sec .timeline-year-wrap {
    margin-bottom: 6px;
  }
  .about-decades-timeline-sec .timeline-connector {
    display: none !important;
  }
  .about-decades-timeline-sec .timeline-year {
    font-size: 26px;
  }

  /* Mobile on-scroll animated state overrides */
  .about-decades-timeline-sec.timeline-animated .timeline-node {
    left: 20px;
    top: 14px;
    transform: translate(-50%, -50%) scale(0.35);
  }
  .about-decades-timeline-sec.timeline-animated
    .timeline-row.is-visible
    .timeline-node {
    transform: translate(-50%, -50%) scale(1);
  }
  .about-decades-timeline-sec.timeline-animated
    .timeline-row.is-active
    .timeline-node {
    transform: translate(-50%, -50%) scale(1.2);
  }
  .about-decades-timeline-sec.timeline-animated
    .timeline-row-year-left
    .timeline-year,
  .about-decades-timeline-sec.timeline-animated
    .timeline-row-year-right
    .timeline-year {
    transform: translateX(25px);
    opacity: 0;
  }
  .about-decades-timeline-sec.timeline-animated
    .timeline-col-left
    .timeline-desc,
  .about-decades-timeline-sec.timeline-animated
    .timeline-col-right
    .timeline-desc {
    transform: translateY(16px);
    opacity: 0;
  }
  .about-decades-timeline-sec.timeline-animated
    .timeline-row.is-visible
    .timeline-year {
    transform: translateX(0);
    opacity: 1;
  }
  .about-decades-timeline-sec.timeline-animated
    .timeline-row.is-visible
    .timeline-desc {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Max-Width 575px (Extra Small Mobile Screens) */
@media (max-width: 575px) {
  .how-buy-forex-sec .timeline-node {
    left: 19px;
    top: 92px;
  }
  .how-buy-forex-sec .timeline-line-base,
  .how-buy-forex-sec .timeline-line-progress {
    left: 20px;
    top: 84px;
  }
  .why-title {
    font-size: 18px;
    margin: 25px 0 4px 0px;
  }
  .why-desc {
    font-size: 16px;
  }
  .calc-tab {
    padding: 9px 15px;
    font-size: 14px;
  }
  .forex-calc-card-inner {
    padding: 16px;
  }
  .calc-input-box {
    padding: 6px 14px;
    min-height: 50px;
  }
  .calc-amount-input {
    font-size: 18px;
    font-weight: 600;
    color: #0d0d0d;
    letter-spacing: 0;
  }
  .buy-forex-banner-sec .rbi-badge {
    font-size: 12px;
  }
  .buy-forex-banner-sec .btn-get-rate {
    padding: 11px 26px;
    font-size: 14px;
    width: 100%;
    text-align: center;
  }
  .foreign-currencies-sec .currency-card {
    padding: 14px 18px;
  }
  .foreign-currencies-sec .currency-card .curr-flag {
    width: 40px;
    height: 40px;
  }
  .why-col {
    border-right: none !important;
    border-bottom: 1px solid #eef0f4 !important;
  }
  .why-col:last-child {
    border-bottom: none !important;
  }
  .how-buy-forex-sec .sec-title {
    font-size: 22px;
  }
  .how-buy-forex-sec .glass-card h4 {
    font-size: 16px;
  }
  .how-buy-forex-sec .glass-card p {
    font-size: 13px;
    line-height: 22px;
  }
  .how-buy-forex-sec .timeline-content-col {
    padding-left: 55px !important;
    padding-right: 20px !important;
  }
  .how-buy-forex-sec .glass-card {
    padding: 12px;
  }

  .forex-card-benefits-sec {
    padding: 45px 0;
  }
  .forex-card-benefits-sec .heading h2.main-title {
    font-size: 26px !important;
    line-height: 1.25;
    margin-bottom: 8px;
  }
  .forex-card-benefits-sec .heading p.sub-heading {
    font-size: 14px;
    line-height: 1.4;
  }
  .benefit-card {
    padding: 16px;
    gap: 12px;
    border-radius: 16px;
  }
  .benefit-card .benefit-icon-box {
    width: 38px;
    height: 38px;
  }
  .benefit-card .benefit-icon-box i {
    font-size: 16px;
  }
  .benefit-card .benefit-text h4 {
    font-size: 15px;
    margin-bottom: 4px;
  }
  .benefit-card .benefit-text p {
    font-size: 13.5px;
    line-height: 1.45;
  }
  .card-tilt-wrapper {
    width: 260px;
    height: 162px;
  }
  .animated-card-bg {
    width: 280px;
    height: 280px;
  }
  .card-bg-ring.ring-3 {
    width: 270px;
    height: 270px;
  }
  .card-bg-ring.ring-2 {
    width: 200px;
    height: 200px;
  }
  .card-bg-ring.ring-1 {
    width: 130px;
    height: 130px;
  }

  .how-get-forex-sec {
    padding: 30px 0;
  }
  .process-steps-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
  .what-is-remittance-card {
    padding: 28px 20px;
    border-radius: 16px;
  }
  .what-is-remittance-content .what-is-title {
    font-size: 22px;
  }
  .what-is-remittance-content .what-is-desc {
    font-size: 14px;
    line-height: 1.6;
  }
  .remittance-tag-pill {
    padding: 7px 16px;
    font-size: 13.5px;
  }
  .four-steps-process-sec .process-steps-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
  .become-partner-card {
    padding: 28px 20px;
    border-radius: 16px;
  }
  .partner-title {
    font-size: 24px;
  }
  .partner-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .partner-benefit-pill {
    padding: 14px 16px;
  }
  .pill-title {
    font-size: 14px;
  }
  .btn-join-now {
    width: 100%;
    text-align: center;
  }

  /* ===================================================================== */
  /* BUSINESS ASSOCIATE - RESPONSIVE (MAX-WIDTH: 575px)                    */
  /* ===================================================================== */

  .ba-stats-card {
    padding: 14px 8px;
    border-radius: 14px;
  }
  .ba-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }
  .ba-stat-item {
    flex: unset;
    max-width: 100%;
    width: 100%;
    margin: 0 !important;
    padding: 12px 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-right: 1px solid #ebdada;
    border-bottom: 1px solid #ebdada;
  }
  .ba-stat-item:nth-child(2),
  .ba-stat-item:nth-child(4) {
    border-right: none;
  }
  .ba-stat-item:nth-child(1),
  .ba-stat-item:nth-child(3) {
    border-right: 1px solid #ebdada;
  }
  .ba-stat-item:last-child {
    grid-column: 1 / -1;
    border-right: none;
    border-bottom: none;
    padding: 14px 6px 4px;
    margin: 0 !important;
  }
  .ba-stat-number {
    font-size: 24px;
    margin-bottom: 3px;
  }
  .ba-stat-label {
    font-size: 11.5px;
    line-height: 1.3;
    max-width: 140px;
    margin: 0 auto;
  }

  /* --- Business Associate: 03. Partner With Transcorp --- */
  .ba-partner-sec {
    padding: 30px 0;
  }
  .ba-partner-image-wrap {
    margin-bottom: 22px;
  }
  .ba-partner-img {
    border-radius: 16px;
  }
  .ba-partner-badge {
    right: 10px;
    bottom: 10px;
    padding: 7px 12px;
    gap: 8px;
  }
  .ba-badge-icon svg {
    width: 18px;
    height: 20px;
  }
  .ba-badge-title {
    font-size: 11px;
  }
  .ba-badge-subtitle {
    font-size: 11.5px;
  }
  .ba-partner-sec .heading {
    margin-bottom: 14px;
  }

  .ba-partner-paragraphs p {
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 12px;
  }
  .ba-partner-highlight-box {
    padding: 14px 16px;
    border-radius: 12px;
    margin-top: 18px;
  }
  .ba-partner-highlight-box p {
    font-size: 13px;
    line-height: 1.55;
  }

  /* --- Business Associate: 04. Services & Benefits --- */
  .ba-services-benefits-sec {
    padding: 40px 0;
  }
  .ba-services-block {
    margin-bottom: 40px;
  }
  .ba-services-block .heading,
  .ba-benefits-block .heading {
    margin-bottom: 24px;
  }
  .ba-service-pill {
    padding: 10px 14px;
    border-radius: 16px;
    min-height: auto;
    gap: 12px;
  }
  .ba-pill-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 15px;
  }
  .ba-pill-text {
    font-size: 12.5px;
  }
  .ba-eyebrow-subtitle {
    font-size: 11px;
  }
  .ba-benefit-cell {
    padding: 16px 14px;
    gap: 14px;
  }
  .ba-benefit-num {
    font-size: 14.5px;
  }
  .ba-benefit-body h4 {
    font-size: 14.5px;
  }
  .ba-benefit-body p {
    font-size: 12.5px;
  }

  /* --- Business Associate: 05. Who Can Apply --- */
  .ba-who-apply-sec {
    padding: 35px 0;
  }
  .ba-who-apply-sec .heading {
    margin-bottom: 24px;
  }
  .ba-who-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ba-who-card {
    padding: 12px 14px;
    border-radius: 14px;
    min-height: auto;
  }
  .ba-who-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 15px;
  }
  .ba-who-title {
    font-size: 13px;
  }

  /* --- Business Associate: 06. Basic Requirements --- */
  .ba-requirements-sec .heading {
    margin-bottom: 22px;
  }
  .ba-requirements-sec .heading .sub-heading {
    font-size: 14px;
  }
  .ba-req-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .ba-req-card {
    padding: 16px 8px 14px;
    border-radius: 14px;
  }
  .ba-req-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 17px;
    margin-bottom: 12px;
  }
  .ba-age-badge {
    width: 25px;
    height: 25px;
    font-size: 12px;
  }
  .ba-age-badge sup {
    font-size: 7.5px;
  }
  .ba-req-title {
    font-size: 12.5px;
  }

  /* ===================================================================== */
  /* ABOUT US - RESPONSIVE (MAX-WIDTH: 575px)                              */
  /* ===================================================================== */

  /* --- About Us: 01. HERO BANNER SECTION --- */
  .about-hero-gallery {
    gap: 10px;
  }
  .about-gallery-col {
    gap: 10px;
  }
  .about-gallery-col-1 {
    margin-top: 40px;
  }
  .about-gallery-col-3 {
    margin-top: 20px;
  }
  .about-hero-gallery-wrap::before,
  .about-hero-gallery-wrap::after {
    height: 50px;
  }
  .about-gallery-card,
  .about-gallery-card img {
    border-radius: 12px;
  }

  /* --- About Us: 02. OUR STORY SECTION --- */
  .about-our-story-sec {
    padding: 50px 0 60px 0;
  }
  .about-our-story-sec .heading .main-title {
    font-size: 28px;
    line-height: 34px;
  }
  .about-our-story-sec .our-story-paragraphs p {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 14px;
  }
  .about-our-story-sec .our-story-card {
    padding: 6px;
    border-radius: 18px;
  }
  .about-our-story-sec .our-story-card-inner {
    padding: 20px 16px 16px 16px;
    border-radius: 13px;
  }
  .about-our-story-sec .story-card-title {
    font-size: 15px;
    margin-bottom: 16px;
  }
  .about-our-story-sec .milestone-item {
    padding: 10px 0;
  }
  .about-our-story-sec .milestone-label {
    font-size: 13px;
  }
  .about-our-story-sec .milestone-year {
    font-size: 14px;
  }

  /* --- About Us: 03. TRANSCORP AT A GLANCE SECTION --- */
  .about-glance-sec {
    padding: 45px 0 50px 0;
  }
  .about-glance-sec .heading .main-title {
    font-size: 26px;
  }
  .about-glance-sec .about-glance-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 14px;
  }
  .about-glance-sec .glance-number {
    font-size: 30px;
  }
  .about-glance-sec .glance-label {
    font-size: 12.5px;
  }

  /* --- About Us: 04. REGULATED. RELIABLE. RESPONSIBLE. SECTION --- */
  .about-regulated-sec {
    padding: 35px 0 45px 0;
  }
  .about-regulated-sec .regulated-content-card {
    padding: 26px 20px;
    border-radius: 18px;
  }
  .about-regulated-sec .regulated-title {
    font-size: 22px;
    line-height: 1.22;
    margin-bottom: 14px;
  }
  .about-regulated-sec .regulated-desc {
    font-size: 14px;
    line-height: 1.6;
  }
  .about-regulated-sec .regulated-image-card {
    border-radius: 16px;
  }

  /* --- About Us: 05. OUR LICENSES AND CREDENTIALS SECTION --- */

  .about-credentials-sec .heading .main-title {
    font-size: 26px;
  }
  .about-credentials-sec .credentials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .about-credentials-sec .credential-card {
    padding: 18px 10px 16px 10px;
    border-radius: 14px;
  }
  .about-credentials-sec .credential-icon-circle {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }
  .about-credentials-sec .credential-icon-circle img {
    max-width: 28px;
    max-height: 28px;
  }
  .about-credentials-sec .credential-desc {
    font-size: 12px;
  }

  /* --- About Us: 06. OUR SERVICES SECTION --- */

  .about-services-sec .heading {
    margin-bottom: 25px;
  }
  .about-services-sec .heading .main-title {
    font-size: 26px;
    line-height: 30px;
  }
  .about-services-sec .heading .sub-heading {
    font-size: 14px;
    line-height: 20px;
  }
  .about-services-sec .about-services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .about-services-sec .about-service-card {
    padding: 18px;
    border-radius: 16px;
  }
  .about-services-sec .service-icon-wrap {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
  }
  .about-services-sec .service-icon-wrap svg,
  .about-services-sec .service-icon-wrap img {
    width: 42px;
    height: 42px;
    max-width: 42px;
    max-height: 42px;
  }
  .about-services-sec .service-card-title {
    font-size: 17px;
    margin-bottom: 8px;
  }
  .about-services-sec .service-card-desc {
    font-size: 13.5px;
    line-height: 1.55;
  }

  /* --- About Us: 07. OUR NATIONAL PRESENCE SECTION --- */
  .about-national-presence-sec .national-presence-paragraphs p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
  }
  .about-national-presence-sec .national-presence-image-wrap {
    border-radius: 16px;
  }
  .about-national-presence-sec .national-presence-image-wrap img {
    border-radius: 16px;
  }

  /* --- About Us: 08. OUR NETWORK SECTION --- */
  .about-network-sec {
    padding: 40px 0 0px 0;
  }
  .about-network-sec .about-network-card {
    padding: 26px 14px;
    border-radius: 18px;
  }
  .about-network-sec .about-network-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .about-network-sec .about-network-item {
    border-right: none;
    border-bottom: 1px solid #f2f5f9;
    padding-bottom: 20px;
  }
  .about-network-sec .about-network-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .about-network-sec .network-icon-circle {
    width: 50px;
    height: 50px;
    margin-bottom: 14px;
  }
  .about-network-sec .network-icon-circle i {
    font-size: 19px;
  }
  .about-network-sec .network-title {
    font-size: 18px;
  }
  .about-network-sec .network-desc {
    font-size: 13.5px;
  }

  /* --- About Us: 09. POWERING DIGITAL PAYMENT ECOSYSTEM SECTION --- */
  .about-powering-sec .capabilities-title {
    font-size: 18px;
  }
  .about-powering-sec .capabilities-counter {
    font-size: 13px;
  }
  .about-powering-sec .capability-item {
    padding: 16px 0;
  }
  .about-powering-sec .capability-left {
    gap: 14px;
  }
  .about-powering-sec .capability-num {
    font-size: 13.5px;
    min-width: 20px;
  }
  .about-powering-sec .capability-text {
    font-size: 14px;
  }
  .about-powering-sec .capability-icon svg {
    width: 18px;
    height: 18px;
  }

  /* --- About Us: 10. INNOVATION IN DIGITAL PAYMENTS SECTION --- */
  .about-innovation-sec {
    padding: 50px 0;
  }
  .about-innovation-sec .heading {
    margin-bottom: 18px;
  }

  .about-innovation-sec .innovation-desc p {
    font-size: 14px;
    line-height: 1.65;
  }

  /* --- About Us: 12. WHY CHOOSE TRANSCORP SECTION --- */
  .about-why-choose-sec {
    padding: 95px 0 0px 0;
  }
  .about-why-choose-sec .heading .main-title {
    font-size: 24px;
  }
  .about-why-choose-sec .why-choose-card {
    padding: 14px 14px;
    gap: 14px;
    border-radius: 14px;
  }
  .about-why-choose-sec .why-choose-icon {
    width: 36px;
    height: 36px;
  }
  .about-why-choose-sec .why-choose-icon i {
    font-size: 15px;
  }
  .about-why-choose-sec .why-choose-card-title {
    font-size: 15px;
  }
  .about-why-choose-sec .why-choose-card-desc {
    font-size: 12.5px;
  }

  /* --- About Us: 13. WHAT DRIVES US SECTION --- */
  .about-drives-sec {
    padding: 30px 0;
  }
  .about-drives-sec .heading {
    margin-bottom: 35px;
  }
  .about-drives-sec .drives-card {
    padding: 20px;
    border-radius: 20px;
  }
  .about-drives-sec .drives-card-backdrop {
    border-radius: 20px;
  }
  .about-drives-sec .drives-icon-box {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    margin-bottom: 18px;
  }
  .about-drives-sec .drives-icon-box i {
    font-size: 24px;
  }
  .about-drives-sec .drives-card-desc {
    font-size: 13px;
  }
}
