@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&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&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/* ===============================
   Nimbus Sans - Regular
=================================*/
@font-face {
  font-family: 'NimbusSans';
  src: url('../fonts/NimbusSanL-Reg.eot');
  src: url('../fonts/NimbusSanL-Reg.eot?#iefix') format('embedded-opentype'),
    url('../fonts/NimbusSanL-Reg.woff2') format('woff2'),
    url('../fonts/NimbusSanL-Reg.woff') format('woff'),
    url('../fonts/NimbusSanL-Reg.ttf') format('truetype'),
    url('../fonts/NimbusSanL-Reg.svg#NimbusSans') format('svg');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ===============================
   Nimbus Sans - Bold
=================================*/
@font-face {
  font-family: 'NimbusSans';
  src: url('../fonts/NimbusSanL-Bol.eot');
  src: url('../fonts/NimbusSanL-Bol.eot?#iefix') format('embedded-opentype'),
    url('../fonts/NimbusSanL-Bol.woff2') format('woff2'),
    url('../fonts/NimbusSanL-Bol.woff') format('woff'),
    url('../fonts/NimbusSanL-Bol.ttf') format('truetype'),
    url('../fonts/NimbusSanL-Bol.svg#NimbusSans') format('svg');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* =====================================================
   ROOT DESIGN TOKENS
===================================================== */
:root {
  /* COLORS */
  --clr-primary: #1f3f46;
  --clr-primary-hover: #162e33;
  --clr-accent: #67b83f;

  --clr-bg-nav: #f5f6fa;
  --clr-bg-light: #ffffff;
  --clr-bg-dark-start: #2b2a6a;
  --clr-bg-dark-end: #15124a;

  --clr-text-main: #1f2937;
  --clr-text-muted: #9ca3af;
  --clr-text-white: #ffffff;

  /* TYPOGRAPHY */
  --fs-h1: clamp(2.2rem, 4.5vw, 3.8rem);
  --fs-h2: clamp(1.8rem, 3.5vw, 2.6rem);
  --fs-h3: clamp(1.4rem, 2.5vw, 2rem);
  --fs-h4: clamp(1.2rem, 2vw, 1.6rem);
  --fs-body: clamp(0.95rem, 0.35vw, 1.05rem);
  --fs-small: clamp(0.8rem, 0.25vw, 0.9rem);

  --lh-tight: 1.15;
  --lh-normal: 1.5;

  /* RADIUS */
  --radius-sm: 0.75rem;
  --radius-md: 1rem;
  --radius-pill: 999px;

  /* SPACING */
  --btn-pad-y: 0.65rem;
  --btn-pad-x: 1.6rem;
}

/* =====================================================
   BASE
===================================================== */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--clr-text-main);
  background-color: var(--clr-bg-light);
}

h1,
h2,
h3,
h4 {
  line-height: var(--lh-tight);
  margin-bottom: 0.75rem;
}

h1 {
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

h4 {
  font-size: var(--fs-h4);
}

p {
  margin-bottom: 1rem;
}

small {
  font-size: var(--fs-small);
}


/* =====================================================
   BUTTONS
===================================================== */
.btn {
  font-size: var(--fs-body);
  padding: var(--btn-pad-y) var(--btn-pad-x);
}

.btn-pill {
  border-radius: var(--radius-pill);
}

.btn-primary {
  background-color: var(--clr-primary);
  border-color: var(--clr-primary);
  color: var(--clr-text-white);
}

.btn-primary:hover {
  background-color: var(--clr-primary-hover);
  border-color: var(--clr-primary-hover);
}

.btn-success {
  background-color: var(--clr-accent);
  border-color: var(--clr-accent);
  color: var(--clr-text-main);
}

.btn-success:hover {
  opacity: 0.9;
}

/* =====================================================
   TEXT UTILITIES
===================================================== */
.text-muted-soft {
  color: var(--clr-text-muted);
}

.text-body-soft {
  color: #374151;
}

/* =====================================================
   HEADER
===================================================== */

/* ===============================
   HEADER
================================ */
.bg-top-gradient {
  height: 40px;
  background: linear-gradient(90deg, #3c3b73, #6b6aa6, #3c3b73);
}

#stickyNav {
  position: sticky;
  top: 0;
  background: #f5f6fa;
  z-index: 1000;
  transition: box-shadow 0.25s ease;
  padding: 8px 0;
}

#stickyNav.is-stuck {
  box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  margin-bottom: 0;
}

/* Logo */
.site-logo img {
  height: 56px;
  display: block;
}

a,
a:hover {
  color: #333;
}

/* ===============================
   NAV DESKTOP
================================ */
header .nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

header .nav-list a {
  text-decoration: none;
  color: #15124a;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

/* Button */
header .nav-list .btn-pill {
  background: #1f3f46;
  color: #fff !important;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  transition: opacity 0.25s ease;
}

header .nav-list .btn-pill:hover {
  opacity: 0.9;
}

header .btn-pill .bi-arrow-right-short {
  transform: rotate(-45deg);
  transition: transform 0.25s ease;
}

header .btn-pill:hover .bi-arrow-right-short {
  transform: rotate(-45deg) translateX(4px);
}

/* ===============================
   TOGGLE
================================ */
header .menu-toggle {
  display: none;
}

header .menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

header .menu-icon {
  height: 10px;
  margin-left: 10px;
}

header .menu-btn span {
  width: 24px;
  height: 2px;
  background: #111;
}

header .menu-close {
  display: none;
}

/* ===============================
   MOBILE MENU
================================ */
@media (max-width: 991px) {

  header .menu-btn {
    display: flex;
  }

  header .nav {
    position: fixed;
    inset: 0;
    background: #f5f6fa;
    transform: translateY(-100%);
    transition: transform 0.35s ease;
    padding: 6rem 2rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  header .menu-toggle:checked~.nav {
    transform: translateY(0);
  }

  header .nav-list {
    flex-direction: column;
    gap: 1.75rem;
    text-align: center;
  }

  header .nav-list a {
    font-size: clamp(1.25rem, 2vw, 1.45rem);
  }

  header .menu-close {
    display: block;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
  }

  /* Scroll lock Ã¢â‚¬â€œ CSS only */
  body:has(.menu-toggle:checked) {
    overflow: hidden;
  }
}


/* =====================================================
   HERO
===================================================== */
.min-vh-90 {
  min-height: 90vh;
}

.bg-hero-overlay {
  background: linear-gradient(to bottom,
      rgba(15, 13, 58, 0.35) 0%,
      rgba(15, 13, 58, 0.45) 70%,
      rgba(15, 13, 58, 0.5) 100%);
}

.hero-copy {
  max-width: 760px;
  font-size: clamp(1rem, 0.6vw, 1.15rem);
  line-height: 1.6;
}

.logo-icon img {
  height: 40px;
}

/* =====================================================
   GRADIENT SECTIONS
===================================================== */
.bg-gradient-dark {
  background: linear-gradient(180deg,
      var(--clr-bg-dark-start) 0%,
      var(--clr-bg-dark-end) 100%);
}

/* ==================================================
   ABOUT SECTION
   ================================================== */
.about-section {
  position: relative;
  padding: clamp(5rem, 10vw, 25rem) 0;
  background: radial-gradient(circle at top,
      #3b3a7a 0%,
      #1b194f 45%,
      #0f0d3a 100%);
  overflow: hidden;
  color: #fff;
  border-radius: 30px;
}

/* text */
.about-copy {
  color: rgba(255, 255, 255, 0.85);
}

/* ==================================================
     INITIAL ANIMATION STATE (HIDDEN)
     ================================================== */

/* heading + paragraphs */
.about-section h2,
.about-section .about-copy {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

/* button */
.about-section .btn {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

/* images (fade only) */
.about-img {
  position: absolute;
  width: clamp(150px, 18vw, 200px);
  aspect-ratio: 5 / 6;
  background: #000;
  overflow: hidden;

  opacity: 0;
  transition: opacity 1.2s ease;
}

@media (max-width: 991.98px) {
  .about-img {
    display: none;
  }
}

/* image element */
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==================================================
     BORDER LAYER (ALWAYS VIA ::before)
     ================================================== */
.about-img::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 4px solid #ff914d;
  /* ORANGE FIRST */
  pointer-events: none;
  z-index: 2;
  transition: border-color 1.5s ease;
}

/* ==================================================
     SHAPES â€” 6 DIFFERENT SVG CLIPPATHS
     ================================================== */

/* top-left (cut bottom-right) */
.img-tl,
.img-tl img,
.img-tl::before {
  clip-path: url(#clip-tl);
}

/* top-right (cut bottom-left) */
.img-tr,
.img-tr img,
.img-tr::before {
  clip-path: url(#clip-tr);
}

/* middle-left (cut top-right) */
.img-ml,
.img-ml img,
.img-ml::before {
  clip-path: url(#clip-ml);
}

/* middle-right (cut top-left) */
.img-mr,
.img-mr img,
.img-mr::before {
  clip-path: url(#clip-mr);
}

/* bottom-left (strong top-right cut) */
.img-bl,
.img-bl img,
.img-bl::before {
  clip-path: url(#clip-bl);
}

/* bottom-right (strong top-left cut) */
.img-br,
.img-br img,
.img-br::before {
  clip-path: url(#clip-br);
}

/* ==================================================
     POSITIONS
     ================================================== */
.img-tl {
  top: 10px;
  left: 6%;
}

.img-tr {
  top: 10px;
  right: 6%;
}

.img-ml {
  top: 30%;
  left: -10px;
}

.img-mr {
  top: 30%;
  right: -10px;
}

.img-bl {
  bottom: -80px;
  left: 8%;
}

.img-br {
  bottom: -80px;
  right: 8%;
}

/* ==================================================
     ACTIVE STATE (JS ADDS .is-visible)
     ================================================== */

/* text in */
.about-section.is-visible h2,
.about-section.is-visible .about-copy {
  opacity: 1;
  transform: translateY(0);
}

.about-section.is-visible .btn {
  opacity: 1;
  transform: translateY(0);
}

/* images â€” staggered fade-in */
.about-section.is-visible .img-tl {
  opacity: 1;
  transition-delay: 0.6s;
}

.about-section.is-visible .img-tr {
  opacity: 1;
  transition-delay: 1s;
}

.about-section.is-visible .img-ml {
  opacity: 1;
  transition-delay: 1.4s;
}

.about-section.is-visible .img-mr {
  opacity: 1;
  transition-delay: 1.8s;
}

.about-section.is-visible .img-bl {
  opacity: 1;
  transition-delay: 2.2s;
}

.about-section.is-visible .img-br {
  opacity: 1;
  transition-delay: 2.6s;
}

/* border color change â€” LAST */
.about-section.is-visible .about-img::before {
  border-color: #67b83f;
  transition-delay: 3.2s;
}

/* =====================================================
  CLIENTS
===================================================== */
.clients {
  padding: 4rem 0;
  text-align: center;
  overflow: hidden;
}

.clients h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 3rem;
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: logo-scroll 35s linear infinite;
}

.logo-track img {
  height: 48px;
  width: auto;
  flex-shrink: 0;
  transition: opacity 0.25s ease, filter 0.25s ease;
}


@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* optional polish */
.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

/* =====================================================
   SOLUTION CARDS
===================================================== */
/* ===============================
   BASE
================================ */
.solutions-section {
  padding: 5rem 0;
}


.section-head {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2rem, 2.5vw, 2.6rem);
  margin-bottom: 1rem;
}

.section-head p {
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ===============================
   GRID
================================ */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   CARD
================================ */
.solution-card {
  position: relative;
  padding: 2rem;
  background: linear-gradient(180deg, #3a387f 0%, #1b194f 100%);
  color: #fff;
  border-radius: 20px;
  overflow: hidden;
  min-height: 350px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
}

/* Card content fade */
.solution-card>*:not(.card-overlay) {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.solution-card:hover>*:not(.card-overlay) {
  transform: translateY(-8px);
  opacity: 0.25;
}

/* Card content */
.solution-card img {
  height: 60px;
  width: 60px;
  object-fit: contain;
  margin-bottom: 1.75rem;
}

.solution-card h4 {
  font-size: clamp(1.25rem, 1.3vw, 1.6rem);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.solution-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  opacity: 0.9;
}

/* ===============================
   OVERLAY
================================ */
.card-overlay {
  position: absolute;
  inset: 0;
  padding: 2rem;
  background: linear-gradient(180deg,
      rgba(27, 25, 79, 0.95) 0%,
      rgba(27, 25, 79, 1) 100%);

  display: flex;
  flex-direction: column;
  justify-content: center;

  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.solution-card:hover .card-overlay {
  transform: translateY(0);
}

/* Overlay text */
.card-overlay h5 {
  color: #f59e0b;
  font-size: clamp(1.1rem, 1.3vw, 1.4rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.card-overlay ul {
  margin: 0;
  padding-left: 1.1rem;
}

.card-overlay li {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}


/* =====================================================
   WHY WORK WITH US
===================================================== */

/* SECTION */
.why-work {
  background: #fff;
}

/* LEFT CARD */
.why-left-card {
  padding: clamp(2.5rem, 5vw, 4rem);
  max-width: 520px;
  margin-left: clamp(1rem, 5vw, 6rem);
  position: relative;
  z-index: 2;
}

/* watermark "1" */
.why-left-card::after {
  content: "";
  position: absolute;
  inset: 0 0 0 0;
  background: url("../images/icon-watermark.png") no-repeat top left;
  height: 100%;
  background-size: contain;
  z-index: -1;

}

@media (min-width: 992px) {
  .why-left-card::after {
    height: 120%;
  }
}

/* subtle wave lines */
.why-work .col-lg-5::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 100%;
  background: url("../images/wave-lines.png") no-repeat bottom left;
  background-size: cover;
}

/* RIGHT PANEL */

/* RIGHT PANEL */
.why-right {
  background: radial-gradient(circle at top right, #3b3774, #1a1740 70%);
  color: #fff;
  padding: clamp(1rem, 3vw, 5rem);
  border-radius: 2rem;
}

/* SCROLL LIST */
.why-list {
  max-height: 500px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1rem;
  position: relative;
}

/* SCROLLBAR */
.why-list::-webkit-scrollbar {
  width: 6px;
}

.why-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 10px;
}

/* ITEM */
.why-item {
  position: relative;
  padding: 1.5rem 0;
  z-index: 1;
}

.why-item:hover {
  z-index: 5;
}

/* DEFAULT ROW (60 / 40) */
.why-content {
  display: grid;
  grid-template-columns: 60% 40%;
}

/* TEXT */
.why-text h4 {
  font-weight: 600;
  margin-bottom: .5rem;
}

.why-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

/* NUMBER */
.why-num {
  font-size: clamp(3rem, 4vw, 4rem);
  font-weight: 700;
  color: #ff914d;
  line-height: 1;
  justify-self: end;
  padding-right: 1rem;
}

/* DIVIDER */
.why-list hr {
  border-color: rgba(255, 255, 255, 0.15);
  margin: 1rem 0;
}

/* HOVER CARD (60 / 40) */
.why-hover {
  position: absolute;
  inset: -1rem;
  background: #fff;
  border-radius: 1.5rem;
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: center;
  opacity: 0;
  padding: 0 1rem;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease;
  z-index: 2;
}

.why-item:hover .why-hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* HOVER TEXT */
.why-hover-text h4 {
  color: #1a1740;
  font-weight: 600;
}

.why-hover-text p {
  color: #444;
  margin: 0;
}

/* IMAGE */
.why-hover img {
  width: 100%;
  max-width: 180px;
  justify-self: end;
  border-radius: 1rem;
  display: none;
}


/* =====================================================
   BLOG SECTION
===================================================== */

article {
  display: flex;
  flex-direction: column;
}

/* blog image */
article img {
  width: 100%;
  display: block;
  border-radius: var(--radius-sm);
}

/* blog title */
article h4 {
  font-size: clamp(1.2rem, 1.1vw, 1.5rem);
  line-height: 1.25;
}

/* blog meta */
article small {
  font-size: clamp(0.8rem, 0.3vw, 0.9rem);
  color: var(--clr-text-muted);
}

/* blog body text */
article p {
  font-size: var(--fs-body);
  line-height: 1.55;
}

/* keep button at bottom if content grows */
article a.btn {
  align-self: flex-start;
  margin-top: auto;
}


/* =====================================================
   CTA
===================================================== */
.bg-gradient-dark p {
  font-size: clamp(1rem, 0.6vw, 1.1rem);
  line-height: 1.6;
}



/* =====================================================
   ABOUT PAGE
===================================================== */

.about-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  padding: 286px 15px 54px 15px;
}

/* background image */
.about-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0%;
  z-index: 0;
}

/* gradient overlay */
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1000px 500px at 50% -20%,
      rgba(0, 170, 200, 0.25),
      transparent 60%),
    linear-gradient(180deg,
      rgba(7, 11, 47, 0.35) 0%,
      rgba(7, 11, 47, 0.75) 55%,
      rgba(7, 11, 47, 0.95) 100%);
  z-index: 1;
}

/* content wrapper */
.about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1020px;
  margin: 0 auto;
}

.about-hero-inner p:empty {
  display: none;
}

.about-hero-inner a.btn {
  display: none;
}

/* =========================================================
     PILL
     ========================================================= */

.about-pill {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 0.35rem 1.1rem;
  font-size: 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(103, 184, 63, 0.8);
  color: #ffffff;
}


.about-hero h1 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 60px;
  line-height: 70px;
  color: #FFF;
  margin-bottom: 10px;
}


.about-hero p {
  font-family: "Raleway", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #FFF;
  margin-bottom: 0;
}

.about-cta {
  display: inline-block;
  background: #67b83f;
  color: #102016;
  padding: 0.75rem 2.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(103, 184, 63, 0.35);
}


.story-section {
  padding: clamp(3rem, 8vw, 6rem) 1rem;
  background: url(../images/wave-lines-two.png) no-repeat;
  background-size: cover;
}

.story-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: flex-start;
}

/* IMAGE STACK */
.story-images {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.story-images img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* CONTENT */
.story-content h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #1f2933;
  margin-bottom: 1.75rem;
}

.story-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #3a3f45;
  margin-bottom: 1.25rem;
  max-width: 640px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .story-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .story-content p {
    max-width: 100%;
  }
}



/* SECTION */
/* SECTION */
.mvv-section {
  padding: 4rem 2rem;
  background: linear-gradient(180deg, #2c2a6b, #14123d);
  color: #fff;
}

.mvv-header {
  margin: 0 auto 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mvv-title {
  font-size: 2.4rem;
  font-weight: 700;
}

/* NAV */
.mvv-nav {
  display: flex;
  gap: 0.75rem;
}

.nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgb(24 22 66);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
}

/* CARDS */
.mvv-cards {
  display: flex;
  gap: 1.25rem;
}

.mvv-card {
  position: relative;
  flex: 1;
  min-height: 540px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: flex 0.45s ease;
  border: 1px solid #7f7f7f;
  display: flex;
}

@media (max-width: 767px) {
  .mvv-card {
    display: none;
  }
}

.mvv-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(15, 14, 45, 0.35),
      rgba(15, 14, 45, 0.85));
}

.mvv-overlay {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 520px;
  margin-top: auto;
}

/* ACTIVE STATE */
.mvv-card.active {
  flex: 4;
  display: flex;
}

.mvv-card:not(.active) .mvv-overlay h3,
.mvv-card:not(.active) .mvv-overlay p {
  display: none;
}


/* ===============================
   TEAM SECTION
================================ */

.team-section {
  padding: 0 15px 100px 15px;
}

.team-title {
  font-family: 'NimbusSans', sans-serif;
  font-weight: 700;
  font-size: 43.2px;
  line-height: 49.68px;
  color: #1F2937;
}

/* PHOTO */
.team-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.team-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("../images/team-bg.png") no-repeat left bottom;
  background-size: 100%;
  z-index: 1;
}

.team-photo img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  border-radius: 0;
}

/* NAME */
.team-section h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

/* ROLE + LINKEDIN */
.team-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.role {
  font-size: 0.95rem;
  color: #4b5563;
  margin: 0;
}

.linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #211965;
  text-decoration: none;
}

/* BUTTON */
.team-actions {
  margin-top: auto;
}

.btn-team {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: #67b83f;
  color: #102016;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  font-size: 0.9rem;
  text-decoration: none;
}

.btn-team:hover {
  color: #fff;
  background-color: #157347;
  border-color: #157347;
}

.btn-team .bi {
  transition: transform 0.25s ease;
}

.btn-team:hover .bi {
  transform: translateX(4px);
}

/* MODAL */
.team-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow-y: auto;
}

@media (max-width: 768px) {
  .team-modal {
    align-items: flex-start;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

.team-modal.active {
  display: flex;
}

.team-modal-card {
  background: #fff;
  max-width: 1320px;
  width: 90%;
  padding: 2rem;
  border-radius: 16px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}


/* =====================================================
   SOLUTION  PAGE
===================================================== */

.solutions-section-two {
  background: #17144a;
}

.solutions-wrap {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

/* IMAGE */
.solutions-image {
  overflow: hidden;
}

.solutions-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.solutions-content h2 {
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.5rem;
}

.solutions-content p {
  max-width: 520px;
  color: #fff;
}

/* BUTTON */
.btn-solution {
  display: inline-block;
  background: #67b83f;
  color: #102016;
  padding: 0.75rem 2.4rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .solutions-wrap {
    grid-template-columns: 1fr;
  }

  .solutions-content {
    text-align: left;
  }
}

/* =====================================================
   HUB PAGE
===================================================== */

.hub-hero {
  position: relative;
  height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 15px;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

/* background image */
.hub-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  z-index: 0;
}

/* gradient overlay */
.hub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1000px 500px at 50% -20%,
      rgba(0, 170, 200, 0.25),
      transparent 60%),
    linear-gradient(180deg,
      rgba(7, 11, 47, 0.35) 0%,
      rgba(7, 11, 47, 0.75) 55%,
      rgba(7, 11, 47, 0.95) 100%);
  z-index: 1;
}

/* content wrapper */
.hub-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.hub-hero h1 {
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 61px;
  line-height: 73.2px;
  color: #211965;
}

/* Tabs wrapper */
/* ===============================
   HUB TABS (SCOPED)
=============================== */

.hub-tabs #hubTabs {
  gap: 0.75rem;
  padding-bottom: 0.5rem;
}

/* pills */
.hub-tabs .nav-pills .nav-link {
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  font-weight: 500;
  background: transparent;
  border: 1px solid #d6d8e5;
  color: #15124a;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.hub-tabs .nav-pills .nav-link:hover {
  background: #f1f2f7;
}

/* active */
.hub-tabs .nav-pills .nav-link.active {
  background: #2f2c6f;
  color: #ffffff;
  border-color: #2f2c6f;
}

/* tab animation */
.hub-tabs .tab-pane {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.hub-tabs .tab-pane:not(.show) {
  opacity: 0;
  transform: translateY(8px);
}


/* =====================================================
   SINGLE BLOG SECTION
===================================================== */

.single-post-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: #15124a;
  line-height: 1.2;
}

.post-meta {
  font-size: 0.9rem;
  color: #6b6f91;
}

.single-post-image img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.single-post-content {
  max-width: 820px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #1f235a;
}

/* Content spacing */
.single-post-content h2,
.single-post-content h3 {
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.single-post-content p {
  margin-bottom: 1.5rem;
}

.single-post-content ul,
.single-post-content ol {
  margin-left: 1.25rem;
  margin-bottom: 1.5rem;
}

/* Mobile */
@media (max-width: 768px) {
  .single-post-title {
    font-size: 2rem;
  }
}

/* =====================================================
   CONTACT PAGE
===================================================== */

/* =====================================================
   CONVERSATION SECTION
===================================================== */

.conversation-section {
  padding: clamp(2rem, 10vw, 3rem) 0;
  background: url(../images/wave-lines-two.png) no-repeat;
  background-size: cover;
}

.conversation-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: #17144a;
  margin-bottom: 1.5rem;
}

.conversation-copy {
  font-size: clamp(1.05rem, 1.2vw, 1.25rem);
  line-height: 1.7;
  color: #1f235a;
  margin-bottom: 1.25rem;
}


/* =====================================================
   CONTACT SECTION
===================================================== */

.contact-card {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 35% 65%;
  border-radius: 16px;
  overflow: hidden;
  background: #f1f1f5;
}


/* ---------------------
   LEFT PANEL
--------------------- */

.contact-left {
  background: linear-gradient(180deg, #3b397d 0%, #15124a 100%);
  color: #ffffff;
  padding: clamp(2.5rem, 4vw, 3.5rem);
  position: relative;
  overflow: hidden;
}

.contact-left h2 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.contact-sub {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  opacity: 0.85;
  margin-bottom: 3rem;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
}

.contact-details i {
  font-size: 1.25rem;
  margin-top: 0.2rem;
}


/* ---------------------
   WATERMARK (IMAGE)
--------------------- */

.contact-bg-letter {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 0;
  pointer-events: none;
}

.contact-bg-letter img {
  width: clamp(160px, 32vw, 210px);
  display: block;
  filter: grayscale(1);
  opacity: 0.1;
}

/* keep content above watermark */
.contact-left>*:not(.contact-bg-letter) {
  position: relative;
  z-index: 1;
}


/* ---------------------
   RIGHT PANEL
--------------------- */

.contact-right {
  padding: clamp(2.5rem, 4vw, 3.5rem);
  background: #f1f1f5;
}

.form-intro {
  font-size: clamp(1rem, 1.2vw, 1.5rem);
  color: #1f235a;
  margin-bottom: 3rem;
}


/* ---------------------
   FORM
--------------------- */

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
}

.field {
  display: flex;
  flex-direction: column;
}

.field.full {
  grid-column: span 2;
}

label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
  color: #1f235a;
}

input,
textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #9aa0b5;
  padding: 0.4rem 0;
  font-size: 1rem;
  outline: none;
  color: #1f2937;
  position: relative;
}

textarea {
  resize: none;
  width: 100%;
}

.field span {
  position: relative;
}

.field span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 0px;
  background: #9aa0b5;
}

/* spacing so text doesn’t overlap line */
.field span input,
.field span textarea {
  padding-left: 14px;
}

.field span::before {
  opacity: 1;
  transition: opacity 0.2s ease;
}



.btn-submit {
  margin-top: 3rem;
  align-self: flex-start;
  background: #67b83f;
  border: none;
  padding: 0.75rem 3rem;
  border-radius: 999px;
  font-size: 1rem;
  color: #1f2937;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}


/* ---------------------
   RESPONSIVE (CONTACT)
--------------------- */

@media (max-width: 900px) {
  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .field.full {
    grid-column: span 1;
  }

  .contact-bg-letter {
    display: none;
  }
}


/* =====================================================
   CTA SECTION
===================================================== */

.cta-card {
  margin: 0 auto;
  background: linear-gradient(135deg, #3b397d 0%, #15124a 100%);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  overflow: hidden;
}

.cta-content {
  padding: 4rem;
  color: #ffffff;
}

.cta-content h2 {
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.cta-content p {
  max-width: 520px;
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 2.5rem;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #67b83f;
  color: #102016;
  padding: 0.75rem 2.2rem;
  border-radius: 999px;
  font-weight: 500;
  text-decoration: none;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Amazon button */
.cta-btn-amazon {
  background: #ffffff;
  padding: 0.75rem 2.2rem;
}

@media (max-width: 768px) {
  .cta-actions {
    justify-content: center;
  }
}

.cta-btn-amazon img {
  height: 22px;
  width: auto;
  display: block;
}

.cta-image {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-right: 2rem;
}

.cta-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .cta-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-content {
    padding: 3rem 2rem;
  }

  .cta-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-image {
    justify-content: center;
    padding: 0;
  }
}


/* =====================================================
   FOOTER
===================================================== */

footer {
  background: #130f3d;
  color: rgba(255, 255, 255, 0.8);
}

footer a,
footer p {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

footer a:hover {
  color: rgba(255, 255, 255);
}

footer .form-control {
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 3rem;
}

footer .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

footer ul li {
  font-size: clamp(0.95rem, 0.4vw, 1.05rem);
}

footer small {
  letter-spacing: 0.08em;
}

/* =====================================================
   BOOTSTRAP ICONS TWEAK
===================================================== */
.bi {
  vertical-align: -0.125em;
}


.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #211965;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

/* Banner Section CSS */

.banner_section svg.n2-ow {
  display: none !important;
}

.banner_section .n2-ss-slide {
  height: auto !important;
}

.banner_section .n2-ss-layer-col {
  padding: 0 !important;
  padding-top: 400px !important;
  padding-bottom: 50px !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.banner_section .n2-ss-layer {
  margin: 0 !important;
}

.banner_section .n2-ss-section-main-content {
  padding: 0 !important;
}

.banner_section .n2-ss-layer-col .n2-ss-layer:nth-child(2) {
  margin-bottom: 0 !important;
}

.banner_section .n2-ss-layer #n2-ss-2item1,
.banner_section .n2-ss-layer #n2-ss-3item1 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 60px;
  line-height: 70px;
  color: #FFF;
  text-shadow: none !important;
}

.banner_section .n2-ss-section-main-content .n2-ss-layer {
  max-width: 900px !important;
}

.banner_section.solution .n2-ss-section-main-content .n2-ss-layer {
  max-width: 1100px !important;
}

.banner_section .n2-ss-layer-col .n2-ss-layer .n2-ss-item-content p {
  font-family: "Raleway", sans-serif !important;
  font-style: normal !important;
  font-weight: 500 !important;
  font-size: 20px !important;
  line-height: 30px !important;
  color: #FFF !important;
}

.banner_section div#n2-ss-2 .n2-font-ff706fe2c21a658884ac17f5f8f630c7-paragraph {
  text-shadow: none !important;
}

.leader_wrapper {
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.06);
  padding: 25px;
}

.leader_wrapper .row {
  align-items: stretch !important;
}

.leader_wrapper .row .col-lg-5 .ratio {
  height: 100%;
}

.leader_wrapper .row .col-lg-5 .ratio img {
  object-fit: cover !important;
}

.leader_wrapper .offerings {
  margin-bottom: 20px;
}

.leader_wrapper .offerings p:last-child {
  margin-bottom: 0;
}

.leader_wrapper .offerings p {
  font-family: 'NimbusSans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15.2px;
  line-height: 22.8px;
  color: #1F2937;
}

.leader_wrapper .accordion .accordion-item {
  border: none;
  border-bottom: 1px solid #BEBEBE;
}

.leader_wrapper .accordion .accordion-item:last-child {
  border-bottom: none;
}

.leader_wrapper .accordion .accordion-item .accordion-button {
  padding: 20px 0;
}

.leader_wrapper .accordion .accordion-item .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
  padding: 20px 0 0 0;
  color: #1E2162;
}

.leader_wrapper .accordion .accordion-item .accordion-body {
  font-family: 'NimbusSans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15.2px;
  line-height: 22.8px;
  color: #212529;
  padding: 11px 0 20px 0;
}

.leader_wrapper .accordion .accordion-item:first-child .accordion-button {
  padding-top: 0;
}

.leader_wrapper .accordion .accordion-item:last-child .accordion-button {
  padding-bottom: 0;
}

.leader_wrapper .accordion .accordion-item .accordion-header .accordion-button {
  font-family: 'NimbusSans', sans-serif;
  font-style: normal;
  font-weight: 700 !important;
  font-size: 16px;
  line-height: 18.4px;
  color: #1E2162;
}

.leader_wrapper .accordion .accordion-item .accordion-header .accordion-button::after {
  background-image: url(../images/plus-icon.svg);
}

.leader_wrapper .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  transform: rotate(45deg);
}

.leader_wrapper .accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}

.leader_wrapper .accordion .accordion-item .accordion-header .accordion-button:focus-visible {
  outline: none;
}

.team-section .row .col {
  margin-bottom: 30px;
}

.team-hero.about-hero h1,
.team-hero.about-hero p {
  color: #211965;
}

.team-hero.about-hero::before,
.team-hero.about-hero .about-hero-bg {
  display: none;
}

.team-section .team_heading,
.team-section .team_para {
  display: none;
}

.clients.logo_slider_section {
  padding: 0 15px 64px 15px;
}

.banner_section .n2-ss-slide-backgrounds .n2-ss-slide-background .n2-ss-slide-background-image picture img {
  object-position: top;
}

.banner_section .n2-ss-layer .n2-ss-button-container {
  display: none !important;
}

@media (max-width: 1199px) {

  .banner_section .n2-ss-layer-col {
    padding-top: 300px !important;
  }

  .banner_section .n2-ss-layer #n2-ss-2item1,
  .banner_section .n2-ss-layer #n2-ss-3item1 {
    font-size: 52px !important;
    line-height: 62px;
  }

  .about-hero {
    padding: 200px 15px 50px 15px;
  }

  .about-hero h1 {
    font-size: 52px;
    line-height: 62px;
  }

  .banner_section .n2-ss-layer #n2-ss-2item1,
  .banner_section .n2-ss-layer #n2-ss-3item1 {
    font-size: 52px !important;
    line-height: 62px;
  }

  .hub-hero {
    height: 500px;
  }

  .hub-hero h1 {
    font-size: 52px;
    line-height: 62px;
  }

  .leader_wrapper {
    padding: 20px;
  }

  .team-title {
    font-size: 36px;
    line-height: 42px;
  }

  .leader_wrapper .offerings {
    margin-bottom: 18px;
  }

  .leader_wrapper .accordion .accordion-item .accordion-button {
    padding: 18px 0;
  }

  .leader_wrapper .accordion .accordion-item .accordion-body {
    padding: 11px 0 18px 0;
  }

  .team-section {
    padding: 0 15px 80px 15px;
  }

}

@media (max-width: 991px) {

  .banner_section .n2-ss-layer-col {
    padding-top: 200px !important;
  }

  .banner_section .n2-ss-layer #n2-ss-2item1,
  .banner_section .n2-ss-layer #n2-ss-3item1 {
    font-size: 44px !important;
    line-height: 54px;
  }

  .banner_section .n2-ss-layer-col .n2-ss-layer .n2-ss-item-content p {
    font-size: 18px !important;
    line-height: 26px !important;
  }

  .about-hero {
    padding: 150px 15px 50px 15px;
  }

  .about-hero h1 {
    font-size: 44px;
    line-height: 54px;
  }

  .about-hero p {
    font-size: 18px;
    line-height: 26px;
  }

  .hub-hero {
    height: 400px;
  }

  .hub-hero h1 {
    font-size: 44px;
    line-height: 54px;
  }

  .leader_wrapper .col-lg-7 {
    margin-bottom: 30px;
  }

  .team-title {
    font-size: 28px;
    line-height: 38px;
  }

  .leader_wrapper .offerings {
    margin-bottom: 15px;
  }

  .leader_wrapper .accordion .accordion-item .accordion-button {
    padding: 15px 0;
  }

  .leader_wrapper .accordion .accordion-item .accordion-body {
    padding: 10px 0 15px 0;
  }

  .team-section {
    padding: 0 15px 60px 15px;
  }

}

@media (max-width: 767px) {

  .banner_section .n2-ss-layer-col {
    padding-top: 150px !important;
  }

  .banner_section .n2-ss-layer #n2-ss-2item1,
  .banner_section .n2-ss-layer #n2-ss-3item1 {
    font-size: 36px !important;
    line-height: 46px;
  }

  .banner_section .n2-ss-layer-col .n2-ss-layer .n2-ss-item-content p,
  .banner_section div#n2-ss-2 .n2-font-ff706fe2c21a658884ac17f5f8f630c7-paragraph {
    font-size: 16px !important;
    line-height: 24px !important;
  }

  .about-hero {
    padding: 50px 15px 50px 15px;
  }

  .about-hero h1 {
    font-size: 36px;
    line-height: 46px;
  }

  .about-hero p {
    font-size: 16px;
    line-height: 24px;
  }

  .hub-hero h1 {
    font-size: 36px;
    line-height: 46px;
  }

  .leader_wrapper {
    padding: 15px;
  }

  .team-title {
    font-size: 24px;
    line-height: 34px;
  }

  .leader_wrapper .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 15px;
  }

  .leader_wrapper .accordion .accordion-item .accordion-body {
    font-size: 14px;
  }

  .team-section {
    padding: 0 15px 40px 15px;
  }

}

/* The Hub Page Partnerships Tab Partnership Section CSS Starts */

.partnership_section .header_section {
  text-align: center;
  margin-bottom: 60px;
}

.partnership_section .main_title {
  font-family: 'NimbusSans', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 57.6px;
  color: #17144A;
  margin-bottom: 24px;
}

.partnership_section .main_description {
  font-family: 'NimbusSans', sans-serif;
  font-weight: 400;
  font-size: 15.2px;
  line-height: 22.8px;
  color: #1F2937;
  max-width: 856px;
  margin: 0 auto;
}

.partnership_section .card_wrapper {
  display: flex;
  align-items: stretch;
  gap: 48px;
}

.partnership_section .coaching_card {
  background: #FFF;
  border: 0 solid #E5E7EB;
  border-radius: 16px;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.06);
  display: flex;
  flex: 1;
  flex-direction: column;
  overflow: hidden;
  padding: 40px;
}

.partnership_section .image_container {
  position: relative;
  padding-bottom: 47.06%;
}

.partnership_section .card_image {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}

.partnership_section .card_content {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.partnership_section .card_title {
  font-family: 'NimbusSans', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  color: #111827;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.partnership_section .feature_list {
  list-style: none;
  margin: 0px 0px 20px 0px;
  padding: 0px;
}

.partnership_section .feature_item {
  font-family: 'NimbusSans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #1F2937;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.partnership_section .feature_item:last-child {
  margin-bottom: 0;
}

.partnership_section .feature_item img {
  display: block;
  width: 24px;
  min-width: 24px;
  height: 24px;
  object-fit: contain;
  margin-right: 20px;
}

.partnership_section .footer_text,
.partnership_section .description_text {
  font-family: 'NimbusSans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #4B5563;
  letter-spacing: -0.5px;
  margin: 0;
}

@media (max-width: 1199px) {

  .partnership_section .header_section {
    margin-bottom: 50px;
  }

  .partnership_section .main_title {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 22px;
  }

  .partnership_section .card_wrapper {
    gap: 30px;
  }

  .partnership_section .coaching_card {
    padding: 30px;
  }

  .partnership_section .card_content {
    padding-top: 22px;
  }

  .partnership_section .card_title {
    font-size: 26px;
    margin-bottom: 18px;
  }

  .partnership_section .feature_list {
    margin: 0px 0px 18px 0px;
  }

  .partnership_section .feature_item {
    line-height: 24px;
    margin-bottom: 18px;
  }

  .partnership_section .feature_item img {
    width: 22px;
    min-width: 22px;
    height: 22px;
    margin-right: 15px;
  }

  .partnership_section .footer_text,
  .partnership_section .description_text {
    line-height: 24px;
  }

}

@media (max-width: 991px) {

  .partnership_section .header_section {
    margin-bottom: 40px;
  }

  .partnership_section .main_title {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 20px;
  }

  .partnership_section .card_wrapper {
    gap: 15px;
  }

  .partnership_section .coaching_card {
    padding: 20px;
  }

  .partnership_section .card_content {
    padding-top: 20px;
  }

  .partnership_section .card_title {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 15px;
  }

  .partnership_section .feature_list {
    margin: 0px 0px 15px 0px;
  }

  .partnership_section .feature_item {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 15px;
  }

  .partnership_section .feature_item img {
    width: 20px;
    min-width: 20px;
    height: 20px;
    margin-right: 10px;
  }

  .partnership_section .footer_text,
  .partnership_section .description_text {
    font-size: 15px;
    line-height: 22px;
  }

}

@media (max-width: 767px) {

  .partnership_section .header_section {
    margin-bottom: 30px;
  }

  .partnership_section .main_title {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 15px;
  }

  .partnership_section .card_wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .partnership_section .coaching_card {
    padding: 15px;
  }

  .partnership_section .card_content {
    padding-top: 15px;
  }

  .partnership_section .card_title {
    font-size: 18px;
    line-height: 26px;
  }

  .partnership_section .feature_item img {
    margin-right: 7px;
  }

}

/* The Hub Page Partnerships Tab Partnership Section CSS Ends */

/* The Hub Page Partnerships Tab Development Section CSS Starts */

.development_section {
  padding-top: 53px;
}

.development_section .main_heading {
  font-family: 'NimbusSans', sans-serif;
  font-weight: 700;
  font-size: 43.2px;
  line-height: 49.68px;
  color: #1F2937;
  margin-bottom: 45px;
  text-align: center;
}

.development_section .cards_wrapper {
  margin: 0 -12px -24px -12px;
}

.development_section .cards_row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin-bottom: 60px;
}

.development_section .card_item {
  width: 20%;
  margin-bottom: 24px;
  padding: 0 12px;
}

.development_section .card_item_box {
  background: #FFF;
  border: 1px solid #F3F4F6;
  border-radius: 12px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.10);
  padding: 25px 25px 40px 25px;
  text-align: center;
  height: 100%;
}

.development_section .icon_box {
  background: rgba(30, 58, 138, 0.10);
  border-radius: 8px;
  width: 48px;
  height: 48px;
  margin: 0px auto 19px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.development_section .icon_box img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
  object-position: center;
}

.development_section .card_title {
  font-family: 'NimbusSans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #111827;
  margin-bottom: 7px;
  letter-spacing: -0.5px;
}

.development_section .card_text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
  color: #4B5563;
  margin: 0;
  letter-spacing: -0.5px;
}

.development_section .bottom_divider {
  background: linear-gradient(90deg, #1E3A8A 0%, #3B82F6 100%);
  width: 96px;
  height: 1px;
  margin: 0px auto 32px auto;
}

.development_section .footer_text {
  font-family: 'NimbusSans', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: #1F2937;
  text-align: center;
  letter-spacing: -0.5px;
  max-width: 1024px;
  margin: 0px auto;
}

@media (max-width: 1199px) {

  .development_section {
    padding-top: 40px;
  }

  .development_section .main_heading {
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 35px;
  }

  .development_section .cards_wrapper {
    margin: 0 -10px -20px -10px;
  }

  .development_section .cards_row {
    margin-bottom: 50px;
  }

  .development_section .card_item {
    width: 33.33%;
    margin-bottom: 20px;
    padding: 0 10px;
  }

  .development_section .card_item_box {
    padding: 20px 20px 35px 20px;
  }

  .development_section .icon_box {
    width: 45px;
    height: 45px;
    margin: 0px auto 15px auto;
  }

  .development_section .card_title {
    margin-bottom: 5px;
  }

  .development_section .bottom_divider {
    margin: 0px auto 30px auto;
  }

  .development_section .footer_text {
    font-size: 20px;
    line-height: 30px;
  }

}

@media (max-width: 991px) {

  .development_section .main_heading {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 25px;
  }

  .development_section .cards_row {
    margin-bottom: 40px;
  }

  .development_section .card_item_box {
    padding: 15px 15px 30px 15px;
  }

  .development_section .icon_box {
    width: 40px;
    height: 40px;
  }

  .development_section .card_title {
    font-size: 18px;
    line-height: 26px;
  }

  .development_section .bottom_divider {
    margin: 0px auto 25px auto;
  }

  .development_section .footer_text {
    font-size: 18px;
    line-height: 26px;
  }

}

@media (max-width: 767px) {

  .development_section {
    padding-top: 30px;
  }

  .development_section .main_heading {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 15px;
  }

  .development_section .cards_wrapper {
    margin: 0;
  }

  .development_section .cards_row {
    margin-bottom: 30px;
  }

  .development_section .card_item {
    width: 100%;
    margin-bottom: 20px;
    padding: 0;
  }

  .development_section .card_item:last-child {
    margin-bottom: 0;
  }

  .development_section .card_item_box {
    padding: 15px 15px 25px 15px;
  }

  .development_section .bottom_divider {
    margin: 0px auto 20px auto;
  }

  .development_section .footer_text {
    font-size: 16px;
    line-height: 24px;
  }

}

/* The Hub Page Partnerships Tab Development Section CSS Ends */