:root {
  --cu-blue: #1d71c1;
  --cu-blue-dark: #0d3b66;
  --cu-blue-soft: #2d8be4;
  --cu-dark: #071622;
  --cu-dark-soft: #0d2233;
  --cu-surface: #0f1f2d;
  --cu-surface-2: #132a3f;
  --cu-light: #f4f8fc;
  --cu-text: #d7e4ef;
  --cu-muted: #90a8bc;
  --cu-border: rgba(255, 255, 255, 0.08);
  --cu-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--cu-text);
  background:
    radial-gradient(circle at top left, rgba(45, 139, 228, 0.12), transparent 25%),
    linear-gradient(180deg, #06131d 0%, #081b29 45%, #0b2132 100%);
}

h1, h2, h3, h4, h5, h6, .navbar-brand, .display-stat {
  font-family: "Barlow", sans-serif;
  letter-spacing: 0.02em;
}

img {
  max-width: 100%;
  display: block;
}

main {
  overflow: hidden;
}

section {
  position: relative;
  padding: 96px 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(45, 139, 228, 0.12);
  color: #8dc5ff;
  border: 1px solid rgba(141, 197, 255, 0.14);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.section-copy {
  color: var(--cu-muted);
  max-width: 760px;
}

.text-muted-custom {
  color: var(--cu-muted);
}

.site-navbar {
  background: linear-gradient(
    90deg,
    #03111f 0%,
    #06192b 50%,
    #041321 100%
  );
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 8px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-navbar.navbar-scrolled {
  background: linear-gradient(
    90deg,
    #020d18 0%,
    #051728 50%,
    #030f1b 100%
  );
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 8px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
  color: #ffffff;
}

.navbar-brand:hover,
.navbar-brand:focus {
  color: #ffffff;
}

.navbar-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  background: #ffffff;
  padding: 4px;
  border-radius: 10px 0 0 10px;
  display: block;
  flex-shrink: 0;
}

.navbar-wordmark {
  height: 54px;
  width: auto;
  object-fit: contain;
  background: #ffffff;
  padding: 4px 10px 4px 6px;
  border-radius: 0 10px 10px 0;
  display: block;
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.45rem 0.7rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  filter: invert(1);
}

.navbar-nav .nav-link {
  color: #e4dddd;
  font-weight: 600;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
  color: #4da3ff !important;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--cu-blue), var(--cu-blue-soft));
  border: 0;
  color: #fff;
  border-radius: 999px;
  padding: 0.92rem 1.55rem;
  font-weight: 700;
  box-shadow: 0 14px 36px rgba(29, 113, 193, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary-custom:hover,
.btn-primary-custom:focus {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(29, 113, 193, 0.34);
}

.btn-outline-custom {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  border-radius: 999px;
  padding: 0.88rem 1.45rem;
  font-weight: 700;
  transition: all 0.25s ease;
}

.btn-outline-custom:hover,
.btn-outline-custom:focus {
  background: #fff;
  color: var(--cu-dark);
}

.hero-home,
.hero-page {
  position: relative;
  display: flex;
  align-items: center;
}

.hero-home {
  min-height: 100vh;
  padding: 140px 0 100px;
  background:
    linear-gradient(90deg, rgba(4, 14, 24, 0.9) 0%, rgba(4, 14, 24, 0.84) 45%, rgba(4, 14, 24, 0.56) 100%),
    url("../images/hero.jpg") center/cover no-repeat;
}

.hero-page {
  min-height: 62vh;
  padding: 150px 0 86px;
  background:
    linear-gradient(90deg, rgba(4, 14, 24, 0.9) 0%, rgba(4, 14, 24, 0.76) 50%, rgba(4, 14, 24, 0.42) 100%),
    var(--hero-image) center/cover no-repeat;
}

.hero-home::before,
.hero-page::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(6, 19, 29, 0), rgba(6, 19, 29, 1));
}

.hero-home .container,
.hero-page .container {
  position: relative;
  z-index: 1;
}

.hero-home h1,
.hero-page h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.98;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.2rem;
  max-width: 820px;
}

.hero-page h1 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
}

.hero-home p,
.hero-page p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  max-width: 720px;
}

.glass-panel,
.card-custom,
.contact-panel,
.feature-panel {
  background: linear-gradient(180deg, rgba(18, 41, 61, 0.92), rgba(10, 29, 44, 0.96));
  border: 1px solid var(--cu-border);
  border-radius: 26px;
  box-shadow: var(--cu-shadow);
}

.glass-panel,
.contact-panel,
.feature-panel {
  padding: 2rem;
}

.card-custom {
  height: 100%;
  padding: 1.75rem;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.card-custom:hover,
.image-card:hover {
  transform: translateY(-8px);
  border-color: rgba(141, 197, 255, 0.22);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.34);
}

.icon-wrap {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 1.4rem;
  background: linear-gradient(135deg, rgba(29, 113, 193, 0.18), rgba(141, 197, 255, 0.18));
  color: #a7d2ff;
  margin-bottom: 1rem;
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.mini-tile {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.15rem;
}

.display-stat {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.25rem;
}

.image-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--cu-border);
  border-radius: 26px;
  box-shadow: var(--cu-shadow);
  background: linear-gradient(180deg, rgba(18, 41, 61, 0.92), rgba(10, 29, 44, 0.96));
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.image-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.image-card .content {
  padding: 1.5rem;
}

.leadership-card {
  height: 100%;
  overflow: hidden;
  text-align: center;
  border: 1px solid var(--cu-border);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(18, 41, 61, 0.94), rgba(9, 25, 38, 0.98));
  box-shadow: var(--cu-shadow);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.leadership-card:hover {
  transform: translateY(-8px);
  border-color: rgba(141, 197, 255, 0.24);
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.36);
}

.leadership-card-image {
  position: relative;
  overflow: hidden;
}

.leadership-card-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(180deg, rgba(7, 22, 34, 0), rgba(7, 22, 34, 0.72));
}

.leadership-card-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center top;
}

.leadership-card-body {
  padding: 2rem 1.75rem;
}

.leadership-name {
  color: #fff;
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.leadership-role {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(45, 139, 228, 0.14);
  border: 1px solid rgba(141, 197, 255, 0.16);
  color: #9fd0ff;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.leadership-description {
  color: var(--cu-muted);
  margin-bottom: 0;
}

.about-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-feature:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.about-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.split-image {
  border-radius: 28px;
  min-height: 100%;
  object-fit: cover;
  box-shadow: var(--cu-shadow);
}

.split-image{
    width:100%;
    height:400px;
    object-fit:cover;
    object-position:center;
    border-radius:28px;
}

.mission-box {
  height: 100%;
}

.industry-card {
  text-align: center;
  padding: 1.5rem 1rem;
}

.industry-card .icon-wrap {
  margin-left: auto;
  margin-right: auto;
}

.partner-logo-card {
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--cu-shadow);
}

.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.partner-logo {
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem;
  border: 1px solid rgba(7, 22, 34, 0.08);
  border-radius: 16px;
  background: #fff;
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.saint-category {
  margin-top: 3rem;
}

.saint-category h3 {
  color: #fff;
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.saint-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.saint-product-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.saint-product-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card,
.saint-product-card {
  height: 318px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid var(--cu-border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(18, 41, 61, 0.94), rgba(9, 25, 38, 0.98));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.product-card:hover,
.saint-product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(141, 197, 255, 0.24);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.34);
}

.product-card img,
.saint-product-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  border-radius: 18px 18px 0 0;
  transition: transform 0.35s ease;
}

.product-card:hover img,
.saint-product-card:hover img {
  transform: scale(1.05);
}

.saint-product-card h4 {
  min-height: 76px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 1.15rem 1.25rem;
  border-radius: 0 0 18px 18px;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.25;
}

.meida-hero .hero-subheading {
  max-width: 760px;
  margin: -0.35rem 0 1rem;
  color: #8dc5ff;
  font-size: clamp(1.35rem, 2.8vw, 2.25rem);
  font-weight: 800;
}

.meida-page .saint-product-card {
  height: auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(18, 41, 61, 0.94), rgba(9, 25, 38, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.meida-page .saint-product-card img {
  width: 100%;
  height: 250px;
  min-height: 250px;
  object-fit: cover;
  object-position: center;
  border-radius: 22px 22px 0 0;
}

.meida-page .saint-product-card h4 {
  flex: 1;
  min-height: 76px;
  margin: 0;
  padding: 1.15rem 1.2rem;
  border-radius: 0 0 22px 22px;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.meida-page .saint-product-card:hover {
  transform: translateY(-6px);
  transition: 0.3s ease;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.34);
}

.product-category {
  margin-top: 3.25rem;
}

.category-title {
  position: relative;
  margin-bottom: 1.35rem;
  padding-left: 1rem;
  color: #fff;
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  font-weight: 800;
}

.category-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.22rem;
  bottom: 0.22rem;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cu-blue-soft), #8dc5ff);
}

.product-card {
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(18, 41, 61, 0.94), rgba(9, 25, 38, 0.98));
  border: 1px solid var(--cu-border);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(141, 197, 255, 0.24);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.34);
}

.product-image {
  height: 260px;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  background: rgba(255, 255, 255, 0.03);
}

.product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  border-radius: 18px 18px 0 0;
  transition: transform 0.35s ease;
}

.product-card:hover img {
  transform: scale(1.06);
}

.product-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
  border-radius: 0 0 18px 18px;
}

.product-card-body .icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  margin-bottom: 1rem;
}

.product-card-body h4 {
  margin: 0 0 0.65rem;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
}

.product-card-body p {
  margin: 0;
  color: var(--cu-muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.clients-section {
  background:
    linear-gradient(180deg, rgba(5, 15, 24, 0.34), rgba(5, 15, 24, 0.78)),
    linear-gradient(135deg, rgba(18, 41, 61, 0.42), rgba(7, 22, 34, 0.92));
}

.clients-section .section-title {
  margin-bottom: 0.35rem;
}

.clients-slider {
  position: relative;
  overflow: hidden;
  margin-top: 2.5rem;
  padding: 0.35rem 0;
}

.clients-slider::before,
.clients-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(14vw, 150px);
  pointer-events: none;
}

.clients-slider::before {
  left: 0;
  background: linear-gradient(90deg, #071622 0%, rgba(7, 22, 34, 0) 100%);
}

.clients-slider::after {
  right: 0;
  background: linear-gradient(270deg, #071622 0%, rgba(7, 22, 34, 0) 100%);
}

.clients-track {
  display: flex;
  width: max-content;
  animation: clients-scroll 44s linear infinite;
  will-change: transform;
}

.clients-slider:hover .clients-track {
  animation-play-state: paused;
}

.clients-set {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding-right: 1.1rem;
}

.client-logo {
  flex: 0 0 188px;
  height: 132px;
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem;
  border: 1px solid rgba(7, 22, 34, 0.08);
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.client-logo img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  opacity: 1;
  filter: none;
  transition: transform 0.3s ease;
}

.client-logo:hover,
.client-logo:focus-within {
  border-color: rgba(29, 113, 193, 0.16);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.22);
}

.client-logo:hover img,
.client-logo:focus-within img {
  opacity: 1;
  filter: none;
  transform: scale(1.05);
}

.clients-grid-static {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 2.5rem;
}

.clients-grid-static .client-logo {
  flex: initial;
  height: 140px;
  min-height: 140px;
  width: 100%;
  padding: 0.7rem;
}

.clients-grid-static .client-logo img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  opacity: 1;
  filter: none;
}

@keyframes clients-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.form-control {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 16px;
  padding: 0.95rem 1rem;
}

.form-control::placeholder {
  color: rgba(214, 226, 238, 0.45);
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(141, 197, 255, 0.36);
  color: #fff;
  box-shadow: 0 0 0 0.25rem rgba(29, 113, 193, 0.14);
}

.map-frame {
  border: 0;
  width: 100%;
  min-height: 420px;
  border-radius: 24px;
  box-shadow: var(--cu-shadow);
}

.page-divider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0));
  pointer-events: none;
}

footer {
  background: #050f18;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.footer-links a,
.contact-link {
  color: var(--cu-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.contact-link:hover {
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .hero-home {
    min-height: auto;
    padding: 130px 0 90px;
  }

  .hero-page {
    min-height: auto;
    padding: 135px 0 82px;
  }

  .client-logo {
    flex-basis: 168px;
    height: 122px;
    min-height: 122px;
  }

  .client-logo img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
  }

  .partner-logo-grid,
  .saint-product-grid,
  .saint-product-grid-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card,
  .saint-product-card {
    height: 304px;
  }

  .product-card img,
  .saint-product-card img {
    width: 100%;
    height: 100%;
  }

  .clients-grid-static {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .clients-grid-static .client-logo {
    height: 128px;
    min-height: 128px;
  }
}

@media (max-width: 767.98px) {
  section {
    padding: 78px 0;
  }

  .navbar-brand {
    gap: 2px;
    padding: 3px 6px;
  }

  .navbar-logo {
    width: 44px;
    height: 44px;
  }

  .navbar-wordmark {
    height: 44px;
    max-width: 180px;
  }

  .hero-mini-grid {
    grid-template-columns: 1fr;
  }

  .glass-panel,
  .contact-panel,
  .feature-panel,
  .card-custom,
  .image-card {
    border-radius: 22px;
  }

  .image-card img {
    height: 220px;
  }

  .leadership-card-image img {
    height: 300px;
  }

  .partner-logo-grid,
  .saint-product-grid,
  .saint-product-grid-three,
  .saint-product-grid-two {
    grid-template-columns: 1fr;
  }

  .partner-logo {
    height: 104px;
  }

  .saint-category {
    margin-top: 2.35rem;
  }

  .product-card,
  .saint-product-card {
    height: 326px;
  }

  .product-card img,
  .saint-product-card img {
    width: 100%;
    height: 100%;
  }

  .saint-product-card h4 {
    min-height: auto;
  }

  .meida-page .saint-product-card {
    border-radius: 18px;
  }

  .meida-page .saint-product-card img {
    height: 220px;
    min-height: 220px;
    border-radius: 18px 18px 0 0;
  }

  .meida-page .saint-product-card h4 {
    border-radius: 0 0 18px 18px;
  }

  .clients-slider {
    margin-top: 2rem;
  }

  .clients-slider::before,
  .clients-slider::after {
    width: 72px;
  }

  .clients-set {
    gap: 0.85rem;
    padding-right: 0.85rem;
  }

  .clients-grid-static {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 2rem;
  }

  .client-logo {
    flex-basis: 142px;
    height: 112px;
    min-height: 112px;
    padding: 0.65rem;
  }

  .client-logo img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
  }

  .clients-grid-static .client-logo {
    height: 118px;
    min-height: 118px;
    padding: 0.6rem;
  }

  .clients-grid-static .client-logo img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    opacity: 1;
    filter: none;
  }
}

.leadership-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* full image visible */
  background: #0b1d2a;   /* empty space fill */
}
.leadership-card-image {
  width: 100%;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b1d2a;
  border-radius: 16px 16px 0 0;
}

.leadership-card-image img {
  width: 90%;   /* 👈 reduce size */
  height: 100%;  /* 👈 reduce size */
  object-fit: contain;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.15rem;
  align-items: stretch;
  margin-top: 2.5rem;
}

.clients-grid .client-logo {
  height: 148px;
  min-height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(7, 22, 34, 0.08);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.clients-grid .client-logo img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  opacity: 1;
  filter: none;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.clients-grid .client-logo:hover,
.clients-grid .client-logo:focus-within {
  border-color: rgba(29, 113, 193, 0.16);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.22);
}

.clients-grid .client-logo:hover img,
.clients-grid .client-logo:focus-within img {
  opacity: 1;
  filter: none;
  transform: scale(1.05);
}

@media (max-width: 991.98px) {
  .clients-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }

  .clients-grid .client-logo {
    height: 132px;
    min-height: 132px;
    padding: 0.7rem;
  }

  .clients-grid .client-logo img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
  }
}

@media (max-width: 575.98px) {
  .clients-grid {
    grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
    gap: 0.85rem;
    margin-top: 2rem;
  }

  .clients-grid .client-logo {
    height: 118px;
    min-height: 118px;
    padding: 0.6rem;
  }

  .clients-grid .client-logo img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
  }
}

@media (max-width: 991.98px) {
  .product-card {
    height: 100%;
    min-height: 100%;
  }

  .product-card img {
    height: 260px;
  }
}

@media (max-width: 575.98px) {
  .product-image,
  .product-card img {
    height: 230px;
  }

  .product-card-body {
    padding: 1.2rem;
  }
}
/* reduce gap completely */

.navbar-brand{
    gap:0px;
}

/* remove extra spacing inside images */

.navbar-logo{
    margin-right:-2px;
    border-radius:10px 0 0 10px;
}

.navbar-wordmark{
    margin-left:-2px;
    border-radius:0 10px 10px 0;
}

.saint-product-card,
.meida-page .saint-product-card {
  height: 318px;
  padding: 2rem 1.5rem;
  box-sizing: border-box;
  text-align: center;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.saint-product-card img,
.meida-page .saint-product-card img {
  width: 250px;
  height: 200px;
  min-height: 200px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.saint-product-card h4,
.meida-page .saint-product-card h4 {
  padding: 0;
  min-height: auto;
  justify-content: center;
  text-align: center;
  border-radius: 0;
}

.saint-product-card:hover img,
.meida-page .saint-product-card:hover img {
  transform: scale(1.05);
  transition: 0.3s ease;
}

@media (max-width: 991.98px) {
  .saint-product-card,
  .meida-page .saint-product-card {
    height: 304px;
  }
}

@media (max-width: 768px) {
  .saint-product-card,
  .meida-page .saint-product-card {
    height: 326px;
  }

  .saint-product-card img,
  .meida-page .saint-product-card img {
    width: 150px;
    height: 150px;
    min-height: 150px;
  }
}
