* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;  
}

@font-face {
  font-family: 'CabinetGrotesk';
  src: url('../webfonts/cabinet-grotesk/CabinetGrotesk-Bold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'CabinetGrotesk';
  src: url('../webfonts/cabinet-grotesk/CabinetGrotesk-Extrabold.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

.extrabold {
  font-family: 'CabinetGrotesk', sans-serif !important;
  font-weight: 900 !important;
}

.font-only{
 font-family: 'CabinetGrotesk', sans-serif !important;
}


body {
  font-family: "Instrument Sans", sans-serif;
  background: linear-gradient(90deg, #CDDAFD 0%, #EFE1FE 100%);
  color: #111;
}

/* BUTTONS */
.primary-btn,
.secondary-btn {
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: 'CabinetGrotesk', sans-serif !important;
}

.primary-btn {
  background: #003399;
  color: #fff;
  border-radius: 999px;
}

.secondary-btn {
  border: 1px solid #FFBC42 !important;
  color: #FFBC42 !important;
  border-radius: 999px;
}

.secondary-btn-fill{
  background: #FFBC42 !important;
  color: #111 !important;
}


.menu-wrapper.sticky .menu {
  border-top: 0;
  border-left: 0;
  border-right: 0;
}

/* LOGO */
.logo .logo-img {
  width: 120px;  
}

/* NAV */
.nav {
  display: flex;
  gap: 30px;  
}

.nav a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}


.nav-link {
  display: flex;
  align-items: center;
  gap: 0px;
  position: relative;
  font-weight: 500;
  color: #111;
  transition: color 0.25s ease;
}

/* ACTIVE MENU */
/* Desktop */
.nav a.active {
  color: #003399;
  font-weight: 600;
}

/* Mobile */
.mobile-nav-link.active,
.mobile-submenu-item.active {
  color: #003399;
  font-weight: 600;
}

/* Optional underline */
/* .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #1d4ed8;
  border-radius: 2px;
} */


/* Arrow icon */
.dropdown-icon {
  display: inline-flex;
  transition: transform 0.25s ease;
}

/* HAMBURGER */
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
  display: none;
}

/* NAV ITEM */
.has-dropdown {
  position: relative;
}

/* DROPDOWN CARD */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  text-align: left;
  background: #ffffff;
  border-radius: 12px;
  padding: 10px;
  min-width: 180px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease,
              transform 0.25s ease,
              visibility 0.25s ease;
  z-index: 1000;
}

.dropdown-icon {
  display: inline-flex;
  margin-left: 8px;
  transition: transform 0.25s ease;
}

.has-dropdown:hover .dropdown-icon,
.has-dropdown.open .dropdown-icon {
  transform: rotate(180deg);
}

.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 6px 14px;
  border-radius: 8px;
  color: #111;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 12px;
}

.post-entry h3{
  color: #fff;
}

.dropdown-item:hover {
  background: #AEC5EB;
   color: #0038a8;
}
.show-mobile{
    display: none;
}
.show--mobile{
  display: none;
}


/* 📱 MOBILE */
@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #eef0ff;
    flex-direction: column;
    align-items: self-start;
    gap: 18px;
    padding: 30px 0;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s ease;
  }
  .logo-image{
    width: 6rem !important;
  }
  .learn{
    padding: 12px 10px !important;
  }
  .logo-image .w-5{
    width: 1rem;
  }
  .logo-image .h-5{
    height: 1rem;
  }
  .arrow{
    width: 3px;
    height: 3px;
  }
  .hero-eyebrow{
    font-size: 12px;
    margin-bottom: 12px;
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .cta-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
    background: #003399;
    border: none;
    padding: 5px;
    border-radius: 6px;
  }
  .menu-toggle svg{
    padding: 6px;
    border-radius: 8px;
  }
  .menu-toggle .close{
   background: #FFBC42;
  }
  .menu-toggle .hamburger{
    background: #003399;
    
  }    

  .tab-view-aligned{
    display: block !important;
  }
  .left-card{
    width: 100% !important;
  }
  .right-card{
    width: 100% !important;
    padding: 30px !important;
    justify-content: flex-start !important;
    align-items: flex-start;
  }
  .right-card h2{
    margin: 0 !important;
  }

  .has-dropdown.open .dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: static;
    box-shadow: none;
    margin-top: 10px;
  }
  .show-desk{
    display: none;
}

/* LEFT SMOKE */
.gallery-wrapper::before {
  width: 120px !important;
  background: linear-gradient(
    to right,
    #003399 0%,
    rgba(0, 51, 153, 0.4) 40%,
    rgba(0, 51, 153, 0.4) 70%,
    transparent 100%
  ) !important;
}

/* RIGHT SMOKE */
.gallery-wrapper::after {
  width: 120px !important;
  background: linear-gradient(
    to left,
    #003399 0%,
    rgba(0, 51, 153, 0.4) 40%,
    rgba(0, 51, 153, 0.4) 70%,
    transparent 100%
  ) !important;
}

.show-mobile{
    display: block;
}


}

@media (max-width: 767px) {
.copy-rights{
text-align: center;
font-size: 14px;
}
.mobile-view-icon{
  padding: 8px;
}
.brands-header .mb--2{
  margin-bottom: 12px !important;
}
.card-header .card--logo{
  max-width: 180px !important;
}
.element-div .img{
  opacity: .5;
}
.pro-btn{
  font-size: 1rem !important;
}
.custom-element{
  top:83px;
}
.hex-bg{
  width: 110px !important;
}
.show--mobile{
  display: block;
}
.animate-marquee .marquu-text{
  font-size: 50px !important;
}

.slider-- img{
  width: 80% !important;
}

.process-section .w-40{
  width: 8rem !important;
}
.gift{
  width: 3rem !important;
}

.prime-radius{
  border-radius: 50px 50px 50px 0px !important;
}
.prim-arrow{
  right: auto !important;
    left: -15px !important;
    transform: rotate(75deg) !important;
    bottom: -20px !important;
}
.admir-radius{
  border-radius: 50px 50px 0px 50px !important;
}
.admir-arrow{
transform: rotate(80deg) !important;
top: 43px !important;
}

.learn-radius{
  border-radius: 50px 50px 50px 0px !important;
}
.learn-arrow{
  right: auto !important;
    left: -14px !important;
    transform: rotate(160deg) !important;
    top: 41px !important;
}
.med-radius{
  border-radius: 0px 50 50px 50px;
}

.vidcto-radius{
  border-radius: 50px 0px 50px 50px !important;
}
.vidcto-arrow{
  left: auto !important;
    right: -16px !important;
    transform: rotate(180deg) !important;
    bottom: 38px !important;
}
.gift-radius{
  border-radius: 50px 0px 50px 50px !important;
}
.gift-arrow{
  left: auto !important;
  right: -16px !important;
  transform: rotate(180deg) !important;
  bottom: 43px !important;
}
.swiper-button-next,
.swiper-button-prev {
           display: none;
        }

}
.slide-item.border-1{
  border: 1px solid #003399;
}


/* HERO VIDEO */
.hero-video {
  position: relative;
  height: 110vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-radius: 0 0 3.75rem 3.75rem;
  justify-content: center;
  background: transparent;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  border-radius: 0 0 3.75rem 3.75rem;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Dark overlay for readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  border-radius: 0 0 3.75rem 3.75rem;
  background: rgba(0, 2, 15, 0.65);
  z-index: 2;
}

/* BANNER CONTENT */
.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  margin: 0 auto;
  color: #ffffff;
  z-index: 3;
}

/* Top small text */
.hero-eyebrow {
  display: block;
  font-size: 16px;
  letter-spacing: 0.8px;
  font-weight: 500;
  margin-bottom: 20px;
}

/* Main heading */
.hero-title {
  font-family: 'CabinetGrotesk', sans-serif !important;
  font-size: 72px;
  line-height: 1.2;
  margin-bottom: 36px;
}

/* Highlighted word */
.hero-highlight {
  color: #FFBC42; /* yellow */
  font-family: 'CabinetGrotesk', sans-serif !important;
}

/* CTA buttons wrapper */
.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* BUTTON BASE */
.btn {
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 16px;
  font-family: 'CabinetGrotesk', sans-serif !important;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}
.marquu-text{
  font-family: 'CabinetGrotesk', sans-serif !important;
}

/* Primary button */
.btn-primary {
  background: #003399;
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
}

/* Outline button */
.btn-outline {
  border: 1.5px solid #FFBC42;
  color: #FFBC42;
  background: transparent;
}

.btn-outline:hover {
  background: #FFBC42;
  color: #000;
}

/* STATS */
.impact-section {
  text-align: center;
}


.section-badge {
display: inline-flex;
gap: 8px;
padding: 10px 20px;
border-radius: 999px;
border: #003399 1.5px solid;
color: #003399;
font-size: 16px;
line-height: normal;
justify-content: center;
align-items: center;
font-weight: 600;
margin-bottom: 20px;
}
.section-badge img{
    width: 18px;
    height: 18px;
}

.custom-font{
  font-family: 'CabinetGrotesk', sans-serif !important;
}

.impact-title {
    max-width: 1100px;
    font-family: 'CabinetGrotesk', sans-serif !important;
    margin: 0 auto 40px;
    font-size: 48px;
    line-height: 1.2;
    color: #003399;
    font-weight: 200 !important;
}

.impact-title span{
    font-weight: 800;
}
/* Cards layout */
.impact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card base */
.impact-card {
  position: relative;
    border-radius: 22px;
    padding: 30px;
    color: #fff;
    text-align: left;
    overflow: hidden;
    background-image: url(../images/elements/Dot-Line.svg) !important;
    /* min-height: 280px; */
    background-repeat: no-repeat !important;
    background-position: top !important;
    background-size: cover !important;
    transition: all 0.5s ease-in-out;
}

.impact-card:hover {
  transform: scale(1.03) !important;
}

.svg-icon{
  transition: all 0.5s ease-in-out;
}

.svg-icon:hover {
  transform: scale(1.03) !important;
}

.impact-card h4 {
  font-family: 'CabinetGrotesk', sans-serif !important;
  font-size: 18px;
  opacity: 0.9;
}

.impact-card h3 {
    font-family: 'CabinetGrotesk', sans-serif !important;
  font-size: 65px;
  margin: 10px 0;
}

.impact-card p {
  font-size: 16px;
  line-height: 1.5;
  max-width: 90%;
}

/* Card colors */
.card-blue {
  background: #003399;
}

.card-yellow {
  background-image: url(../images/elements/Dot-Element-Black.svg) !important;
  background: #FFBC42;
  color: #111;
}

.card-sky {
  background: #60a5fa;
}

/* Background elements */
.bg-bars,
.bg-network,
.bg-graph {
  margin-top: 35px; 
}
.bg-network{
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mobile responsive */
@media (max-width: 900px) {
  .impact-cards {
    grid-template-columns: 1fr;
  }
  .blue--card-wrapper{
grid-template-columns: 1fr !important;
  }
  .academics{
    width: 350px !important;
  }
  .section-badge{
    font-size: 14px;
    padding: 8px 16px;
  }
}


/* FEATURES */
.features-section h3 {
  font-family: 'CabinetGrotesk', sans-serif !important;
}

/* PROCESS */
.process {
  background: #eaf2ff;
  padding: 60px 20px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.step {
  background: white;
  padding: 15px 25px;
  border-radius: 25px;
}

/* EXPERT */
.testimonial-wrapper { 
  padding-top: 80px;
  text-align: center;
}

.card-stack {
  position: relative;
  width: 900px;
  max-width: 100%;
  height: 380px;
  margin: 0 auto;
}

/* Base card */
.testimonial-card {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: transparent; /* 🔥 RESET */
  transition: transform 0.7s ease, opacity 0.7s ease, background 0.4s ease;
}
.yellow{
background: #FFBC42; /* Yellow */
}

.card--first {
  transform: translateY(0) scale(1);
  z-index: 3;
  
}

.blue{
background: #3A95FF; /* Blue */
}

.card--second {
  transform: translateY(-38px) scale(0.96);
  z-index: 2;
  
}
.red{
background: #E63462; /* Red */
}
.card--third {
  transform: translateY(-66px) scale(0.92);
  z-index: 1;
  
}

/* Content */
.card-content {
  max-width: 60%;
  text-align: left;
}

.card-content h3 {
 margin: 0 0 8px;
  color: #111;
  font-size: 30px;
  font-family: 'CabinetGrotesk', sans-serif !important;
  font-weight: 600;
}

.card-content span {
  font-size: 16px;
  font-weight: 500;
}

.card-content p {
  margin-top: 70px;
  font-weight: 500;
  line-height: 1.6;
}

/* Image */
.testimonial-card img {
  /* width: 140px; */
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
  background: white;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 35px;
  z-index: 999;
  position: relative;
}

.testimonial-nav button {
  width: 44px;
  height: 44px;
  border-radius: 12px; /* not circle */
  border: 1px solid rgba(255,255,255,0.4);
  background: transparent;
  color: white;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-nav button:hover {
  background: #fff;
}

.testimonial-nav button:hover svg {
  filter: invert(1);
}

#next1 {
  background: white;
  color: #f4a500;
  border: none;
}

.dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Default dot */
.dot {
  width: 8px;
  height: 8px;
  background: white;
  opacity: 0.6;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Active = yellow long bar */
.dot.active {
  width: 28px;
  height: 8px;
  border-radius: 6px;
  background: #FFBC42;
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    text-align: center;
  }

  .card-content {
    max-width: 100%;
  }
  .impact-title{
    font-size: 24px;
    margin-bottom: 20px !important;
  }
  .bg-bars img{
    width: 350px;
  }
  .impact-card h3{
    font-size: 60px;
    margin: 0;
  }
  .section-title p{
    font-size: 16px;
  }
}

/* TECHNOLOGY */
.tab-btn {
  padding: 30px 65px;          /* px-6 py-3 */
  border-radius: 30px 30px 0 0;           /* rounded-xl */
  font-weight: 500;                 /* font-medium */
  background-color: #003399;        /* bg-blue-900 */
  color: #ffffff;                   /* text-white */
  transition: all 0.3s ease; /* transition */
  cursor: pointer;
  font-size: 24px;
}

.common-card{
  border-radius: 0 0 30px 30px;
}

.tab-btn span {
  display: inline-block;
  transition: transform 0.3s ease;
}


.active-tab {
  background-color: #ffffff;        /* bg-white */
  color: #003399;            /* text-blue-900 */
}

.active-tab span {
  transform: scale(1.08);
}

.active .tab-icon-2{
  filter: invert(1);
}

.gallery-tab-btn .tab-icon-1{
  filter: invert(1);
}
.gallery-tab-btn.active .tab-icon-1{
  filter: invert(0);
}

.logo-card {
  min-width: 200px;                 /* min-w-[200px] */
  height: 120px;                    /* h-[120px] */
  border: 1px solid #e5e7eb;        /* border */
  border-radius: 1rem;              /* rounded-2xl */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;                  /* p-6 */
  background-color: #ffffff;
}

.logo-card img {
  max-height: 60px;                 /* max-h-[60px] */
  object-fit: contain;
}

.nav-btn {
  width: 40px;                      /* w-10 */
  height: 40px;                     /* h-10 */
  border-radius: 9999px;            /* rounded-full */
  border: 1px solid #e5e7eb;        /* border */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;               /* text-xl */
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.nav-btn:hover {
  background-color: #f3f4f6;        /* hover:bg-gray-100 */
}

/* Hide scrollbar */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Marquee base */
.marquee {
  display: flex;
  width: max-content;
  min-width: 200%;
  animation: marquee-left 25s linear infinite;
}

.marquee.reverse {
  animation: marquee-right 25s linear infinite;
}

/* Pause animation when hidden */
.tab-content {
  display: none;
}
.tab-content.active-content {
  display: block;
}

/* Animations */
@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
/* GALLERY */
/* Tabs */
.gallery-tabs {
  display: flex;
  justify-content: center;
  background: #d9d6e6;
  padding: 6px;
  border-radius: 14px;
  width: fit-content;
  margin: 0 auto 30px;
  gap: 6px;
  position: relative;
  z-index: 999;
}

.gallery-tab-btn {
  padding: 10px 28px;
  border-radius: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
  color: #333;
  transition: 0.3s ease;
}

.gallery-tab-btn.active {
  background: #1e40af;
  color: #fff;
}

.tab-content2 {
  display: none;
}

.tab-content2.active {
  display: block;
}


.video-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 100px 0;
}

.video-track {
  display: flex;
  gap: 40px;
  align-items: center;
}

.video-item {
  width: 320px;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.5s ease;
}

.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* center highlight */
.video-item.active {
  transform: scale(1.2);
}



.video-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.video-lightbox video {
  max-width: 80%;
  max-height: 80%;
  border-radius: 16px;
}

.lb-close {
  position: absolute;
  top: 30px;
  right: 40px;
  background: white;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 50%;
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  padding: 15px;
  font-size: 30px;
  cursor: pointer;
  color: white;
  border-radius: 50%;
}

.lb-prev { left: 40px; }
.lb-next { right: 40px; }



.gallery-wrapper {
  position: relative;
  overflow: hidden;
}

/* LEFT SMOKE */
.gallery-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 180px; /* adjust strength */
  height: 100%;
  z-index: 10;
  pointer-events: none;
  background: linear-gradient(
    to right,
    #003399 0%,
    rgba(0, 51, 153, 0.8) 40%,
    rgba(0, 51, 153, 0.4) 70%,
    transparent 100%
  );
}

/* RIGHT SMOKE */
.gallery-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
  background: linear-gradient(
    to left,
    #003399 0%,
    rgba(0, 51, 153, 0.8) 40%,
    rgba(0, 51, 153, 0.4) 70%,
    transparent 100%
  );
}


.slider-- {
  overflow: hidden;
  width: 100%;
  margin-bottom: 20px;
}

.track {
  display: flex;
  gap: 20px;
  animation: scrollLeft 20s linear infinite;
}

.reverse .track {
  animation: scrollRight 20s linear infinite;
}

.slider-- img {
  width: 25%;
  flex-shrink: 0;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s;
}

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

/* Duplicate animation */
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scrollRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* LIGHTBOX */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.99);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
}

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  width: 800px;
  border-radius: 12px;
}

.close-btn {
  position: absolute;
    top: 20px;
    right: 30px;
    background: white;
    border: none;
    padding: 8px 12px;
    line-height: normal;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    justify-content: center;
    border-radius: 50%;
}

.count {
  color: white;
  margin-bottom: 15px;
  font-size: 18px;
}

.nav-- {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s;
}

.nav--:hover {
  background: rgba(255,255,255,0.3);
}

.--prev {
  left: 40px;
}

.--next {
  right: 40px;
}



/* GLOBAL */
.global {
  padding: 60px 20px;
  text-align: center;
}

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

.global-map img{
  height: 500px;
}

.map-placeholder {
  height: 240px;
  background: #dbe7ff;
  border-radius: 20px;
  margin-top: 20px;
}

/* FOOTER */
footer {
      background: linear-gradient(180deg, var(--bg-surface), var(--bg-main));
      color: var(--text-muted);
    }

    .footer-top {
      padding: 5rem 1rem 3rem;
    }

    .footer-title {
      color: var(--text-primary);
      font-size: .8rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-bottom: 1.25rem;
    }

    footer ul li {
      margin-bottom: .6rem;
    }

    footer a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: .95rem;
    }

    footer a:hover {
      color: var(--text-secondary);
    }

    .footer-brand {
      font-weight: 600;
      color: var(--text-primary);
      font-size: 1.1rem;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 1.5rem 1rem;
      font-size: .85rem;
    }

    .social a {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.04);
      margin-left: .5rem;
      transition: background .25s ease, transform .25s ease;
    }

    .social a:hover {
      background: var(--brand);
      transform: translateY(-3px);
      color: #fff;
    }
    .tab-content2 .button-01-arrow{
      filter: invert(0) !important;
    }
    .highlights .button-01-arrow{
      filter: invert(0) !important;
    }
    @media (max-width: 768px) {

.tab-btn {
  padding: 13px 18px;
  font-size: 14px;
  border-radius: 15px 15px 0 0;
}
.slider-- img{
  width: 40%;
}
.animate-marquee .marquu-text{
  font-size: 65px;
}
.tab-view{
  display: block !important;
}
.tab-view-bottom{
  margin-bottom: 25px;
}
.global-map img{
  height: auto !important;
}

.tab-view-top{
  margin-top: 20px;
}

.card-content h3{
  font-size: 22px;
  margin-bottom: 0;
}
.card-content span{
  font-size: 14px;
}
.card-content p{
  margin-top: 0;
  font-size: 14px;
}
.testimonial-card img{
  height: 150px;
  margin: 20px 0 20px 0;
}
.testimonial-card{
  padding: 15px;
}
.testimonial-nav{
  margin-top: 25px;
}
.card-stack{
  height: 550px;
}
.card-content{
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.testimonial-wrapper{
  padding-bottom: 0;
}
.w--36 img{
  width: 60px;
}
.hero-title{
  font-size: 36px;
}
.banner-content{
  padding: 0 20px;
  top: 55%;
}
.hero-video{
  height: 90vh;
}
.menu{
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-bottom: 2px solid #AEC5EB;
  padding: 15px 20px !important;
}
}

/* Brand page */
 /* Top Banner Section */
    .brands-top-banner {
        position: relative;
    }

    /* Blue Cards Section with rounded top */
    .brands-cards-section {
        position: relative;
    }

    /* Brand Cards */
    .brand-card {
        transition: transform 0.3s ease;
    }

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

    .card-inner {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: box-shadow 0.3s ease;
        height: 100%;
    }

    .brand-card:hover .card-inner {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    /* Hexagon Stats */
    .hex-stat {        
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hex-wrapper {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hex-bg {
        width: 140px;
    }

    .hex-content {
        position: relative;
        z-index: 1;
        font-weight: 500;
        margin-top: 20px;
        text-align: center;
        padding: 8px;
    }

    .hex-num {
        position: absolute;
        font-family: 'CabinetGrotesk', sans-serif !important;
        font-size: 2rem;
        font-weight: 800;
        color: #1a1a1a;
        line-height: 1;
    }

    .hex-text {
        display: block;
        width: 200px;
        font-size: 16px;
        font-family: 500;
        color: #111;
        line-height: 1.2;
        letter-spacing: 0.02em;
    }

    /* Explore Button */
    .explore-btn {
        transition: all 0.3s ease;
    }

    .explore-btn:hover {
        transform: translateX(3px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .explore-btn svg {
      transition: transform 0.3s ease;
      transform: rotate(45deg);
      margin-top: 3px;
    }

    .explore-btn:hover svg {
        transform: translate(2px, -2px);
        transform: rotate(45deg);
        margin-top: 3px;
    }

    /* Parallax */
    @media (max-width: 768px) {
       .hex-num {
            font-size: 1.1rem;
        }

        .hex-text {
            font-size: 14px;
            width: 100%;
        }
        .hex-content{
          margin-top: 5px;
          margin-bottom: 20px;
        }
        
        .brands-cards-section {
            border-radius: 30px 30px 0 0;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .animate-on-scroll {
            opacity: 1;
            transform: none;
            transition: none;
            animation: none;
        }
        
        .parallax-bg {
            background-attachment: scroll;
        }
    }
    .card-header{
      background: #fff;
    }
.card-header .card--logo{
    width: auto;
    max-width: 285px;
    flex-shrink: 0;
}