/* ─── Fonts ─────────────────────────────────────────────────── */
@font-face {
  font-family: 'Nohemi';
  src: url('../fonts/Nohemi-font/Nohemi-Regular-BF6438cc579d934.woff') format('woff');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Nohemi';
  src: url('../fonts/Nohemi-font/Nohemi-Medium-BF6438cc57ddecd.woff') format('woff');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Nohemi';
  src: url('../fonts/Nohemi-font/Nohemi-Bold-BF6438cc577b524.woff') format('woff');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans Georgian';
  src: url('../fonts/NotoSansGeorgian-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-stretch: 75% 125%;
  font-display: swap;
}

/* ─── Header ─────────────────────────────────────────────────── */
.site-header {
    background-color: #FAFDF6;
    border-bottom: 1px solid #E5E5E5;
      box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.16),
                0 1px 3px 0 rgba(0, 0, 0, 0.06);

}

.home .site-header {
    border-bottom: none;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.16),
                0 1px 3px 0 rgba(0, 0, 0, 0.06);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    padding: 20px 0;
    margin: 0 auto;
}

.logo img {
    height: 50px;
    width: auto;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
}

.menu-toggle img {
    width: 24px;
    height: 24px;
}

/* ─── Shimmer Button ─────────────────────────────────────────── */

@property --shimmer {
  syntax: "<angle>";
  inherits: false;
  initial-value: 33deg;
}

:root {
  --glow-hue: 51deg;
  --shadow-hue: 51deg;
  --spring-duration: 1.33s;
  --spring-easing: linear(
    0, 0.002, 0.01 0.9%, 0.038 1.8%, 0.156,
    0.312 5.8%, 0.789 11.1%, 1.015 14.2%,
    1.096, 1.157, 1.199, 1.224 20.3%,
    1.231, 1.231, 1.226, 1.214 24.6%,
    1.176 26.9%, 1.057 32.6%, 1.007 35.5%,
    0.984, 0.968, 0.956, 0.949 42%,
    0.946 44.1%, 0.95 46.5%, 0.998 57.2%,
    1.007, 1.011 63.3%, 1.012 68.3%,
    0.998 84%, 1
  );
}

@keyframes shimmer {
  0%   { --shimmer: 0deg;   }
  100% { --shimmer: 360deg; }
}

@keyframes shine {
  0%   { opacity: 0; }
  15%  { opacity: 1; }
  55%  { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes text {
  0%   { background-position: 100% center;  }
  100% { background-position: -100% center; }
}

.tys-btn-wrap {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  /* margin-bottom: 45px; */
}

.tys-goo-container {
  filter: none;
  display: inline-flex;
  align-items: center;
  position: relative;
  isolation: isolate;
  background: #FFDD32;
  padding: 10px 20px;
  border-radius: 100px;
  box-shadow:
    0 2px 3px 1px hsl(51deg 100% 30% / 30%),
    inset 0 -6px 12px -6px hsl(51deg 100% 50% / 40%);
  scale: 1;
  transition: all var(--spring-duration) var(--spring-easing);
  cursor: pointer;
}

.tys-goo-container:hover {
  transition-duration: calc(var(--spring-duration) * 0.5);
  scale: 1.05;
  box-shadow:
    0 4px 8px -2px hsl(51deg 100% 30% / 40%),
    inset 0 0 0 transparent;
}

/* TEXT */
.tys-btn-pill {
  color: #001D3D;
  background: none;
  border-radius: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Noto Sans Georgian', sans-serif;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

/* SHIMMER LAYER */
.tys-btn-circle {
  --inset: 30px;
  position: absolute;
  inset: calc(var(--inset) * -1);
  border-radius: inherit;
  pointer-events: none;
  background: none;
  width: auto;
  height: auto;
  margin: 0;
  flex-shrink: unset;
  mask-image: conic-gradient(
    from var(--shimmer, 0deg),
    transparent 0%,
    transparent 20%,
    black 36%,
    black 45%,
    transparent 50%,
    transparent 70%,
    black 85%,
    black 95%,
    transparent 100%
  );
  mask-size: cover;
  mix-blend-mode: plus-lighter;
  animation: shimmer 1.5s linear infinite both;
}

.tys-btn-circle img {
  display: none;
}

.tys-btn-circle::before,
.tys-btn-circle::after {
  --inset: 30px;
  transition: all 0.5s ease;
  opacity: 0;
  content: "";
  border-radius: inherit;
  position: absolute;
  inset: var(--inset);
  pointer-events: none;
}

.tys-btn-circle::before {
  mix-blend-mode: color;
  box-shadow:
    0 0 calc(var(--inset) * 0.1)  2px hsl(51deg 100% 95%),
    0 0 calc(var(--inset) * 0.18) 4px hsl(51deg 100% 80%),
    0 0 calc(var(--inset) * 0.33) 4px hsl(51deg 100% 70%),
    0 0 calc(var(--inset) * 0.66) 5px hsl(51deg 100% 60%);
  z-index: -1;
}

.tys-btn-circle::after {
  mix-blend-mode: overlay;
  box-shadow:
    inset 0 0 0 1px hsl(51deg 100% 95%),
    inset 0 0 2px 1px hsl(51deg 100% 85%),
    inset 0 0 5px 2px hsl(51deg 100% 75%);
  z-index: 2;
}

.tys-goo-container:hover .tys-btn-circle::before,
.tys-goo-container:hover .tys-btn-circle::after {
  opacity: 1;
  animation: shine 1.2s ease-in 1 forwards;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .tys-btn-pill {
    font-size: 14px;
  }
  .tys-goo-container {
    padding: 8px 16px;
  }
}
/* ─── Nav Overlay ────────────────────────────────────────────── */
.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    visibility: hidden;
    pointer-events: none;
}

.nav-overlay.is-open {
    visibility: visible;
    pointer-events: all;
}

.nav-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nav-overlay.is-open::before {
    opacity: 1;
}

.nav-overlay-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to right, #FFDD32 200px, #FAFDF6 200px);
    display: flex;
    align-items: flex-start;
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.nav-overlay-inner::-webkit-scrollbar {
    display: none;
}

.nav-overlay.is-open .nav-overlay-inner {
    transform: translateX(0);
}

.nav-stripe {
    width: 200px;
    flex-shrink: 0;
}

.nav-close {
    position: fixed;
    top: 18px;
    right: 20px;
    background: none;
    border: none;
    font-size: 22px;
    color: #1a1a2e;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    transition: opacity 0.2s;
    z-index: 10000;
}

.nav-close:hover {
    opacity: 0.5;
}

.nav-menu {
    padding: 52px 0 60px 40px;
    width: 20%;
    flex-shrink: 0;
}

.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.nav-menu > ul > li {
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateX(-16px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    width: 100%;
}

.nav-menu > ul > li > a {
    display: block;
    padding: 30px 0 30px 16px;
    font-family: 'Nohemi', sans-serif;
    font-weight: 400;
    font-size: 32px;
    color: #1a1a2e;
    text-decoration: none;
    flex: 1;
    min-width: unset;
    max-width: unset;
    position: relative;
    transition: opacity 0.2s, padding-left 0.3s ease;
}

/* Yellow bar */
.nav-menu > ul > li > a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 0%;
    background: #FFDD32;
    transition: height 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-menu > ul > li > a:hover::before,
.nav-menu > ul > li.current-menu-item > a::before {
    height: 50%;
}

.nav-menu > ul > li > a:hover {
    padding-left: 20px;
}

.submenu-toggle {
    background: none;
    border: none;
    font-size: 22px;
    color: #1a1a2e;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.has-submenu.is-expanded .submenu-toggle {
    transform: rotate(45deg);
}

.submenu {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding-left: 0;
}

.has-submenu.is-expanded .submenu {
    max-height: 300px;
}

.submenu li a {
    display: block;
    padding: 10px 0 10px 16px;
    font-family: 'Nohemi', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #444;
    text-decoration: none;
    border-bottom: 1px solid #efefef;
    transition: color 0.2s;
}

.submenu li:last-child a {
    border-bottom: none;
}

.submenu li a:hover {
    color: #000;
}

.nav-socials {
    position: fixed;
    bottom: 40px;
    right: 36px;
    display: flex;
    gap: 20px;
    align-items: center;
    z-index: 10001;
}

.nav-socials a {
    color: #1a1a2e;
    display: flex;
    align-items: center;
    transition: opacity 0.2s;
}

.nav-socials a:hover {
    opacity: 0.5;
}

.nav-socials a img {
    width: 35px;
    height: 35px;
}

.nav-close img {
    width: 20px;
    height: 20px;
}

/* Staggered link animation */
.nav-overlay.is-open .nav-menu > ul > li:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.15s; }
.nav-overlay.is-open .nav-menu > ul > li:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.20s; }
.nav-overlay.is-open .nav-menu > ul > li:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.25s; }
.nav-overlay.is-open .nav-menu > ul > li:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.30s; }
.nav-overlay.is-open .nav-menu > ul > li:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.35s; }
.nav-overlay.is-open .nav-menu > ul > li:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.40s; }
.nav-overlay.is-open .nav-menu > ul > li:nth-child(7) { opacity: 1; transform: none; transition-delay: 0.45s; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
    .tys-btn-pill {
        font-size: 14px;
        padding: 10px 18px;
    }
    .tys-btn-circle {
        width: 38px;
        height: 38px;
    }
}
/* ========================= */
/* MOBILE HEADER - FIXED */
/* ========================= */
@media (max-width: 768px) {

    .site-header {
        background: #ffffff;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .header-container {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 0px 20px; /* 🔥 increased padding */
    }

    .logo img {
        max-height: 42px; /* slightly bigger like design */
        width: auto;
    }

    /* Hide everything except logo */
    .header-right,
    .menu-toggle,
    .tys-goo-btn {
        display: none !important;
    }

    /* 🔥 IMPORTANT: prevent content going behind header */
    
}

/* CONTAINER */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* HERO SECTION */
.hero-section {
  /* padding: 80px 0; */
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT CONTENT */
.hero-content {
  flex: 1;
  max-width: 550px;
}

/* RATINGS */
.hero-ratings {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}
/* CARD */
.rating-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #0f2a44;
  padding: 28px 24px 18px;
  border-radius: 18px;
  background: #ffffff;
  min-width: 160px;
}

/* FLOATING BADGE */
.rating-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  /* background: #ffffff; */
  padding: 4px 12px;
  font-family: 'Nohemi', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #0f2a44;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* LOGO */
.rating-box img {
  height: 28px;
  width: auto;
}
/* CARD */
.rating-box {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #e2e8f0;
  padding: 12px 18px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
  cursor: pointer;
}

/* HOVER EFFECT */
.rating-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* TEXT */
.rating-score {
  font-family: 'Nohemi', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #0f2a44;
  letter-spacing: -0.2px;
}

/* LOGO */

/* RIGHT IMAGE */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

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

/* RESPONSIVE */
@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }

  .hero-content h1 {
    font-size: 44px;
  }

  .hero-wrapper {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .hero-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 40px;
  }

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

  .hero-image {
    justify-content: center;
    width: 100%;
  }

  .hero-ratings {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .hero-section {
    padding: 60px 0;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .hero-ratings {
    /* flex-direction: column; */
    align-items: center;
    gap: 12px;
  }

  .rating-box {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

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

  .hero-section {
    padding: 40px 0;
  }

  .rating-box {
    padding: 10px 16px;
    width: 45px;
  }
.hero-content h1
  .rating-box span {
    font-size: 14px;
  }

  .rating-box img {
    height: 18px;
  }
}
/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {

  .hero-content h1 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 16px;
  }

}

/* CONTAINER */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

/* HERO SECTION */
.hero-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT CONTENT */
.hero-content {
  flex: 1;
  max-width: 550px;
}

.hero-content h1 {
  font-size: 34px;
  font-weight: 500;
  line-height: 1.2;
  color: #0f2a44;
  margin-bottom: 20px;
  font-family: 'Nohemi', sans-serif;
}

.hero-content p {
  font-size: 17px;
  color: #0f2a44;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* RATINGS */
.hero-ratings {
  display: flex;
  gap: 16px;
  margin-top: 100px;
}

.rating-box {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #d6dde5;
  padding: 12px 20px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}

.rating-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.rating-badge {
  font-size: 15px;
  font-weight: 400;
  color: #0f2a44;
  background: white;
}

.rating-box img {
  height: 22px;
  width: auto;
}

/* RIGHT IMAGE */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

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

/* ── TRUSTED SECTION ── */
.trusted-text{
  font-family: 'Nohemi', sans-serif;
  font-weight: 500;
}
.trusted-section {
  background: #FAFDF6;
  overflow: hidden;
}

/* ── WRAPPER ── */
.trusted-wrapper {
  display: flex;
  align-items: center;
  gap: 0;
}

/* ── LEFT BLOCK ── */
.trusted-left {
  width: 257px;
  height: 132px;
  background: #001D3D;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 80px 0 0;
  font-family: 'Nohemi', sans-serif;
  font-size: 24px;
  font-weight: 400;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

/* ── SCROLLER CONTAINER ── */
.trusted-scroller {
  flex: 1;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
}

/* ── SCROLLING TRACK ── */
.trusted-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: trusted-scroll 18s linear infinite;
}

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

@keyframes trusted-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── CARD ── */
.trusted-card {
  background: #fff;
  border: 1px solid #d6dde5;
  border-radius: 16px;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 100px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  flex-shrink: 0;
}

.trusted-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #bbc5d0;
}

.trusted-card img {
  max-height: 50px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
}

/* ══════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════ */

/* ── LARGE DESKTOP: 1200px – 1440px ── */
@media (max-width: 1440px) {
  .trusted-left {
    width: 240px;
    height: 128px;
    font-size: 23px;
    border-radius: 0 75px 0 0;
  }
  .trusted-card {
    min-width: 195px;
    height: 98px;
    padding: 20px 38px;
  }
}

/* ── DESKTOP: up to 1199px ── */
@media (max-width: 1199px) {
  .trusted-left {
    width: 220px;
    height: 120px;
    font-size: 21px;
    border-radius: 0 70px 0 0;
  }
  .trusted-card {
    min-width: 185px;
    height: 92px;
    padding: 18px 34px;
  }
  .trusted-card img {
    max-height: 46px;
    max-width: 130px;
  }
}

/* ── LAPTOP: up to 1024px ── */
@media (max-width: 1024px) {
  .trusted-left {
    width: 200px;
    height: 110px;
    font-size: 19px;
    border-radius: 0 60px 0 0;
  }
  .trusted-card {
    min-width: 175px;
    height: 86px;
    padding: 16px 28px;
  }
  .trusted-card img {
    max-height: 44px;
    max-width: 125px;
  }
  .trusted-track {
    gap: 16px;
  }
}

/* ── TABLET LARGE: up to 900px ── */
@media (max-width: 900px) {
  .trusted-left {
    width: 180px;
    height: 100px;
    font-size: 18px;
    border-radius: 0 55px 0 0;
  }
  .trusted-card {
    min-width: 165px;
    height: 80px;
    padding: 14px 24px;
  }
  .trusted-card img {
    max-height: 42px;
    max-width: 118px;
  }
  .trusted-track {
    gap: 14px;
  }
}

/* ── TABLET: up to 768px ── */
@media (max-width: 768px) {
  .trusted-left {
    width: 155px;
    height: 88px;
    font-size: 16px;
    border-radius: 0 46px 0 0;
  }
  .trusted-card {
    min-width: 150px;
    height: 72px;
    padding: 12px 20px;
  }
  .trusted-card img {
    max-height: 38px;
    max-width: 108px;
  }
  .trusted-track {
    gap: 12px;
  }
}

/* ── LARGE MOBILE: up to 600px ── */
@media (max-width: 600px) {
  .trusted-left {
    width: 130px;
    height: 80px;
    font-size: 14px;
    border-radius: 0 40px 0 0;
  }
  .trusted-card {
    min-width: 135px;
    height: 66px;
    padding: 10px 18px;
  }
  .trusted-card img {
    max-height: 34px;
    max-width: 96px;
  }
  .trusted-track {
    gap: 10px;
  }
}

/* ── MOBILE: up to 480px ── */
@media (max-width: 480px) {
  .trusted-left {
    width: 112px;
    height: 72px;
    font-size: 13px;
    border-radius: 0 34px 0 0;
  }
  .trusted-card {
    min-width: 120px;
    height: 60px;
    padding: 8px 14px;
  }
  .trusted-card img {
    max-height: 30px;
    max-width: 86px;
  }
  .trusted-track {
    gap: 8px;
  }
}

/* ── SMALL MOBILE: up to 390px ── */
@media (max-width: 390px) {
  .trusted-left {
    width: 96px;
    height: 64px;
    font-size: 12px;
    border-radius: 0 28px 0 0;
  }
  .trusted-card {
    min-width: 108px;
    height: 54px;
    padding: 6px 12px;
  }
  .trusted-card img {
    max-height: 28px;
    max-width: 78px;
  }
  .trusted-track {
    gap: 8px;
  }
}

/* ── TINY MOBILE: up to 320px ── */
@media (max-width: 320px) {
  .trusted-left {
    width: 82px;
    height: 56px;
    font-size: 11px;
    border-radius: 0 22px 0 0;
  }
  .trusted-card {
    min-width: 95px;
    height: 48px;
    padding: 6px 10px;
  }
  .trusted-card img {
    max-height: 24px;
    max-width: 66px;
  }
  .trusted-track {
    gap: 6px;
  }
}

/* SECTION */
.about-section {
  padding: 100px 0;
}

/* CONTENT WRAPPER */
.about-content {
  max-width: 1500px;
  width: 100%;                /* ✅ Added */
  margin: 0 auto;
  text-align: center;
}

/* TEXT */
.about-content p {
  font-family: 'Nohemi', sans-serif;
  font-size: 34px;            /* ✅ 22px + 38px = 60px */
  line-height: 1.5;
  color: #0f2a44;
  font-weight: 400;
  letter-spacing: -0.3px;
}

/* BUTTON WRAPPER */
.about-btn {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

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

  .about-section{
    padding:50px 24px 70px;
  }

  .about-content{
    max-width:500px;
  }

  .about-content p{
    font-size:30px;
    line-height:1.22;
    letter-spacing:-1px;
  }

}

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

  .about-section{
    padding:35px 18px 55px;
  }

  .about-content{
    max-width:100%;
  }

  .about-content p{
    font-size:18px;
    line-height:1.32;
    letter-spacing:-0.3px;
  }

  .about-btn{
    margin-top:28px;
  }

  .about-btn a{
    font-size:15px;
    padding:12px 16px 12px 20px;
    gap:12px;
  }

  .about-btn a span{
    width:30px;
    height:30px;
    font-size:16px;
  }

}

/* ================================
   SMALL MOBILE
================================ */
@media (max-width:480px){

  .about-section{
    padding:30px 16px 50px;
  }

  .about-content p{
    font-size:17px;
    line-height:1.35;
  }

  .about-btn a{
    font-size:14px;
    padding:11px 15px 11px 18px;
  }

}
  /* ── GOODFIT SECTION ── */
.goodfit-section {
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
}

.goodfit-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* ── LEFT ── */
.goodfit-left {
  flex: 0 0 620px;
  max-width: 620px;
}

.goodfit-heading {
  font-family: 'Nohemi', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #0f2a44;
  line-height: 1.25;
  margin-bottom: 20px;
}

.goodfit-desc {
  font-family: 'Noto Sans', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 48px;
  max-width: 460px;
}

/* ── ITEMS ROW ── */
.goodfit-items {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.goodfit-item {
  flex: 1;
  cursor: pointer;
  padding-right: 24px;
}

.goodfit-divider {
  width: 1px;
  background: #d6dde5;
  align-self: stretch;
  margin: 0 24px 0 0;
  flex-shrink: 0;
}

/* ── ICON SWAP ── */
.goodfit-icon {
  width: 56px;
  height: 56px;
  position: relative;
  margin-bottom: 16px;
}

.goodfit-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.25s ease;
}

.icon-inactive {
  opacity: 1;
}

.icon-active {
  opacity: 0;
}

.goodfit-item:hover .icon-inactive {
  opacity: 0;
}

.goodfit-item:hover .icon-active {
  opacity: 1;
}

/* ── NAME ── */
.goodfit-name {
  font-family: 'Nohemi', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #0f2a44;
  line-height: 1.4;
  margin: 0;
}

/* ── RIGHT DECORATIVE ── */
.goodfit-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 340px;
  position: relative;
}

.deco-grid {
  position: relative;
  width: 320px;
  height: 320px;
}

.deco-box {
  position: absolute;
  border: 2px solid #0f2a44;
  border-radius: 24px;
}

.deco-top-right {
  width: 180px;
  height: 180px;
  top: 0;
  right: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top-right-radius: 48px;
  /* only top-right and right side borders */
  border-left: none;
  border-bottom: none;
}

.deco-bottom-left {
  width: 140px;
  height: 140px;
  bottom: 20px;
  right: 60px;
  border-radius: 24px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .goodfit-left {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .goodfit-right {
    display: none;
  }

  .goodfit-wrapper {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .goodfit-items {
    flex-wrap: wrap;
    gap: 32px;
  }

  .goodfit-divider {
    display: none;
  }

  .goodfit-item {
    flex: 0 0 calc(50% - 16px);
    padding-right: 0;
  }

  .goodfit-heading {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .goodfit-item {
    flex: 0 0 100%;
  }
}
 /* ── WHAT SECTION ── */
.what-section {
  padding: 60px 0;
  background: #fff;
}

.section-heading {
  font-size: 28px;
  font-weight: 400;
  color: #0f2a44;
  margin-bottom: 14px;
  font-family: 'Nohemi', sans-serif;
}

.section-divider {
  border: none;
  border-top: 1px solid #d6dde5;
  margin-bottom: 48px;
}

/* ── STICKY CARD STACK ── */
.sticky-cards-wrapper {
  position: relative;
}

.service-card {
  position: sticky;
  top: 80px;
  background: #fff;
  border-radius: 20px;
  padding: 48px 0;
  margin-bottom: 40px; 
  z-index: 1;
  transform-origin: top center;
  transition: transform 0.1s linear;
  min-height: auto;     /* ← remove the 100vh that was causing huge whitespace */
}

#card-1 { z-index: 1; }
#card-2 { z-index: 2; }
#card-3 { z-index: 3; }

/* ── CONTENT ROW ── */
.content-row {
  display: flex;
  gap: 200px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.left-col {
  flex: 0 0 260px;
}

.service-title {
  font-size: 30px;
  font-weight: 400;
  color: #0f2a44;
  border-bottom: 3px solid #0f2a44;
  padding-bottom: 6px;
  display: inline-block;
  font-family: 'Nohemi', sans-serif;
}

.right-col {
  flex: 1;
}

.desc {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
  font-family: 'Noto Sans', sans-serif;
}

.service-bullets {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 40px;
  padding: 0;
  margin-bottom: 0;
}

.service-bullets li {
  font-size: 15px;
  color: #333;
  padding-left: 18px;
  font-family: 'Noto Sans', sans-serif;
  position: relative;
}

.service-bullets li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #555;
}

.service-image {
  margin-top: 36px;
  border-radius: 20px;
  overflow: hidden;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .content-row {
    flex-direction: column;
    gap: 30px;
  }
  .service-bullets {
    grid-template-columns: 1fr;
  }
  .service-card {
    top: 60px;
  }
}

@media (max-width: 768px) {
  .content-row {
    gap: 20px;
  }
  .service-card {
    padding: 32px 0;
    top: 50px;
  }
}
 /* ── INDUSTRIES SECTION ── */
/* ── INDUSTRIES SECTION ── */
.industries-section {
  display: flex;
  align-items: stretch;
  background: #F5D000;
  min-height: 560px;
  overflow: hidden;
  width: 100%;
}

/* ── LEFT YELLOW LABEL ── */
.industries-label {
  width: 220px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding-left: 10px;
}

.industries-label span {
  display: block;
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: 'Nohemi', sans-serif;
  font-size: 38px;
  color: #fff;
  letter-spacing: 1px;
}

/* ── RIGHT PANEL ── */
.industries-panel {
  flex: 1;
  background: #F7FAF0;
  padding: 48px 60px 48px 120px;
  border-top-left-radius: 130px;
  border-bottom-left-radius: 130px;

  /* 🔥 FIX */
  margin-left: -1px;
}
 

.industries-desc {
  font-family: 'Noto Sans', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #0f2a44;
  /* max-width: 480px; */
  margin-bottom: 20px;
}

.industries-divider {
  border: none;
  border-top: 1px solid #0f2a44;
  margin-bottom: 40px;
}

/* ── GRID ── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid #0f2a44;
  border-top: 1px solid #0f2a44 ;
}

.industry-item {
  padding: 32px 28px;
  border-right: 1px solid #0f2a44;
  border-bottom: 1px solid #0f2a44;
  cursor: pointer;
  transition: background 0.25s ease;
}

.industry-item:hover {
  background: #fff;
}

/* ── ICON SWAP ── */
.industry-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  position: relative;
}

.industry-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.25s ease;
}

.icon-active {
  opacity: 0;
}

.icon-inactive {
  opacity: 1;
}

.industry-item:hover .icon-inactive {
  opacity: 0;
}

.industry-item:hover .icon-active {
  opacity: 1;
}

/* ── LABEL ── */
.industry-name {
  font-family: 'Nohemi', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #0f2a44;
  margin: 0;
  line-height: 1.4;
}

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

  .industries-panel {
    padding: 40px 30px;
  }
}

@media (max-width: 600px) {
  .industries-section {
    flex-direction: column;
  }

  .industries-label {
    width: 100%;
    height: 80px;
    border-radius: 0 0 40px 40px;
    writing-mode: horizontal-tb;
  }

  .industries-label span {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 22px;
  }

  .industries-panel {
    border-radius: 0;
    margin-left: 0;
    padding: 30px 20px;
  }

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

/* SECTION */
.why-section {
  background: #f5f7fa;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* LAYOUT */
.why-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT */
.why-left {
  max-width: 600px;
  z-index: 2;
}

.why-left h2 {
  font-size: 36px;
  font-weight: 400;
  color: #0f2a44;
  margin-bottom: 20px;
  font-family: 'Nohemi', sans-serif;
}

.why-left p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 40px;
  font-family: 'Noto Sans', sans-serif;
}
/* FEATURES */
.why-features {
  display: flex;
  gap: 60px; /* remove gap — spacing handled by padding only */
  align-items: flex-start;
}

/* ITEM */
.feature-item {
  position: relative;
  padding-right: 50px; /* space between item content and divider */
  padding-left: 0;     /* strict left alignment */
}

/* last item needs no right padding */
.feature-item:last-child {
  padding-right: 0;
}
.feature-item:nth-child(3) {
  min-width: 140px;
}
/* DIVIDER LINE */
.feature-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 20px; /* sits in the middle of the padding gap */
  top: 10px;
  width: 1px;
  height: 60px;
  background: #d6dde5;
}
/* ICON */
.icon-box {
  width: 60px;
  height: 60px;
  position: relative;
  margin-bottom: 10px;
}

.icon-box img {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
}

.icon-active {
  opacity: 0;
}

.feature-item:hover .icon-active {
  opacity: 1;
}

.feature-item:hover .icon-inactive {
  opacity: 0;
}

/* TEXT */
.feature-item p {
  font-size: 15px;
  color: #0f2a44;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
  font-family: 'Nohemi', sans-serif;
}

/* RIGHT IMAGE */
.why-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  pointer-events: none;
}

.why-right img {
  width: 100%;
  height: auto;
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .why-features {
    flex-wrap: wrap;
    gap: 20px;
  }

  .feature-item {
    width: 45%;
  }

  .feature-item::after {
    display: none;
  }

  .why-right {
    display: none;
  }
}

  /* ── TESTIMONIAL SECTION ── */
.testimonial-section {
  padding: 80px 0;
  background: #fff;
}

.testimonial-wrapper {
  display: flex;
  align-items: center;
  gap: 80px;
}

/* ── LEFT ── */
.testimonial-left {
  flex: 0 0 320px;
  max-width: 320px;
}

.testimonial-heading {
  font-family: 'Nohemi', sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #0f2a44;
  line-height: 1.3;
  margin-bottom: 20px;
}

.testimonial-desc {
  font-family: 'Noto Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 40px;
}

/* ── ARROWS ── */
.testimonial-arrows {
  display: flex;
  gap: 12px;
  align-items: center;
}



/* Flip the prev arrow */
.arrow-prev img {
  transform: rotate(180deg);
}

/* ── RIGHT SLIDER ── */
.testimonial-right {
  flex: 1;
  overflow: hidden;
}

.testimonial-slider {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}

/* ── CARD ── */
/* ── CARD ── */
.testimonial-card {
  min-width: 612px;
  width: 612px;
  border: 1.5px solid #d6dde5;
  border-radius: 16px;
  padding: 36px 40px;
  background: #FAFDF6;
  box-sizing: border-box;
  flex-shrink: 0;
}

/* ── ARROWS ── */
.arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 15%;
  border: 1.5px solid #FFDD32;
  background: #FFDD32;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
  padding: 0;
  flex-shrink: 0;
}

.arrow-btn:hover {
  background: #f5c800;
  border-color: #f5c800;
}

.arrow-btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}
.testimonial-card h4 {
  font-family: 'Nohemi', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #0f2a44;
  text-align: center;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  text-align: center;
  margin-bottom: 32px;
}

/* ── META ── */
.testimonial-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #d6dde5;
  padding-top: 20px;
}

.meta-name {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #0f2a44;
}

.meta-country {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  color: #888;
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .testimonial-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .testimonial-left {
    flex: 0 0 100%;
    max-width: 100%;
  }
}


/* Start A Project Section  */

.contact-section {
  padding: 80px 60px;
  display: flex;
  margin: 28px 0;
  justify-content: center;
}

.contact-container {
  position: relative;
  max-width: 1200px;
  width: 100%;
  border: 1px solid #001D3D;
  border-radius: 20px;
  padding: 50px 150px;
  background: #FAFDF6;
  overflow: hidden;
}

.why-right {
  position: absolute;
  top: 0;
  right: -40px;
  width: 200px;
  pointer-events: none;
}

.why-right img {
  width: 80%;
  opacity: 0.9;
}

.contact-heading {
  font-size: 32px;
  color: #001D3D;
  margin: 10px;
  font-family: 'Nohemi', sans-serif;
  font-weight: 400;
  text-align: center;
}

.contact-subtext {
  text-align: center;
  padding: 10px 90px;
  font-size: 16px;
  color: #001D3D;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  margin-bottom: 20px;
}

/* TABS */
.tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 45px;
}

.tab {
  font-size: 20px;
  cursor: pointer;
  font-family: 'Nohemi', sans-serif;
  font-weight: 400;
  color: #A0A0A0; /* inactive color */
}

/* ACTIVE TAB */
.tab.active {
  color: #001D3D;
  font-weight: 400;
  font-family: 'Nohemi', sans-serif;
  position: relative;
}

/* 🔥 THICK YELLOW LINE */
.tab.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 4px; /* increased thickness */
  background: #FFC300;
  border-radius: 2px;
}

/* FORM */
.contact-form {
  display: none;
  flex-direction: column;
  gap: 35px;
}

.contact-form.active {
  display: flex;
}

.form-row {
  display: flex;
  gap: 20px;
}

.input-group {
  flex: 1;
  position: relative;
}

.input-group input,
.input-group select {
  width: 95%;
  padding: 14px;
  border: 1px solid #A0A0A0;
  border-radius: 10px;
  background: transparent;
  font-size: 14px;
}
/* REMOVE FOCUS CHANGE */
.input-group input:focus,
.input-group select:focus {
  outline: none;
  border-color: #A0A0A0; /* same as default */
}
.input-group label {
  position: absolute;
  top: -12px;
  left: 14px;
  background: #FAFDF6;
  padding: 0 6px;
  font-size: 18px;
  color: #001D3D;
}

.input-group small {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #555;
}

.submit-btn {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

.form-row.align-bottom {
  align-items: flex-end;
}

.button-group {
  display: flex;
  top: -30px;
  align-items: center;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {

  .contact-section {
    padding: 20px 12px;
    margin: 50px 0;
  }

  .contact-container {
    position: relative;
    padding: 40px 20px;
    border-radius: 18px;
    overflow: visible;
    background: #FAFDF6;
  }

  /* TOP RIGHT DESIGN IMAGE */
  .why-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 135px;
    z-index: 1;
    pointer-events: none;
    display: block;
  }

  .why-right img {
    width: 100%;
    display: block;
    opacity: 1;
  }

  /* CONTENT */
  .contact-inner {
    position: relative;
    z-index: 2;
    padding-top: 130px;
  }

  /* TITLE */
  .contact-heading {
    font-size: 24px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 10px;
    color: #001D3D;
    font-family: 'Nohemi', sans-serif;
    font-weight: 500;
  }

  /* SUBTEXT */
  .contact-subtext {
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    padding: 15px;
    margin-bottom: 22px;
    color: #001D3D;
    font-family: 'Noto Sans', sans-serif;
  }

  /* TABS */
  .tabs {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 28px;
  }

  .tab {
    font-size: 15px;
    font-family: 'Nohemi', sans-serif;
  }

  .tab.active::after {
    height: 3px;
    bottom: -5px;
  }

  /* FORM */
  .contact-form {
    display: none;
    flex-direction: column;
    gap: 18px;
  }

  .contact-form.active {
    display: flex;
  }

  .form-row {
    flex-direction: column;
    gap: 18px;
  }

  .input-group {
    width: 100%;
    position: relative;
  }

  .input-group input,
  .input-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #A0A0A0;
    border-radius: 10px;
    background: transparent;
    font-size: 14px;
    color: #001D3D;
  }

  .input-group label {
    position: absolute;
    top: -10px;
    left: 12px;
    background: #FAFDF6;
    padding: 0 6px;
    font-size: 13px;
    color: #001D3D;
    font-family: 'Noto Sans', sans-serif;
  }

  .input-group small {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    color: #555;
  }

  /* BUTTON */
  .submit-btn {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }

  /* HIRE TALENT FIX */
  #talentForm .form-row.align-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  #talentForm input[type="file"] {
    width: 100%;
  }

  #talentForm .button-group {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .tys-goo-container {
    padding: 8px 16px;
    top:15px;
    margin-bottom: 15px;
  }
}
/* ================= IPAD RESPONSIVE ================= */
@media (min-width: 769px) and (max-width: 1024px) {

  .contact-section{
    padding: 50px 30px;
    margin: 40px 0;
  }

  .contact-container{
    padding: 60px 50px;
    border-radius: 20px;
  }

  /* DESIGN IMAGE */
  .why-right{
    right: -10px;
    width: 170px;
  }

  .why-right img{
    width: 100%;
  }

  /* CONTENT */
  .contact-inner{
    position: relative;
    z-index: 2;
  }

  /* HEADING */
  .contact-heading{
    font-size: 30px;
    margin-bottom: 12px;
  }

  .contact-subtext{
    font-size: 15px;
    line-height: 1.7;
    padding: 0 120px;
    margin-bottom: 30px;
  }

  /* TABS */
  .tabs{
    gap: 18px;
    margin-bottom: 35px;
  }

  .tab{
    font-size: 18px;
  }

  /* FORM */
  .contact-form{
    gap: 24px;
  }

  .form-row{
    gap: 18px;
  }

  .input-group input,
  .input-group select{
    width: 100%;
    padding: 14px;
    font-size: 14px;
  }

  .input-group label{
    font-size: 15px;
    top: -11px;
  }

  .input-group small{
    font-size: 12px;
  }

  /* BUTTON */
  .submit-btn{
    margin-top: 15px;
  }

  .tys-goo-container{
    padding: 10px 20px;
  }

  /* HIRE TALENT ALIGNMENT */
  #talentForm .form-row.align-bottom{
    align-items: flex-end;
  }

  #talentForm .button-group{
    display: flex;
  }

}