.banking-intro h2 {
  font-size: 42px;
  line-height: 1.2;
}

.banking-intro p {
  font-size: 17px;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 991px) {
  .banking-intro {
    text-align: center;
  }

  .banking-intro h2 {
    font-size: 32px;
  }
}

/* ------------------------------------------
Lending Solutions Section
--------------------------------------------*/

.banking-overview {
  background: #0b0f1a; /* premium dark */
  color: #ffffff !important;
  padding: 100px 0;
}

.overview-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
}

.overview-text {
  max-width: 850px;
  color: #d1d5db;
  font-size: 18px;
  line-height: 1.8;
}

/* MOBILE OPTIMIZATION */

@media (max-width: 768px) {
  .banking-overview {
    padding: 70px 20px;
  }

  .overview-title {
    font-size: 32px;
  }

  .overview-text {
    font-size: 16px;
  }
}

/* ----------------------------------- 
Innovation Across
--------------------------------------*/

.lending-cards-section {
  /* background: #0b0f1a; */
}

/* HEADER */

.section-header {
  padding: 80px 20px;
  color: white;
}

.section-header h2 {
  font-size: 44px;
  font-weight: 700;
}

.section-header p {
  max-width: 700px;
  margin: auto;
  color: #000000;
}

/* CARD */

.lending-card {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

/* DARK OVERLAY */

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  transition: 0.4s;
}

/* CONTENT */

.card-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: white;
  z-index: 2;
}

.card-content h3 {
  font-size: 35px;
  margin-bottom: 3rem;
  color: #ffffff;
}

.card-content ul {
  list-style: none;
  padding: 0;
}

.card-content li {
  margin-bottom: 6px;
  font-size: 15px;
}

.card-content i {
  margin-right: 8px;
  color: #ffffff;
}

/* 🔥 HOVER EFFECT */

.lending-card:hover .card-bg {
  transform: scale(1.1);
  filter: blur(3px);
}

.lending-card:hover .card-overlay {
  background: rgba(0, 0, 0, 0.65);
}

/* MOBILE */

@media (max-width: 768px) {
  .lending-card {
    height: 320px;
  }

  .section-header h2 {
    font-size: 32px;
  }
}

/* ------------------------------------------
Lending 
--------------------------------------------*/

.lending-solutions {
  background: #f9fbff;
}

/* CARD */

.solution-card {
  position: relative;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

/* DARK OVERLAY */

.solution-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

/* CONTENT */
.solution-content {
  position: absolute;
  inset: 0; /* top bottom left right = 0 */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  z-index: 2;
  padding: 20px;
}

.solution-content h5 {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.solution-content p {
  font-size: 14px;
  color: #ffffff;
}

/* 🔥 HOVER */

.solution-card:hover .card-img {
  transform: scale(1.12);
}

/* MOBILE */

@media (max-width: 768px) {
  .solution-card {
    height: 200px;
  }
}

/* ----------------------------------------- 
Technology Consultancy
-------------------------------------------*/

.tech-consultancy {
  background: #ffffff;
}

/* paragraph width control */

.tech-card h4 {
  color: #ffffff;
}

.tech-desc {
  max-width: 750px;
  color: #000000 !important;
  font-size: 18px;
}

/* CARD */

.tech-card {
  padding: 40px;
  border-radius: 20px;
  color: white;
  height: 100%;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

/* 🔥 PREMIUM GRADIENTS */

.gradient-1 {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.gradient-2 {
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
}

.gradient-3 {
  background: linear-gradient(135deg, #06b6d4, #0f172a);
}

/* HOVER MAGIC */

.tech-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

/* TEXT */

.tech-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
}

.tech-card p {
  opacity: 0.95;
}

/* MOBILE */

@media (max-width: 768px) {
  .tech-card {
    padding: 28px;
  }
}

/* -------------------------------
Marquee Section
----------------------------------*/
.logo-marquee {
  width: 100%;
  overflow: hidden;
  background: #fff;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/* TRACK */

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
}

/* LOGO GROUP */

.marquee-group {
  display: flex;
  gap: 80px;
  padding-right: 80px;
}

/* LOGOS */

.marquee-group img {
  height: 55px;
  width: auto;
  object-fit: contain;

  filter: grayscale(100%);
  opacity: 0.6;

  transition: all 0.4s ease; /* ⭐ important */
}

/* 🔥 HOVER */

.marquee-group img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.15);
}

/* 🔥 PERFECT INFINITE SCROLL */

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* -------------------------------------------
Business Impact
---------------------------------------------*/
.business-impact {
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #ffffff 40%,
    #f3f0ff 70%,
    #c0c9ee 100%
  );
}

/* HEADING */

.impact-heading {
  font-weight: 800;
  font-size: 40px;
  margin-bottom: 20px;
}

/* TEXT */

.impact-text {
  color: #6b7280;
  margin-bottom: 30px;
  max-width: 420px;
}

/* NUMBERS 🔥 */

.impact-number {
  font-size: 64px;
  font-weight: 800;

  background: linear-gradient(135deg, #4a3185, #7a5cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* MOBILE */

@media (max-width: 768px) {
  .impact-heading {
    font-size: 30px;
  }

  .impact-number {
    font-size: 42px;
  }
}
