@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --primary-gold: #dda127;
  --primary-gold-dark: #b88219;
  --primary-gold-light: #f5c767;
  --dark-bg: #0f131a;
  --dark-card: #171c26;
  --dark-card-hover: #1f2633;
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --text-light-muted: #9ca3af;
  --white: #ffffff;
  --light-gray: #f9fafb;
  --light-primary: #FFF;
  --border-gray: #e5e7eb;
  --border-dark: #2d3748;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-gold: 0 10px 20px -5px rgba(221, 161, 39, 0.3);
  --jakarta-sans: 'Plus Jakarta Sans', sans-serif;
}

/* Base Styles */
body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
}

a {
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* Utility styles */
.text-gold {
  color: var(--Orange-600, #F68819)
}

.bg-gold {
  background-color: var(--primary-gold);
}

.btn-gold {
  /* border-radius: 26843500px; */
  background: linear-gradient(90deg, #F8C24F 0%, #996B09 100%);
  border: 0px;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 24px;
  /* border: 2px solid transparent; */
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.btn-gold:hover {
  background-color: var(--primary-gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--primary-gold);
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 24px;
  border: 2px solid var(--primary-gold);
  transition: var(--transition-smooth);
}

.btn-outline-gold:hover {
  background-color: var(--primary-gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 20px;
  border: 2px solid var(--Light-Primary, #FFF);
  padding: 10px 24px;
  color: var(--Light-Primary, #FFF);
  text-align: center;

  /* Caption */
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  /* 142.857% */
  letter-spacing: 0.154px;
  transition: var(--transition-smooth);
}

.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--dark-bg);
  transform: translateY(-2px);
}

/* Header & Navbar */
.navbar {
  padding: 20px 40px;
  background-color: transparent;
  transition: var(--transition-smooth);
  z-index: 1030;
}

.navbar.navbar-scrolled {
  background-color: rgba(15, 19, 26, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* White circle container for the logo */
.navbar-logo-circle {
  width: 72px;
  height: 72px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.navbar-brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

/* Make collapse push all items to the right */
@media (min-width: 992px) {
  .navbar-collapse {
    flex: 1 1 auto;
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
  }
}

.nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0 8px;
  position: relative;
  padding-bottom: 6px !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #E8891A;
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white) !important;
}


/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  background-image: linear-gradient(180deg, rgb(15 19 26 / 43%) 0%, rgb(15 19 26 / 40%) 100%), url(wbimages/LuxuryHero-1.png);
  background-size: cover;
  background-position: center;
  color: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  padding: 20px 80px 80px 80px;
  justify-content: center;
  align-items: center;
  gap: 80px;
  align-self: stretch;
  z-index: 1;
}

#myVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 19, 26, 0.43) 0%, rgba(15, 19, 26, 0.40) 100%);
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-title {
  color: var(--Light-Primary, #FFF);
  /* leading-trim: both;
  text-edge: cap; */
  font-family: Poppins;
  font-size: 56.634px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  /* 76.8px */
  letter-spacing: -1.92px;
}

#animatedHeroWord {
  display: inline-block;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(0);
  opacity: 1;
}

#animatedHeroWord.fade-out {
  opacity: 0;
  transform: translateY(-10px);
}

@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

.hero-badge-container {
  display: inline-block;
  background: var(--primary-gold);
  border: none;
  border-radius: 50px;
  /* padding: 10px 28px; */
  margin-bottom: 24px;
  backdrop-filter: blur(5px);
}

.hero-badge-text {
  color: var(--white);
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 0;
  font-size: 2rem;
  text-transform: capitalize;
}

@media (max-width: 991.98px) {
  .hero-badge-text {
    font-size: 1.6rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 30px;
  /* max-width: 550px; */
}

/* Hero Cards Right */
.hero-right-container {
  position: relative;
  min-height: 380px;
}

.hero-factory-card {
  position: relative;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 12px;
  box-shadow: var(--shadow-lg);
  /* max-width: 320px; */
  max-width: 284.964px;
  /* height: 275px; */
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
  /* transform: translateY(-20px); */
}

.hero-factory-card img {
  border-radius: 15px;
  width: 100%;
  /* height: 180px; */
  object-fit: cover;
}

.hero-factory-badge {
  position: absolute;
  top: -1rem;
  left: 8rem;
  width: 101.571px;
  height: 108px;
  /* width: 48px;
  height: 48px; */
  border-radius: 683.544px;
  border: 1px solid #E9B635;
  background: #010205;
  box-shadow: 0 30.076px 50.582px -6.835px rgba(0, 0, 0, 0.44);
  /* border-radius: 50%; */
  /* background-color: #000; */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-factory-badge .svg {
  width: 48px;
  height: 48px;
  fill: var(--primary-gold);
}

.hero-stats-overlay-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  max-width: 260px;
  position: absolute;
  right: 0px;
  top: 0;
  color: var(--text-dark);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 5;
  backdrop-filter: blur(10px);
}

.hero-stats-num {
  /* font-size: 2.8rem; */
  /* font-weight: 800; */
  /* line-height: 1; */
  /* color: var(--text-dark); */
  /* margin-bottom: 8px; */
  color: #010205;
  font-family: "Plus Jakarta Sans";
  font-size: 84px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 126px */
  letter-spacing: -2.52px;
}

.hero-stats-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 0;
}

.hero-traffic-card {
  background: #010205;
  border-radius: 20px;
  padding: 25px;
  margin-top: 15px;
  /* max-width: 420px; */
  /* margin-left: auto; */
  /* margin-right: 40px; */
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-traffic-card .label-small svg {
  margin-right: 10px;
}

.hero-traffic-card .label-small {

  color: var(--white);
  font-family: var(--jakarta-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  display: inline-block;
  /* border-bottom: 2px solid var(--primary-gold); */
  padding-bottom: 4px;
}

.hero-traffic-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--white);
  line-height: 1.3;
}

.hero-traffic-chart {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 8px;
  /* height: 70px; */
  margin-left: 20px;
}

.chart-bar {
  width: 69px;
  background-color: var(--primary-gold);
  border-radius: 4px 4px 0 0;
  transition: height 1s ease-out;
  height: 0;
}

.chart-bar.bar-1 {
  height: 25%;
}

.chart-bar.bar-2 {
  height: 50%;
}

.chart-bar.bar-3 {
  height: 75%;
}

.chart-bar.bar-4 {
  height: 100%;
}

/* About Us Section */
.about-section {
  background-color: var(--white);
  position: relative;
  display: flex;
  /* padding: 80px 80px 100px 80px; */
  align-items: center;
  gap: 80px;
  align-self: stretch;
}

.about-label {
  display: inline-block;
  color: var(--primary-gold);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  border: 1px solid rgba(221, 161, 39, 0.3);
  padding: 4px 14px;
  border-radius: 20px;
}

.about-heading {
  color: var(--text-dark);
  color: var(--Dark-Primary, rgba(0, 0, 0, 0.87));
  font-family: Poppins;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
  /* 120% */
}

.about-heading span {
  display: block;
  background: linear-gradient(90deg, #F0BA49 0%, #A37310 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text {
  color: #45556C;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.about-image-collage {
  position: relative;
  height: 480px;
}

.about-img-main {
  width: 75%;
  height: 560px;
  object-fit: cover;
  border-radius: 17.393px;
  box-shadow: var(--shadow-lg);
  border: 10px solid #F0BA49;
  background: #FFF;
}

.about-img-sub {
  position: absolute;
  top: 80px;
  right: 10px;
  width: 45%;
  height: 220px;
  object-fit: cover;
  border-radius: 15px;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.about-badge-excellence {
  position: absolute;
  bottom: 60px;
  right: 50px;
  background: #cc1818;
  color: var(--white);
  border-radius: 8px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  z-index: 3;
}

.about-badge-excellence svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.about-badge-num {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.1;
}

.about-badge-txt {
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* New About Us Section Styling */
.about-badge-pill {
  display: inline-flex;
  max-width: fit-content;
  align-items: center;
  padding: 6px 16px;
  border-radius: 26843500px;
  border: 2px solid #EFB949;
  color: #BF8E25;
  font-family: Poppins;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  /* margin-bottom: 24px; */
  gap: 8px;
  background-color: rgba(221, 161, 39, 0.05);
}

.about-heading-new {
  color: var(--Dark-Primary, rgba(0, 0, 0, 0.87));
  font-family: Poppins;
  font-size: 46.197px;
  font-style: normal;
  font-weight: 500;
  line-height: 46.197px;
  /* margin-bottom: 4rem; */
  letter-spacing: -1px;
}

.about-heading-new span {
  display: inline-block;
  background: linear-gradient(90deg, #F0BA49 0%, #A37310 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-subtext-new {
  color: var(--Dark-Secondary, #666);
  font-family: Poppins;
  font-size: 19.24px;
  font-style: normal;
  font-weight: 400;
  line-height: 28.873px;
  /* 150% */
}

.about-img-new {
  height: 700px;
  display: block;
}

.about-img-new img {
  width: 100%;
  object-fit: fill;
  height: 100%;
}

/* Statistics Bar */
.stats-bar-section {
  /* background: linear-gradient(135deg, #dda127 0%, #b88219 100%); */
  background: url(wbimages/showsection.png) #0f131a 50% / cover no-repeat;
  padding: 40px 40px;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(221, 161, 39, 0.2);
}

.stat-item {
  text-align: center;
  position: relative;
  /* padding: 15px 10px; */
}

/* .stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.3);
} */

@media (max-width: 991.98px) {
  .stat-item::after {
    display: none;
  }
}

.stat-col:last-child .stat-item::after {
  display: none;
}

.stat-icon {
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* background: rgba(255, 255, 255, 0.15); */
  width: 38px;
  height: 38px;
  border-radius: 50%;
  backdrop-filter: blur(5px);
}

.stat-icon svg {
  width: 50px;
  height: 50px;
  fill: var(--white);
}

.stat-number {
  font-size: 19.642px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 4px;
  font-family: var(--font-heading);
}

.stat-label {
  color: var(--Light-Primary, #FFF);
  text-align: center;
  font-family: Poppins;
  font-size: 12.627px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  /* 133.333% */
  letter-spacing: 1.078px;
  text-transform: capitalize;
}

/* Ecosystem Section */
.ecosystem-section {
  padding: 100px 0;
  background-color: var(--white);
  overflow: visible;
}

.section-title {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 60px;
}

.section-title span {
  color: var(--primary-gold);
}

.ecosystem-diagram-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 500px;
  margin: 0 auto;
  overflow: visible;
}

.ecosystem-arch {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 250px;
  border: 3px dashed var(--border-gray);
  border-bottom: none;
  border-top-left-radius: 250px;
  border-top-right-radius: 250px;
  z-index: 1;
}

.ecosystem-center-badge {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 180px;
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-bottom: none;
  border-top-left-radius: 160px;
  border-top-right-radius: 160px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  z-index: 2;
}

.ecosystem-center-logo {
  height: 40px;
  margin-bottom: 12px;
}

.ecosystem-center-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  max-width: 200px;
}

/* Ecosystem Nodes */
.ecosystem-node {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-md);
}

.ecosystem-node svg {
  width: 30px;
  height: 30px;
  fill: var(--primary-gold);
  transition: var(--transition-smooth);
}

.ecosystem-node:hover,
.ecosystem-node.active {
  transform: scale(1.15);
  background: var(--primary-gold);
  box-shadow: var(--shadow-gold);
}

.ecosystem-node:hover svg,
.ecosystem-node.active svg {
  fill: var(--white);
}

/* Node Label Cards */
.ecosystem-label {
  position: absolute;
  white-space: nowrap;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  pointer-events: none;
}

.ecosystem-line-indicator {
  position: absolute;
  height: 2px;
  background-color: var(--primary-gold-light);
  transform-origin: left center;
  pointer-events: none;
}

/* Node Details Card Display */
.ecosystem-details-card {
  margin-top: 30px;
  background-color: var(--light-gray);
  border: 1px solid var(--border-gray);
  border-radius: 15px;
  padding: 24px;
  min-height: 120px;
  transition: var(--transition-smooth);
}

.ecosystem-details-title {
  color: var(--primary-gold-dark);
  font-weight: 700;
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

/* Partner Banks Section */
.partner-banks-section {
  /* background-color: #0b0e14; */
  background: url(wbimages/Testimonial.png) #0f131a 50% / cover no-repeat;
  padding: 20px 0 20px !important;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.partner-banks-title {
  text-align: center;
  /* font-size: 20px; */
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--white);
  position: relative;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.18px;
  line-height: 30px;
  z-index: 3;
}

/* --- Center Illustration (behind marquee) --- */
.banks-center-illustration {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}

.shaking-hand-illustration {
  width: 260px;
  height: auto;
}

/* --- Marquee Carousel --- */
.banks-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 18px 0px;
  z-index: 4;
  /* Smooth edge fade */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.banks-marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marqueeScroll 22s linear infinite;
  will-change: transform;
}

.banks-marquee:hover .banks-marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.bank-card {
  flex-shrink: 0;
  /* background: var(--white); */
  /* border-radius: 20px; */
  padding: 20px;
  min-width: 281px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12.969px;
  border: 0.695px solid var(--Divider-Medium, #D1D5DB);
  background: #FFF;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s cubic-bezier(.4, 0, .2, 1), box-shadow 0.35s ease;
}

.bank-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 14px 40px rgba(221, 161, 39, 0.25);
}

.bank-logo,
.bank-card img {
  max-width: 100%;
  max-height: 42px;
  object-fit: contain;
}

/* --- Bottom Ellipse (large, curves up into section) --- */
.partner-banks-ellipse {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 130%;
  height: 350px;
  background: white;
  border-radius: 50%;
  z-index: 2;
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
  .partner-banks-section {
    padding: 60px 0 60px;
  }

  .shaking-hand-illustration {
    width: 200px;
  }

  .banks-marquee-track {
    gap: 28px;
    animation-duration: 16s;
  }

  .bank-card {
    min-width: 200px;
    padding: 16px 28px;
    height: 76px;
    border-radius: 16px;
  }

  .partner-banks-ellipse {
    height: 280px;
    bottom: -50px;
  }
}

@media (max-width: 576px) {
  .partner-banks-section {
    padding: 50px 0 50px;
  }

  .partner-banks-title {
    text-align: center;
    font-size: 20px;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.18px;
    line-height: 30px;
    font-size: 1.6rem;
    margin-bottom: 40px;
  }

  .shaking-hand-illustration {
    width: 150px;
  }

  .banks-marquee-track {
    gap: 20px;
    animation-duration: 12s;
  }

  .bank-card {
    min-width: 160px;
    padding: 12px 20px;
    height: 62px;
    border-radius: 14px;
  }

  .bank-logo,
  .bank-card img {
    max-height: 30px !important;
  }

  .partner-banks-ellipse {
    height: 200px;
    bottom: -40px;
  }
}


/* Non-Banking Financial Partners — Two-Band Layout */
.nbfc-section {
  position: relative;
  padding: 0;
  overflow: hidden;
}

/* ---- Dark City Header Band ---- */
.nbfc-dark-band {
  position: relative;
  padding: 32px clamp(24px, 10vw, 200px);
  /* tall bottom so cards overlap */


  background: linear-gradient(0deg, rgba(31, 30, 30, 0.70) 0%, rgba(31, 30, 30, 0.70) 100%), url('images/partner-headerbg.jpg') lightgray 0px -239.026px / 100% 245.305% no-repeat;
  background-size: cover;
  color: var(--white);
  overflow: hidden;
}

/* Subtle gold shimmer overlay */
.nbfc-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 65% 0%, rgba(221, 161, 39, 0.10) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

/* ---- White Cards Band ---- */
.nbfc-white-band {

  padding: 0 0 56px;
  margin-top: -71px;
  /* pull cards up over the dark band */
  position: relative;
  z-index: 5;
}

/* ---- Header Row ---- */
.nbfc-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.nbfc-header-left {
  flex: 0 0 auto;
  /* max-width: 380px; */
}

.nbfc-header-right {
  /* flex: 1 1 320px; */
  max-width: 545px;
  display: flex;
  align-items: center;
}

.nbfc-label {
  color: #FFF;
  max-width: fit-content;
  /* Subtitle 1 */
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  /* 150% */
  letter-spacing: 0.024px;
  margin-bottom: 14px;
  /* border: 1px solid rgba(221, 161, 39, 0.35); */
  /* padding: 4px 14px; */
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.nbfc-label svg {
  width: 15px;
  height: 15px;
  fill: var(--primary-gold);
}

.nbfc-heading {


  /* H4 */
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  /* 125% */
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0;
}

.nbfc-desc {
  margin-top: -2rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

/* ---- Slider Layout ---- */
.nbfc-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;

  /* vertical room for card box-shadow */
}

.nbfc-slider-viewport {
  overflow: hidden;
  /* let card edges + shadows show fully */
  flex: 1;
  padding: 1rem;
  cursor: grab;
  user-select: none;
}

.nbfc-slider-viewport:active {
  cursor: grabbing;
}

.nbfc-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ---- Individual Card ---- */
.nbfc-card {
  background: #ffffff;
  border-radius: 16px;
  border: none;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
  padding: 10px 13px 24px;
  flex: 0 0 calc(33.333% - 16px);
  min-width: 350px;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
  box-sizing: border-box;
}

.nbfc-card:hover {
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.50);
}

/* Logo area */
.nbfc-logo-container {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  flex-shrink: 0;
}

.nbfc-logo {
  max-height: 42px;
  max-width: 100%;
  object-fit: contain;
}

/* Gold thin separator line (below logo) */
.nbfc-gold-line {
  width: 100%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, #dda127 30%, #dda127 70%, transparent);
  margin: 20px 0 18px;
  flex-shrink: 0;
}

/* Real image logo */
.nbfc-logo-img {
  max-height: 52px;
  max-width: 100%;
  object-fit: contain;
}

/* Single unified info container */
.nbfc-info-box {
  background: #f3f4f6;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Name row — top of the info box */
.nbfc-contact-name {
  padding: 14px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #111827;
  background: #f3f4f6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  flex-shrink: 0;
}

.nbfc-dropdown-icon {
  transition: transform 0.3s ease;
  color: #6b7280;
  display: none;
}

.nbfc-details-dropdown {
  display: none;
  flex-direction: column;
  flex-grow: 1;
  overflow-y: auto;
}

/* Show details when hovered or open */
.nbfc-info-box .nbfc-details-dropdown {
  display: flex;
}

/* Rotate icon on hover or open */
.nbfc-info-box:hover .nbfc-dropdown-icon,
.nbfc-info-box.open .nbfc-dropdown-icon {
  transform: rotate(180deg);
  color: #EFB949;
}

/* Webkit scrollbar for inner data scrolling */
.nbfc-details-dropdown::-webkit-scrollbar {
  width: 5px;
}

.nbfc-details-dropdown::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
}

.nbfc-details-dropdown::-webkit-scrollbar-thumb {
  background: #dda127;
  border-radius: 3px;
}

/* Thin gray line inside info box (below name) */
.nbfc-contact-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 0 16px;
  flex-shrink: 0;
}

/* Each contact detail row */
.nbfc-contact-row {
  padding: 9px 16px;
  font-size: 0.82rem;
  color: #4b5563;
  line-height: 1.45;
  word-break: break-all;
}

.nbfc-contact-row a {
  color: #2563eb;
  text-decoration: underline;
}

.nbfc-contact-row a:hover {
  color: #1d4ed8;
}

/* Gray horizontal rule before address (inside info-box) */
.nbfc-address-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 4px 0;
  flex-shrink: 0;
}

/* Address row (inside info-box) */
.nbfc-address-row {
  padding: 10px 16px 14px;
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.55;
}

/* ---- Dot Indicators ---- */
.nbfc-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.nbfc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.nbfc-dot.active {
  background: var(--primary-gold);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(221, 161, 39, 0.4);
}

/* ---- Slider Buttons ---- */
.nbfc-slider-btn {
  position: absolute;
  top: calc(50% - 16px);
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(209, 213, 219, 0.85);
  color: #1f2937;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.nbfc-slider-btn:hover {
  background-color: rgba(156, 163, 175, 0.95);
  color: #000;
  transform: translateY(-50%) scale(1.08);
}

.nbfc-slider-btn svg {
  width: 20px;
  height: 20px;
}

.nbfc-slider-btn.prev-btn {
  left: -12rem;
}

.nbfc-slider-btn.next-btn {
  right: -12rem;
}

@media (max-width: 991px) {
  .nbfc-slider-btn {
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .nbfc-slider-btn.prev-btn {
    left: -20px;
  }

  .nbfc-slider-btn.next-btn {
    right: -20px;
  }
}


/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .nbfc-card {
    flex: 0 0 calc(50% - 12px);
  }

  .nbfc-header-row {
    flex-direction: column;
    gap: 20px;
  }




  .nbfc-header-left,
  .nbfc-header-right {
    max-width: 100%;
  }

  .nbfc-white-band {
    margin-top: -80px;
  }
}

@media (max-width: 600px) {
  .nbfc-card {
    flex: 0 0 calc(100% - 0px);
    min-width: 344px;
  }

  .nbfc-white-band {
    margin-top: -60px;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 60px;
  background: url(wbimages/Testimonial.png) #0f131a 50% / cover no-repeat;

  color: var(--white);
  position: relative;
  overflow: hidden;
}

.testi-heading-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
  width: 100%;
}

.testi-title {
  font-size: 2.25rem;
  color: #F8F9FF;
  /* Headline 4 */
  font-family: Poppins;
  font-size: 34px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  /* 105.882% */
  white-space: nowrap;
}

.testi-title-line {
  width: 200px;
  height: 2px;
  background: #F8F9FF;
}

@media (max-width: 768px) {
  .testi-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .testi-title {
    font-size: 1.4rem;
  }

  .testi-heading-row {
    gap: 12px;
  }
}

/* Slider Viewport */
.testi-slider-viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
  cursor: grab;
}

.testi-slider-viewport:active {
  cursor: grabbing;
}

/* Slider Track */
.testi-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

/* Card Wrap - provides the 3D perspective context */
.testi-card-wrap {
  flex-shrink: 0;
  width: calc((100% - (2 * 24px)) / 3);
  /* 3 cards visible on desktop */
  perspective: 1200px;
  height: 380px;
  /* Fixed height for consistent look and 3D rotation */
}

/* Responsive card widths */
@media (max-width: 991px) {
  .testi-card-wrap {
    width: calc((100% - (1 * 24px)) / 2);
    /* 2 cards visible */
    height: 400px;
  }
}

@media (max-width: 600px) {
  .testi-card-wrap {
    width: 100%;
    /* 1 card visible */
    height: 420px;
  }
}

/* The actual 3D card wrapper */
.testi-card {
  min-width: 350px;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Rotate on Hover */
.testi-card-wrap:hover .testi-card {
  transform: rotateY(180deg);
  /* border-radius: 40px 0px 40px 0px !important; */
}

/* Front & Back Card Faces */
.testi-face {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 0px 40px 0px 40px;
  /* premium organic cornering */
  padding: 35px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Front Face: Warm Cream/Beige */
.testi-front {
  background-color: #FBEBD7;
  color: #1f2937;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Back Face: Vivid Gold/Yellow */
.testi-back {
  background-color: #FFC74D;
  /* background: linear-gradient(135deg, #f5c518 0%, #dda127 100%); */
  color: #0f131a;
  transform: rotateY(180deg);
  border-radius: 40px 0px 40px 0px !important;
  border: 1px solid rgba(221, 161, 39, 0.2);
}

/* Card Header */
.testi-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.testi-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* Front face avatar gets gold border */
.testi-front .testi-avatar {
  /* border: 2.5px solid var(--primary-gold); */
}

/* Back face avatar gets dark border */
.testi-back .testi-avatar {
  /* border: 2.5px solid #0f131a; */
}

.testi-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testi-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 2px;
  line-height: 1.2;
}

.testi-front .testi-name {
  color: #0f131a;
}

.testi-back .testi-name {
  color: #0f131a;
}

.testi-pipe {
  color: var(--text-muted);
  font-weight: 300;
  margin: 0 4px;
}

.testi-role-inline {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.testi-back .testi-role-inline {
  color: rgba(15, 19, 26, 0.7);
}

.testi-company {
  font-size: 0.75rem;

  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 3px;
}

.testi-front .testi-company {
  color: #EEA02D;
}

.testi-back .testi-company {
  color: #fff;
  opacity: 0.85;
}

/* Card Quote Content */
.testi-quote {
  /* color: var(--Neutral-Black, #2C2E33); */
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  /* 150% */
  letter-spacing: 0.016px;
  /* font-style: italic; */
  margin-bottom: 0;
  flex-grow: 1;
  display: flex;
  /* align-items: center; */
}

.testi-front .testi-quote {
  color: #2C2E33;
  ;
}

.testi-back .testi-quote {
  color: #0f131a;
  font-weight: 500;
}

/* Dots Indicators */
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.testi-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition-smooth);
  padding: 0;
}

.testi-dot:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.testi-dot.active {
  background-color: var(--primary-gold);
  transform: scale(1.2);
}

/* FAQ Section */
.faq-section {
  padding: 80px;
  background-color: #f7ebd3;
  position: relative;
  overflow: hidden;
  /* Warm background matching mockup */
}

.faq-left-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 48px;
}

.faq-heading {
  color: var(--Dark-Primary, #212121);
  /* Headline 4 */
  font-family: Poppins;
  font-size: 34px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  /* 105.882% */
  margin-bottom: 15px;
}

.faq-subheading {
  color: var(--Dark-Primary, #212121);

  /* Subtitle 1 */
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  letter-spacing: 0.15px;

}

.faq-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 20px;
}

.accordion-item {
  border: none;
  background-color: var(--white);
  margin-bottom: 15px;
  border-radius: 12px !important;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--border-gray);
  transition: var(--transition-smooth);
}

.accordion-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-gold-light);
}

.accordion-button {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-dark);
  padding: 20px 24px;
  background-color: var(--white);
  border: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--text-dark);
  background-color: #fce29d;
}

.accordion-collapse.show {
  background-color: #FFF8EB;
}

.accordion-button::after {
  content: '+';
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: #212121;
  background-image: none !important;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  transform: none !important;
}

.accordion-button:not(.collapsed)::after {
  content: '\00d7';
  font-size: 26px;
  transform: none !important;
}

/* Style for the first custom expanded card with warning banner in mockup */
.faq-highlight-alert {
  background-color: #fce29d;
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 12px 18px;
  margin-bottom: 15px;
  border-radius: 6px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-highlight-alert-close {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
}

.accordion-body {
  padding: 20px 24px 24px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Footer Section */
.footer-section {
  background-color: #0E1010;
  color: var(--white);
  padding: 40px 60px;
  border-top: 1px solid var(--border-dark);
}

.footer-brand {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-brand-logo {
  height: 42px;
  margin-right: 10px;
}

.footer-brand span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--white);
}

.footer-desc {
  max-width: 24rem;
  color: #CAD5E2;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}

.footer-desc span {
  color: var(--Orange-600, #F68819);

  /* Subtitle 1 */
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.024px;
}

.footer-contact-link {
  color: #FFF;

  /* Body/Xtra Large/400 */
  font-family: poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  text-decoration: underline;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font
}

.footer-contact-link svg {
  width: 18px;
  height: 18px;
  fill: var(--primary-gold-light);
}

.footer-contact-link:hover {
  color: var(--primary-gold-light);
}

.footer-heading {
  color: #FFF;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  /* 155.556% */
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: var(--text-light-muted);
  font-size: 0.9rem;
  display: inline-block;
}

.footer-links-list a:hover {
  color: var(--primary-gold-light);
  transform: translateX(5px);
}

.footer-office-card {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 16px;
  height: 100%;
}

.footer-office-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-office-icon-wrapper.delhi {
  background-color: rgba(246, 136, 25, 0.15);
  color: #F68819;
}

.footer-office-icon-wrapper.bangalore {
  background-color: rgba(9, 137, 255, 0.15);
  color: #0989FF;
}

.footer-office-title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.footer-office-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--Light-Secondary, rgba(255, 255, 255, 0.60));
  line-height: 20px;
  margin-bottom: 0;
}

.footer-social-links {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.footer-social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition-smooth);
}

.footer-social-btn.linkedin {
  background-color: #0077b5;
}

.footer-social-btn.youtube {
  background-color: #ff0000;
}

.footer-social-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-social-btn:hover svg {
  fill: currentColor;
}

.footer-horizontal-links {
  list-style: none;
  display: flex;
  gap: 20px;
  padding-left: 0;
  margin-bottom: 0;
}

.footer-horizontal-links li a {
  color: #CAD5E2;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  transition: var(--transition-smooth);
  font-weight: 400;
  line-height: 24px;
}

.footer-horizontal-links li a:hover {
  color: #F68819;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid var(--border-dark);
  font-size: 0.8rem;
  color: var(--text-light-muted);
  display: flex;
  justify-content: space-between;
}

.footer-bottom a {
  color: var(--text-light-muted);
}

.footer-bottom a:hover {
  color: var(--primary-gold-light);
}

@media (max-width: 767.98px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
  }
}


.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.footer-logo-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ==========================================================================
   Responsive Overrides and Media Queries
   ========================================================================== */

/* Active ecosystem button styling on mobile */
.btn-outline-gold.active {
  background-color: var(--primary-gold) !important;
  color: var(--white) !important;
  box-shadow: var(--shadow-gold) !important;
}

/* Navbar Collapsed Readability and Scaling */
@media (max-width: 991.98px) {

  /* CTA buttons always visible — compact on mobile */
  .navbar-cta-buttons .btn-outline-white {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 16px;
  }

  .navbar-collapse {
    background-color: var(--dark-bg);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar-collapse .navbar-nav {
    margin-bottom: 0;
    gap: 8px !important;
  }

  .navbar-collapse .dropdown-menu {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* On desktop: CTA buttons inside collapse are hidden (they're in navbar-cta-buttons) */
@media (min-width: 992px) {
  .navbar-brand {
    order: 1 !important;
  }

  .navbar-collapse {
    order: 2 !important;
  }

  .navbar-cta-buttons {
    /* On desktop the collapse shows, so we can hide the outside buttons if desired,
       but here we keep them always visible for simplicity */
    order: 3 !important;
    display: flex !important;
    gap: 0.75rem;
    margin-left: 2rem !important;
  }
}

@media (max-width: 767.98px) {
  .navbar-logo-circle {
    width: 56px !important;
    height: 56px !important;
  }

  .navbar-brand-logo {
    width: 40px !important;
    height: 40px !important;
  }

  .navbar {
    padding: 8px 0 !important;
  }
}

/* Hero Section Responsiveness */
@media (max-width: 991.98px) {
  .hero-section {
    flex-direction: column !important;
    padding: 120px 24px 60px 24px !important;
    min-height: 450px;
    gap: 40px !important;
  }

  .hero-section .col-lg-6 {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Stacking hero graphic cards on right column */
  .hero-right-container {
    min-height: auto !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
    margin-top: 0;
    width: 100%;
  }

  .hero-factory-card {
    position: relative;
    width: 100%;
    max-width: 100% !important;
  }

  .hero-factory-badge {
    left: 15px !important;
    transform: none !important;
    top: -15px !important;
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
  }

  .hero-factory-badge .svg {
    width: 24px !important;
    height: 24px !important;
  }

  .hero-stats-overlay-card {
    position: relative !important;
    max-width: 100% !important;
    width: 100%;
    padding: 16px 12px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hero-stats-overlay-card .d-flex {
    gap: 0.75rem !important;
  }

  .hero-stats-num {
    font-size: 42px !important;
    line-height: 1.2 !important;
  }

  .hero-stats-desc {
    font-size: 0.75rem !important;
    text-align: center;
  }

  .hero-stats-overlay-card svg {
    max-width: 100%;
    height: auto;
  }

  .hero-traffic-card {
    grid-column: span 2 !important;
    max-width: 100% !important;
    width: 100%;
    margin-top: 0 !important;
  }

  .hero-traffic-card img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    padding: 100px 16px 40px 16px !important;
    gap: 32px !important;
  }

  .hero-title {
    font-size: 2.2rem !important;
    line-height: 1.25 !important;
  }

  .hero-subtitle {
    font-size: 0.95rem !important;
    margin-bottom: 20px;
  }

  .hero-badge-container img {
    max-width: 100%;
    height: auto;
  }

  .hero-stats-num {
    font-size: 38px !important;
  }

  .hero-traffic-card {
    padding: 16px !important;
  }

  .hero-traffic-card h4 {
    font-size: 1.2rem !important;
  }

  /* Compact navbar CTA on very small screens */
  .navbar-cta-buttons .btn-outline-white {
    padding: 5px 10px;
    font-size: 11px;
  }
}

/* About Us Section Responsiveness */
@media (max-width: 991.98px) {
  .about-section {
    padding: 60px 24px !important;
    gap: 40px !important;
  }

  .about-image-collage {
    height: 420px !important;
    max-width: 450px;
    margin: 0 auto 30px auto;
  }

  .about-img-main {
    height: 380px !important;
    width: 100% !important;
    border-width: 6px !important;
  }

  .about-img-sub {
    height: 160px !important;
    top: 40px !important;
  }

  .about-badge-excellence {
    bottom: 20px !important;
    right: 20px !important;
    padding: 8px 14px !important;
  }

  .about-badge-num {
    font-size: 1.25rem !important;
  }

  .about-badge-txt {
    font-size: 0.6rem !important;
  }

  .about-heading-new {
    line-height: 50px !important;
    font-size: 38px !important;
  }

  .about-subtext-new {
    font-size: 16px !important;
    line-height: 26px !important;
  }
}

@media (max-width: 575.98px) {
  .about-section {
    padding: 40px 16px !important;
  }

  .about-heading {
    font-size: 28px !important;
    line-height: 36px !important;
  }

  .about-text {
    font-size: 15px !important;
    line-height: 24px !important;
  }

  .about-image-collage {
    height: 320px !important;
  }

  .about-img-main {
    height: 290px !important;
  }

  .about-img-sub {
    display: none !important;
    /* Hide sub image on tiny viewports for layout space */
  }

  .about-badge-excellence {
    bottom: 10px !important;
    right: 10px !important;
  }

  .about-heading-new {
    line-height: 50px !important;
    font-size: 32px !important;
  }
}

/* Statistics Bar Responsiveness */
@media (max-width: 991.98px) {
  .stats-bar-section {
    padding: 30px 0 !important;
  }

  .stat-col {
    margin-bottom: 24px;
  }
}

@media (max-width: 767.98px) {
  .stat-col {
    margin-bottom: 16px;
  }

  .stat-number {
    font-size: 1.75rem !important;
  }

  .stat-label {
    font-size: 0.8rem !important;
  }

  .stat-icon {
    width: 44px !important;
    height: 44px !important;
    margin-bottom: 8px !important;
  }

  .stat-icon svg {
    width: 20px !important;
    height: 20px !important;
  }
}

/* Ecosystem Section Details Layout */
@media (max-width: 767.98px) {
  .ecosystem-section {
    padding: 50px 0 !important;
  }

  .section-title {
    font-size: 2rem !important;
    margin-bottom: 30px !important;
  }

  .ecosystem-details-card {
    padding: 16px !important;
    min-height: 140px !important;
    margin-top: 15px !important;
  }

  .ecosystem-details-title {
    font-size: 1.25rem !important;
  }

  .ecosystem-details-desc {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
  }
}

/* Partner Banks Layout Overrides */
@media (max-width: 991.98px) {
  .banks-layout {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 20px !important;
    min-height: auto !important;
  }

  .bank-card {
    flex: 0 0 calc(50% - 10px) !important;
    max-width: 150px !important;
    height: 60px !important;
    padding: 10px 15px !important;
    margin: 0 !important;
  }

  .bank-logo,
  .bank-card img {
    max-height: 30px !important;
  }

  .shaking-hand-illustration {
    display: none !important;
    /* Remove illustration overlap in mobile grid */
  }
}

@media (max-width: 480px) {
  .bank-card {
    flex: 0 0 calc(100% - 20px) !important;
    max-width: 180px !important;
  }
}

/* Non-Banking Financial Partners Band Styling */
@media (max-width: 767.98px) {
  .nbfc-dark-band {
    padding: 50px 0 110px !important;
    background-size: auto;

  }

  .nbfc-heading {
    font-size: 20px !important;
    line-height: 32px !important;
    /* text-align: center; */
  }

  .nbfc-desc {
    /* text-align: center; */
    color: #FFF;
    /* Label */
    font-family: Poppins;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    /* 140% */
    letter-spacing: 0.04px;
    font-size: 0.85rem !important;
  }

  .nbfc-label {
    /* text-align: center; */
    display: block;
    margin-bottom: 20px;
  }

  .nbfc-white-band {
    margin-top: -80px !important;
  }
}

/* Testimonials Sizing Scaling */
@media (max-width: 575.98px) {
  .testimonials-section {
    padding: 60px 0 !important;
  }



  .testi-title {
    font-size: 1.35rem !important;
  }

  .testi-avatar {
    width: 64px !important;
    height: 64px !important;
  }

  .testi-name {
    font-size: 0.9rem !important;
  }

  .testi-role-inline {
    font-size: 0.75rem !important;
  }

  .testi-company {
    font-size: 0.65rem !important;
  }

  .testi-face {
    padding: 20px !important;
  }

  .testi-quote {
    font-size: 14px !important;
    line-height: 20px !important;
  }

  .testi-card-wrap {
    height: 330px !important;
  }
}

/* FAQ Layout Sizing */
@media (max-width: 991.98px) {
  .faq-section {
    padding: 40px 16px !important;
  }

  .faq-left-col {
    gap: 24px !important;
    margin-bottom: 30px;
  }

  .faq-img {
    margin: 0 auto !important;
    max-width: 300px;
  }

  .faq-heading {
    font-size: 26px !important;
    text-align: left;
  }

  .faq-subheading {
    text-align: left;
    font-size: 0.9rem !important;
  }
}

/* Footer layout elements */
@media (max-width: 767.98px) {
  .footer-section {
    padding: 40px 16px !important;
  }

  .footer-logo-container {
    align-items: flex-start !important;
    text-align: left !important;
    display: flex;
    flex-direction: column;
  }

  .footer-logo-container .navbar-logo-circle {
    /* margin: 0 auto 24px auto !important; */
  }

  .footer-desc {
    font-size: 14px !important;
    text-align: left !important;
  }

  .footer-contact-link {
    justify-content: flex-start !important;
  }

  .footer-social-links {
    /* justify-content: flex-start !important; */
  }

  .footer-horizontal-links {
    justify-content: flex-start !important;
    flex-wrap: wrap;
    padding-left: 0;
  }

  .footer-office-card {
    padding: 16px !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    text-align: left !important;
  }
}

/* ==========================================================================
   About Us Page Styles
   ========================================================================== */

/* 1. Hero banner section */
.about-hero-section {
  background-image: linear-gradient(180deg, rgba(15, 19, 26, 0.7) 0%, rgba(15, 19, 26, 0.85) 100%), url(wbimages/aboutus-pagehero.png);
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 160px 0 100px 0;
  text-align: center;
}


.contact-hero-section {
  background-image: linear-gradient(180deg, rgba(15, 19, 26, 0.7) 0%, rgba(15, 19, 26, 0.85) 100%), url(wbimages/contact-us-hero.png);
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 160px 0 100px 0;
  text-align: center;
}

.policy-hero-section {
  background-image: linear-gradient(180deg, rgba(15, 19, 26, 0.7) 0%, rgba(15, 19, 26, 0.85) 100%), url(wbimages/policy-hero.png);
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 160px 0 100px 0;
  text-align: center;
}


.about-hero-title,
.policy-hero-title,
.contact-hero-title {
  background: linear-gradient(90deg, #EEB948 0%, #EEB948 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-family: Poppins;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 50px;
  /* 104.167% */
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.about-hero-subtitle,
.policy-hero-subtitle,
.contact-hero-subtitle {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 18px;
  opacity: 0.9;
  font-weight: 400;
}

/* 2. Empowering Smarter Decisions section */
.smarter-decisions-section {
  background-color: var(--white);
  padding: 80px;
}

.section-title-main {
  color: #E1AD3E;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
  /* 100% */
}

.section-title-main span.highlight-underline {
  color: #E1AD3E;
}

/* .section-title-main span.highlight-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--Orange-600, #F68819);
  border-radius: 2px;
} */

.smarter-decisions-content {
  /* max-width: 840px; */
  margin: 40px auto 0 auto;
}

.smarter-decisions-content p {
  color: #364153;
  text-align: center;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32.5px;
  /* 162.5% */
  margin-bottom: 24px;
}

/* 3. About Our Journey section */
.about-journey-section {
  background-color: #FAF5EB;
  padding: 80px;
}

.journey-heading {
  color: #101828;
  text-align: center;
  font-family: Poppins;
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  /* 111.111% */
  margin-bottom: 8px;
}

.journey-subheading {
  color: #4A5565;
  text-align: center;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  /* 140% */
}

/* Journey Cards */
.journey-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journey-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.card-badge-outline {
  display: inline-block;
  color: #BF8E25;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  border-radius: 26843500px;
  border: 2px solid #EFB949;
  padding: 4px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.card-heading-main {
  color: #E1AD3E;
  font-family: Poppins;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 45px;
  /* margin-bottom: 20px; */
}

.orange-divider {
  margin-top: 4px;
  width: 64px;
  height: 4px;
  border-radius: 26px;
  background: linear-gradient(90deg, #FDC700 0%, #F0B100 100%);
}

.card-desc-text {
  color: #364153;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.card-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

.tag-solid {
  display: inline-block;
  color: var(--white);
  border-radius: 10.454px;
  background: linear-gradient(90deg, #E3B448 0%, #A38030 100%);
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.tag-solid:hover {
  opacity: 0.9;
}

.tag-wide {
  display: inline-block;
  background: linear-gradient(90deg, #E3B448 0%, #A38030 100%);
  color: var(--white);
  border-radius: 10.454px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  transition: opacity 0.2s ease;
}

.tag-wide:hover {
  opacity: 0.9;
}

/* Responsive Overrides for About Page */
@media (max-width: 991.98px) {

  .about-hero-title,
  .policy-hero-title,
  .contact-hero-title {
    font-size: 42px;
  }

  .section-title-main,
  .journey-heading {
    font-size: 32px;
  }
}

@media (max-width: 575.98px) {

  .about-hero-section,
  .policy-hero-section,
  .contact-hero-section {
    padding: 120px 16px 70px 16px;
  }

  .about-hero-title,
  .policy-hero-title,
  .contact-hero-title {
    font-size: 34px;
  }

  .about-hero-subtitle,
  .policy-hero-subtitle,
  .contact-hero-subtitle {
    font-size: 15px;
  }

  .smarter-decisions-section,
  .about-journey-section {
    padding: 20px;
  }

  .section-title-main,
  .journey-heading {
    font-size: 26px;
  }

  .journey-card {
    padding: 30px 20px;
  }

  .card-heading-main {
    font-size: 22px;
  }
}

/* ==========================================================================
   Contact Us Page Styles
   ========================================================================== */

/* 1. Get In Touch Section */
.get-in-touch-section {
  background-color: var(--white);
  padding: 80px;
}

.contact-section-title {
  color: #E1AD3E;
  text-align: center;
  font-family: Poppins;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 8px;
}

.contact-section-subtitle {
  color: var(--Dark-Secondary, #666);
  text-align: center;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  max-width: 1192px;
  ;
  margin: 0 auto;
}

.contact-card-box {
  border-radius: 20px;
  border: 3px solid #E0B147;
  background: #FFF9EC;
  height: 100%;
  padding: 33px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-card-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border-color: var(--primary-gold);
}

.contact-card-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, #F1BC4A 0%, #9C6D0B 100%);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.contact-card-icon-box svg {
  width: 22px;
  height: 22px;
}

.contact-card-title {
  color: #E1AD3E;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;

  margin-bottom: 12px;
}

.contact-card-desc {


  color: var(--Dark-Secondary, #666);
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 24px;
  flex-grow: 1;
}

.contact-card-link {
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: underline;
  transition: color 0.2s ease;
  color: var(--Dark-Primary, #212121);
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  line-height: 32px;
  /* 160% */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.contact-card-link:hover {
  color: var(--primary-gold-dark);
}

/* 2. Map & Offices Section */
.map-offices-section {
  background-color: #FAF5EB;
  padding: 80px 24px;
}

.contact-combined-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1.5px solid #E5E7EB;
}

.map-iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: block;
}

.view-full-map-btn {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95) !important;
  color: var(--text-dark) !important;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  transition: background 0.2s ease;
}

.view-full-map-btn:hover {
  background: var(--white) !important;
  transform: translateY(-1px);
}

.offices-sidebar-card {
  background: var(--white);
  padding: 35px;
  height: 100%;
}

.offices-sidebar-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.search-box-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.search-icon {
  position: absolute;
  left: 16px;
  color: var(--text-muted);
}

.search-input-field {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border-radius: 8px;
  border: 1.5px solid #E5E7EB;
  font-size: 14px;
  outline: none;
  font-family: var(--font-body);
  transition: border-color 0.2s ease;
}

.search-input-field:focus {
  border-color: var(--primary-gold);
}

.sidebar-office-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: 12px;
  border: 1.5px solid #F3F4F6;
  background: var(--white);
  transition: transform 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.sidebar-office-item:hover {
  border-color: #E5E7EB;
  transform: translateY(-2px);
}

.active-office {
  border: 1.5px solid var(--Orange-600, #F68819) !important;
  border-left: 4px solid var(--Orange-600, #F68819) !important;
  background: var(--white) !important;
}

.sidebar-office-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sidebar-office-icon.delhi-icon {
  background-color: rgba(246, 136, 25, 0.12);
  color: #F68819;
}

.sidebar-office-icon.bangalore-icon {
  background-color: rgba(9, 137, 255, 0.12);
  color: #0989FF;
}

.sidebar-office-info {
  flex-grow: 1;
}

.sidebar-office-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.sidebar-office-text {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Responsive Overrides for Contact Page */
@media (max-width: 991.98px) {
  .contact-section-title {
    font-size: 32px;
  }
}

@media (max-width: 575.98px) {

  .get-in-touch-section,
  .map-offices-section {
    padding: 60px 16px;
  }

  .contact-section-title {
    font-size: 26px;
  }

  .contact-card-box {
    padding: 24px;
  }

  .offices-sidebar-card {
    padding: 24px 16px;
  }

  .map-iframe {
    min-height: 350px;
  }
}

/* Scroll Snapping Rules for Home Page */
@media (min-width: 992px) {
  html.scroll-snap-page {
    scroll-behavior: smooth;
    overflow-y: scroll;
  }

  .snap-section {
    scroll-margin-top: 80px;
    /* Offset for fixed header/navbar */
  }

  .hero-section.snap-section {
    scroll-margin-top: 0;
    /* Hero starts at top of page */
  }
}

/* Screen 1559px Responsive Fixes */
@media (max-width: 1559px) {
  .nbfc-card {
    max-width: 350px;
  }
}