* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  overflow-x: clip;
}

/* ===== Branded Premium Scrollbar ===== */
::-webkit-scrollbar {
  width: 9px;
}

::-webkit-scrollbar-track {
  background: #00283A;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.48) 100%);
  border-radius: 10px;
  border: 2px solid #00283A;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg,
      #4bb6a7,
      #3A9F91);
}

* {
  scrollbar-width: thin;
  scrollbar-color: #dcdedf #909daa;
}




/* html {
  scroll-behavior: smooth;
} */


/* ================================
   HERO SECTION
================================ */

/* Hero text content */


.hero-content h1 {
  font-size: 58px;
  font-weight: 400;
  line-height: 1.2;
  font-family: Poppins;
  color: #fff;
}

.hero-content h1 span {
  font-weight: 700;
}

.hero-content p {
  margin-top: 15px;
  font-size: 18px;
  opacity: 0.9;
  color: #fff;
}

.cta-btn {
  margin-top: 25px;
  padding: 12px 30px;
  border: none;
  background: white;
  color: black;
  border-radius: 6px;
  cursor: pointer;

  color: #131313;

  /* poppins/medium-16px */
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 21px;
  /* 131.25% */
}

.cta-btn-video {
  margin-top: 24px;
  padding: 12px 32px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  background: white;
  color: #131313;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-btn-video:hover {
  background: #f0f0f0;
  border: none;
  outline: none;
}

.hero .scroll-down {
  position: relative;
  margin-top: clamp(44px, 6vh, 68px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  animation: scrollBounce 0.95s ease-in-out infinite;

}

@media (max-width: 1024px) {
  .hero .scroll-down {
    margin-top: clamp(34px, 4.6vh, 48px);
  }
}

@media (max-width: 480px) {
  .hero .scroll-down {
    margin-top: clamp(26px, 3.6vh, 38px);
  }
}

@keyframes scrollBounce {
  0% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(10px);
  }

  60% {
    transform: translateY(6px);
  }

  100% {
    transform: translateY(0);
  }
}


/* When hero should show */
.hero.show {
  opacity: 1;
}

.hero.show .hero-content {
  opacity: 1;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .cta-btn {
    padding: 10px 25px;
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translate(-50%, -30%);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.hero.show .hero-content {
  animation: slideUp 1s ease-out forwards;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translate(-50%, -20%);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.hero-content.show {
  animation: slideUp 1s ease-out forwards;
}

/* ================================
   NAVBAR
================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 10000;
  background: #fff;
  position: relative;
  box-shadow: none;
  transition: box-shadow 0.25s ease;
}

.navbar.scrolled {
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.05);
}

.nav-link-wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;

}

.nav-container {
  /* max-width: 1300px; */
  margin: auto;
  /* padding: 14px 30px; */
  padding-top: 10px;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  height: 48px;
}

/* Links */
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  color: #333;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

/* Hover underline animation */


.nav-links a:hover {
  color: #1ea596;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Active link */
.nav-links a.active {
  color: #1ea596;
  font-weight: 500;
}

.drawer-links a.active {
  color: #1ea596 !important;
  font-weight: 500;
}

.nav-links a.active::after {
  width: 100%;
}

/* CTA Button */

/* Mobile */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    right: 30px;
    background: white;
    flex-direction: column;
    width: 220px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
  }

  .demo-btn {
    display: none !important;
  }
}

/* trusted  */

.trusted-clients {
  /* padding: 80px 0; */
  text-align: center;
  background: #fff;
  padding-top: 115px;
  scroll-margin-top: 100px;
}

.trusted-clients h2 {
  font-size: 36px;
  margin-bottom: 86px;
  color: #111;

  color: #131313;
  text-align: center;

  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  line-height: 44px;
  /* 122.222% */
  letter-spacing: -0.007px;
}


/* Slider wrapper */
.logo-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* Track */
.logo-track {
  display: flex;
  gap: 100px;
  width: fit-content;
}

/* Logos */
.logo-track img {
  height: 60px;
  /* opacity: 0.8; */
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .nav-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 480px) {
  .trusted-clients {
    scroll-margin-top: 80px;
  }
}




/* Pause on hover (optional) */
.logo-slider:hover .logo-track {
  animation-play-state: paused !important;
}

/* Animation - will be set dynamically */
@keyframes scrolls {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(var(--translate-x));
  }
}


/* Responsive */


@media (max-width: 1024px) {
  .trusted-clients {
    padding-bottom: 22px;
  }
}

/* Tablet-only: reduce extra top gap below hero (keeps mobile and desktop unchanged) */
@media (min-width: 769px) and (max-width: 1024px) {
  .trusted-clients {
    padding-top: 72px;
  }
}


@media (max-width: 768px) {

  .trusted-clients {
    padding-bottom: 22px;
    padding-top: 45px;
  }

  .logo-track {
    gap: 50px;
  }

  .logo-track img {
    height: 60px;
    width: auto;
    /* stop stretching */
    max-width: 110px;
    /* optional, prevents huge wide logos */
    object-fit: contain;
    flex-shrink: 0;
    transition: opacity 0.8s ease;
  }

  .trusted-clients h2 {
    color: #131313;
    text-align: center;

    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 40px;
  }
}

/* solving section  */

.story-award-section {
  position: relative;
  padding: 96px 0;
  background: #fff;
  overflow: hidden;
}

/* =====================================================
   FULL-BLEED IMAGE (INITIAL STATE)
===================================================== */
.story-image-bleed {
  position: absolute;
  inset: 0;
  z-index: 1;

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

  padding: 0 50px;
  /* Add horizontal padding to match container */

  pointer-events: none;
}

.story-image-bleed img {
  width: 40vw;
  height: 590px;
  object-fit: cover;
  border-radius: 16px;
  position: relative;
  transform: translateX(110%);

  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =====================================================
   ACTIVE STATE → IMAGE SHRINKS TO RIGHT
===================================================== */
.story-award-section.active .story-image-bleed img {
  width: 40vw;
  transform: translateX(0);
}

/* =====================================================
   CONTENT GRID
===================================================== */
.story-container {
  position: relative;
  z-index: 2;

  /* max-width: 1200px; */
  margin: auto;
  padding: 0 50px;

  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  min-height: 590px;
}

/* =====================================================
   TEXT CONTENT
===================================================== */
.story-text {
  grid-column: 1 / 2;
  max-width: 97%;

  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.4s ease, transform 0.6s ease;
}

.story-award-section.active .story-text {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.1s;
}

.story-text h2 {
  margin-bottom: 20px;
  color: v #131313;
  font-family: Poppins;
  font-size: 42px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: 2.1px;
  text-transform: capitalize;
  max-width: 590px;
}

.story-text p {
  color: rgba(19, 19, 19, 0.7);
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  max-width: 86%;
}

.story-text ul {
  margin-top: 18px;
  padding-bottom: 32px;
}

.story-text li {
  margin-bottom: 8px;
  color: rgba(19, 19, 19, 0.7);
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}



/* =====================================================
   AWARD BADGE - POSITIONED INSIDE IMAGE CONTAINER
===================================================== */
.award-badge {
  position: absolute;

  bottom: 12px;
  right: -70px;

  width: 140px;
  height: 140px;

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

  pointer-events: none;
  z-index: 3;

  opacity: 0;
  transform: translateY(-420px) scale(0.85);

  /* Transition */
  transition:
    opacity 1.4s ease-out,
    transform 1.35s cubic-bezier(0.16, 1, 0.3, 1);

}

.award-badge img,
.award-badge svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

/* Active state: badge slides down to final position */
.story-award-section.active .award-badge {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.5s;
  /* Starts after image moves */
}

/* =====================================================
   RESPONSIVE (MOBILE)
===================================================== */


@media (max-width:728px) {
  .story-container {

    padding-bottom: 30px !important;
  }
}


@media (max-width: 1024px) {
  .story-award-section {
    padding: 0px 0;
    min-height: 500px;
  }

  .button-inspire {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;

  }


  /* Mobile: Keep overlay layout with animations */
  .story-container {
    grid-template-columns: 1fr;
    min-height: 500px;
    gap: 0;
    padding: 0 20px;
  }

  /* Image stays absolute - animates on scroll */
  .story-image-bleed {
    position: absolute;
    inset: 0;
    padding: 0;
    /* Remove padding on mobile */
  }

  .story-image-bleed img {
    width: 100%;
    /* height: 100%; */
    min-height: 500px;
    border-radius: unset !important;
    transform: none;
    transition: width 6.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.5s ease;
    /* Slower transition for mobile */
  }

  .story-award-section.active .story-image-bleed img {
    width: 0%;
    /* Image completely moves away */
    opacity: 0;
    /* Fade out the image */
  }

  /* Text appears from left on scroll - NO BACKGROUND */
  .story-text {
    grid-column: 1;
    max-width: 100%;
    padding: 20px 0;
  }

  .story-text h2 {

    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    /* 133.333% */
  }

  .story-text p {
    font-size: 14px;
    line-height: 24px;
    max-width: 100%;
  }

  .story-text li {
    font-size: 13px;
  }

  .story-text ul {
    text-align: left;
    display: block;
  }

  /* HIDE BADGE ON MOBILE */
  .award-badge {
    display: none;
  }
}

/* iPad sizes: shrink "View our inspiring story" button */
@media (min-width: 768px) and (max-width: 1024px) {
  .button-inspire {
    width: fit-content !important;
    max-width: 100%;
    display: block !important;
    margin: 0 auto !important;
  }
}

@media (min-width: 1025px) and (max-width: 1366px) and (hover: none) and (pointer: coarse) {
  .button-inspire {
    width: fit-content !important;
    max-width: 100%;
    display: block !important;
    margin: 0 auto !important;
  }
}

.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li {
  position: relative;
  padding-left: 28px;
  /* space for svg */
  margin-bottom: 12px;
}

.custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;

  width: 16px;
  height: 16px;

  background-image: url("assets/dot.png");
  /* your SVG path */
  background-repeat: no-repeat;
  background-size: contain;
}

/* trendz-eco-system  */



/* body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  background: #f5f5f5;
  overflow-x: hidden;
} */

.spacer {
  height: 50vh;
  background: linear-gradient(to bottom, #f5f5f5, #ffffff);
}

.ecosystem-section {
  background: #ffffff;
  padding: 0px 0 0;
  isolation: isolate;
}

.section-header {
  text-align: center;
  padding: 0 20px 0px;
  position: relative;
  z-index: 10;
}

.section-header h1,
.section-header h2 {
  max-width: 900px;
  margin: 0 auto;
  color: #131313;
  text-align: center;
  font-family: Poppins;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 60px;
  /* 125% */
  letter-spacing: -0.01px;
}

@media (min-width: 1025px) {
  .ecosystem-section .section-header h1,
  .ecosystem-section .section-header h2 {
    margin-bottom: 36px;
  }
}

.cards-container {
  position: relative;
  min-height: 200vh;
}

.card-wrapper {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 50px;
}

.product-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 16px;
  /* max-width: 1200px; */
  width: 100%;
  padding: 38px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  /* box-shadow: 0 20px 46px rgba(0, 0, 0, 0.3); */
  transform-origin: center center;
  /* transition: all 0.3s ease-out;
  will-change: transform, opacity; */

  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.product-card.card-1 {
  background: linear-gradient(135deg, #131313 0%, #131313 100%);
}

.product-card.card-2 {
  background: #0e3140;

  .eclipse {
    border-radius: 423px;
    background: radial-gradient(50% 50% at 50% 50%, #0e3140 0%, #0c5677 100%);

    filter: blur(36.5px);
    position: absolute;
    z-index: -1;
    width: 32%;
    height: 61%;
    z-index: -1;
  }
}

.product-card.card-3 {
  background: #e6ebea;
  min-height: 480px;
  /* adjust if needed */
  padding-bottom: 0;
  /* so image touches bottom */
  /* gap: 10px; */
  grid-template-columns: 1.2fr 1.3fr;

  padding-left: 40px;
  padding-top: 50px;
  padding-right: 30px;
  box-shadow: unset;
}

.card-content-card-3 {
  padding-bottom: 30px;

}

/* Fix Planner card image stretching on desktops/laptops */
@media (min-width: 1025px) {
  .product-card.card-3 .card-image {
    align-items: center !important;
    /* override inline align-items */
    justify-self: center;
    align-self: center;
    justify-content: center;
    height: auto !important;
    /* override inline height: 100% */
  }

  .product-card.card-3 .card-image img {
    width: 90%;
    max-height: 520px;
    object-fit: contain;
    margin: 0 auto;
    /* keep image centered inside its container */
  }
}

.card-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/* Image hieght issue in mobiled and tablets */
@media (min-width: 375px) and (max-width: 1024px) {
  .card-image img {
    max-width: 65%;
  }
}

.mobile-screens {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.mobile-screens img {
  /* width: 30%; */
  height: auto;
  border-radius: 20px;
}

.card-content h2 {
  font-size: 30px;
  margin-bottom: 30px;
  color: #fff;
  font-family: Poppins;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 42px;
}

.card-content-card-3 h2 {
  color: #131313;
  font-family: Poppins;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 42px;
  padding-bottom: 20px;
}

.feature-list {
  list-style: none;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  color: #e0e0e0;
  line-height: 1.6;

  color: #b6bab9;

  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 171.429% */
}

.feature-icon {
  width: 24px;
  height: 24px;
  /* background: #4fd1c5; */
  /* border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-icon::after {
  color: white;
  font-size: 14px;
  font-weight: bold;
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("assets/dot.png");
  /* your SVG path */
  background-repeat: no-repeat;
  background-size: contain;
}

.cta-button {
  display: inline-block;
  padding: 16px 32px !important;
  background: #3a9f91;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  color: #fff;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 21px;
}

.cta-button:hover {
  background: #45b8ac;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(79, 209, 197, 0.3);
}

.end-spacer {
  height: 50vh;
  background: linear-gradient(to bottom, #ffffff, #f5f5f5);
}

@media (min-width: 1025px) {
  .cards-container {
    --stack-entry-scale: 1.08;
    min-height: 300vh;
  }

  .card-wrapper {
    top: 50px;
    height: calc(100vh - 100px);
    padding: 0 50px;
    align-items: stretch;
  }

  .card-wrapper .product-card {
    height: 100%;
    transform: translateY(120%) scaleX(var(--stack-entry-scale, 1.02));
    transition: transform 1.1s cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  .card-wrapper:first-child .product-card,
  .card-wrapper.stack-active .product-card,
  .card-wrapper.stack-previous .product-card {
    transform: translateY(0) scaleX(1);
  }

  .card-wrapper.stack-exit-down .product-card {
    transform: translateY(120%) scaleX(var(--stack-entry-scale, 1.02));
  }

  .card-wrapper.stack-active {
    z-index: 3;
  }

  .card-wrapper.stack-previous {
    z-index: 2;
  }

  .card-wrapper.stack-exit-down {
    z-index: 4;
  }

  /* Keep only the active card CTA visible during stack transitions */
  .card-wrapper:not(.stack-active) .cta-button {
    opacity: 0;
    pointer-events: none;
  }

  .card-wrapper.stack-active .cta-button {
    opacity: 1;
    pointer-events: auto;
  }

}

/* Extra-large desktops: improve readability on 2000px+ screens */
@media (min-width: 2000px) {

  .card-content h2,
  .card-content-card-3 h2 {
    font-size: 36px;
    line-height: 46px;
  }

  .feature-item {
    font-size: 18px;
    line-height: 30px;
  }

  .feature-icon {
    width: 28px;
    height: 28px;
    margin-top: 4px;
  }

  .feature-icon::after {
    width: 28px;
    height: 28px;
    background-size: contain;
  }

  .cta-button {
    font-size: 18px;
    padding: 18px 36px !important;
  }
}

/* Tablet and Mobile Styles */
@media (max-width: 1024px) {
  .product-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 30px;
    border-radius: unset !important;
  }



  .card-content,
  .card-content-card-3 {
    order: 1;
  }

  .card-image {
    order: 2;
  }

  /* Mobile/tablet order for all cards: heading -> image -> bullets -> CTA */
  .product-card.card-1,
  .product-card.card-2,
  .product-card.card-3 {
    display: flex;
    flex-direction: column;
  }

  /* Card 3 has desktop-specific `padding-bottom: 0`; restore bottom space on tablet/mobile */
  .product-card.card-3 {
    padding-bottom: 40px;
  }

  .product-card.card-1 .card-content,
  .product-card.card-2 .card-content,
  .product-card.card-3 .card-content-card-3 {
    display: contents;
  }

  .product-card.card-1 .card-content h2,
  .product-card.card-2 .card-content h2,
  .product-card.card-3 .card-content-card-3 h2 {
    order: 1;
  }

  .product-card.card-1 .card-image,
  .product-card.card-2 .card-image,
  .product-card.card-3 .card-image {
    order: 2;
  }

  .product-card.card-1 .card-content .feature-list,
  .product-card.card-2 .card-content .feature-list,
  .product-card.card-3 .card-content-card-3 .feature-list {
    order: 3;
  }

  .product-card.card-1 .card-content .cta-button,
  .product-card.card-2 .card-content .cta-button,
  .product-card.card-3 .card-content-card-3 .cta-button {
    order: 4;
  }

  .mobile-screens {
    gap: 15px;
  }


  .section-header h1,
  .section-header h2 {
    opacity: 0;
    line-height: 0;
  }

  .card-wrapper {
    padding: unset;
  }
}



/* Mobile + tablet-specific card animations */
@media (max-width: 1024px) {

  .cards-container {
    min-height: 300vh;
    min-height: 300svh;
    /* keep the stack runway */
  }

  .card-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    min-height: 100svh;
    margin-bottom: 0;
    /* optional, avoids weird extra gaps */
    padding: 0;
    /* full-bleed on mobile (no left/right/bottom gaps) */
    align-items: stretch;
    justify-content: stretch;
  }

  /* Avoid extra gap before the next section after the last ecosystem card */
  .cards-container .card-wrapper:last-child {
    margin-bottom: 16px;
  }


  .card-content-card-3 h2 {

    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;

  }

  .product-card {
    background: #fff;
    border-radius: 0;
    padding: 40px;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform;
    width: 100vw;
    max-width: 100%;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    min-height: 100svh;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  /* Card 3 includes desktop-only sizing and inline styles; normalize for mobile stacking */
  .product-card.card-3 {
    min-height: unset;
  }

  .product-card.card-3 .card-image {
    height: auto !important;
    /* override inline height: 100% */
    align-items: center !important;
    /* override inline align-items */
  }

  .product-card.card-3 .card-image img {
    max-width: 100%;
  }


  .eclipse {
    width: 45% !important;
    height: 29% !important;
  }

  /* Additional CSS for Book Flip Animation */
  /* Add these styles to your existing CSS */



  /* Curl shadow effect - appears during flip */


}

/* Smooth transitions for manual flip (optional click interaction) */
.product-card.manual-flip {
  transition: transform 1.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Ensure parent container has perspective */


/* Optimize for mobile performance */


.card-content h2 {
  font-size: clamp(22px, 5.5vw, 28px);
  margin-bottom: 24px;
  line-height: 1.3;
}

.feature-item {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 24px;
}

.feature-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.feature-icon::after {
  font-size: 13px;
}

.feature-list {
  margin-bottom: 32px;
}

.cta-button {
  padding: 16px 32px;
  font-size: 15px;
  /* width: 100%; */
  text-align: center;
}

.mobile-screens {
  gap: 12px;
  padding: 0 10px;
}

.mobile-screens img {
  border-radius: 16px;
}

.card-image img {
  border-radius: 12px;
}


/* Small mobile optimization */


@media (max-width: 1024px) {
  .product-card.card-3 {
    grid-template-columns: unset;
  }
}


@media (max-width: 480px) {

  .product-card.card-3 {

    grid-template-columns: unset;
    padding: 17px;
  }

  /* .section-header h1 {
    font-size: 24px;
    padding-bottom: 25px;
  } */

  .product-card {
    /* padding: 28px 20px; */
    /* border-radius: 20px; */
    padding: 17px;
  }

  .card-content h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .feature-item {
    font-size: 12px;
    gap: 12px;
    line-height: 18px;
  }

  .feature-icon {
    width: 20px;
    height: 20px;
    margin-top: 1px;
  }

  .spacer,
  .end-spacer {
    height: 30vh;
  }

  .cta-button {
    padding: 14px 24px;
    font-size: 14px;
    width: 100%;
  }
}

/* Galaxy S25 class viewport (~360x780 CSS px): keep card stack alignment stable */
@media (max-width: 390px) and (min-height: 760px) and (max-height: 900px) {
  .card-wrapper .product-card {
    transform: none !important;
  }

  .product-card {
    padding: 16px;
    gap: 14px;
  }

  .card-image img {
    max-width: 88%;
  }

  .product-card.card-3 .card-image img {
    max-width: 94% !important;
    width: 94% !important;
  }

  .feature-item,
  .feature-item span {
    font-size: 12px;
    line-height: 18px;
  }
}

/* iPhone SE and other short mobile viewports: keep card content inside bounds */
@media (max-width: 375px), (max-height: 700px) and (max-width: 480px) {
  .product-card {
    padding: 14px;
    gap: 14px;
    min-height: 100svh;
    height: 100svh;
    min-height: 100dvh;
    height: 100dvh;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .product-card.card-3 {
    padding: 14px;
  }

  .product-card.card-3 .card-image img {
    max-width: 90% !important;
    width: 90% !important;
  }

  .card-content h2,
  .card-content-card-3 h2 {
    font-size: 18px;
    line-height: 26px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .feature-list {
    margin-bottom: 14px;
  }

  .feature-item {
    font-size: 12px;
    line-height: 17px;
    margin-bottom: 6px;
    gap: 8px;
  }

  .feature-icon,
  .feature-icon::after {
    width: 18px;
    height: 18px;
  }
}

/* 360 degree  */


.integration-section {
  /* padding:px 0px; */
  background: #ffffff;
  position: relative;
  /* padding-bottom: 110px; */
  padding-top: 88px;
}

.integration-container {
  /* max-width: 1400px; */
  margin: 0 auto;
}

.integration-heading {
  color: #131313;
  text-align: left;
  font-family: Poppins;
  margin-bottom: 28px;
  padding-left: 50px;
  font-family: Poppins;
  font-size: 58px;
  font-style: normal;
  font-weight: 500;
  line-height: 64px;
}

@media (min-width: 1025px) {
  .integration-section {
    padding-top: 64px;
  }

  .integration-heading {
    margin-bottom: 18px;
  }
}

/* Desktop View */
.desktop-integration {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  /* max-width: 1200px; */
  margin: 0 auto;
}

.mobile-integration {
  display: none;
}

/* Circle Layout */
.circle-layout {
  position: relative;
  width: 100%;
  /* max-width: 1200px; */
  height: 333px;
  flex-shrink: 0;
  margin: 0 auto;
}

/* Canvas for arc */
.arc-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Center Node (ERP) */
.center-node {
  position: absolute;
  top: -1%;
  left: 50%;
  transform: translate(-50%, 0);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.center-node .node-circle {
  width: 130px;
  height: 130px;
  background: #eef5f4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06); */
  transition: all 0.3s ease;
}

/* ===== NODE CIRCLE (already done) ===== */
.center-node:hover .node-circle,
.outer-node:hover .node-circle,
.center-node.active .node-circle,
.outer-node.active .node-circle {
  background: #3a9f91;
  transform: scale(1.1);
}

/* ===== LABEL COLOR ===== */
.center-node:hover .node-label,
.outer-node:hover .node-label,
.center-node.active .node-label,
.outer-node.active .node-label {
  color: #ffffff;
}

/* ===== ICON COLOR (invert image) ===== */
.center-node:hover img,
.outer-node:hover img,
.center-node.active img,
.outer-node.active img {
  filter: brightness(0) invert(1);
}


/* Outer Nodes */
.outer-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
}

.outer-node .node-circle {
  width: 130px;
  height: 130px;
  background: #eef5f4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  transition: all 0.3s ease;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06); */
}

.outer-node:hover .node-circle {
  background: #3a9f91;
  /* box-shadow: 0 8px 24px rgba(58, 159, 145, 0.3); */
  transform: scale(1.1);
  stroke: #9fdfd3;
}

.outer-node:hover .node-label {
  color: white;
}

.outer-node:hover img {
  filter: brightness(0) invert(1);
}

.node-circle img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.center-node .node-circle img {
  width: 36px;
  height: 36px;
}

.node-label {
  color: #00283A;
  font-family: Poppins;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
  max-width: 100px;
}

.center-node .node-label {
  font-size: 14px;
  font-weight: 500;
  color: #00283A;
}

/* Node Positions */
/* Left side */
.node-1 {
  top: 49%;
  left: 2%;
}

.node-2 {
  top: 22%;
  left: 15%;
}

.node-3 {
  top: 5%;
  left: 30%;
}

/* Right side (mirror exactly) */
.node-4 {
  top: 5%;
  right: 30%;
}

.node-5 {
  top: 22%;
  right: 15%;
}

.node-6 {
  top: 49%;
  right: 2%;
}


/* Content Display */
.content-display {
  width: 100%;
  max-width: 1000px;
  position: relative;
  min-height: 100px;
  text-align: center;
  padding-top: 0;
}

.content-box {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.content-box.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.content-box h3 {
  color: #131313;
  font-family: Poppins;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

.content-box p {
  color: #5a5a5a;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  max-width: 900px;
  margin: 0 auto;
  min-height: 115px;
}

@media (min-width: 1025px) {
  .desktop-integration {
    gap: 8px;
  }

  .content-box {
    top: -48px;
  }
}

/* Mobile Accordion */
.accordion-wrapper {
  max-width: 100%;
}

.accordion-item {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  /* border-radius: 8px; */
  /* margin-bottom: 12px; */
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:last-child {
  margin-bottom: 0;
  border-bottom: unset;
}

.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s ease;
}

.accordion-icon {
  width: 48px;
  height: 48px;
  background: #eff3f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.accordion-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.accordion-title {
  flex: 1;
  color: #131313;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 500;
}

.accordion-arrow {
  color: #999999;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.accordion-item.active .accordion-arrow {
  transform: rotate(180deg);
  /* color: #3A9F91; */
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
}

.accordion-item.active .accordion-content {
  max-height: 600px;
  padding-bottom: 20px;
}

.accordion-content p {
  margin: 0;
  color: rgba(19, 19, 19, 0.7);
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

/* Tablet View */
@media (max-width: 1024px) {
  .integration-heading {
    font-size: 40px;
  }

  .desktop-integration {
    display: none;
  }

  .mobile-integration {
    display: block;
  }
}

@media (max-width: 1024px) {
  .integration-section {
    /* padding: 60px 20px; */
    padding-bottom: 98px;

  }
}

/* Mobile View */
@media (max-width: 768px) {
  .integration-section {
    /* padding: 60px 20px; */
    padding-top: 48px;
    padding-bottom: 110px;

  }

  .integration-heading {
    font-size: 24px;
    margin-bottom: 40px;
    text-align: center;
    line-height: 32px;
    font-weight: 500;
    padding-left: unset;

  }

  .desktop-integration {
    display: none;
  }

  .mobile-integration {
    display: block;
  }


  .accordion-btn {
    padding: 18px 20px;
  }

  .accordion-icon {
    width: 44px;
    height: 44px;
  }

  .accordion-title {
    font-size: 15px;
  }

  .accordion-item.active .accordion-content {
    padding-bottom: 20px;
  }

  .accordion-content p {
    font-size: 13px;
    line-height: 22px;
  }
}

@media (max-width: 1024px) {
  .footer-cta h2 {
    letter-spacing: -1.01px !important;
  }
}

@media (max-width: 480px) {
  .integration-section {
    padding: 48px 16px 60px;
  }

  .integration-heading {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .accordion-btn {
    padding: 16px;
    gap: 12px;
  }

  .accordion-icon {
    width: 40px;
    height: 40px;
  }

  .accordion-icon img {
    width: 20px;
    height: 20px;
  }

  .accordion-title {
    font-size: 14px;
  }

  .accordion-item.active .accordion-content {
    padding-bottom: 20px;
  }

  .accordion-content p {
    font-size: 12px;
    line-height: 20px;
  }
}

/* global foot   */
.global-footprints-section {
  font-family: "Poppins", sans-serif;
  background: #1e2936;
  color: #fff;
  --global-footprints-side-padding: 4%;
  padding: 4rem var(--global-footprints-side-padding);
  position: relative;
}

/* Desktop Layout */
.footprints-desktop {
  /* max-width: 1400px; */
  margin: 0 auto;
}

.footprints-top-row {
  display: flex;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}


/* .footprints-content {
  max-width: 550px;
} */

.footprints-title {
  font-size: 36px;
  margin-bottom: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.footprints-text {
  font-size: 16px;
  line-height: 1.7;
  color: #c7d0dd;
  margin-bottom: 1rem;
  font-weight: 400;
}

/* Stats Grid Below */
.footprints-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.footprints-stat-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 15px 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.footprints-stat-box:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 136, 0.3);
}

.footprints-stat-number {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: #ffffff;
  display: block;
  margin-bottom: 0.5rem;
}

.footprints-stat-label {
  font-size: 18px;
  color: #fff;
  font-weight: 300;
  font-family: Poppins;
}

/* Map Container */
.footprints-map-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footprints-map-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}

.footprints-map-image {
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
  filter: brightness(0.95) contrast(1.1);
}

/* Mobile Flip Container */
.footprints-mobile {
  display: none;
}

.footprints-title-mobile {
  text-align: center;
  padding: 0 15px;
  margin-bottom: 2rem;

  color: #FFf;

  /* font/heading/large/Display lg/Medium */
  font-family: Poppins;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 60px;
  /* 125% */
  letter-spacing: -0.01px;
}

.footprints-flip-card {
  position: relative;
  width: 100%;
  min-height: 450px;
  perspective: 1000px;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.footprints-flip-card.flipped {
  transform: rotateY(180deg);
}

.footprints-flip-face {
  position: absolute;
  width: 100%;
  min-height: 450px;
  backface-visibility: hidden;
  overflow: visible;
}

.footprints-flip-front {
  background: transparent;
  display: flex;
  flex-direction: column;
}

.footprints-flip-back {
  background: transparent;
  transform: rotateY(180deg);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footprints-mobile-map {
  position: relative;
  width: 100%;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  background: #1e2936;
  border-radius: 12px;
}

.footprints-mobile-map .map-mobile {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
}

.footprints-stats-mobile {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.footprints-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.footprints-stat-full {
  width: 100%;
  justify-content: center;
}

/* Flip Button - Centered on Right Side */
.footprints-flip-btn {
  position: absolute;
  top: 50%;
  right: calc((100vw - 100%) / -2);
  transform: translateY(-50%);
  width: 22px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
}

.footprints-flip-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.footprints-flip-btn svg {
  transition: transform 0.3s ease;
  width: 22px;
  height: 40px;
  display: block;
}

.footprints-flip-card.flipped .footprints-flip-btn svg {
  transform: rotate(180deg);
}

@keyframes footprintsPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(39, 164, 104, 0.5);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(39, 164, 104, 0);
  }
}




/* Responsive */
@media (min-width: 576px) and (max-width: 1024px) {
  .footprints-top-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .footprints-content {
    max-width: unset !important;
  }

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

@media (min-width: 769px) {
  .footprints-desktop {
    display: block;
  }

  .footprints-mobile {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .global-footprints-section {
    /* padding: 2rem 1rem !important; */
    padding-bottom: 75px;
    padding-top: 12px;
  }

  .footprints-desktop {
    display: none;
  }

  .footprints-mobile {
    display: block;
  }

  .footprints-stat-box {
    padding: 5px 10px;
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: center;
  }

  .footprints-stat-number {
    font-size: 2.5rem;
    color: #ffffff;
  }

  .footprints-stat-label {
    font-size: 14px;
    color: #fff;
  }

  .footprints-mobile-map .footprints-map-image {
    max-height: 280px;
  }

  /* Keep the flip icon flush with the viewport right edge (cancel section side padding) */
  .footprints-flip-btn {
    right: calc((100vw - 100%) / -2);
  }
}

/* iPad Mini specific adjustments */
@media (min-width: 481px) and (max-width: 768px) {
  .footprints-title-mobile {
    font-size: 36px;
    /* Reduced from 48px */
    padding-top: 20px;
    /* Add padding on top */
    line-height: 48px;
    /* Adjust line height proportionally */
  }
}

@media (max-width: 480px) {

  .footprints-flip-card,
  .footprints-flip-face {
    min-height: 230px;
  }

  .footprints-mobile-map {
    height: 180px;
  }

  .footprints-stat-number {
    font-size: 2.2rem;
  }

  .footprints-stat-label {
    font-size: 13px;
  }

  .footprints-title-mobile {
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 8px;
  }
}

/* testimonials  */
:root {
  --primary-dark: #131313;
  --accent-coral: #e76923;
  --text-primary: #2d3748;
  --text-secondary: #4a5568;
  --card-bg: #ffffff;
  --border-subtle: #e2e8f0;
  --testimonial-duration: 40s;
  /* default desktop marquee speed */
}



.testimonials-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 50px;
  padding-bottom: clamp(28px, 4vw, 80px);
  margin-bottom: clamp(32px, 5vw, 90px);
}

@media (min-width: 769px) and (max-width: 834px) {
  .testimonials-section {
    padding-bottom: 22px;
    margin-bottom: 18px;
  }
}

.section-title {
  font-family: "Poppins";
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 500;
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
  padding-top: 70px;
}

/* ========== DESKTOP CAROUSEL ========== */
.carousel-container {
  position: relative;
  overflow: hidden;
  padding: 0 0 12px;
  border-radius: 12px;
  width: 100%;
}

/* Tablet fix: keep testimonial card borders fully visible on iPad sizes */
@media (min-width: 768px) and (max-width: 1024px) {
  .carousel-container {
    padding-bottom: 8px;
  }
}

/* Large desktops: add a bit more breathing room for card borders */
@media (min-width: 1200px) {
  .carousel-container {
    padding-bottom: 1px;
  }
}

.carousel-container::before {
  left: 0;
  background: linear-gradient(to right,
      rgba(168, 165, 165, 0.45),
      rgba(205, 196, 196, 0));
}

.carousel-container::after {
  right: 0;
  background: linear-gradient(to left,
      rgba(210, 205, 205, 0.45),
      rgba(224, 219, 219, 0));
}

.carousel-track {
  display: flex;
  gap: 40px;
  --loop-width: 0px;
  animation: scroll var(--testimonial-duration, 40s) linear infinite;
  will-change: transform;
  width: max-content;
  -webkit-user-select: none;
  user-select: none;
}

/* Faster scroll on large/ultra-wide screens; tweak these values as needed */
@media (min-width: 1440px) {
  .carousel-track {
    --testimonial-duration: 18s;
  }
}

@media (min-width: 1920px) {
  .carousel-track {
    --testimonial-duration: 18s;
  }
}

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

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

  to {
    transform: translateX(calc(-1 * var(--loop-width)));
  }
}

.carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.testimonial-card {
  flex: 0 0 400px;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.9) 64.03%,
      rgba(157, 189, 168, 0.9) 79.33%,
      rgba(52, 104, 70, 0.9) 104.67%);
  border-radius: 12px;
  padding: 40px 32px 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1.5px solid #00283a;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #4ac5b5 0%, #3a9f91 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}

.star {
  color: var(--accent-coral);
  font-size: 18px;
}

.testimonial-text {
  margin-bottom: 32px;
  flex-grow: 1;
  color: #1a2d47;
  font-family: Poppins;
  font-size: 17px;
  font-style: italic;
  font-weight: 500;
  line-height: 28px;
}

.client-info {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin-top: auto;
}

.client-details {
  flex: 1;
}

.client-name {
  margin-bottom: 8px;
  color: rgba(19, 19, 19, 0.7);
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.08px;
}

.company-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.company-logo {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-logo img {
  width: 60px;
  height: 100%;
}

.company-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 35px;
}

.client-position {
  color: rgba(19, 19, 19, 0.7);
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.company-name {
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.client-photo {
  width: 130px;
  height: auto;
  flex-shrink: 0;
  position: absolute;
  right: 0;
  bottom: 0px;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  margin-bottom: clamp(48px, 5vw, 96px);
}

@media (max-width: 1024px) {
  .carousel-controls {
    margin-bottom: clamp(24px, 3.5vw, 52px);
  }

  .company-details {
    padding-left: 16px;
  }
}

@media (max-width: 834px) {
  .carousel-controls {
    margin-bottom: clamp(8px, 2vh, 20px);
  }
}

@media (min-width: 769px) and (max-width: 834px) {
  .carousel-controls {
    margin-bottom: clamp(32px, 4.5vh, 56px);
  }
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #2e4f60;
  background: var(--card-bg);
  color: var(--primary-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 20px;
}

.carousel-btn:hover {
  background: #00283a;
  color: white;
}

.carousel-btn:active {
  transform: scale(0.95);
}

/* ========== MOBILE FLIP CARDS ========== */
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .carousel-container {
    padding: 0;
    max-width: 350px;
    margin: 0 auto;
    overflow: visible;
  }

  .carousel-track {
    position: relative;
    width: 100%;
    height: 520px;
    gap: 0;
    animation: none;
  }

  .testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    flex: none;
    padding: 12px 24px 24px;
    opacity: 0;
    pointer-events: none;
    /* transform: rotateY(-90deg); */
    transform-origin: center;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55),
      opacity 0.4s ease;
  }

  .testimonial-card.active {
    opacity: 1;
    pointer-events: auto;
    transform: rotateY(0deg);
    z-index: 2;
  }

  .testimonial-card.prev {
    /* transform: rotateY(90deg); */
    opacity: 0;
  }

  .testimonial-card.next {
    /* transform: rotateY(-90deg); */
    opacity: 0;
  }

  .testimonial-text {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
  }

  .client-photo {
    width: 80px;
    height: 100px;
  }

  .carousel-controls {
    margin-top: 40px;
  }

  .carousel-btn {
    width: 35.556px;
    height: 35.556px;
  }
}

@media (max-width: 767px) {
  .testimonials-section {
    padding: 0 20px;
  }

  .carousel-container {
    max-width: 100%;
  }

  .testimonial-text {
    min-height: 200px;
  }

  .carousel-track {
    height: 413px;
  }
}

/* Prevent accidental text/image selection on testimonials */
.testimonial-card,
.testimonial-card * {
  -webkit-user-select: none;
  user-select: none;
}

@media (max-width: 768px) {
  .footer-cta p {
    font-size: 12px !important;
    line-height: 18px !important;
  }
}

/* footer   */

.site-footer {
  background: #00283a;
  color: #d6e3e7;
  padding-top: 100px;
  font-family: Inter, sans-serif;
  /* position: relative; */
}

.desktop-margin {
  margin-top: -14%;
  margin-inline: 2%;
}

/* Home page only: add extra 4K breathing room between CTA card and footer logo block */
@media (min-width: 2560px) {
  body.home-page .desktop-margin {
    margin-top: -4%;
  }

  body.home-page .footer-logo-section {
    margin-top: 0;
  }
}

@media (min-width: 3400px) {
  body.home-page .desktop-margin {
    margin-top: -5%;
  }
}

/* @media  (max-width:1700px){
  .desktop-margin {
  margin-top: -15% !important;
}
} */

/* CTA CARD */
.footer-cta {
  max-width: 86%;
  margin: 0 auto;
  background: #e8ebea;
  border-radius: 24px;
  text-align: center;
  padding: 64px 32px;
  color: #062a38;
  transform: translateY(-94%);
  position: relative;
  overflow: hidden;
  /* ✅ add this */
}

.footer-cta>* {
  position: relative;
  z-index: 1;
}

.footer-cta h2 {
  color: #00283a;
  text-align: center;
  font-family: Poppins;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 60px;
  /* 125% */
  letter-spacing: -0.01px;
  position: relative;
  z-index: 1;
}

.footer-cta p {
  color: rgba(19, 19, 19, 0.7);
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  padding-top: 30px;
}

.cta-btn {
  padding: 14px 28px !important;
  cursor: pointer;
  border-radius: 6px;
  background: #3a9f91;

  color: #fff;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
}

.footer-right-ds {
  position: absolute;
  right: 0;
  bottom: 32px;
}

.footer-left-curve {
  position: absolute;
  left: -24px;
  top: 0;

  width: 415px;
  height: 338px;

  display: block;
  object-fit: contain;

  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;

  z-index: 0;
}


/* FOOTER CONTENT */

/* LINKS */
/* Logo Section - Above footer content */
.footer-logo-section {
  /* max-width: 86%; */
  margin: 0 auto;
  padding: 0 40px;
  margin-bottom: 32px;
}

.footer-main-logo {
  width: 140px;
  cursor: pointer;
}

/* Footer Content Grid */
.footer-content {
  /* max-width: 86%; */
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding: 0 50px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tagline {
  margin-bottom: 0px;
  color: #ffffff;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}

.footer-brand address {
  color: #c9c9c9;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.21);
}

.social-icons a:hover {
  opacity: 0.8;
}

.social-icons img {
  width: 20px;
  height: 20px;
}

/* LINKS */
.footer-links h4,
.footer-contact h4 {
  margin-bottom: 20px;
  color: #fff;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}

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

.footer-links li {
  margin-bottom: 7px;
  cursor: pointer;
  color: #c9c9c9;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  transition: color 0.3s ease;
}


.footer-contact svg{
  width: 18px;
  height: 18px;
}

.footer-links li:hover {
  color: #fff;
}

/* CONTACT */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #c9c9c9;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item:hover {
  color: #fff;
}

.working-hours:hover {
 color: #c9c9c9 ;
}

.contact-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* BOTTOM BAR */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 64px;
  margin-inline: 50px;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  color: #c9c9c9;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  /* 175% */
}

.footer-bottom-single {
  justify-content: center;
}

.desktop-break {
  display: inline;
}

.contact-us {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  color: #c9c9c9;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

@media (min-width: 1025px) {
  .site-footer.footer-no-cta {
    padding-top: 56px;
  }
}

@media (max-width: 400px) {
  .desktop-margin {
    margin-top: -42% !important;
  }

  .site-footer {
    padding-top: 88px;
  }
}

@media (min-width: 401px) and (max-width: 480px) {
  .desktop-margin {
    margin-top: -30% !important;
  }

  .site-footer {
    padding-top: 88px;
  }
}

@media (max-width: 1024px) {
  .desktop-margin {
    margin-top: -30%;
  }
}

@media (max-width: 920px) {

  .footer-content,
  .footer-logo-section {
    padding: 0 20px;

  }

  .desktop-margin {
    margin-top: -38%;
  }

  .footer-bottom {
    margin-inline: 20px;
  }
}


/* MOBILE */
@media (max-width: 768px) {
  .desktop-margin {
    margin-top: -22%;
  }

  .footer-right-ds,
  .footer-left-curve {
    display: none;
  }

  .footer-cta {
    /* margin: 0 38px; */
    padding: 40px 20px;
    transform: translateY(-86%);
  }

  .footer-logo-section {
    margin-top: -78px;
    margin-bottom: 20px;
  }

  .desktop-break {
    display: none;
  }

  .footer-cta h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .footer-content {
    /* grid-template-columns: 1fr; */
    text-align: left;
    gap: 32px;

    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-links {
    grid-column: span 1;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (width: 768px) and (height: 1024px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 24px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-links {
    grid-column: auto;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: row;
    text-align: left;
  }
}

.dummy-section {
  /* Spacer between testimonials and CTA; keep consistent across viewports */
  height: clamp(80px, 12vh, 180px);
  margin-top: 0 !important;
}

@media (max-width: 1200px) {
  .dummy-section {
    height: clamp(130px, 18vh, 240px);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .dummy-section {
    height: clamp(110px, 18vh, 210px);
  }
}

@media (max-width: 834px) {
  .dummy-section {
    height: clamp(60px, 10vh, 140px);
  }
}

@media (min-width: 769px) and (max-width: 834px) {
  .dummy-section {
    height: clamp(120px, 18vh, 220px);
  }
}

@media (min-width: 1025px) {
  .dummy-section {
    height: clamp(70px, 10vh, 150px);
  }
}

@media (max-width: 768px) {
  .dummy-section {
    height: clamp(100px, 18vh, 200px);
  }
}

/* iPad Air portrait (820x1180): keep testimonial arrows clear of footer CTA overlap */
@media (width: 820px) and (height: 1180px) {
  .carousel-controls {
    position: relative;
    z-index: 3;
    margin-bottom: 42px;
  }

  .footer-cta {
    transform: translateY(-80%);
  }
}


/* //contact-us  */

.page-exit {
  animation: pageExitFast 0.28s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  will-change: transform, opacity;
}

@keyframes pageExitFast {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-14px);
  }
}




/* RESET */

/* ===========================
   INTRO GLOBAL CONTROL
=========================== */
body.lock-scroll {
  overflow: hidden;
}

/* Hide everything except hero & navbar during intro */
body.intro-active #pageRoot> :not(.hero) {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

body #pageRoot> :not(.hero) {
  transition: opacity 1s ease, visibility 1s ease;
}

/* Ensure hero is on top during intro */
body.intro-active .hero {
  z-index: 9990;
  /* Keep intro hero above content but below navbar (z-index: 10000) */
}

/* ===========================
   NAVBAR (OVERLAY)
=========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  background: #ffffff;
  z-index: 10000;

  opacity: 0;
  transform: translateY(-16px);
  pointer-events: none;
  visibility: hidden;
  box-shadow: none;

  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease, box-shadow 0.25s ease;
}

.navbar.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

@media (max-width: 1024px) {
  .navbar.show.ecosystem-hidden {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
    visibility: hidden;
  }
}


/* ===========================
   HERO INTRO
=========================== */
.hero {
  position: fixed;
  inset: 0;

  width: 100%;
  height: 100vh;

  /* background: #000; */
  overflow: hidden;
  border-radius: 0;

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

  z-index: 1;

  transition:
    transform 1.6s cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Final Framer-like state */
.hero.final {
  transform: translateY(40px) scale(0.95);
  border-radius: 16px;
  margin-top: 16px;
  height: 90vh;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow-x: hidden;
}

/* Overlay appears only in final hero state */
.hero.final .overlay {
  opacity: 1;
}

.hero.final .scroll-down {
  opacity: 1;
  visibility: visible;
}

/* RIght scroll issue in mobile and tablet fix*/
@media (max-width: 1024px) {
  .hero.final {
    width: 100%;
    margin-left: 0;
    left: 0;
    right: 0;
  }

  /* html,
  body {
    overflow-x: hidden;
  } */
}

/* Video */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */

.overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  opacity: 0;
  pointer-events: none;

  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.15) 40%,
      rgba(0, 0, 0, 0.55) 100%);

  transition: opacity 0.6s ease;
}



/* Hero Content */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;

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

  text-align: center;
  padding: 0 24px;

  opacity: 0;
  transform: translateY(120px);
  visibility: hidden;
  transition: opacity 0.8s ease, transform 0.8s ease, visibility 0.8s ease;
}

.hero.show-content .hero-content {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

/* Home hero CTA should stay at original content position */
.home-hero .hero-content {
  padding: 0 24px;
}

.home-hero {
  --scroll-down-extra-offset: 0px;
}

.home-hero .cta-btn-video {
  margin-top: 28px;
}

.home-hero .scroll-down {
  position: absolute;
  left: 50%;
  top: calc(50% + clamp(156px, 20vh, 220px) + var(--scroll-down-extra-offset));
  transform: translateX(-50%);
  margin-top: 0;
  z-index: 3;
  animation: none;
}

.home-hero .scroll-down .scroll-link {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scrollBounceIcon 0.95s ease-in-out infinite;
}

@keyframes scrollBounceIcon {
  0% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(10px);
  }

  60% {
    transform: translateY(6px);
  }

  100% {
    transform: translateY(0);
  }
}



/* CTA */
.cta-btn-video {
  position: relative;
  margin-top: 28px;
  padding: 12px 30px;
  border-radius: 6px;
  border: none;
  background: transparent;
  color: #131313;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}

/* Base background */
.cta-btn-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: #fff;
  border-radius: inherit;
  z-index: -2;
}

/* Hover fill layer */
.cta-btn-video::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 0%;
  background-color: #297a6f;
  border-radius: inherit;
  transition: width 0.35s ease;
  z-index: -1;
}

/* Hover effects */
.cta-btn-video:hover::before {
  width: 100%;
}

.cta-btn-video:hover {
  background: transparent;
  box-shadow: none;
  border: none;
  outline: none;
  color: #fff;
  /* 🔥 text becomes white */
}





/* ===============================
   MOBILE FIX — NO VIDEO PADDING
=============================== */


@media (max-width: 1024px) {
  .hero.final {

    height: 96vh !important;

  }

  .home-hero {
    --scroll-down-extra-offset: 18px;
  }
}

@media (max-width: 920px) {
  .hero.final {
    transform: none;
    /* ❌ no scale */
    border-radius: 0;
    /* ❌ no rounded corners */
    height: 100vh !important;
    margin-top: unset;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero {
    position: relative;
    /* allow natural flow */
    height: 100vh;
    inset: auto;
  }

  .home-hero .scroll-down {
    top: calc(50% + clamp(168px, 22vh, 224px) + var(--scroll-down-extra-offset));
  }

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


/* $color: #0cf; */

.button {
  text-decoration: none;
  display: inline-block;
  padding: 10px 18px;
  color: #fff;
  font-size: 14px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  z-index: 1;

  &:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #3A9F91;
    /* border-radius: 10rem; */
    z-index: -2;
  }

  &:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #297a6f;
    transition: all .3s;
    /* border-radius: 10rem; */
    z-index: -1;
  }

  &:hover {
    color: #fff;

    &:before {
      width: 100%;
    }
  }
}

/* ---------- MOBILE DRAWER ---------- */
.mobile-drawer {
  position: fixed;
  inset: 0;

  /* FORCE SOLID BACKGROUND */
  background-color: #ffffff !important;
  opacity: 1 !important;

  z-index: 99999;

  padding: 20px;
  display: flex;
  flex-direction: column;

  transform: translateX(100%);
  transition: transform 0.35s ease;

  /* IMPORTANT */
  isolation: isolate;
}

.mobile-drawer.show {
  transform: translateX(0);
}

/* Slower open/close on phones & tablets to increase perceived delay */
@media (max-width: 1024px) {
  .mobile-drawer {
    transition: transform 0.6s ease;
  }
}


.mobile-drawer.show {
  transform: translateX(0);
}

/* Prevent background scroll */
.no-scroll {
  overflow: hidden;
}

/* Header */
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-logo {
  height: 36px;
}

.drawer-close {
  font-size: 22px;
  cursor: pointer;
}

/* Links */
.drawer-links {
  list-style: none;
  padding: 0;
  margin: 32px 0 auto;
}

.drawer-links li {
  padding: 18px 0;
  border-bottom: 1px solid #eee;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #444;
  cursor: pointer;
}

.drawer-links li a {
  display: block;
  flex: 1;
  width: 100%;
  text-decoration: none;
  color: rgba(19, 19, 19, 0.70);

}

/* CTA */
.drawer-cta {
  background: #3da08f;
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
}

/* ---------- RESPONSIVE RULES ---------- */
@media (max-width: 768px) {
  .nav-link-wrap {
    display: none;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    top: 16px;
    right: 18px;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
  }
}

@media (min-width: 1025px) {
  .mobile-drawer {
    display: none;
  }
}

/* 2K+ desktops: enlarge ecosystem card typography for readability */
@media (min-width: 2000px) {

  .card-content h2,
  .card-content-card-3 h2 {
    font-size: 38px;
    line-height: 50px;
  }

  .feature-item,
  .feature-item span {
    font-size: 20px;
    line-height: 32px;
  }

  .feature-icon {
    width: 30px;
    height: 30px;
    margin-top: 4px;
  }

  .feature-icon::after {
    width: 30px;
    height: 30px;
    background-size: contain;
  }

  .cta-button {
    font-size: 18px;
    padding: 18px 36px !important;
  }
}

/* Intro Animation & Navbar Visibility */

/* 4K/ultra-wide tuning for ecosystem cards */
@media (min-width: 2560px) {
  body.home-page .hero.final {
    height: 97vh;
    transform: translateY(20px) scale(0.96);
  }

  .product-card {
    gap: 72px;
    padding: 52px;
  }

  .card-content h2,
  .card-content-card-3 h2 {
    font-size: 46px;
    line-height: 58px;
  }

  .feature-item,
  .feature-item span {
    font-size: 24px;
    line-height: 38px;
  }

  .feature-icon,
  .feature-icon::after {
    width: 34px;
    height: 34px;
  }

  .cta-button {
    font-size: 21px;
    padding: 20px 38px !important;
  }

  /* Card 3 only: increase image presence on large screens */
  .product-card.card-3 {
    grid-template-columns: 1.2fr 1.3fr;
    gap: 60px;
  }

  .product-card.card-3 .card-image {
    overflow: visible;
  }

  .product-card.card-3 .card-image img {
    width: 125% !important;
    max-width: none;
    max-height: none;
    object-fit: contain;
    transform: translateX(-8%) scale(1.1);
    transform-origin: center center;
  }
}

@media (min-width: 3400px) {
  body.home-page .hero.final {
    height: 97vh;
    transform: translateY(18px) scale(0.965);
  }

  .card-content h2,
  .card-content-card-3 h2 {
    font-size: 54px;
    line-height: 66px;
  }

  .feature-item,
  .feature-item span {
    font-size: 28px;
    line-height: 42px;
  }

  .feature-icon,
  .feature-icon::after {
    width: 38px;
    height: 38px;
  }

  .product-card.card-3 .card-image img {
    width: 132% !important;
    transform: translateX(-10%) scale(1.12);
  }
}

body.intro-active .navbar {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

body.intro-active .navbar.show {
  opacity: 1;
  pointer-events: auto;
}

/* iPhone SE and other short screens: stop arrow overlapping CTA */
@media (max-width: 400px) and (max-height: 700px) {
  .home-hero .scroll-down {
    top: calc(50% + 192px + var(--scroll-down-extra-offset));
  }

  /* Keep arrow in the bottom safe zone, not floating over content */
  /* Keep testimonial arrows clear of the footer CTA overlap on short phones */
  .dummy-section {
    height: 17vh !important;
    margin-top: 0 !important;
  }

  .carousel-controls {
    margin-bottom: 28px;
  }
}

/* Small phones (e.g., iPhone SE, Galaxy S24/S25 widths): add extra gap below arrows */
@media (max-width: 400px) {
  .carousel-controls {
    margin-bottom: 70px;
  }
}

@media (min-width: 1040px) {
  .carousel-controls {
    margin-bottom: 50px !important;
  }

  .dummy-section{
    height: 30vh !important;
  }
}


.map-mobile {
  width: -webkit-fill-available;
}
