/* ============ Base ============ */

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --red: #e60000;
  --red-dark: #e60000;
  --blue: #1a4a8a;
  --ink: #0d1526;
  --text: #2b2f3a;
  --muted: #6b7280;
  --bg: #f3f3f4;
  --bg-soft: #f6f7fb;
  --border: #e6e8ef;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);
  --radius: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: #000;
  font-size: 15px;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.4;
  overflow-x: hidden;
  font-weight: 500;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.2em;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

p {
  margin: 0 0 1em;
  color: #000;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.text-red {
  color: var(--red);
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ink);
  text-transform: uppercase;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--red);
  margin-bottom: 18px;
}

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

span {
  font-family: "Montserrat", sans-serif;
}

a {
  font-family: "Montserrat", sans-serif;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;

  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn--sm {
  padding: 9px 18px;
  font-size: 0.82rem;
}

.btn--primary {
  background: var(--red);
  color: #fff;

}

.btn--primary:hover {
  background: transparent;
  transform: translateY(-2px);
  border: solid 1px black;
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn--outline:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

.btn--white {
  background: #fff;
  color: var(--red);
}

.btn--white:hover {
  background: transparent;
  transform: translateY(-2px);
  border: solid 1px white;
}

/* ============ Preloader ============ */
.preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

.preloader.done {
  opacity: 0;
  visibility: hidden;
}

.preloader__inner {
  text-align: center;
}

.preloader__logo {
  width: 180px;
  animation: pulse 1.4s ease-in-out infinite;
}

.preloader__bar {
  width: 180px;
  height: 3px;
  margin: 20px auto 0;
  background: #f2d6d6;
  border-radius: 3px;
  overflow: hidden;
}

.preloader__bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--red);
  animation: slide 1.2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.55;
  }
}

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

  100% {
    transform: translateX(350%);
  }
}

/* ============ Header ============ */

/* ============ Hero ============ */
.hero {
  position: relative;

  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url(/assets/herobg.jpeg);
  background-size: cover;
  pointer-events: none;
}

.hero__curves {
  position: absolute;
  width: clamp(520px, 62vw, 920px);
  height: auto;
  opacity: 0.38;
}

.hero__curves--right {
  right: -80px;
  top: -20px;
  mask-image: radial-gradient(ellipse 65% 55% at 72% 38%,
      #000 15%,
      transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 65% 55% at 72% 38%,
      #000 15%,
      transparent 72%);
}

.hero__curves--left {
  left: -120px;
  top: 40px;
  transform: scaleX(-1);
  opacity: 0.22;
  width: clamp(400px, 48vw, 680px);
  mask-image: radial-gradient(ellipse 60% 50% at 35% 40%,
      #000 10%,
      transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 35% 40%,
      #000 10%,
      transparent 70%);
}

.hero__inner {
  position: relative;
}

.hero__text h2 {
  margin-bottom: 20px;
  font-weight: 700;
}

.hero__text p {
  max-width: 520px;
  margin-bottom: 28px;
  font-size: 1.02rem;
}

.hero__media {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 520px;
  margin-left: auto;
}

.about-video {
  height: 500px;
  overflow: hidden;
  border-radius: 20px;
}

.about-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mobile */
@media (max-width: 991px) {
  .about-video {
    height: auto;
  }

  .about-video video {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

/* ============ Event banner ============ */
.event-banner {
  background: linear-gradient(90deg, #1a4a8a 0%, #7c2fbf 50%, #e60000 100%);
  color: #fff;
  margin-top: -50px;

}

.event-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
  flex-wrap: wrap;
}

.event-banner p {
  color: #fff;
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

/* ============ Decorative section backgrounds ============ */
.section-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.section-bg__mesh {
  position: absolute;
  width: clamp(480px, 55vw, 780px);
  height: auto;
  opacity: 0.14;
}

/* ============ Serve cards ============ */
.serve {
  padding: 70px 0 40px;

  position: relative;
  overflow: hidden;
}

/* ===== WHO WE SERVE BACKGROUND ===== */

.section-bg__mesh--serve {
  position: absolute;

  left: -180px;
  bottom: -140px;

  width: 1850px;
  max-width: none;
  height: auto;

  opacity: 0.55;
  /* Much more visible */

  z-index: 0;

  mask-image: none;
  -webkit-mask-image: none;
}

.serve .container {
  position: relative;
  z-index: 1;
}

.serve__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.serve-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;

  transition: all 0.4s var(--ease);
  cursor: pointer;
}

.serve-card:hover {
  transform: translateY(-10px);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px !important;
}

.serve-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ffecec;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  color: var(--red);
  transition: transform 0.5s var(--ease);
}

.serve-card:hover .serve-card__icon {
  transform: scale(1.1) rotate(-6deg);
}

.serve-card__icon svg {
  width: 30px;
  height: 30px;
}

.serve-card h6 {
  color: var(--blue);
  margin-bottom: 8px;
}

.serve-card p {
  font-size: 0.88rem;
  margin: 0;
}

/* ============ About ============ */
.about {
  padding: 10px 0;

  position: relative;
  overflow: hidden;
}

.section-bg__mesh--about-left {
  left: -130px;
  top: 30px;
  width: clamp(420px, 48vw, 560px);
  opacity: 0.12;
  mask-image: radial-gradient(ellipse 68% 68% at 42% 45%,
      #000 18%,
      transparent 74%);
  -webkit-mask-image: radial-gradient(ellipse 68% 68% at 42% 45%,
      #000 18%,
      transparent 74%);
}

.section-bg__mesh--about-right {
  right: -110px;
  top: -30px;
  width: clamp(540px, 62vw, 720px);
  opacity: 0.15;
  mask-image: radial-gradient(ellipse 65% 70% at 72% 38%,
      #000 20%,
      transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 65% 70% at 72% 38%,
      #000 20%,
      transparent 75%);
}

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

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 992px) {
  .about__grid h2 {
    line-height: 50px;
  }
}

.about__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-card {
  background: #fff;
  border: 2px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 28px;

  min-height: 180px;
  transition: all 0.4s var(--ease);
}

.about-card:nth-child(2) {
  transform: translateY(30px);
}

.about-card:nth-child(3) {
  transform: translateY(-30px);
}

.about-card:hover {
  transform: translateY(-8px);
  background: var(--red);
  color: #fff;
}

.about-card:hover h4,
.about-card:hover p {
  color: #fff;
}

.about-card h4 {
  color: var(--ink);
  margin-bottom: 8px;
}

.about-card p {
  font-size: 0.88rem;
  margin: 0;
}

/* ============ Pillars ============ */
.pillars {
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pillar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: all 0.4s var(--ease);
}

.pillar__num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue);
  display: block;
  margin-bottom: 10px;
}

.pillar h3 {
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.pillar p {
  font-size: 0.92rem;
  margin: 0;

}

.pillar.active {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--red);
  background: var(--red);
}

.pillar:hover {
  transform: translateY(-8px) !important;
  box-shadow: var(--shadow-md);
  border-color: var(--red);
  background: var(--red);
}

.pillar.active h3,
.pillar.active p,
.pillar.active .pillar__num,
.pillar:hover h3,
.pillar:hover p,
.pillar:hover .pillar__num {
  color: #fff;
}

/* ============ Programs ============ */

/* ============ Impact ============ */
.impact {
  padding: 30px 0;
  position: relative;

  z-index: 1;
}

.impact__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
  align-items: end;
}

.counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.counter__num,
.counter__plus {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--ink);
}

.counter__plus {
  color: var(--red);
}

.counter p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* ============ Events ============ */
.events {
  padding: 30px 0 30px;
  position: relative;
  overflow: hidden !important;
  background: var(--bg);
  z-index: 10;
}

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

.event-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  display: block;
  box-shadow: var(--shadow-sm);
  background: #0d0e15;
}

.event-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.event-tile:hover img {
  transform: scale(1.08);
}

.event-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      transparent 40%,
      rgba(0, 0, 0, 0.75) 100%);
  z-index: 1;
}

.event-tile span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  z-index: 2;
}

/* ============ Subscribe ============ */
.subscribe {
  padding: 20px 0 70px;
  position: relative;
  overflow: hidden !important;
  background: var(--bg);
  z-index: 5;
}

.subscribe .container {
  position: relative;
  z-index: 5;
}

.subscribe h2 {
  font-size: 30px;
  line-height: 40px;
}

@media(max-width:768px) {
  .subscribe h2 {
    font-size: 23px;
  }
}

.section-bg__mesh--subscribe-left {
  left: -110px;
  top: -50px;
  width: clamp(500px, 56vw, 700px);
  opacity: 0.11;
  mask-image: radial-gradient(ellipse 60% 65% at 35% 35%,
      #000 15%,
      transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 60% 65% at 35% 35%,
      #000 15%,
      transparent 72%);
}

.section-bg__mesh--subscribe-right {
  right: -90px;
  bottom: -80px;
  width: clamp(480px, 52vw, 640px);
  opacity: 0.1;
  mask-image: radial-gradient(ellipse 58% 58% at 78% 78%,
      #000 18%,
      transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 58% 58% at 78% 78%,
      #000 18%,
      transparent 70%);
}

.subscribe__bar {
  background: linear-gradient(90deg, #e60000 0%, #7c2fbf 50%, #1a4a8a 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 20px 50px rgba(230, 0, 0, 0.2);
}

.subscribe__bar2 {
  background: linear-gradient(90deg, #1a4a8a 0%, #7c2fbf 50%, #e60000 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 20px 50px rgba(230, 0, 0, 0.2);
}

.subscribe__bar h3 {
  color: #fff;

  margin-bottom: 4px;
}

.subscribe__bar p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 0.88rem;
  max-width: 620px;
}

/* ============ Footer ============ */
.footer {
  background: #8a8d95;

  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1fr;
  gap: 40px;
  padding-bottom: 80px;
}

.footer__logo {
  background: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  width: fit-content;
  height: 40px;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer h5 {
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer p,
.footer li {
  color: black;
  font-size: 0.9rem;
  margin: 6px 0;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li a {
  transition: color 0.3s;
}

.footer ul li a:hover {
  color: var(--red);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  display: grid;
  place-items: center;
  transition: all 0.3s var(--ease);
}

.socials a:hover {
  background: var(--red);
  transform: translateY(-3px);
}

.socials svg {
  width: 16px;
  height: 16px;
  color: #000;
}

.footer__bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  padding: 18px 0;
  font-size: 0.82rem;
}

.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(0, 0, 0, 0.85);
}

.footer__bottom a {
  color: inherit;
}

.footer-dropdown {
  position: relative;
}

.footer-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
}

.footer-arrow {
  transition: .3s;
}

.footer-submenu {
  display: none;
  list-style: none;
  margin-top: 15px !important;
  padding-left: 15px !important;
}

.footer-submenu li {
  position: relative;
  margin: 8px 0;
  padding-left: 10px;
}

.footer-submenu li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #b11226;
  /* Change to your theme color */
  font-size: 16px;
  font-weight: 600;
}

.footer-submenu a {
  font-size: 14px;
}

.footer-dropdown.active .footer-submenu {
  display: block;
}

.footer-dropdown.active .footer-arrow {
  transform: rotate(90deg);
}

/* ============ Reveal animations ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}

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

.reveal--delay {
  transition-delay: 0.2s;
}

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .hero {
    padding: 120px 0 60px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__media {
    margin: 0 auto;
    max-width: 380px;
  }

  .hero__curves--left {
    display: none;
  }

  .hero__curves--right {
    right: -140px;
    opacity: 0.28;
  }

  .section-bg__mesh {
    opacity: 0.1;
  }

  .section-bg__mesh--about-left {
    display: none;
  }

  .section-bg__mesh--programs-right {
    top: 20px;
    width: clamp(380px, 70vw, 520px);
  }

  .serve__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about__grid,
  .programs__grid,
  .impact__head {
    grid-template-columns: 1fr;
  }

  .pillars__grid {
    grid-template-columns: 1fr;
  }

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

  .counters {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .about-card:nth-child(2),
  .about-card:nth-child(3) {
    transform: none;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-md);
    gap: 12px;
  }

  .nav.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 620px) {
  .serve__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .programs__cards {
    grid-template-columns: 1fr;
  }

  .about__cards {
    grid-template-columns: 1fr;
  }

  .subscribe__bar {
    text-align: center;
    justify-content: center;
  }

  .header__actions .btn--sm {
    display: none;
  }

  .section-bg__mesh--serve,
  .section-bg__mesh--subscribe-right {
    opacity: 0.08;
  }

  .section-bg__mesh--programs-left {
    display: none;
  }
}

/* ===== WHO WE SERVE - FIGMA FIX ===== */

.serve__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

.serve-card {
  background: #fff;
  border-radius: 22px;
  padding: 34px 22px 30px;
  min-height: 420px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: 0.35s ease;
}

.serve-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

/* Icon Circle */

.serve-card__icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%,
      #fff 0%,
      #fafafa 70%,
      #f2f2f2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Increase because your SVGs have transparent padding */

.serve-card__icon img {
  width: 84px;
  height: 84px;
  display: block;
  object-fit: contain;
}

/* Divider */

.serve-card h3::before {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: #e53935;
  margin: 0 auto 18px;
}

/* Heading */

.serve-card h3 {
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
  color: #163b85;
}

/* Description */

.serve-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #5b6473;
}

/* Responsive */

@media (max-width: 1200px) {
  .serve__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .serve__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Make the icon container a bit smaller */
.serve-card__icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  overflow: hidden;
  /* Makes everything inside circular */
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.serve-card__icon img {
  width: 58px;
  height: 58px;
  display: block;
  object-fit: contain;
  border-radius: 0;
}

/* Reduce card height */
.serve-card {
  padding: 36px 24px 30px;
  min-height: 380px;
}

/* Match the Figma typography */
.serve-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
}

.serve-card p {
  font-size: 15px;
  line-height: 1.7;
}

/* ==========================
   Hero Globe
========================== */

.hero__media {
  position: relative;
  width: 520px;
  height: 520px;
  margin-left: auto;
  overflow: visible;
}

/* White glow behind globe */

.hero__media::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.55) 45%,
      rgba(255, 255, 255, 0) 75%);
  z-index: -1;
}

/* Increase ONLY the globe */

.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1050px;
  /* Increase/decrease this value */
  max-width: none;
  height: auto;
  object-fit: contain;

  transform: translate(-50%, -50%);

  filter: drop-shadow(0 35px 45px rgba(0, 0, 0, 0.18));

  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
}

/* ==========================
   Bigger Header Logo
========================== */

.brand img {
  height: 30px !important;

  display: block;
}

.header__inner {
  min-height: 96px;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 9998;

  transition: 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  background-color: white;
}

.header__inner {
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  height: 45px;
  display: block;
}

/* ==========================================
   DESKTOP MENU
========================================== */

.main-nav {
  display: flex;
  align-items: center;
  gap: 35px;
}

.main-nav a {
  text-decoration: none;
  color: #222;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s;
}

.main-nav a:hover {
  color: #e53935;
}

/* ==========================================
   ACTIONS
========================================== */

.header__actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header__search {
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.btn--primary {
  border: none;
  padding: 12px 28px;
  background: #e53935;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

/* ==========================================
   HAMBURGER
========================================== */

.nav-toggle {
  display: none;
  width: 45px;
  height: 45px;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  z-index: 10002;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px auto;
  background: #111;
  transition: 0.35s;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================
   OVERLAY
========================================== */

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.35s;
  z-index: 9998;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 991px) {
  .header__inner {
    height: 75px;
  }

  .header__search,
  .btn--primary {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  /* IMPORTANT */
  .main-nav {
    position: fixed;
    top: 0;
    right: -320px;
    /* Hidden by default */
    width: 300px;
    height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 90px 30px;
    gap: 25px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
    z-index: 999;
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 17px;
  }
}

.image-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 650px;
  margin: auto;
  align-items: center;
}

.img-box {
  border: 2px solid #e60000;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}

.img-box:hover img {
  transform: scale(1.08);
}


/* Tall Cards */
.tall {
  height: 290px;
}

/* Small Cards */
.small {
  height: 190px;
}

/* Positioning */
.image-layout .small:nth-child(2) {
  margin-top: 40px;
}

.image-layout .small:nth-child(3) {
  margin-top: -60px;
}

.image-layout .tall:nth-child(4) {
  margin-top: -20px;
}

/* Mobile */
@media (max-width: 768px) {
  .image-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tall,
  .small {
    height: 250px;
    margin-top: 0 !important;
  }
}

.event-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/eventbg.png") center/cover no-repeat;
  background-size: cover;

  z-index: -2;
}

/* ============ Mesh Animations ============ */

/* The 3D motion (turntable rotation, orbit and expand/collapse) is rendered
   inside the SVG itself by mesh-animation.js, which switches these keyframes
   off and leaves only the resting transform below. They stay as the no-JS
   fallback, and are kept uniform-scale so the mesh nodes never distort. */
@keyframes meshDriftCenter {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }

  25% {
    transform: translate(-48.5%, -51%) scale(1.035) rotate(0.5deg);
  }

  50% {
    transform: translate(-50%, -49%) scale(0.975) rotate(0deg);
  }

  75% {
    transform: translate(-51.5%, -51%) scale(1.03) rotate(-0.5deg);
  }
}

@keyframes meshDriftBottom {

  0%,
  100% {
    transform: translateX(-50%) translateY(0) scale(1) rotate(0deg);
  }

  25% {
    transform: translateX(-48.5%) translateY(-1.5%) scale(1.04) rotate(0.6deg);
  }

  50% {
    transform: translateX(-50%) translateY(0) scale(0.97) rotate(0deg);
  }

  75% {
    transform: translateX(-51.5%) translateY(1.5%) scale(1.03) rotate(-0.6deg);
  }
}

@keyframes meshDriftBottomAlt {

  0%,
  100% {
    transform: translateX(-50%) translateY(0) scale(1) rotate(0deg);
  }

  25% {
    transform: translateX(-51.5%) translateY(1.5%) scale(0.97) rotate(-0.6deg);
  }

  50% {
    transform: translateX(-50%) translateY(0) scale(1.04) rotate(0deg);
  }

  75% {
    transform: translateX(-48.5%) translateY(-1.5%) scale(1.03) rotate(0.6deg);
  }
}

.mesh-animated {
  will-change: transform;
  pointer-events: none;
  overflow: visible;
}

@media (prefers-reduced-motion: reduce) {
  .mesh-animated {
    animation: none !important;
  }
}

.subscribe,
.events,
.impact,
.programs,
.about,
.serve {
  position: relative;
  overflow: visible;
}

.my-mesh2 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  max-width: 1900px;
  height: auto;
  opacity: 0.85;
  pointer-events: none;
  z-index: -1;
  transform: translate(-50%, -50%);
  animation: meshDriftCenter 18s ease-in-out infinite;
}

.my-mesh3 {
  position: absolute;
  left: 50%;
  bottom: -16%;
  width: 140%;
  max-width: 1900px;
  height: auto;
  z-index: -1;
  pointer-events: none;
  opacity: 0.85;
  transform: translateX(-50%);
  animation: meshDriftBottom 22s ease-in-out infinite;
}

.programs {
  position: relative;
  overflow: visible;
  z-index: 1;
}

.programs .container {
  position: relative;
  z-index: 2;
}

.my-mesh4 {
  position: absolute;
  left: 50%;
  bottom: -20%;
  width: 140%;
  max-width: 1900px;
  height: auto;
  z-index: -1;
  pointer-events: none;
  opacity: 0.85;
  transform: translateX(-50%);
  animation: meshDriftBottomAlt 20s ease-in-out infinite;
}

.my-mesh5 {
  position: absolute;
  top: 60%;
  left: 50%;
  width: 140%;
  max-width: 1900px;
  height: auto;
  opacity: 0.85;
  pointer-events: none;
  z-index: -1;
  transform: translate(-50%, -50%);
  animation: meshDriftCenter 16s ease-in-out infinite;
}

.my-mesh6 {
  position: absolute;
  left: 50%;
  top: -10%;
  width: 140%;
  max-width: 1900px;
  height: auto;
  z-index: -1;
  pointer-events: none;
  opacity: 0.85;
  transform: translateX(-50%);
  animation: meshDriftBottom 24s ease-in-out infinite;
}

@media(min-width:1600px) {
  .my-mesh7 {
    position: absolute;
    left: 50%;
    top: -20%;
    width: 140%;
    max-width: 1900px;
    height: auto;
    z-index: -1;
    pointer-events: none;
    transform: translateX(-50%);
    animation: meshDriftBottomAlt 21s ease-in-out infinite;
  }
}

@media(min-width:1300px) {
  .my-mesh7 {
    position: absolute;
    left: 50%;
    top: -15%;
    width: 140%;
    max-width: 1900px;
    height: auto;
    z-index: -1;
    pointer-events: none;
    transform: translateX(-50%);
    animation: meshDriftBottomAlt 21s ease-in-out infinite;
  }
}

.my-mesh7 {
  position: absolute;
  left: 50%;
  top: -10%;
  width: 140%;
  max-width: 1900px;
  height: auto;
  z-index: -1;
  pointer-events: none;
  opacity: 0.85;
  transform: translateX(-50%);
  animation: meshDriftBottomAlt 21s ease-in-out infinite;
}


.team-section {
  position: relative;
  overflow: visible;
  z-index: 1;
  padding-bottom: 40px;
}

.my-bg1 {
  position: absolute;
  left: 50%;
  top: 0%;
  transform: translateX(-50%);
  width: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: .3;
  /* Optional */
}

.my-bg2 {
  position: absolute;
  left: 50%;
  bottom: 0%;
  transform: translateX(-50%);
  width: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: .3;
  /* Optional */
}

.why-fintelekt {
  position: relative;
  overflow: visible;
  z-index: 1;
  padding-bottom: 50px;

}

.event-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.marquee-wrap {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

.marquee {
  display: inline-flex;
  align-items: center;
  animation: marquee 18s linear infinite;
}

.marquee p {
  margin: 0;
  padding-right: 50px;
  /* Space between repeated text */
  font-size: 16px;
  white-space: nowrap;
}

.marquee:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

/* Mobile */
@media (max-width: 768px) {
  .event-banner__inner {
    gap: 15px;
  }

  .marquee p {
    font-size: 14px;
    padding-right: 60px;
  }
}

.program-card {
  position: relative;
  z-index: 100;
  border: 1.5px solid #e60000;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.35s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.white-space {
  height: 80px !important;
  background-color: white;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.program-card-inner {
  padding: 15px;
  background: #f3f3f4;
}

.program-card h4 {
  position: relative;
  font-size: 15px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 500;
  color: #222;
  margin-bottom: 28px;
  /* Space for underline */
  display: inline-block;
}

.program-card h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 2px;
  background: #e54b4b;
  /* Match your border color */
  border-radius: 2px;
}


.link-arrow {

  text-decoration: none;
  color: lightblue;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
  text-align: justify;
}

.link-arrow:hover {
  color: #e53935;
}

.link-arrow span {
  margin-left: 4px;
}

.subscribe-box {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 30px 20px 20px 20px;
  isolation: isolate;
}

.subscribe-box::before {
  content: "";
  position: absolute;
  inset: 0;

  /* Gradient */
  background: linear-gradient(90deg,
      rgba(255, 73, 59, 0.98) 0%,
      rgba(244, 88, 146, 0.92) 35%,
      rgba(138, 103, 222, 0.88) 68%,
      rgba(26, 156, 255, 0.88) 100%);

  z-index: -1;
}

.subscribe-box2 {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 30px 20px 20px 20px;
  isolation: isolate;
}

.subscribe-box2::before {
  content: "";
  position: absolute;
  inset: 0;

  /* Gradient */
  background: linear-gradient(90deg,
      #1b98ef 0%,
      #6f87e8 25%,
      #d96bb2 50%,
      #ff5a63 75%,
      #ff4a38 100%);

  z-index: -1;
}


.text-blue {
  color: #1a4a8a !important;
  font-weight: 600;
}

.footer {
  background: #8a8d95;
  padding: 80px 0 30px;
  font-family: "Poppins", sans-serif;
  position: relative;
  z-index: 1;
}

.footer-logo {
  width: 180px;
}

.footer-tagline {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-bottom: 28px;
}

.footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 18px;

  font-size: 15px;
  line-height: 1.7;
}

.footer-contact i {
  color: #111;
  width: 18px;
  margin-top: 4px;
}

.footer-contact a {
  color: #111;
  text-decoration: none;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid #d8d8d8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  transition: 0.3s;
  text-decoration: none;
}

.footer-social a:hover {
  background: #ff4b2b;
  color: #fff;
  border-color: #ff4b2b;
}

.footer-links li {
  margin-bottom: 18px;
  color: #111;
}

.footer-links a {
  display: flex;
  justify-content: space-between;
  text-decoration: none;

  transition: 0.3s;
}

.footer-links a:hover {
  color: #ff4b2b;
}

.footer-divider {
  margin: 55px 0 25px;
  border-color: #ddd;
}

.copyright {
  color: #777;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
}

.footer-policy {
  text-decoration: none;
  font-size: 14px;
}

.footer-policy:hover {
  color: #ff4b2b;
}

.inner-banner {
  position: relative;
  background: url("/assets/about/hero.jpg") center center/cover no-repeat;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.inner-banner,
.inner-banner2,
.inner-banner3,
.inner-banner4,
.inner-banner5,
.inner-banner6 {
  position: relative;
  overflow: hidden;
}

.inner-banner-mesh {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 90%;
  max-width: 1200px;
  height: auto;
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
  transform: translateX(-50%);
  animation: meshDriftBottom 22s ease-in-out infinite;
}



.inner-banner2 {
  background:
    linear-gradient(to right,
      rgba(243, 243, 244, 1) 0%,
      rgba(243, 243, 244, .95) 25%,
      rgba(243, 243, 244, .55) 45%,
      rgba(243, 243, 244, .15) 60%,
      rgba(243, 243, 244, 0) 75%),
    linear-gradient(to bottom,
      rgba(243, 243, 244, 0) 65%,
      rgba(243, 243, 244, .95) 100%),
    url("/assets/myimages/fiu/bg.jpg");

  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}





.inner-banner3 {
  background:
    linear-gradient(to left,
      rgba(243, 243, 244, 1) 0%,
      rgba(243, 243, 244, .95) 10%,
      rgba(243, 243, 244, .15) 25%,
      rgba(243, 243, 244, .15) 50%,
      rgba(243, 243, 244, 0) 75%),
    linear-gradient(to bottom,
      rgba(243, 243, 244, 0) 65%,
      rgba(243, 243, 244, .95) 100%),
    linear-gradient(to right,
      rgba(243, 243, 244, 1) 0%,
      rgba(243, 243, 244, .95) 0%,
      rgba(243, 243, 244, .55) 5%,
      rgba(243, 243, 244, .15) 5%,
      rgba(243, 243, 244, 0) 0%),
    url("/assets/myimages/technology-providers/bg.png");

  background-repeat: no-repeat;
  background-size: 65%;

  /* Move image towards left */
  background-position: left center;
}


@media(max-width:767px) {
  .inner-banner3 {
    background:
      linear-gradient(to left,
        rgba(243, 243, 244, 1) 0%,
        rgba(243, 243, 244, .95) 10%,
        rgba(243, 243, 244, .55) 25%,
        rgba(243, 243, 244, .15) 30%,
        rgba(243, 243, 244, 0) 75%),
      linear-gradient(to bottom,
        rgba(243, 243, 244, 0) 65%,
        rgba(243, 243, 244, .95) 100%),
      linear-gradient(to right,
        rgba(243, 243, 244, 1) 0%,
        rgba(243, 243, 244, .95) 0%,
        rgba(243, 243, 244, .55) 5%,
        rgba(243, 243, 244, .15) 5%,
        rgba(243, 243, 244, 0) 0%),
      url("/assets/myimages/technology-providers/bg.png");

    background-repeat: no-repeat;
    background-size: cover;

    /* Move image towards left */
    background-position: 20px center;
  }
}


.inner-banner4 {
  background:
    linear-gradient(to right,
      rgba(243, 243, 244, 1) 0%,
      rgba(243, 243, 244, .35) 5%,
      rgba(243, 243, 244, .15) 45%,
      rgba(243, 243, 244, .05) 60%,
      rgba(243, 243, 244, 0) 75%),
    linear-gradient(to bottom,
      rgba(243, 243, 244, 0) 65%,
      rgba(243, 243, 244, .95) 100%),
    url("/assets/myimages/civil-society/bg.jpg");

  background-repeat: no-repeat;
  background-position: right -260px top;
  background-size: cover;
}

@media(max-width:768px) {
  .inner-banner4 {
    background:
      linear-gradient(to right,
        rgba(243, 243, 244, 1) 0%,
        rgba(243, 243, 244, .35) 5%,
        rgba(243, 243, 244, .15) 45%,
        rgba(243, 243, 244, .05) 60%,
        rgba(243, 243, 244, 0) 75%),
      linear-gradient(to bottom,
        rgba(243, 243, 244, 0) 65%,
        rgba(243, 243, 244, .95) 100%),
      url("/assets/myimages/civil-society/bg.jpg");

    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
  }
}


.inner-banner5 {
  background:
    linear-gradient(to left,
      rgba(243, 243, 244, 1) 0%,
      rgba(243, 243, 244, .95) 10%,
      rgba(243, 243, 244, .15) 25%,
      rgba(243, 243, 244, .15) 50%,
      rgba(243, 243, 244, 0) 75%),
    linear-gradient(to bottom,
      rgba(243, 243, 244, 0) 65%,
      rgba(243, 243, 244, .95) 100%),
    linear-gradient(to right,
      rgba(243, 243, 244, 1) 0%,
      rgba(243, 243, 244, .55) 10%,
      rgba(243, 243, 244, .1) 25%,
      rgba(243, 243, 244, .1) 100%,
      rgba(243, 243, 244, 0) 50%),
    url("/assets/myimages/associations/bg.jpg");

  background-repeat: no-repeat;
  background-size: 65%;

  /* Move image towards left */
  background-position: left center;
}

@media(max-width:767px) {
  .inner-banner5 {
    background:
      linear-gradient(to left,
        rgba(243, 243, 244, 1) 0%,
        rgba(243, 243, 244, .95) 10%,
        rgba(243, 243, 244, .55) 50%,
        rgba(243, 243, 244, .15) 50%,
        rgba(243, 243, 244, 0) 75%),
      linear-gradient(to bottom,
        rgba(243, 243, 244, 0) 65%,
        rgba(243, 243, 244, .95) 100%),
      linear-gradient(to right,
        rgba(243, 243, 244, 1) 0%,
        rgba(243, 243, 244, .55) 50%,
        rgba(243, 243, 244, .75) 50%,
        rgba(243, 243, 244, .15) 50%,
        rgba(243, 243, 244, 0) 0%),
      url("/assets/myimages/associations/bg.jpg");

    background-repeat: no-repeat;
    background-size: cover;

    /* Move image towards left */
    background-position: 20px center;
  }
}

.inner-banner6 {
  background:
    linear-gradient(to right,
      rgba(243, 243, 244, 1) 0%,
      rgba(243, 243, 244, .15) 25%,
      rgba(243, 243, 244, .15) 45%,
      rgba(243, 243, 244, .005) 60%,
      rgba(243, 243, 244, 0) 75%),
    linear-gradient(to bottom,
      rgba(243, 243, 244, 0) 65%,
      rgba(243, 243, 244, .95) 100%),
    url("/assets/myimages/regulated-entities/bg.jpg");

  background-repeat: no-repeat;
  background-position: right center;
  background-size: 70%;
}

@media(max-width:767px) {


  .inner-banner6 {
    background:
      linear-gradient(to right,
        rgba(243, 243, 244, 1) 0%,
        rgba(243, 243, 244, .75) 25%,
        rgba(243, 243, 244, .75) 45%,
        rgba(243, 243, 244, .75) 60%,
        rgba(243, 243, 244, 0) 75%),
      linear-gradient(to bottom,
        rgba(243, 243, 244, 0) 65%,
        rgba(243, 243, 244, .95) 100%),
      url("/assets/myimages/regulated-entities/bg.jpg");

    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }

}

.inner-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.88) 22%,
      rgba(255, 255, 255, 0.55) 48%,
      rgba(255, 255, 255, 0.15) 100%);
}

.inner-banner .container {
  position: relative;
  z-index: 2;
}

.min-vh-50 {
  min-height: 520px;
}

.inner-banner__content {
  max-width: 470px;
}

.inner-banner__eyebrow {
  display: inline-block;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #666;
  font-size: 13px;
  margin-bottom: 18px;
}

.inner-banner__content p {
  color: #444;
  max-width: 420px;
  margin: 0;
  margin-top: -20px;
}

.event-bannerbg {
  background:
    linear-gradient(90deg,
      #0057B8 0%,
      rgba(0, 87, 184, .78) 18%,
      rgba(0, 87, 184, .72) 25%,
      rgba(0, 87, 184, .75) 40%,
      rgba(0, 87, 184, .75) 23%,
      rgba(0, 87, 184, .15) 46%,
      transparent 58%),
    url("/assets/myimages/events/bg.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.font-600 {
  font-weight: bold;
}

.brand-story-section {
  position: relative;
  padding: 50px 0;

  overflow: hidden;
}

.brand-network-left,
.brand-network-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  opacity: 0.85;
  pointer-events: none;
}

.brand-story-section .row {
  align-items: stretch;
}

.brand-story-section .col-lg-6 {
  display: flex;
}

.brand-story-section .col-lg-6 .brand-card {
  width: 100%;
}

.brand-network-left {
  left: 0;
}

.brand-network-right {
  right: 0;
}

.brand-network-left img,
.brand-network-right img {
  width: 100%;
}

.brand-heading {
  width: 100%;
  max-width: 1110px;
  margin: 0 auto 20px;
}

.brand-heading span {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #222;
  display: inline-block;
}

.brand-heading span::after {
  content: "";
  width: 38px;
  height: 2px;
  background: #e60000;
  display: block;
  margin-top: 8px;
}

.brand-heading-center span {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #222;
  display: inline-block;
}

.brand-heading-center span::after {
  content: "";
  width: 38px;
  height: 2px;
  background: #e60000;
  display: block;
  margin: 8px auto 0;
}

.brand-heading2 span {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #e60000;
  display: inline-block;
}

.brand-heading2 span::after {
  content: "";
  width: 38px;
  height: 2px;
  background: #222;
  display: block;
  margin-top: 8px;
}

.brand-heading3 span {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #e60000;
  display: inline-block;
}

.brand-heading3 span::after {
  content: "";
  width: 38px;
  height: 2px;
  background: #fff;
  display: block;
  margin-top: 8px;
}

.brand-card {
  position: relative;
  display: flex;

  gap: 35px;
  padding: 20px;
  height: 100%;
  border-radius: 30px;
  margin-bottom: 20px;

  background-image: url("/assets/about/bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: solid 2px #e60000;
  overflow: hidden;
}

.brand-card-inner {
  padding: 20px;
  display: flex;
}

.brand-card>* {
  position: relative;
  z-index: 2;
}

.brand-icon {
  width: 72px;
  min-width: 72px;
}

.brand-icon img {
  width: 100%;
}

.brand-content h3 {
  display: flex;

  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.brand-content h3::after {
  content: "";
  position: absolute;
  left: 0;
  top: 25px;
  width: 50px;
  /* Adjust width */
  height: 1px;
  background: rgba(255, 255, 255, 0.8);
  /* or #111 */
}

.brand-content p {
  margin: 0;
  color: #222;
}

@media (max-width: 991px) {
  .brand-story-section {
    padding: 70px 0;
  }

  .brand-network-left,
  .brand-network-right {
    display: none;
  }

  .brand-card {
    margin-bottom: 30px;
    flex-direction: column;
  }

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

.section-label {
  display: inline-block;
  position: relative;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #222;
}

.section-label::after {
  content: "";
  display: block;
  width: 38px;
  height: 2px;
  background: #d61d1d;
  margin-top: 8px;
}

.global-text {
  max-width: 470px;
}

.global-text p {
  margin: 0;

  color: #555;
}

.global-logo-area {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  gap: 35px;
}

.global-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.global-logo img {
  max-width: 150px;
  max-height: 80px;
  width: auto;
  height: auto;
  transition: 0.3s ease;
}

.global-logo img:hover {
  transform: scale(1.05);
}

@media (min-width: 992px) and(max-width:1150px) {
  .global-logo img {
    max-width: 100px;
    max-height: 80px;
    width: auto;
    height: auto;
    transition: 0.3s ease;
  }
}

@media (max-width: 991px) {
  .global-text {
    max-width: 100%;
  }

  .global-logo-area {
    margin-top: 20px;
    gap: 35px;
    justify-content: center;
  }

  .global-logo {
    flex: 0 0 calc(33.333% - 30px);
  }
}

@media (max-width: 576px) {
  .global-logo {
    flex: 0 0 calc(50% - 20px);
  }

  .global-logo img {
    max-height: 70px;
  }
}

@media (max-width: 991px) {
  .global-logo-area {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .global-logo-area {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .global-logo img {
    max-width: 120px;
  }
}

.leader-card {
  text-align: center;
}

.leader-img {
  border: 2px solid #d12626;
  border-radius: 22px;
  overflow: hidden;

  display: flex;
  justify-content: center;
  align-items: flex-end;

  transition: 0.35s;
}

.leader-card:hover .leader-img {
  transform: translateY(-8px);
}

.leader-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.leader-info {
  margin-top: 18px;
}

.leader-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.leader-info span {
  color: #d12626;
  font-size: 15px;
  font-weight: 500;
}

.section-title span {
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  margin-bottom: 20px;
}

.section-title span::after {
  content: "";
  width: 35px;
  height: 2px;
  background: #d71920;
  display: block;
  margin-top: 8px;
}

.section-title h2 {
  font-size: 58px;
  line-height: 1.08;
  font-weight: 700;
  margin-bottom: 28px;
}

.section-title h2 .red {
  color: #d71920;
}

.section-title p {
  color: #555;
  line-height: 1.8;
  max-width: 470px;
}

.why-highlight {
  margin-top: 45px;
  padding: 35px;
  border-radius: 30px;
  background: url("/assets/about/bg2.png") center/cover;
  border: 2px solid #d71920;
}

.highlight-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.highlight-item+.highlight-item {
  margin-top: 30px;
}

.highlight-item img {
  width: 58px;
}

.highlight-item p {
  color: #000;
  margin: 0;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-box {
  background: #fff;
  border-radius: 12px;
  padding: 16px 22px;

  display: flex;
  align-items: center;
  gap: 18px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.why-box img {
  width: 42px;
}

.why-box span {
  font-size: 17px;
  font-weight: 600;
}

@media (max-width: 991px) {
  .why-fintelekt {
    padding: 70px 0;
  }

  .section-title h2 {
    font-size: 40px;
  }

  .why-box {
    margin-left: 0 !important;
  }
}

.about {
  position: relative;
  overflow: visible;
  z-index: 1;
}


/* ==========================
   DROPDOWN
========================== */

.dropdown {
  position: relative;
}

.dropbtn {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.arrow {
  font-size: 15px;
  transition: .3s;
}

.dropdown-content {
  position: absolute;
  top: 18px;
  left: 0;
  min-width: 220px;
  background: #fff;

  box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
  display: none;
  z-index: 9999;
  overflow: hidden;
}

.dropdown-content a {
  display: block;
  font-size: 13px;
  padding: 14px 12px;
  color: #222;
  text-decoration: none;
  transition: .3s;
  border-bottom: solid 1px rgba(0, 0, 0, 0.02);
}

.dropdown-content a:hover {
  background: #f5f5f5;
  color: #e60000;
}

/* Desktop */

@media(min-width:992px) {

  .dropdown:hover .dropdown-content {
    display: block;
  }

  .dropdown:hover .arrow {
    transform: rotate(180deg);
  }

}


/* Mobile */

@media(max-width:991px) {

  .dropdown {
    width: 100%;
  }

  .dropbtn {
    width: 100%;
    justify-content: space-between;
    padding: 12px 0;
  }

  .dropdown-content {
    position: static;
    display: none;
    width: 100%;
    min-width: 100%;
    box-shadow: none;
    background: #f7f7f7;
    border-radius: 0;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }

  .dropdown.active .arrow {
    transform: rotate(180deg);
  }

  .dropdown-content a {
    padding: 12px 20px;
  }

}