/* ==========================================================================
   LANDING PAGE CSS - Mobile First
   Matching Figma design exactly for TSUV Landing Page
   ========================================================================== */

/* ---------- CSS Variables ---------- */
:root {
  --lp-teal: #00516f;
  --lp-dark-teal: #023040;
  --lp-gold: #fbb040;
  --lp-gold-light: rgba(251, 176, 64, 0.1);
  --lp-text: #3c3c3c;
  --lp-text-light: rgba(60, 60, 60, 0.8);
  --lp-text-muted: rgba(60, 60, 60, 0.7);
  --lp-bg: #f6f3f2;
  --lp-white: #ffffff;
  --lp-radius: 20px;
  --lp-radius-pill: 30px;
  --lp-font: "Poppins", sans-serif;
  --lp-font-alt: "Plus Jakarta Sans", sans-serif;
}

/* ---------- Base / Reset for Landing Page ---------- */
.landing-page {
  font-family: var(--lp-font);
  background-color: var(--lp-bg);
  color: var(--lp-text);
  overflow-x: hidden !important;
}

html.landing-page,
html:has(.landing-page) {
  overflow-x: hidden !important;
}

.landing-page #page {
  overflow-x: hidden !important;
  max-width: 100vw;
}

.landing-page .site-content {
  padding: 0 !important;
  margin: 0 !important;
}

.landing-page #content.minsection,
.landing-page #content {
  min-height: auto !important;
  padding: 0 !important;
}

/* ---------- Owl Carousel Fix for Landing Page ---------- */
.landing-page .owl-stage {
  padding: 0px !important;
}
.landing-page .owl-carousel {
  display: block !important;
  visibility: visible !important;
  width: 100% !important;
  overflow: hidden !important;
}

.landing-page .owl-carousel .owl-stage-outer {
  overflow: hidden !important;
  max-width: 100% !important;
}

.landing-page .owl-carousel .owl-item {
  display: block;
  opacity: 1 !important;
  visibility: visible !important;
}

.landing-page .owl-carousel .owl-stage {
  display: flex;
}

/* Fix existing theme styles conflicting with landing page */
.landing-page .main-header,
.landing-page #sticky-header,
.landing-page #masthead,
.landing-page .header-one,
.landing-page #preloader {
  display: none !important;
}

.landing-page .site-content.minsection {
  min-height: auto !important;
  padding-top: 0 !important;
}

.landing-page .site-header {
  display: none !important;
  border: none !important;
}

.landing-page,
.landing-page #page,
.landing-page #page.site {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.landing-page .landing-header {
  top: 0 !important;
}

/* Handle WP admin bar offset */
.admin-bar .landing-header {
  top: 32px !important;
}

@media (max-width: 782px) {
  .admin-bar .landing-header {
    top: 46px !important;
  }
}

/* ---------- Gradient Title (Reusable) ---------- */
.landing-gradient-title {
  font-family: var(--lp-font);
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  background: linear-gradient(90deg, #00516F 0%, #FBB040 30%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  width: fit-content;
  &.textCenter{
  margin-left: auto;
  margin-right: auto;
  }
  &.textWhite{
    margin-left: auto;
    margin-right: auto;
  }
  &.style2{
    background: linear-gradient(90deg, #FFFFFF 0%, #FBB040 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--lp-teal) !important;
    span{
      color: var(--lp-gold) !important;
    }
  }
}

.titleStyle2 {
  background: transparent !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: initial !important;
  text-fill-color: initial !important;
  color: var(--lp-teal) !important;
  span {
    color: var(--lp-gold) !important;
  }
  em {
    font-style: normal !important;
    color: #ffffff !important;
  }
}
.landing-gradient-title--light {
  background: linear-gradient(to right, var(--lp-white), var(--lp-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Section Header ---------- */
.landing-section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.landing-section-header .landing-gradient-title {
  margin-bottom: 0;
}

@media (max-width: 575.98px) {
  .landing-section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- Navigation Arrows ---------- */
.landing-nav-arrow {
  width: 48px;
  height: 48px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.landing-nav-arrow img {
  width: 48px;
  height: 48px;
}

/* ==========================================================================
   HEADER - Landing
   ========================================================================== */
.landing-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease;
  padding: 12px 0;
}

.landing-header--sticky {
  background-color: var(--lp-dark-teal);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.landing-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px;
  max-width: 1600px;
  margin: 0 auto;
}

.landing-logo {
  height: 50px;
  width: auto;
}

.landing-header__nav {
  display: none;
}

.landing-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.landing-nav-list li a {
  font-family: var(--lp-font);
  font-size: 15px;
  font-weight: 500;
  color: var(--lp-white);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.landing-nav-list li a:hover {
  color: var(--lp-gold);
}

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

.landing-header__cta {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 197, 112, 1) 0%,
    rgba(251, 176, 64, 1) 100%
  );
  border: 1px solid var(--lp-white);
  border-radius: var(--lp-radius-pill);
  color: var(--lp-teal);
  font-family: var(--lp-font);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(251, 176, 64, 0.5);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  white-space: nowrap;
}

.landing-header__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 25px rgba(251, 176, 64, 0.7);
  color: var(--lp-teal);
  text-decoration: none;
}

/* Hamburger */
.landing-header__hamburger {
  background: none !important;
  border: none !important;
  cursor: pointer;
  padding: 8px !important;
  display: flex !important;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 100;
  min-width: 44px;
  min-height: 44px;
  align-items: flex-end;
  justify-content: center;
}

.landing-header__hamburger span {
  display: block !important;
  height: 3px !important;
  background: #ffffff !important;
  border-radius: 10px;
  transition: 0.3s;
}

.landing-header__hamburger span:nth-child(1) {
  width: 20px;
}
.landing-header__hamburger span:nth-child(2) {
  width: 28px;
}
.landing-header__hamburger span:nth-child(3) {
  width: 20px;
}

/* Ensure hamburger visible on mobile, hidden on desktop */
@media (max-width: 991.98px) {
  .landing-header__hamburger {
    display: flex !important;
  }
}

@media (min-width: 992px) {
  .landing-header__hamburger {
    display: none !important;
  }
}

/* Mobile Menu */
.landing-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  height: 100dvh;
  background: var(--lp-dark-teal);
  z-index: 1100;
  transition: right 0.3s ease;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.landing-mobile-menu__nav {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.landing-mobile-menu--open {
  right: 0;
}

.landing-mobile-menu__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1099;
}

.landing-mobile-menu__backdrop--open {
  display: block;
}

.landing-mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.landing-mobile-menu__header .landing-logo {
  height: 40px;
}

.landing-mobile-menu__close {
  background: none;
  border: none;
  color: var(--lp-white);
  font-size: 24px;
  cursor: pointer;
}

.landing-mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.landing-mobile-nav-list li {
  margin-bottom: 16px;
}

.landing-mobile-nav-list li a {
  color: var(--lp-white);
  font-family: var(--lp-font);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  display: block;
  padding: 8px 0;
}

.landing-header__cta--mobile {
  display: inline-flex;
  margin-top: 24px;
}

/* ==========================================================================
   HERO BANNER
   ========================================================================== */
#heroSlider .owl-nav {
  display: none !important;
}
.landing-hero {
  position: relative;
  overflow: hidden;
  background: url("/wp-content/uploads/2026/04/hero-1.png") no-repeat center
    center;
  background-size: cover;
  background-position: center center;
  padding: 80px 24px 0px 24px;
}

.landing-hero__slide {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: transparent;
}

.landing-hero__content {
  position: relative;
  z-index: 2;
  padding: 0px;
  @media (max-width: 768px) {
    padding: 20px 0px;
  }
}

.landing-hero__title {
  font-family: var(--lp-font);
  font-weight: 500;
  font-size: 36px;
  line-height: 48px;
  color: var(--lp-white);
  margin-bottom: 16px;
  @media (max-width: 768px) {
    font-size: 24px;
    line-height: 32px;
  }
}

.landing-hero__subtitle {
  font-family: var(--lp-font);
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: var(--lp-white);
  margin-bottom: 32px;
  max-width: 311px;
  @media (max-width: 768px) {
    font-size: 14px;
    line-height: 20px;
  }
}

.landing-hero__subtitle strong {
  font-weight: 700;
}

.landing-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  height: 48px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 197, 112, 1) 0%,
    rgba(251, 176, 64, 1) 100%
  );
  border: 1px solid var(--lp-white);
  border-radius: var(--lp-radius-pill);
  color: var(--lp-teal);
  font-family: var(--lp-font);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(251, 176, 64, 0.5);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.landing-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(251, 176, 64, 0.7);
  color: var(--lp-teal);
  text-decoration: none;
}

/* Hero Visual / Map */
.landing-hero__visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 100%;
}

.landing-hero__map-container {
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-height: 350px;
}

.landing-hero__circle-outer {
  position: absolute;
  inset: 0;
}

.landing-hero__circle-outer img {
  width: 100%;
  height: 100%;
}

.landing-hero__circle-inner {
  position: absolute;
  top: 12.2%;
  left: 12.2%;
  width: 76.3%;
  height: 76.3%;
}

.landing-hero__circle-inner img {
  width: 100%;
  height: 100%;
}

.landing-hero__map-img {
  position: absolute;
  top: 2.93%;
  left: 31.48%;
  width: 35.47%;
  height: auto;
  z-index: 2;
}

/* Floating profiles */
.landing-hero__float-profile {
  position: absolute;
  z-index: 3;
}

.landing-hero__float-profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-hero__float-profile--1 {
  width: 47px;
  height: 47px;
  top: 75%;
  left: 5%;
}

.landing-hero__float-profile--2 {
  width: 29px;
  height: 29px;
  top: 44.5%;
  left: 8%;
}

.landing-hero__float-profile--3 {
  width: 29px;
  height: 29px;
  top: 7.8%;
  left: 12.5%;
}

.landing-hero__float-profile--4 {
  width: 36px;
  height: 36px;
  top: 7.8%;
  right: 28%;
}

.landing-hero__float-profile--5 {
  width: 36px;
  height: 36px;
  top: 68%;
  right: 10%;
}

.landing-hero__float-profile--6 {
  width: 36px;
  height: 36px;
  top: 33.7%;
  right: -2%;
}

/* Slide image (slides 2-4) */
.landing-hero__slide-image {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.landing-hero__slide-img {
  width: 100%;
  height: auto;
  border-radius: var(--lp-radius);
  object-fit: cover;
}

/* Hero Dots */
.landing-hero__dots {
  position: absolute;
  bottom: 40px;
  left: 24px;
  z-index: 10;
  display: flex;
  gap: 4px;
  @media (max-width: 768px) {
    right:16px;
    left:auto;
  }
}

.landing-hero__dots .owl-dot {
  width: 30px;
  height: 10px;
  border-radius: 10px;
  background: var(--lp-white);
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.landing-hero__dots .owl-dot.active {
  width: 60px;
  background: var(--lp-gold);
}

/* Wave backgrounds */
.landing-wave {
  width: 100%;
  line-height: 0;
  margin-top: -1px;
}

.landing-wave img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   FEATURED PORTFOLIO
   ========================================================================== */
#featured-portfolio .owl-nav {
  display: none;
}
.landing-portfolio {
  padding: 60px 0 40px;
  /* background: var(--lp-bg); */
  background: var(--lp-bg)
    url("/wp-content/uploads/2026/04/featured-background-new.png") no-repeat top
    right;
  background-size: contain;
}

.landing-portfolio .owl-stage-outer {
  padding: 10px 0;
}

.landing-portfolio .owl-stage {
  display: flex;
}

.landing-portfolio .owl-item {
  display: flex;
}

.landing-portfolio__card {
  background: var(--lp-white);
  border-radius: 24px;
  box-shadow: 0 0 20px rgba(0, 81, 111, 0.05);
  border: 1px solid rgba(0, 81, 111, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
}

.landing-portfolio__card:hover {
  background: #f0ede9;
  border-radius: 24px 80px 24px 24px !important;
}

.landing-portfolio__card-body {
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.landing-portfolio__nav {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 24px;
}

.landing-portfolio__card-logo {
  width: 60px;
  height: 60px;
  background: var(--lp-white);
  border-radius: 12px;
  border: 1px solid rgba(0, 81, 111, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  margin-bottom: 12px;
}

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

.landing-portfolio__card-title {
  font-family: var(--lp-font);
  color: var(--lp-teal);
  font-weight: 500;
  font-size: 18px;
  line-height: 36px;
  margin-bottom: 8px;
}

.landing-portfolio__card-desc {
  font-family: var(--lp-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--lp-text);
  margin-bottom: 20px;
  flex: 1;
}

.landing-portfolio__card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 81, 111, 0.3);
  color: var(--lp-teal);
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
  font-weight: 400;
}

.landing-portfolio__card:hover .landing-portfolio__card-link {
  background: var(--lp-gold);
  border-color: var(--lp-gold);
  color: var(--lp-white);
}

/* ==========================================================================
   OUR MILESTONES — Exact Figma Match
   ========================================================================== */
.landing-milestones {
  padding: 60px 0;
  background-image: url("/wp-content/uploads/2026/04/our-milestone-bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Grid: 2 columns on mobile */
.landing-milestones__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Card base */
.landing-milestones__card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 160px;
  display: flex;
  flex-direction: column;
}

/* Card backgrounds */
.landing-milestones__card--teal {
  background-color: #00516f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.landing-milestones__card--teal::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(0, 130, 170, 0.6) 0%,
    rgba(0, 81, 111, 0.2) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.landing-milestones__card--teal:hover::before {
  opacity: 1;
}

/* Card overlay image */
.landing-milestones__card-overlay {
  position: absolute;
  inset: 0;
  border-radius: 20px;
}

.landing-milestones__card-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  opacity: 0.3;
}

/* Card inner content */
.landing-milestones__card-inner {
  position: relative;
  z-index: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

/* Icon at top */
.landing-milestones__icon {
  margin-bottom: auto;
}

/* Avatar icons (card 1: Alliances) */
.landing-milestones__avatars {
  display: flex;
  margin-bottom: auto;
}

.landing-milestones__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: -6px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Numbers: gradient white → #999 */
.landing-milestones__number {
  font-family: var(--lp-font-alt);
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
  color: var(--lp-gold);
  margin: 8px 0px 0px 0px;
}

.landing-milestones__cr {
  font-family: var(--lp-font-alt);
  font-weight: 700;
  font-size: 16px;
}

.landing-milestones__plus {
  font-family: var(--lp-font-alt);
  font-weight: 700;
  font-size: 30px;
}

/* Labels */
.landing-milestones__label {
  font-family: var(--lp-font-alt);
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.8);
  margin:8px 0px 0px 0px;
}

/* Mobile order & spanning */
.landing-milestones__card--c1 {
  order: 1;
}
.landing-milestones__card--c2 {
  order: 2;
}
.landing-milestones__card--c4 {
  order: 3;
  grid-column: 1 / -1;
}
.landing-milestones__card--c3 {
  order: 4;
}
.landing-milestones__card--c5 {
  order: 5;
}
.landing-milestones__card--c6 {
  order: 6;
  grid-column: 1 / -1;
}

.landing-milestones__card--c6 .landing-milestones__icon {
  margin-bottom: 8px;
}

/* Decorative images on cards */
.landing-milestones__decor {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

.landing-milestones__decor--700 {
  top: 0px;
  right: 0px;
  bottom: 10px;
  width: 120px;
  height: auto;
}

.landing-milestones__decor--25000 {
  top: 15px;
  right: 30px;
  width: 157px;
  height: auto;
}

/* ---- DESKTOP: 4 columns, c4 spans 2 cols, c6 spans 2 rows ---- */
@media (min-width: 1200px) {
  .landing-milestones {
    padding: 80px 0;
  }

  .landing-milestones__grid {
    grid-template-columns: 1fr 1fr 1fr 1.2fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
  }

  .landing-milestones__card {
    min-height: unset;
    order: unset;
  }

  /* Card 1: 80+ — row1, col1 */
  .landing-milestones__card--c1 {
    grid-column: 1;
    grid-row: 1;
  }

  /* Card 2: 65 — row1, col2 */
  .landing-milestones__card--c2 {
    grid-column: 2;
    grid-row: 1;
  }

  /* Card 3: 4500+ — row1, col3 */
  .landing-milestones__card--c3 {
    grid-column: 3;
    grid-row: 1;
  }

  /* Card 6: 25000+ — col4, span 2 rows */
  .landing-milestones__card--c6 {
    grid-column: 4;
    grid-row: 1 / 3;
  }

  /* Card 4: ₹700 — row2, span col1+col2 */
  .landing-milestones__card--c4 {
    grid-column: 1 / 3;
    grid-row: 2;
  }

  /* Card 5: 190+ — row2, col3 */
  .landing-milestones__card--c5 {
    grid-column: 3;
    grid-row: 2;
  }

  .landing-milestones__card-inner {
    padding: 24px;
  }

  .landing-milestones__avatar {
    width: 40px;
    height: 40px;
  }

  .landing-milestones__label {
    font-size: 16px;	
    line-height: 30px;
  }
}

/* ---- TABLET: 3 columns ---- */
@media (min-width: 768px) and (max-width: 1199.98px) {
  .landing-milestones__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .landing-milestones__card--c4 {
    grid-column: 1 / 3;
  }

  .landing-milestones__card--c6 {
    grid-column: 2 / 4;
  }

  .landing-milestones__number {
    font-size: 36px;
  }
}

/* ==========================================================================
   ABOUT / INDIA SECTION
   ========================================================================== */
.landing-about {
  padding: 60px 0;
  background: var(--lp-bg)
    url("/wp-content/uploads/2026/04/featured-background.png") no-repeat center
    center;
  background-size: cover;
}

.landing-about__wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.landing-about__content-card {
  width: 100%;
  position: relative;
  background: var(--lp-white);
  border-radius: 20px;
  padding: 30px 24px;
}

.landing-about__image-panel {
  position: relative;
}

.landing-about__image {
  width: 100%;
  min-height: 300px;
  border-radius: 20px;
  @media (max-width: 768px) {
    margin-bottom: 30px;
  }
}

.landing-about__badge {
  position: absolute;
  bottom: -30px;
  right: 20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  border: 2px solid #FFF;
  background: url("/wp-content/uploads/2026/04/Ellipse-2431.png") no-repeat center center;
  background-size: cover;
  @media (max-width: 768px) {
    right: 0px;
  }
}

.landing-about__badge-amount {
  font-family: var(--lp-font);
  font-weight: 600;
  font-size: 32px;
  line-height: 24px;
  color: var(--lp-gold);
}

.landing-about__badge-label {
  font-family: var(--lp-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: var(--lp-white);
  text-align: center;
}

.landing-about__tagline {
  font-family: var(--lp-font);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--lp-text-light);
  margin-bottom: 20px;
}

.landing-about__text p {
  font-family: var(--lp-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--lp-text);
  margin-bottom: 16px;
}

.landing-about__link {
  font-family: var(--lp-font);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--lp-teal);
  text-decoration: none;
}

.landing-about__link:hover {
  color: var(--lp-gold);
}

/* ==========================================================================
   MEET THE TEAM
   ========================================================================== */
.landing-team {
  padding: 60px 0px;
  position: relative;
  background: var(--lp-white) url("/wp-content/uploads/2026/04/team-bg-new.png") no-repeat center center;
  background-size: contain;
}

.landing-team__decorative {
  position: absolute;
  top: 0;
  left: -92px;
  width: 613px;
  height: auto;
  opacity: 0.1;
  pointer-events: none;
}

.landing-team__decorative img {
  width: 100%;
  height: auto;
}

.landing-team__tabs {
  display: flex;
  gap: 12px;
}

.landing-team__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  height: 48px;
  min-width: 120px;
  border-radius: var(--lp-radius-pill);
  font-family: var(--lp-font);
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 4px rgba(251, 176, 64, 0.4);
}

.landing-team__tab--active {
  background: var(--lp-gold);
  color: var(--lp-teal);
}

.landing-team__tab:not(.landing-team__tab--active) {
  background: var(--lp-gold-light);
  color: var(--lp-dark-teal);
}

.landing-team__grid--hidden {
  display: none;
}

.landing-team__card {
  margin: 10px 0;
}

.landing-team__card-image {
  border-radius: var(--lp-radius);
  overflow: hidden;
  aspect-ratio: 280 / 295;
}

.landing-team__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-team__card-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f6f3ec;
  border-radius: 14px;
  padding: 16px 20px;
  margin-top: 10px;
  min-height: 40px;
}

.landing-team__card-name {
  font-family: var(--lp-font);
  font-weight: 500;
  font-size: 13px;
  color: var(--lp-teal);
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .landing-team__card-name {
    font-size: 16px;
  }
}

@media (max-width: 575.98px) {
  .landing-team__card-info {
    padding: 10px 12px;
    border-radius: 10px;
  }
}

.landing-team__card-linkedin {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-white);
  margin-left: 8px;
  font-size: 16px;
  background: var(--lp-teal);
  border-radius: 2px;

  &:hover {
    background: var(--lp-gold);
    color: var(--lp-teal);
  }
}

/* ==========================================================================
   ECOSYSTEM PARTNERS - MARQUEE
   ========================================================================== */
.landing-partners {
  padding: 60px 0px;
  background: var(--lp-bg) url("/wp-content/uploads/2026/04/featured-background.png") no-repeat center center;
  background-size: cover;
}

.landing-marquee {
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
}

.landing-marquee__track {
  display: flex;
  gap: 16px;
  width: max-content;
}

.landing-marquee--ltr .landing-marquee__track {
  animation: marquee-ltr 60s linear infinite;
}

.landing-marquee--rtl .landing-marquee__track {
  animation: marquee-rtl 60s linear infinite;
}

@keyframes marquee-ltr {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-rtl {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

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

.landing-marquee__item {
  flex-shrink: 0;
}

.landing-partner-card {
  width: 118px;
  height: 62px;
  background: var(--lp-white);
  border: 1px solid rgba(0, 81, 111, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.landing-partner-card img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  filter: grayscale(100%);
  mix-blend-mode: luminosity;
  transition: filter 0.3s;
}

.landing-partner-card:hover img {
  filter: grayscale(0);
}

/* ==========================================================================
   SERVICE PARTNERS
   ========================================================================== */
.landing-service-partners {
  padding: 60px 0px;
  background: linear-gradient(130.3deg, var(--lp-teal) 0%, #000 100%);
}

.landing-service-partners__marquee {
  margin-top: 20px;
}

.landing-service-partners__logo {
  opacity: 0.8;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .landing-service-partners__logo {
    padding: 0 40px;
  }
}

.landing-service-partners__logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

/* ==========================================================================
   CTA BLOCK
   ========================================================================== */
.landing-cta {
  padding: 60px 0px;
  background: var(--lp-bg);
}

.landing-cta__card {
  position: relative;
  border-radius: 24px;
  padding: 30px 40px;
  text-align: center;
  overflow: hidden;
  background: var(--lp-teal) url("/wp-content/uploads/2026/04/cta-block-bg.png") no-repeat center center;
  background-size: cover;	
}

.landing-cta__content {
  position: relative;
  z-index: 1;
}

.landing-cta__icon {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

.landing-cta__icon--desktop {
  display: none;
}

.landing-cta__icon img {
  min-width: 102px;
  height: auto;
}

.landing-cta__title {
  position: relative;
  z-index: 1;
  font-family: var(--lp-font);
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: var(--lp-white);
  margin-bottom: 24px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.landing-cta__btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  height: 48px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 197, 112, 1) 0%,
    rgba(251, 176, 64, 1) 100%
  );
  border: 1px solid var(--lp-white);
  border-radius: var(--lp-radius-pill);
  color: var(--lp-teal);
  font-family: var(--lp-font);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(251, 176, 64, 0.5);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.landing-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(251, 176, 64, 0.7);
  color: var(--lp-teal);
  text-decoration: none;
}

/* ==========================================================================
   NEWS FEED
   ========================================================================== */
#news-feed .owl-nav{
	display: none;
}
.landing-news {
  padding: 60px 0px;
  background: var(--lp-white);
}

.landing-news .owl-stage {
  display: flex;
}

.landing-news .owl-item {
  display: flex;
}

.landing-news .owl-stage-outer {
  padding: 10px;
  margin: -10px;
}

.landing-news__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.landing-news__header .landing-gradient-title {
  margin-bottom: 0;
}

.landing-news__nav {
  display: flex;
  gap: 8px;
}

.landing-news__nav--desktop {
  display: none;
  justify-content: flex-end;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .landing-news__nav--mobile {
    display: none;
  }

  .landing-news__nav--desktop {
    display: flex;
  }
}

.landing-news__card {
  background: var(--lp-white);
  border-radius: var(--lp-radius);
  overflow: hidden;
  border: 1px solid rgba(0, 81, 111, 0.2);
  box-shadow: 0 0 20px rgba(0, 81, 111, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s ease;
}

.landing-news__card:hover {
  box-shadow: 0 8px 30px rgba(0, 81, 111, 0.12);
  text-decoration: none;
  color: inherit;
}

.landing-news__card-image {
  height: 224px;
  overflow: hidden;
  margin: 12px 12px 0;
  border-radius: 16px;
  background: #F5F5F5 !important;
}

.landing-news__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(0, 81, 111, 0.1);
}

.landing-news__card-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.landing-news__card-title {
  font-family: var(--lp-font);
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 8px;
}

.landing-news__card-title {
  color: var(--lp-text);
}

.landing-news__card:hover .landing-news__card-title {
  color: var(--lp-teal);
}

.landing-news__card-excerpt {
  font-family: var(--lp-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: var(--lp-text);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.landing-news__card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.landing-news__card-date {
  font-family: var(--lp-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: var(--lp-text);
}

.landing-news__card-source {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 10px;
  height: 30px;
  border-radius: 6px;
  background-color: var(--lp-teal);
  color: var(--lp-white);
  font-family: var(--lp-font-alt);
  font-weight: 400;
  font-size: 14px;
  white-space: nowrap;
}

/* ==========================================================================
   WORK WITH US
   ========================================================================== */
.landing-work-with-us {
  padding: 60px 0px;
  background: var(--lp-bg);
}

.landing-work-with-us__subtitle {
  font-family: var(--lp-font);
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--lp-text);
  margin: 0 auto 40px;
}

.landing-form-group {
  margin-bottom: 20px;
  position: relative;
  input, select, textarea{
	padding: 15px 24px !important;
  }
  input:focus, select:focus, textarea:focus{
	outline: none !important;
	border-color: var(--lp-teal) !important;
	box-shadow: none !important;
  }
}

.landing-form-input {
  width: 100%;
  height: 60px;
  padding: 15px 24px;
  border: 1px solid rgba(0, 0, 0, 0.16) !important;
  border-radius: 30px !important;
  font-family: var(--lp-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: var(--lp-text);
  background: var(--lp-white);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.landing-form-input::placeholder {
  color: var(--lp-text-muted);
}

.landing-form-input:focus {
  border-color: var(--lp-teal);
}

.landing-form-textarea {
  height: 120px;
  border-radius: 30px !important;
  resize: none;
  line-height: 24px;
  padding: 18px 24px;
}

.landing-form-group--select {
  position: relative;
  z-index: 5;
  overflow: visible;
}

.landing-custom-select {
  position: relative;
  width: 100%;
}

.landing-custom-select__trigger {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.landing-custom-select__trigger .landing-form-select-icon {
  font-size: 14px;
  color: var(--lp-text);
  transition: transform 0.2s;
}

.landing-custom-select.open .landing-form-select-icon {
  transform: rotate(180deg);
}

.landing-custom-select__options {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--lp-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  overflow: hidden;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.landing-custom-select.open .landing-custom-select__options {
  display: block;
}

.landing-custom-select__option {
  padding: 14px 24px;
  font-family: var(--lp-font);
  font-size: 16px;
  color: var(--lp-text);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.landing-custom-select__option:hover {
  background: var(--lp-gold);
  color: var(--lp-white);
}

.landing-custom-select__option.selected {
  background: var(--lp-teal);
  color: var(--lp-white);
}

.landing-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  height: 48px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 197, 112, 1) 0%,
    rgba(251, 176, 64, 1) 100%
  );
  border: 1px solid var(--lp-white);
  border-radius: var(--lp-radius-pill);
  color: var(--lp-teal);
  font-family: var(--lp-font);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(251, 176, 64, 0.5);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.landing-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(251, 176, 64, 0.7);
}

/* ==========================================================================
   FOOTER - Landing
   ========================================================================== */
.landing-footer {
  background: var(--lp-white);
  padding: 60px 0 0;
}

.landing-footer__logo {
  margin-bottom: 20px;
}

.landing-footer__logo img {
  height: 67px;
  width: auto;
}

.landing-footer__about {
  font-family: var(--lp-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: var(--lp-text);
  margin-bottom: 24px;
}

.landing-footer__heading {
  font-family: var(--lp-font);
  font-weight: 600;
  font-size: 18px;
  color: var(--lp-text);
  margin-bottom: 16px;
}

.landing-footer__links {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.landing-footer__links li {
  margin-bottom: 8px;
}

.landing-footer__links li a {
  font-family: var(--lp-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: var(--lp-text);
  text-decoration: none;
  transition: color 0.2s;
}

.landing-footer__links li a:hover {
  color: var(--lp-teal);
}

.landing-footer__social {
  display: flex;
  gap: 16px;
  margin: 16px 0px;
}

.landing-footer__social a {
  color: var(--lp-teal);
  font-size: 20px;
  transition: color 0.2s;
  text-decoration: none;
}

.landing-footer__social a:hover {
  color: var(--lp-gold);
}

.landing-footer__twitter-icon {
  width: 20px;
  height: 20px;
}

.landing-footer__col {
  margin-bottom: 30px;
  @media (max-width: 769px) {
    margin-bottom: 0px;
  }
}

.landing-footer__newsletter-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  input{
	padding: 15px 60px 15px 24px !important;
  }
}

.landing-footer__newsletter-input {
  width: 100%;
  height: 60px;
  background: var(--lp-bg) !important;
  border: 1px solid transparent !important;
  border-radius: 30px !important;
  font-family: var(--lp-font-alt);
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: var(--lp-text);
  outline: none;
  &:focus{
	outline: none !important;
	border-color: var(--lp-teal) !important;
	box-shadow: none !important;
  }
}

.landing-footer__newsletter-input:focus {
  border-color: var(--lp-teal);
}

.landing-footer__newsletter-input::placeholder {
  color: var(--lp-text-light);
}

.landing-footer__newsletter-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

.landing-footer__newsletter-btn img {
  width: 48px;
  height: 48px;
}

/* Copyright Bar */
.landing-footer__copyright {
  background: linear-gradient(157.25deg, var(--lp-teal) 0%, #000 100%);
  padding: 20px 0;
  margin-top: 30px;
}

.landing-footer__copyright p {
  font-family: var(--lp-font-alt);
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: var(--lp-white);
  margin: 0;
}

/* ==========================================================================
   OWL CAROUSEL OVERRIDES
   ========================================================================== */
.landing-page .owl-carousel .owl-stage-outer {
  overflow: visible;
}

.landing-hero .owl-carousel .owl-stage-outer {
  overflow: hidden;
}

.landing-page .owl-carousel .owl-item {
  opacity: 1;
}

.landing-page .owl-dots {
  display: none;
}

/* ==========================================================================
   RESPONSIVE - Tablet (768px+)
   ========================================================================== */
@media (min-width: 768px) {

  .landing-hero {
    padding: 0px 24px 0px 24px;
  }
  .landing-gradient-title {
    font-size: 28px;
    line-height: 42px;
  }

  .landing-hero__title {
    font-size: 44px;
    line-height: 56px;
  }

  .landing-hero__map-container {
    margin-top: 40px;
    width: 400px;
    height: 400px;
  }

  .landing-cta__title {
    font-size: 28px;
    line-height: 38px;
  }

  .landing-work-with-us__form-wrapper {
    max-width: 100%;
  }
}

/* ==========================================================================
   RESPONSIVE - Desktop (992px+)
   ========================================================================== */
@media (min-width: 992px) {
  .landing-header__nav {
    display: flex;
  }

  .landing-header__cta {
    display: inline-flex;
  }

  .landing-header__hamburger {
    display: none;
  }

  .landing-hero__slide {
    min-height: 100vh;
  }

  /* .landing-hero__content {
    padding: 200px 0 120px;
  } */

  .landing-hero__title {
    font-size: 48px;
    line-height: 68px;
  }

  .landing-hero__subtitle {
    font-size: 18px;
    line-height: 28px;
    max-width: 450px;
  }

  .landing-hero__map-container {
    width: 480px;
    height: 480px;
  }

  .landing-hero__float-profile--1 {
    width: 67px;
    height: 67px;
  }
  .landing-hero__float-profile--2 {
    width: 49px;
    height: 49px;
  }
  .landing-hero__float-profile--3 {
    width: 49px;
    height: 49px;
  }
  .landing-hero__float-profile--4 {
    width: 56px;
    height: 56px;
  }
  .landing-hero__float-profile--5 {
    width: 56px;
    height: 56px;
  }
  .landing-hero__float-profile--6 {
    width: 56px;
    height: 56px;
  }

  .landing-hero__dots {
    bottom: 60px;
    left: calc(50% - 690px);
  }

  .landing-team__decorative {
    display: block;
  }
}

/* ==========================================================================
   RESPONSIVE - Large Desktop (1200px+)
   ========================================================================== */
@media (min-width: 1200px) {
  .landing-gradient-title {
    font-size: 32px;
    line-height: 55px;
  }

  .landing-hero__title {
    font-size: 56px;
    line-height: 78px;
  }

  .landing-hero__map-container {
    width: 450px;
    height: 450px;
  }

  .landing-portfolio {
    padding: 80px 0 60px;
  }

  .landing-about {
    padding: 80px 0;
  }

  .landing-about__wrapper {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    overflow: visible;
  }

  .landing-about__image {
    height: 100%;
    min-height: 553px;
    border-radius: 40px;
  }

  .landing-about__badge {
    width: 160px;
    height: 160px;
    top: auto;
    bottom: 0px;
    left: -80px;
    right: auto;
    z-index: 2;
  }

  .landing-about__badge-amount {
    font-size: 36px;
  }

  .landing-about__badge-label {
    font-size: 18px;
  }

  .landing-about__tagline {
    font-size: 20px;
    line-height: 42px;
  }

  .landing-about__text p {
    max-width: 500px;
  }

  .landing-team {
    padding: 60px 0px;
  }

  .landing-partners {
    padding: 60px 0px;
  }

  .landing-cta {
    padding: 60px 0px;
  }

  .landing-cta__card {
    padding:16px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .landing-cta__content {
    flex: 1;
  }

  .landing-cta__icon--mobile {
    display: none;
  }

  .landing-cta__icon--desktop {
    display: block;
    flex-shrink: 0;
    margin-bottom: 0;
    margin-left: 40px;
  }

  .landing-cta__icon--desktop img {
    max-width: 200px;
  }

  .landing-cta__title {
    font-size: 32px;
    line-height: 42px;
    max-width: 600px;
    margin-left: 0;
    margin-right: 0;
  }

  .landing-news {
    padding: 60px 0px;
  }

  .landing-work-with-us {
    padding: 60px 0px;
  }

  .landing-work-with-us__subtitle {
    font-size: 20px;
    line-height: 32px;
  }

  .landing-footer {
    padding: 80px 0 0;
  }

  .landing-partner-card {
    width: 140px;
    height: 70px;
  }
}

/* ==========================================================================
   RESPONSIVE - Extra Large (1400px+)
   ========================================================================== */
@media (min-width: 1400px) {
  .landing-hero__map-container {
    width: 100%;
    max-height: 600px;
  }

  .landing-hero__float-profile--1 {
    width: 80px;
    height: 80px;
  }
  .landing-hero__float-profile--4 {
    width: 68px;
    height: 68px;
  }
  .landing-hero__float-profile--5 {
    width: 68px;
    height: 68px;
  }
  .landing-hero__float-profile--6 {
    width: 68px;
    height: 68px;
  }
}
