/*
 * 7P Digital Custom Styles
 * Black & Yellow Theme
 */

/* ── Global Font: Poppins ── */
* {
  font-family: 'Poppins', sans-serif !important;
}

/* Restore Font Awesome — icons render via ::before/::after pseudo-elements */
.fa, .fas, .far, .fal, .fab,
.fa-solid, .fa-regular, .fa-light, .fa-brands, .fa-duotone,
[class^="fa-"], [class*=" fa-"] {
  font-family: var(--fa-style-family, "Font Awesome 6 Free") !important;
}

.fa-brands, .fab {
  font-family: "Font Awesome 6 Brands" !important;
}

/* =====================================================================
   7P Digital - LIGHT THEME OVERRIDES (2026-01-29)
   Goal: Grey/White/Black UI, with Yellow used only as glossy accent.
   ===================================================================== */

:root {
  --color-bg: #ffffff;
  --color-surface: #ffffff;
  --color-text: #111214;
  --color-muted: #5f6670;
  --color-border: #e6e8ee;

  /* Black and white accent */
  --primary-color: #000000;
  --secondary-color: #1a1a1a;
  --accent-yellow-2: #ffe47a;
  --accent-gradient: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

body {
  background: var(--color-bg) !important;
  color: var(--color-text) !important;
}

/* Make sure most text defaults to dark on light backgrounds */
p,
span,
li,
a,
small {
  color: inherit;
}

/* Improve readability for common text blocks */
.text-anim,
.sec-title-wrapper p,
.about__content p,
.service__top-text p,
.cta__content p {
  color: var(--color-muted) !important;
}

html {
  scroll-behavior: smooth;
}

/* Global readability reset (master.css sometimes forces white text) */
main,
footer {
  color: var(--color-text) !important;
}



main a,
footer a {
  color: var(--color-text);
}

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


/* Portfolio / Work section visibility */
.portfolio__text {
  color: rgba(17, 18, 20, 0.12) !important;
  pointer-events: none;
}

.portfolio__title,
.portfolio__info h3,
.portfolio__info h4 {
  color: var(--color-text) !important;
}

.portfolio__info p {
  color: var(--color-muted) !important;
}

/* Header: force TOP header (override master.css sidebar header__area)
   Requirement: transparent header initially, glossy white background on sticky.
*/
.header__area {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: auto !important;
  z-index: 9999 !important;
  padding: 14px 24px;

  background: transparent !important;
  backdrop-filter: none;
  border-right: none !important;
  border-bottom: 1px solid transparent !important;
  mix-blend-mode: normal !important;
}

/* Subtle gradient behind menu when hero is visible (still "no white background") */
.header__area::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.10) 60%, rgba(0, 0, 0, 0.00) 100%); */
  opacity: 0.9;
  pointer-events: none;
}

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

/* Sticky only becomes glossy-white AFTER leaving hero */
.header__area.sticky:not(.header--on-hero) {
  background: rgb(255, 255, 255) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(17, 18, 20, 0.08) !important;
  box-shadow: 0 12px 30px rgba(17, 18, 20, 0.10);
}

/* While hero is visible: header looks like sticky header */
.header__area.header--on-hero {
  background: rgb(255, 255, 255) !important;
  border-bottom: 1px solid rgba(17, 18, 20, 0.08) !important;
  /* box-shadow: 0 12px 30px rgba(17, 18, 20, 0.10) !important; */
}

.header__area.header--on-hero .header__inner {
  background: transparent !important;
}

/* Dark text on white background for hero header */
.header__area.header--on-hero .header__menu a {
  color: #111111 !important;
  text-shadow: none !important;
}

.header__area.header--on-hero .header__menu a:hover {
  color: #F6BC0E !important;
}

/* Dark CTA button on white background */
.header__area.header--on-hero .header__cta {
  background: #000000 !important;
  color: #ffffff !important;
}

.header__area.header--on-hero .header__cta:hover {
  background: transparent !important;
  color: #000000 !important;
}

/* Dark logo on white background (same as sticky header) */
.header__area.header--on-hero .header__logo img {
  filter: none !important;
}

.header__area:not(.header--on-hero)::before {
  opacity: 0;
}

.header__inner {
  padding: 0 !important;
  height: auto !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px;
}

/* Remove sidebar layout offsets */
body,
#smooth-wrapper,
#smooth-content {
  padding-left: 0 !important;
  margin-left: 0 !important;
}

/* Sticky sections need overflow visible all the way up */
#smooth-wrapper,
#smooth-content,
main {
  overflow: visible !important;
}

/* Let the hero start at the very top behind the fixed header.
   Individual sections (and the hero content itself) already include their own padding.
*/
main {
  padding-top: 0;
}

@media (max-width: 767px) {
  main {
    padding-top: 0;
  }
}

.header__right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px !important;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700 !important;
  line-height: 1;
  white-space: nowrap;
  background: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
  animation: none !important;
  position: relative;
  overflow: hidden !important;
  isolation: isolate;
  transition: color 0.5s ease, transform 0.5s ease, box-shadow 0.5s ease !important;
}

.header__cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #F6BC0E;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.7s ease, height 0.7s ease;
  z-index: -1;
}

.header__cta::after {
  display: none !important;
}

.header__cta:hover::before {
  width: 400px;
  height: 400px;
}

.header__cta:hover {
  background: transparent !important;
  color: #000000 !important;
  box-shadow: 0 4px 12px rgba(250, 204, 21, 0.3) !important;
}

/* When header is transparent, keep CTA black */
.header__area:not(.sticky) .header__cta {
  background: #282725 !important;
  color: #ffffff !important;
}

.header__area:not(.sticky) .header__cta:hover {
  background: transparent !important;
  color: #000000 !important;
}

/* Sticky header - maintain button style */
.header__area.sticky .header__cta {
  background: #282725 !important;
  color: #ffffff !important;
  border-radius: 6px;
  box-shadow: none !important;
  animation: none !important;
}

.header__area.sticky .header__cta:hover {
  background: transparent !important;
  color: #000000 !important;
  box-shadow: 0 4px 12px rgba(250, 204, 21, 0.3) !important;
}

.header__cta i {
  transform: rotate(-45deg);
}

.header__menu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header__menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__menu a {
  color: rgba(255, 255, 255, 0.98) !important;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
  text-transform: none;
  opacity: 0.98;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.55);
}

.header__area.sticky:not(.header--on-hero) .header__menu a {
  color: var(--color-text) !important;
  text-shadow: none;
}

.header__menu a:hover {
  opacity: 1;
  color: #F6BC0E !important;
}

/* Active link styles - yellow color with underline */
.header__menu a.active {
  color: #F6BC0E !important;
  text-decoration: underline !important;
  text-underline-offset: 4px;
  opacity: 1;
}

.header__area.sticky:not(.header--on-hero) .header__menu a.active {
  color: #F6BC0E !important;
  text-decoration: underline !important;
  text-underline-offset: 4px;
}

.header__area.header--on-hero .header__menu a.active {
  color: #F6BC0E !important;
  text-decoration: underline !important;
  text-underline-offset: 4px;
}

/* --- About Us dropdown --- */
.header__menu .has-dropdown {
  position: relative;
}

.header__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 180px;
  background: #ffffff;
  border-radius: 8px;
  padding: 8px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 100;
}

.header__menu .has-dropdown:hover .header__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.header__dropdown li {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

.header__dropdown li a {
  display: block !important;
  padding: 10px 20px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #111111 !important;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.header__dropdown li a:hover {
  background: rgba(0, 0, 0, 0.05) !important;
  color: #F6BC0E !important;
}

.header__area.sticky:not(.header--on-hero) .header__menu a:hover {
  color: #F6BC0E !important;
}

/* Reset master.css header button spacing */
.header__area button {
  margin-top: 0 !important;
  padding: 0 !important;
}

/* Desktop: show menu + CTA, hide hamburger */
.header__nav-icon {
  display: none;
}

/* Mobile: hide menu, show hamburger */
@media (max-width: 991px) {
  .header__menu {
    display: none;
  }

  .header__nav-icon {
    display: block;
  }
}

/* Logo visibility on light theme */
.header__logo img {
  filter: none !important;
}

/* Remove earlier "adaptive" email blend trick for light theme */
.header__support a {
  mix-blend-mode: normal !important;
  filter: none !important;
  color: var(--color-text) !important;
  opacity: 0.9;
}

.header__support a:hover {
  opacity: 1;
}

/* Buttons: override Axtra default circular buttons -> modern pill buttons */
.wc-btn-primary,
.wc-btn-secondary,
.wc-btn-primary.btn-hover,
.wc-btn-secondary.btn-hover {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  height: auto !important;
  padding: 14px 22px !important;
  border-radius: 10px !important;
  position: relative !important;
  overflow: hidden !important;
  font-weight: 700 !important;
  letter-spacing: 0.2px;
  gap: 10px;
  isolation: isolate !important;
}

/* Kill Axtra expanding circle hover span (this caused the yellow circle artifact) */
.wc-btn-primary span,
.wc-btn-secondary span {
  display: none !important;
}

/* Axtra sets .btn-item { position:absolute; } which breaks normal layout */
.btn-item {
  position: relative !important;
}

/* Axtra wraps buttons in a circular .btn_wrapper; neutralize to normal wrapper */
.btn_wrapper,
#btn_wrapper {
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  margin: 0 !important;
  justify-content: flex-start !important;
}

/* Primary button - dark with yellow expanding circle hover */
.wc-btn-primary,
.wc-btn-primary.btn-hover {
  background: #1a1a1a !important;
  color: #ffffff !important;
  border: none !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  box-shadow: none !important;
  animation: none !important;
  position: relative !important;
  overflow: hidden !important;
  transition: color 0.5s ease, transform 0.5s ease, box-shadow 0.5s ease !important;
}

/* Remove old glossy overlay */
.wc-btn-primary::after {
  display: none !important;
}

/* Yellow fill from center outward on hover */
.wc-btn-primary::before,
.wc-btn-primary.btn-hover::before {
  content: '' !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 0 !important;
  height: 0 !important;
  background: #F6BC0E !important;
  border-radius: 50% !important;
  transform: translate(-50%, -50%) !important;
  transition: width 0.7s ease, height 0.7s ease !important;
  z-index: -1 !important;
}

.wc-btn-primary:hover::before {
  width: 400px !important;
  height: 400px !important;
}

.wc-btn-primary:hover {
  background: transparent !important;
  color: #000000 !important;
  box-shadow: 0 4px 12px rgba(250, 204, 21, 0.3) !important;
}

.wc-btn-primary i {
  color: #ffffff !important;
  transition: color 0.5s ease !important;
}

.wc-btn-primary:hover i {
  color: #000000 !important;
}

/* Secondary button */
.wc-btn-secondary {
  background: transparent !important;
  border: 1px solid var(--color-border) !important;
  color: var(--color-text) !important;
}

.wc-btn-secondary:hover {
  border-color: rgba(0, 0, 0, 0.55) !important;
  background: #f5f5f5 !important;
}

/* Headings: ensure visibility (master.css often forces white). */
.sec-title,
.sec-title.title-anim,
.sec-title-wrapper .sec-title,
.registration__main-heading {
  color: #f6bc0e  !important;
}

.about__title,
.registration__title {
  color: var(--color-text) !important;
}

.sec-sub-title {
  color: var(--color-muted) !important;
}

/* Home page specific styles moved to home.css */

/* Remove Axtra animated cursors (they show as yellow circles) */
.cursor,
.cursor1,
.cursor2,
#client_cursor {
  display: none !important;
}

.experience {
  background: rgba(255, 255, 255, 0.72) !important;
  border: 1px solid var(--color-border) !important;
  color: var(--color-text) !important;
  backdrop-filter: blur(8px);
}

/* Mobile header padding */
@media (max-width: 767px) {
  .header__area {
    padding: 15px;
  }
}

/* About (Influencer Marketing) revamp */
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}

.about__kicker {
  display: block;
  background: none !important;
  border: none;
  border-radius: 0;
  padding: 0;
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F6BC0E !important;
  margin-bottom: 14px;
}

.about__kicker::before {
  display: none;
}
.service-section {
padding: 20px 25px 20px 25px;
}
.about__headline {
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: 1.3;
  font-weight: 700;
  color: #111214 !important;
  margin-bottom: 18px;
}

.about__desc {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(17, 18, 20, 0.65) !important;
  margin-bottom: 26px;
  max-width: 680px;
}

.about__bullets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 26px;
}

.about__bullet {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(17, 18, 20, 0.1);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 12px 40px rgba(17, 18, 20, 0.06);
}

.about__bullet h4 {
  font-size: 16px;
  margin: 0 0 6px 0;
  color: #111214 !important;
}

.about__bullet p {
  margin: 0;
  color: rgba(17, 18, 20, 0.65) !important;
  line-height: 1.6;
}

.about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 8px;
}

/* Get a Proposal - black bg, white text, yellow hover (like View All Projects) */
.about__actions .wc-btn-primary {
  background: #000000 !important;
  color: #ffffff !important;
  border: none;
  border-radius: 6px;
  box-shadow: none;
  animation: none;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.5s ease, transform 0.5s ease, box-shadow 0.5s ease;
}

.about__actions .wc-btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #F6BC0E;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.7s ease, height 0.7s ease;
  z-index: -1;
}

.about__actions .wc-btn-primary::after {
  display: none;
}

.about__actions .wc-btn-primary:hover::before {
  width: 400px;
  height: 400px;
}

.about__actions .wc-btn-primary:hover {
  background: transparent !important;
  color: #000000 !important;
  box-shadow: 0 4px 12px rgba(250, 204, 21, 0.3);
  transform: none;
}

/* See Case Studies - white bg, black text, yellow hover (like Let's Talk) */
.about__actions .wc-btn-secondary {
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  box-shadow: none;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.5s ease, transform 0.5s ease, box-shadow 0.5s ease;
}

.about__actions .wc-btn-secondary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #F6BC0E;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.7s ease, height 0.7s ease;
  z-index: -1;
}

.about__actions .wc-btn-secondary:hover::before {
  width: 400px;
  height: 400px;
}

.about__actions .wc-btn-secondary:hover {
  background: transparent !important;
  color: #000000 !important;
  border-color: transparent !important;
  box-shadow: 0 4px 12px rgba(250, 204, 21, 0.3);
  transform: none;
}

.about__actions .wc-btn-primary i,
.about__actions .wc-btn-secondary i {
  transform: rotate(-45deg);
}

.about__media {
  position: relative;
}

.about__image-stack {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.about__img {
  position: static;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 22px 70px rgba(17, 18, 20, 0.18);
  border: 1px solid rgba(17, 18, 20, 0.08);
  width: 100%;
  object-fit: cover;
  display: block;
}

.about__img--primary {
  grid-column: 1 / -1;
  height: 300px;
}

.about__img--secondary {
  height: 200px;
  grid-column: 1;
}

.about__img--tertiary {
  height: 200px;
  grid-column: 2;
}

.about__media-badge {
  position: absolute;
  right: 18px;
  bottom: 16px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(17, 18, 20, 0.10);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 18px 60px rgba(17, 18, 20, 0.12);
  max-width: 200px;
}

.about__media-badge .num {
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
  color: #111214 !important;
}

.about__media-badge .lbl {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.3;
  color: rgba(17, 18, 20, 0.70);
}

/* ── Tablet (≤991px) ── */
@media (max-width: 991px) {
  /* Hide image stack - images don't load, causing huge blank area */
  .about__media {
    display: none !important;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about__kicker {
    font-size: 22px !important;
  }

  .about__headline {
    font-size: 26px !important;
  }

  .about__desc {
    font-size: 15px !important;
  }

  /* Image stack responsive adjustments */
  .about__img--primary {
    height: 220px !important;
  }

  .about__img--secondary,
  .about__img--tertiary {
    height: 160px !important;
  }

  /* Badge: static row below images */
  .about__media-badge {
    position: static !important;
    grid-column: 1 / -1;
    display: flex !important;
    align-items: center;
    gap: 12px;
    max-width: 100%;
    padding: 12px 14px !important;
    border-radius: 12px !important;
    margin-top: 2px;
  }

  .about__media-badge .num {
    font-size: 20px !important;
  }

  .about__media-badge .lbl {
    margin-top: 0 !important;
  }
}

/* ── Mobile (≤767px) ── */
@media (max-width: 767px) {
  .about__area:not(.about__card) {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  .about__kicker {
    font-size: 18px !important;
  }

  .about__headline {
    font-size: 20px !important;
  }

  .about__img--primary {
    height: 210px !important;
  }

  .about__img {
    height: 160px !important;
  }

  .about__actions {
    flex-direction: column;
  }

  .about__actions .wc-btn-primary,
  .about__actions .wc-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ── Small phones (≤480px) ── */
@media (max-width: 480px) {
  .about__kicker {
    font-size: 15px !important;
  }

  .about__headline {
    font-size: 18px !important;
  }

  .about__desc {
    font-size: 14px !important;
  }

  .about__image-stack {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .about__img--primary {
    height: 180px !important;
  }

  .about__img {
    height: 130px !important;
  }
}

/* ── Very small phones (≤340px) ── */
@media (max-width: 340px) {
  .about__kicker {
    font-size: 13px !important;
  }

  .about__headline {
    font-size: 16px !important;
  }

  .about__image-stack {
    grid-template-columns: 1fr;
  }

  .about__img--primary,
  .about__img--secondary,
  .about__img--tertiary {
    grid-column: 1 !important;
    height: 160px !important;
  }

  .about__media-badge {
    grid-column: 1 !important;
  }
}

.service__area {
  background: #ffffff !important;
  border: none !important;
  position: relative;
  overflow: hidden;
}
.service__area::before,
.service__area::after {
  display: none !important;
  content: none !important;
}

/* ── Sticky scroll-reveal (Schbang style) ── */
/* Sections stack on top of each other as you scroll */
/* The curved bottom of each section is revealed as the next slides up */

@media (min-width: 1025px) {
  .about__area.about__card,
  .service__area.services__revamp,
  .work__stats-area,
  .pf__area {
    position: sticky !important;
    top: 0;
    will-change: transform;
  }
}

/* Disable sticky on screens 1024px and below */
@media (max-width: 1024px) {
  .about__area.about__card,
  .service__area.services__revamp,
  .work__stats-area,
  .pf__area {
    position: relative !important;
  }
}

.about__area.about__card  { z-index: 10 !important; }
.service__area.services__revamp { z-index: 20 !important; }
.work__stats-area { z-index: 25 !important; }
.pf__area { z-index: 30 !important; }

/* Services fills full viewport height like about section */
.service__area.services__revamp {
  /* min-height: 100vh; */
  display: flex !important;
  align-items: center;
  justify-content: center;
}

/* ── Services section with curved bottom ── */
.service__area.services__revamp {
  background: #ffffff !important;
  border-radius: 0 0 40px 40px !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10) !important;
  padding: 0 !important;
  z-index: 3;
  margin-bottom: 0 !important;
  padding-bottom: 60px !important;
  overflow: visible !important;
  margin-top: 60px;
}

/* Curved bottom overlay on services */
/* Curved bottom overlay on services - disabled because it conflicts with curtain reveal z-index */
.service__area.services__revamp::after {
  display: none;
}

.service__area.services__revamp .container {
  /* padding-top: 72px; */
  padding-bottom: 80px;
  width: 100%;
  
}

/* Services (revamp): horizontal scroll + hover depth + glow */
.services__header {
  margin-bottom: 40px;
}

.services__kicker {
  display: block !important;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  font-size: clamp(25px, 2.6vw, 40px) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  color: #111111 !important;
  margin-bottom: 12px;
}

.services__kicker::before {
  display: none !important;
}

.services__headline {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.4;
  color: #111111 !important;
  margin-bottom: 10px;
}

.services__desc {
  color: #444444b0 !important;
  font-size: 16px;
  line-height: 1.7;
}

/* 4-column grid */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 0;
}

/* ── Services Carousel ── */
.services__carousel-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  margin: 0 -4px;
}

.services__carousel-viewport {
  flex: 1;
  overflow: hidden;
}

.services__carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  padding: 20px;
}

.services__carousel-arrow {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #aaaaaa;
  color: #ffffff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}

.services__carousel-arrow:hover:not(:disabled) {
  background: #888;
}

.services__carousel-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.services__card {
  background: #ffffff !important;
  border-radius: 16px;
  padding: 24px 22px 22px;
  box-shadow: 10px 15px 10px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: calc((100% - 40px) / 3);
}

.services__card--active {
  border-top: 3px solid #F6BC0E;
}

.services__card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.services__card-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.services__icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: #F6BC0E !important;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none !important;
  margin-bottom: 14px;
}

.services__icon i {
  font-size: 18px;
  color: #111 !important;
}

.services__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: flex-start;
}

.services__tag {
  background: rgba(246, 188, 14, 0.1);
  color: #111;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 300;
}

.services__title {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin: 12px 0 8px 0;
  line-height: 1.3;
}

.services__text {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.services__view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 40px;
  background: #282725;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 15px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.services__view-all-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #F6BC0E;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.7s ease, height 0.7s ease;
  z-index: -1;
}

.services__view-all-btn:hover::before {
  width: 400px;
  height: 400px;
}

.services__view-all-btn:hover {
  transform: translateY(-2px);
  background: transparent !important;
  color: #000000 !important;
}

.arrow-icon {
  transform: rotate(-45deg);
}

/* =====================================================================
   SERVICES SECTION - RESPONSIVE BREAKPOINTS
   ===================================================================== */

/* Large Desktop: 4 cards visible (1250px+) */
@media (min-width: 1250px) {
  .services__card {
    flex: 0 0 calc((100% - 60px) / 4);
    min-width: calc((100% - 60px) / 4);
    padding: 28px 24px 24px;
  }
  
  .services__header {
    margin-bottom: 48px;
  }
  
  .services__kicker {
    font-size: 40px !important;
  }
  
  .services__headline {
    font-size: 18px;
  }
}

/* Desktop: 3 cards visible (992px - 1249px) */
@media (min-width: 992px) and (max-width: 1249px) {
  .services__card {
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: calc((100% - 40px) / 3);
    padding: 24px 20px 20px;
  }
  
  .services__kicker {
    font-size: 36px !important;
  }
  
  .services__title {
    font-size: 17px;
  }
  
  .services__text {
    font-size: 13px;
  }
}

/* Tablet Landscape: 2-3 cards visible */
@media (max-width: 991px) and (min-width: 768px) {
  .services__card {
    flex: 0 0 calc((100% - 20px) / 2);
    min-width: calc((100% - 20px) / 2);
    padding: 22px 18px 18px;
  }
  
  .service__area.services__revamp {
    border-radius: 0 0 28px 28px;
  }
  
  .service__area.services__revamp .container {
    padding-top: 56px;
    padding-bottom: 64px;
  }
  
  .services__header {
    margin-bottom: 36px;
  }
  
  .services__kicker {
    font-size: 32px !important;
  }
  
  .services__headline {
    font-size: 16px;
  }
  
  .services__icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }
  
  .services__icon i {
    font-size: 16px;
  }
  
  .services__title {
    font-size: 16px;
  }
  
  .services__text {
    font-size: 13px;
  }
  
  .services__carousel-track {
    gap: 16px;
    padding: 16px;
  }
}

/* Tablet Portrait: 1-2 cards visible */
@media (max-width: 767px) and (min-width: 601px) {
  .services__card {
    flex: 0 0 calc((100% - 16px) / 1.5);
    min-width: calc((100% - 16px) / 1.5);
    padding: 20px 16px 16px;
  }
  
  .service__area.services__revamp {
    border-radius: 0 0 24px 24px;
  }
  
  .service__area.services__revamp .container {
    padding-top: 48px;
    padding-bottom: 56px;
  }
  
  .services__header {
    margin-bottom: 32px;
  }
  
  .services__kicker {
    font-size: 28px !important;
  }
  
  .services__headline {
    font-size: 15px;
  }
  
  .services__desc {
    font-size: 14px;
  }
  
  .services__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }
  
  .services__icon i {
    font-size: 15px;
  }
  
  .services__title {
    font-size: 15px;
  }
  
  .services__text {
    font-size: 12px;
  }
  
  .services__carousel-track {
    gap: 14px;
    padding: 14px;
  }
  
  .services__carousel-arrow {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
}

/* Mobile Large: 1 card visible */
@media (max-width: 600px) and (min-width: 481px) {
  .services__card {
    flex: 0 0 calc(100% - 20px);
    min-width: calc(100% - 20px);
    padding: 18px 14px 14px;
  }
  
  .service__area.services__revamp {
    border-radius: 0 0 20px 20px;
  }
  
  .service__area.services__revamp .container {
    padding-top: 40px;
    padding-bottom: 48px;
  }
  
  .services__header {
    margin-bottom: 28px;
  }
  
  .services__kicker {
    font-size: 24px !important;
  }
  
  .services__headline {
    font-size: 14px;
  }
  
  .services__desc {
    font-size: 13px;
  }
  
  .services__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
  
  .services__icon i {
    font-size: 14px;
  }
  
  .services__title {
    font-size: 14px;
    margin: 10px 0 6px 0;
  }
  
  .services__text {
    font-size: 11px;
    margin-bottom: 12px;
  }
  
  .services__tag {
    font-size: 10px;
    padding: 3px 6px;
  }
  
  .services__carousel-track {
    gap: 12px;
    padding: 12px;
  }
  
  .services__carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
}

/* Mobile Medium: 1 card visible, more compact */
@media (max-width: 480px) and (min-width: 376px) {
  .services__card {
    flex: 0 0 calc(100% - 16px);
    min-width: calc(100% - 16px);
    padding: 16px 12px 12px;
    border-radius: 12px;
  }
  
  .service__area.services__revamp {
    border-radius: 0 0 18px 18px;
  }
  
  .service__area.services__revamp .container {
    padding-top: 36px;
    padding-bottom: 44px;
  }
  
  .services__header {
    margin-bottom: 24px;
  }
  
  .services__kicker {
    font-size: 22px !important;
  }
  
  .services__headline {
    font-size: 13px;
  }
  
  .services__desc {
    font-size: 12px;
  }
  
  .services__icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 8px;
  }
  
  .services__icon i {
    font-size: 13px;
  }
  
  .services__title {
    font-size: 13px;
    margin: 8px 0 5px 0;
  }
  
  .services__text {
    font-size: 10px;
    margin-bottom: 10px;
    line-height: 1.4;
  }
  
  .services__tag {
    font-size: 9px;
    padding: 2px 5px;
  }
  
  .services__carousel-track {
    gap: 10px;
    padding: 10px;
  }
  
  .services__carousel-arrow {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  
  .services__view-all-btn {
    padding: 12px 24px;
    font-size: 13px;
  }
}

/* Mobile Small: 1 card visible, very compact */
@media (max-width: 375px) and (min-width: 321px) {
  .services__card {
    flex: 0 0 calc(100% - 12px);
    min-width: calc(100% - 12px);
    padding: 14px 10px 10px;
    border-radius: 10px;
  }
  
  .service__area.services__revamp {
    border-radius: 0 0 16px 16px;
  }
  
  .service__area.services__revamp .container {
    padding-top: 32px;
    padding-bottom: 40px;
  }
  
  .services__header {
    margin-bottom: 20px;
  }
  
  .services__kicker {
    font-size: 20px !important;
  }
  
  .services__headline {
    font-size: 12px;
  }
  
  .services__desc {
    font-size: 11px;
  }
  
  .services__icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 6px;
  }
  
  .services__icon i {
    font-size: 12px;
  }
  
  .services__title {
    font-size: 12px;
    margin: 6px 0 4px 0;
  }
  
  .services__text {
    font-size: 9px;
    margin-bottom: 8px;
    line-height: 1.3;
  }
  
  .services__tag {
    font-size: 8px;
    padding: 2px 4px;
  }
  
  .services__carousel-track {
    gap: 8px;
    padding: 8px;
  }
  
  .services__carousel-arrow {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }
  
  .services__view-all-btn {
    padding: 10px 20px;
    font-size: 12px;
  }
}

/* Mobile Extra Small: 320px and below */
@media (max-width: 320px) {
  .services__card {
    flex: 0 0 calc(100% - 8px);
    min-width: calc(100% - 8px);
    padding: 12px 8px 8px;
    border-radius: 8px;
  }
  
  .service__area.services__revamp {
    border-radius: 0 0 14px 14px;
  }
  
  .service__area.services__revamp .container {
    padding-top: 28px;
    padding-bottom: 36px;
  }
  
  .services__header {
    margin-bottom: 18px;
  }
  
  .services__kicker {
    font-size: 18px !important;
  }
  
  .services__headline {
    font-size: 11px;
  }
  
  .services__desc {
    font-size: 10px;
  }
  
  .services__icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 5px;
  }
  
  .services__icon i {
    font-size: 11px;
  }
  
  .services__title {
    font-size: 11px;
    margin: 5px 0 3px 0;
  }
  
  .services__text {
    font-size: 8px;
    margin-bottom: 6px;
    line-height: 1.2;
  }
  
  .services__tag {
    font-size: 7px;
    padding: 1px 3px;
  }
  
  .services__carousel-track {
    gap: 6px;
    padding: 6px;
  }
  
  .services__carousel-arrow {
    width: 24px;
    height: 24px;
    font-size: 10px;
  }
  
  .services__view-all-btn {
    padding: 8px 16px;
    font-size: 11px;
  }
}

.services__card::before,
.services__card::after {
  display: none !important;
}

.services__card:hover {
  background: linear-gradient(to bottom right, #fff3, #0000) !important;
  border-top: 3px solid #F6BC0E;
  transform: translateY(-4px);
}


/* Mobile: stack cards vertically */
@media (max-width: 767px) {
  .services__scroller {
    overflow-x: visible;
  }
}

.services__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;

  font-size: 22px;
  color: #ffffff;
  transition: transform 260ms ease, color 260ms ease;
}

/* icon animation on hover */
.services__card:hover .services__icon i {
  transform: rotate(-12deg) scale(1.14);
}

.services__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 14px;
}

.services__tag {
  font-size: 12px;
  color:  #cc8513;
  border: 1px solid rgb(246, 188, 14);
  padding: 6px 10px;
  border-radius: 999px;
  background-color: #f6bc0e26;
}

.services__title {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
  line-height: 1.3;
}

.services__text {
  font-size: 14px;
  color: #444444b0;
  line-height: 1.7;
  flex: 1;
}

.services__card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #F6BC0E;
  text-decoration: none;
  margin-top: auto;
  padding-top: 14px;
  transition: gap 0.2s ease, color 0.2s ease;
}

/* CSS diagonal arrow — works without any icon font */


.services__card-arrow {
  display: none; /* hidden — ::after handles the arrow */
}

.services__card:hover .services__card-link {
  color: #e6a800;
  gap: 8px;
}

.services__footer {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}


@media (max-width: 991px) {
  .services__headline {
    font-size: 34px;
  }
  .services__card {
    flex-basis: 320px;
  }
}

@media (max-width: 767px) {
  .services__scroller {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
    padding: 0;
  }
  .services__card {
    flex: unset;
  }
}

.counter__area.keystats__revamp {
  background: linear-gradient(160deg, #0d0900 0%, #1c1400 25%, #120e00 55%, #0a0800 100%) !important;
  position: relative;
  overflow: hidden;
}
.counter__area.keystats__revamp::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(251,191,36,0.40) 0%, rgba(180,130,0,0.18) 35%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.counter__area.keystats__revamp::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.35) 0%, rgba(120,80,0,0.15) 35%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.counter__area.keystats__revamp .container {
  position: relative;
  z-index: 1;
}

.brand__area {
  background: #ffffff !important;
}


.blog__area {
  background: #f3f5f8 !important;
}

.cta__area {
  background: #ffffff !important;
}

.footer__area {
  background: #ffffff !important;
}

/* Add soft section separators */
main > section:not(.hero__area) {
  position: relative;
}

main > section:not(.hero__area)::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 64px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.02) 100%);
  pointer-events: none;
}

.container.line {
  background: transparent !important;
}

/* Neutralize additional components that were previously forced yellow */
.service__link {
  background: var(--color-surface) !important;
  border: 1px solid var(--color-border) !important;
  color: var(--color-text) !important;
}

.service__icon,
.testimonial__rating i,
.testimonial__author h4,
.contact__info h2,
.contact__text h4 {
  color: var(--color-text) !important;
}

.testimonial__author img {
  border-color: var(--color-border) !important;
}

/* Blog: card effect */
.blog__item {
  background: var(--color-surface) !important;
  border: 1px solid var(--color-border) !important;
  border-radius: 18px;
  overflow: hidden;
  padding: 18px 18px 22px;
  box-shadow: 0 18px 60px rgba(17, 18, 20, 0.08);
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.blog__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(17, 18, 20, 0.12);
}

.blog__img-wrapper .img-box {
  border-radius: 14px;
  overflow: hidden;
}

.blog__title {
  color: var(--color-text) !important;
}

.blog__meta,
.blog__meta a,
.blog__btn {
  color: var(--color-muted) !important;
}

/* Testimonials slider */
.testimonial__slider {
  padding-top: 30px;
  padding-bottom: 0;
  overflow-x: clip !important;
  overflow-y: visible !important;
}

.testimonial__slider .swiper-wrapper {
  align-items: stretch !important;
}

.testimonial__slider .swiper-slide {
  height: auto !important;
  display: flex !important;
  flex-direction: column;
}

.testimonial__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 70px 30px 30px;
  min-height: 320px;
  flex: 1;
  box-shadow: 0 18px 60px rgba(17, 18, 20, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  margin-top: 50px;
  overflow: visible;
}

.testimonial__card .testimonial__img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  flex-shrink: 0;
  overflow: hidden;
  background: #fff;
  border: 3px solid var(--color-border);
}

.testimonial__card .testimonial__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Stop main.js imageMoving() cursor-follow effect */
  transform: none !important;
  transition: none !important;
  pointer-events: none;
  position: static !important;
  left: auto !important;
  top: auto !important;
}

.testimonial__text {
  color: var(--color-muted) !important;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
  position: relative;
}

.testimonial__text::before {
  content: '\201C';
  font-size: 60px;
  line-height: 1;
  color: var(--color-border);
  position: absolute;
  top: -20px;
  left: 0;
  font-family: Georgia, serif;
}

.testimonial__text::after {
  content: '\201D';
  font-size: 60px;
  line-height: 1;
  color: var(--color-border);
  position: absolute;
  bottom: -30px;
  right: 0;
  font-family: Georgia, serif;
}

.testimonial__title {
  color: var(--color-text) !important;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.testimonial__title::before {
  content: '';
  width: 30px;
  height: 3px;
  background: var(--color-text);
  display: block;
}

.testimonial__role {
  color: var(--color-muted) !important;
  font-size: 13px;
  margin-top: 4px;
}

.testimonial__pagination {
  position: static !important;
  transform: none !important;
  margin-top: 40px !important;
  margin-bottom: 20px !important;
  display: flex !important;
  justify-content: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
  width: 100% !important;
}

.testimonial__pagination .swiper-pagination-bullet {
  background: #d4d4d4 !important;
  opacity: 1 !important;
  margin: 0 !important;
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  border: none !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.testimonial__pagination .swiper-pagination-bullet:hover {
  background: #F6BC0E !important;
  transform: scale(1.25) !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15) !important;
}

.testimonial__pagination .swiper-pagination-bullet-active {
  background: #F6BC0E !important;
  border: none !important;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4) !important;
  transform: scale(1.2) !important;
}

/* Darker dots for light grey background (FROM CREATORS section) */
.testi-page__section--alt .testimonial__pagination {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
}

.testi-page__section--alt .testimonial__pagination .swiper-pagination-bullet {
  background: #b8b8b8 !important;
  opacity: 1;
  margin: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 11;
}

.testi-page__section--alt .testimonial__pagination .swiper-pagination-bullet:hover {
  background: #F6BC0E !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transform: scale(1.25);
}

.testi-page__section--alt .testimonial__pagination .swiper-pagination-bullet-active {
  background: #F6BC0E !important;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
  transform: scale(1.2);
}



.testimonial__pagination .swiper-pagination-bullet,
.testi-page__section .testimonial__pagination .swiper-pagination-bullet,
.testi-page__section--alt .testimonial__pagination .swiper-pagination-bullet {
  display: inline-block;
  visibility: visible !important;
  opacity: 1;
}

/* Responsive pagination sizing */
@media (max-width: 768px) {
  .testimonial__pagination {
    position: static !important;
    transform: none !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-top: 30px !important;
    margin-bottom: 15px !important;
    width: 100% !important;
  }
  
  .testimonial__pagination .swiper-pagination-bullet {
    background: #cccccc !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 8px !important;
    height: 8px !important;
  }
  
  .testimonial__pagination .swiper-pagination-bullet-active {
    background: #F6BC0E !important;
    transform: scale(1.1) !important;
  }
  
  /* FROM CREATORS section on tablet */
  .testi-page__section--alt .testimonial__pagination {
    position: static !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10 !important;
    margin-top: 30px !important;
    margin-bottom: 15px !important;
  }
  
  .testi-page__section--alt .testimonial__pagination .swiper-pagination-bullet {
    background: #b8b8b8 !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 11 !important;
    width: 11px !important;
    height: 11px !important;
  }
  
  .testi-page__section--alt .testimonial__pagination .swiper-pagination-bullet-active {
    background: #F6BC0E !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 11 !important;
  }
}

@media (max-width: 480px) {

  /* ── Testimonial card: mobile layout fix ────────────────────────
     On small screens the image was position:absolute top:-50px which
     gets clipped by overflow:clip on the slider (CSS spec forces
     overflow-y to auto when overflow-x is clip). Fix: bring the
     image into normal flow so no overflow/clipping can occur.
  ─────────────────────────────────────────────────────────────── */

  .testimonial__slider {
    padding-top: 0 !important;
  }

  .testimonial__card {
    padding: 24px 18px 24px !important;
    margin-top: 12px !important;
    min-height: unset !important;
    gap: 12px;
  }

  /* Image: back in normal flow — no more absolute/negative-top */
  .testimonial__card .testimonial__img {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    margin: 0 auto !important;
    width: 72px !important;
    height: 72px !important;
    flex-shrink: 0 !important;
  }

  .testimonial__text {
    font-size: 13px !important;
    line-height: 1.65 !important;
    margin-bottom: 14px !important;
    padding-top: 10px;
  }

  /* Scale down the decorative quote marks */
  .testimonial__text::before {
    font-size: 40px !important;
    top: -10px !important;
  }

  .testimonial__text::after {
    font-size: 40px !important;
    bottom: -18px !important;
  }

  .testimonial__title {
    font-size: 13px !important;
    letter-spacing: 0.3px !important;
  }

  /* Section padding: smaller on very small screens */
  .testi-page__section,
  .testi-page__section--alt {
    padding-top: 40px !important;
    padding-bottom: 60px !important;
  }

  .testimonial__pagination {
    position: static !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-top: 25px !important;
    margin-bottom: 12px !important;
    gap: 6px !important;
    width: 100% !important;
  }
  
  .testimonial__pagination .swiper-pagination-bullet {
    background: #cccccc !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 10px !important;
    height: 10px !important;
  }
  
  .testimonial__pagination .swiper-pagination-bullet:hover {
    background: #999999 !important;
    transform: scale(1.15) !important;
  }
  
  .testimonial__pagination .swiper-pagination-bullet-active {
    background: #F6BC0E !important;
    transform: scale(1.08) !important;
  }
  
  /* FROM CREATORS section on mobile */
  .testi-page__section--alt .testimonial__pagination {
    position: static !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10 !important;
    margin-top: 25px !important;
    margin-bottom: 12px !important;
    gap: 6px !important;
  }
  
  .testi-page__section--alt .testimonial__pagination .swiper-pagination-bullet {
    background: #b8b8b8 !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 11 !important;
    width: 8px !important;
    height: 8px !important;
  }
  
  
  .testi-page__section--alt .testimonial__pagination .swiper-pagination-bullet-active {
    background: #F6BC0E !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 11 !important;
  }
}


.registration__icon {
  color: var(--color-text) !important;
}

.registration__text,
.registration__benefits li {
  color: var(--color-muted) !important;
}

.registration__benefits li i {
  color: var(--color-muted) !important;
}

/* Section transitions
   IMPORTANT: Don't hide content by default (avoids "missing sections" if JS errors).
   Animation is handled by GSAP ScrollTrigger in custom.js when available.
*/
/* Section scroll-reveal */
.section-reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .section-reveal {
    transition: none;
  }
}

/* =============================
   Join (Creators + Brands) Revamp
   ============================= */
.join__revamp {
  position: relative;
  overflow: hidden;
  background: #0d1117;
  transition: background-color 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.join__header {
  max-width: 920px;
  margin: 0 auto 46px;
  text-align: center;
}

.join__kicker {
  display: block !important;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: clamp(24px, 2.6vw, 32px);
  color: #F6BC0E;
  margin-bottom: 14px;
}

.join__headline {
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: 1.3;
  margin-bottom: 14px;
  color: var(--color-text) !important;
}

.join__desc {
  max-width: 820px;
  margin: 0 auto;
  color: var(--color-muted) !important;
  line-height: 1.7;
}

.join__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.join__card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 30px 30px 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.84) 0%, rgba(243,245,248,0.84) 100%);
  border: 1px solid rgba(17, 18, 20, 0.08);
  box-shadow: 0 24px 90px rgba(17, 18, 20, 0.10);
  transform-style: preserve-3d;
  will-change: transform;
  transition: box-shadow 260ms ease, border-color 260ms ease;
  backdrop-filter: blur(10px);
}

.join__card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  background: radial-gradient(circle at var(--glow-x, 80%) var(--glow-y, 20%), rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.08) 32%, rgba(0, 0, 0, 0) 70%);
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 260ms ease, transform 260ms ease;
  pointer-events: none;
}

.join__card::after {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.25) 45%, rgba(255,255,255,0) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.join__card:hover {
  border-color: rgba(0, 0, 0, 0.28);
  box-shadow: 0 34px 120px rgba(17, 18, 20, 0.14);
}

.join__card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.join__card:hover::after {
  opacity: 1;
}

.join__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.join__icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  border: 1px solid #1a1a1a;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.20);
  transform: translateZ(30px);
}

.join__icon i {
  font-size: 22px;
  color: #ffffff;
}

.join__chip {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(17, 18, 20, 0.68);
  background: rgba(17, 18, 20, 0.04);
  border: 1px solid rgba(17, 18, 20, 0.06);
  padding: 8px 12px;
  border-radius: 999px;
}

.join__title {
  font-size: 22px;
  font-weight: 900;
  color: var(--color-text) !important;
  margin-bottom: 10px;
}

.join__text {
  color: var(--color-muted) !important;
  line-height: 1.7;
  margin-bottom: 16px;
}

.join__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 10px;
}

.join__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(17, 18, 20, 0.78);
}

.join__list li i {
  margin-top: 4px;
  color: rgba(17, 18, 20, 0.55);
}

.join__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.join__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.join__orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(0px);
  background: radial-gradient(circle, rgba(255, 196, 0, 0.18) 0%, rgba(255, 196, 0, 0.06) 40%, rgba(255, 196, 0, 0) 70%);
  opacity: 0.9;
}

.join__orb--1 {
  top: -160px;
  left: -160px;
}

.join__orb--2 {
  bottom: -200px;
  right: -180px;
}

.join__orb--3 {
  top: 40%;
  right: 8%;
  width: 320px;
  height: 320px;
  opacity: 0.6;
}

@media (max-width: 991px) {
  .join__headline {
    font-size: 18px;
  }
  .join__grid {
    grid-template-columns: 1fr;
  }
}

/* =============================
   Brands Marquee Revamp
   ============================= */
.brands__revamp .line-3 {
  display: none !important;
}

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

.brands__title {
  max-width: 820px;
  margin: 0 auto 8px;
  text-align: center;
}

.brands__kicker {
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: clamp(24px, 2.6vw, 32px);
  color: #F6BC0E;
  margin-bottom: 14px;
}

.brands__headline {
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: 1.3;
  color: var(--color-text) !important;
  margin-bottom: 8px;
}

.brands__desc {
  color: var(--color-muted) !important;
  margin: 0;
}

.brands__marquee {
  position: relative;
  overflow: hidden;

  /* Full left-to-right marquee (full-bleed) */
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);

  border-radius: 18px;
  border: 1px solid rgba(17, 18, 20, 0.08);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 60px rgba(17, 18, 20, 0.10);
  height: 96px;
  display: flex;
  align-items: center;
}

.brands__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.brands__fade--left {
  left: 0;
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.brands__fade--right {
  right: 0;
  background: linear-gradient(270deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.brands__track {
  --marquee-duration: 22s;
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  padding: 0 80px;
  animation: brands-marquee var(--marquee-duration) linear infinite;
  will-change: transform;
}

.brands__marquee:hover .brands__track {
  animation-play-state: paused;
}

.brands__item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.95;
  transition: opacity 220ms ease, transform 220ms ease;
}

.brands__item img {
  height: 128px;
  width: auto;
  opacity: 1;
  filter: contrast(1.18);
  mix-blend-mode: multiply;
}

.brands__item:hover {
  opacity: 1;
  transform: translateY(-2px);
}

@keyframes brands-marquee {
  /* move RIGHT -> LEFT continuously (3 sets, so -33.33%) */
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-33.33%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brands__track {
    animation: none;
  }
}

@media (max-width: 991px) {
  .brands__headline {
    font-size: 18px;
  }
  .brands__track {
    padding: 0 56px;
    gap: 42px;
  }
  .brands__fade {
    width: 90px;
  }
}

@media (max-width: 767px) {
  .brands__item img {
    height: 36px;
  }
}

/* =============================
   Reels (Instagram) Section
   ============================= */
.reels__area {
  background: linear-gradient(135deg, #0d0900 0%, #1a1000 30%, #0a0600 60%, #1c1400 100%) !important;
  padding: 84px 0 !important;
  border-top: 2px solid rgba(251,191,36,0.18);
  border-bottom: 2px solid rgba(251,191,36,0.10);
  box-shadow: inset 0 0 120px rgba(251,191,36,0.06);
}

.reels__scroller {
  min-height: 450px !important;
}

.reels__header {
  max-width: 920px;
  margin: 0 auto 26px;
  text-align: center;
}

.reels__kicker {
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: clamp(24px, 2.6vw, 32px);
  color: #F6BC0E;
  margin-bottom: 14px;
}

.reels__headline {
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: 1.3;
  margin-bottom: 10px;
  color: #ffffff !important;
}

.reels__desc {
  color: rgba(255, 255, 255, 0.60) !important;
  line-height: 1.7;
  margin: 0;
}

/* Instagram badge in reels section */
.reels__ig-badge {
  display: flex;
  justify-content: center;
  margin: 10px 0 32px;
}

.reels__ig-badge i {
  font-size: 52px;
  background: radial-gradient(circle at 30% 110%, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 18px rgba(220, 39, 67, 0.45));
  animation: igPulse 2.8s ease-in-out infinite;
}

@keyframes igPulse {
  0%, 100% { filter: drop-shadow(0 4px 18px rgba(220,39,67,0.45)); transform: scale(1); }
  50%       { filter: drop-shadow(0 6px 28px rgba(220,39,67,0.75)); transform: scale(1.08); }
}

.reels__scroller-wrap {
  position: relative;
  padding: 10px 0 6px;
}

.reels__scroller-wrap::before,
.reels__scroller-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.reels__scroller-wrap::before {
  left: -2px;

}

.reels__scroller-wrap::after {
  right: -2px;

}

.reels__nav-group {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
  padding-right: 10px;
}

.reels__nav {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(251,191,36,0.35);
  background: rgba(251,191,36,0.10);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 28px rgba(251,191,36,0.20);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #F6BC0E;
  transition: transform 220ms ease, opacity 220ms ease;
}

.reels__nav:hover {
  transform: scale(1.06);
}

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

.reels__scroller {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 12px 10px 22px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  perspective: 900px;
  cursor: grab;
  user-select: none;
}

.reels__scroller.is-dragging {
  cursor: grabbing;
}

.reels__scroller::-webkit-scrollbar {
  height: 0;
}

.reels__card {
  scroll-snap-align: start;
  flex: 0 0 290px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(17, 18, 20, 0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.86) 100%);
  box-shadow: 0 22px 80px rgba(17, 18, 20, 0.12);
  transform-style: preserve-3d;
  will-change: transform;
}

.reels__media-link {
  display: block;
  text-decoration: none;
}

.reels__media {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #111;
}

.reels__thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.3s ease;
}

.reels__card:hover .reels__thumbnail {
  transform: scale(1.05);
  filter: brightness(0.85);
}

.reels__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  transition: background 0.3s ease;
}

.reels__card:hover .reels__overlay {
  background: rgba(0, 0, 0, 0.4);
}

.reels__play {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  color: #fff;
  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
  transition: transform 220ms ease;
}

.reels__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  background: rgba(0,0,0,0.20);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 8px 10px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.reels__title-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 100px 20px 25px;
  background: linear-gradient(to top, rgba(251, 191, 36, 0.90) 0%, rgba(251, 191, 36, 0.65) 35%, rgba(251, 191, 36, 0.30) 65%, transparent 100%);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 10;
}

.reels__card:hover .reels__title-overlay {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.reels__title-overlay .reels__title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1000 !important;
  margin: 0;
  text-align: center;
  line-height: 1.4;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.reels__card:hover .reels__play {
  transform: scale(1.06);
  animation: reels-play-pulse 1.2s ease-in-out infinite;
}

@keyframes reels-play-pulse {
  0%, 100% { box-shadow: 0 18px 60px rgba(0,0,0,0.35); }
  50% { box-shadow: 0 22px 90px rgba(255,196,0,0.25); }
}

.reels__card.is-embed .reels__placeholder {
  opacity: 0.18;
}

.reels__card.is-playing .reels__placeholder {
  opacity: 0;
  pointer-events: none;
}

.reels__card.is-playing iframe {
  pointer-events: auto;
}

.reels__meta {
  padding: 16px 16px 18px;
}

.reels__title {
  font-size: 16px;
  font-weight: 900;
  color: var(--color-text, #111214) !important;
  margin: 0 0 10px;
}

.reels__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: rgba(17, 18, 20, 0.80) !important;
}

.reels__link i {
  transform: rotate(-45deg);
}

.reels__card:hover .reels__link {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

@media (max-width: 1023px) {
  .reels__area {
    padding: 60px 0 !important;
  }
  .reels__card {
    flex: 0 0 240px !important;
  }
  .reels__scroller {
    min-height: 380px !important;
    gap: 14px;
  }
  .reels__header {
    margin-bottom: 20px;
  }
  .reels__kicker {
    font-size: 20px !important;
  }
}

@media (max-width: 767px) {
  .reels__area {
    padding: 50px 0 !important;
  }
  .reels__card {
    flex: 0 0 68vw !important;
  }
  .reels__scroller {
    min-height: 0 !important;
    padding: 8px 16px 20px !important;
    gap: 12px;
  }
  .reels__scroller-wrap::before,
  .reels__scroller-wrap::after,
  .reels__nav-group {
    display: none !important;
  }
  .reels__header {
    padding: 0 16px;
    margin-bottom: 16px;
  }
  .reels__kicker {
    font-size: 16px !important;
  }
}

@media (max-width: 479px) {
  .reels__card {
    flex: 0 0 80vw !important;
  }
  .reels__scroller {
    padding: 8px 12px 16px !important;
    gap: 10px;
  }
}

/* =============================
   Footer Revamp (dark theme)
   ============================= */
.footer__revamp,
footer.footer__new {
  background: #282725 !important;
  border-top: 2px solid var(--primary-color) !important;
  position: relative;
  z-index: 1;
  will-change: transform;
  transform: translateZ(0);
  padding-top: 60px;
  border-radius: 0;
  margin-top: 0;
}

/* Flip all text to light on dark footer - overrides the global 'footer p/li' muted colors */
.footer__revamp,
.footer__revamp p,
.footer__revamp li,
.footer__revamp span:not(.wc-btn-primary *):not(.wc-btn-secondary *) {
  color: rgba(255, 255, 255, 0.70) !important;
}

.footer__revamp h1,
.footer__revamp h2,
.footer__revamp h3,
.footer__revamp h4,
.footer__revamp h5,
.footer__revamp h6 {
  color: #ffffff !important;
}

/* Undo old global logo inversion specifically in footer */

.footer__revamp a {
  color: rgba(255, 255, 255, 0.75);
}

.footer__revamp a:hover {
  color: #F6BC0E;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr 1.1fr 1.2fr;
  gap: 26px;
  padding: 70px 0 30px;
}

.footer__brand {
  max-width: 460px;
}

.footer__blurb {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.60);
  line-height: 1.7;
}

.footer__title {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #ffffff !important;
  margin: 4px 0 14px;
}

.footer__link,
.footer__contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer__muted {
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer__cta {
  margin-top: 16px;
}

.footer__subscribe {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  padding: 10px 10px 10px 14px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
}

.footer__subscribe input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.90);
}

.footer__subscribe input::placeholder {
  color: rgba(255, 255, 255, 0.40);
}

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

.footer__social li {
  list-style: none;
}

.footer__social a span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  background: transparent;
  transition: all 0.3s ease;
}

.footer__social a:hover span {
  background: #000000;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.footer__social a span i,
.footer__social a span svg {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s ease;
  animation: floatIcon 3s ease-in-out infinite;
  font-size: 18px;
}

.footer__social a:hover span i,
.footer__social a:hover span svg {
  color: #F6BC0E;
  animation-play-state: paused;
  transform: translateY(0);
}

.footer__social li:nth-child(1) span i,
.footer__social li:nth-child(1) span svg {
  animation-delay: 0s;
}

.footer__social li:nth-child(2) span i,
.footer__social li:nth-child(2) span svg {
  animation-delay: 0.5s;
}

.footer__social li:nth-child(3) span i,
.footer__social li:nth-child(3) span svg {
  animation-delay: 1s;
}

.footer__social li:nth-child(4) span i,
.footer__social li:nth-child(4) span svg {
  animation-delay: 1.5s;
}

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.footer__bottom {
  padding: 18px 0 26px;
  /* border-top: 1px solid rgba(255, 255, 255, 0.10); */
  color: rgba(255, 255, 255, 0.45);
}

.footer__bottom-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: nowrap;
}

.footer__bottom p {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}

.footer__credit-link {
  font-weight: 800;
  text-decoration: underline !important;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.footer__privacy-link {
  margin-left: auto;
  flex: 0 0 auto;
  white-space: nowrap;
  text-decoration: none;
}

.footer__privacy-link:hover {
  text-decoration: none;
}

/* =============================
   Privacy Policy (site)
   ============================= */
.policy__content {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(17, 18, 20, 0.78);
  line-height: 1.8;
}

.policy__content p {
  margin: 0 0 14px;
}

.policy__content h1,
.policy__content h2,
.policy__content h3,
.policy__content h4 {
  color: rgba(17, 18, 20, 0.92);
  margin: 22px 0 10px;
}

.policy__content ul,
.policy__content ol {
  margin: 0 0 14px;
  padding-left: 22px;
}

.policy__content ul > li {
  list-style: disc;
}

.policy__content ol > li {
  list-style: decimal;
}

.policy__content ul > li,
.policy__content ol > li {
  display: list-item;
  margin: 0 0 8px;
}

.policy__content a {
  text-decoration: underline;
  color: inherit;
}

@media (max-width: 991px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    padding-top: 56px;
  }
}

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

  .footer__bottom-inner {
    flex-wrap: wrap;
  }
}

/* =============================
   Global section backgrounds (avoid "all-white" look)
   ============================= */




/* =============================
   Services Section - old scroll animation removed
   ============================= */

/* Join section - permanently dark: always show white text */
.join__revamp .join__kicker,
.join__revamp .join__headline,
.join__revamp .join__desc,
.join__revamp .join__title,
.join__revamp .join__text,
.join__revamp .join__list li,
.join__revamp .join__chip,
.join__revamp h2,
.join__revamp h3,
.join__revamp h4,
.join__revamp p {
  color: #ffffff !important;
}
.join__revamp .join__list li i { color: rgba(255,255,255,0.55) !important; }
.join__revamp .join__chip {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.2) !important;
}
.join__revamp .join__card {
  background: rgba(255,255,255,0.05) !important;
  border-color: rgba(255,255,255,0.1) !important;
}
.join__revamp .wc-btn-primary {
  background: linear-gradient(135deg, #F6BC0E 0%, #f59e0b 40%, #1a1000 100%) !important;
  color: #000000 !important;
  border: none !important;
  box-shadow: 0 8px 28px rgba(251,191,36,0.38) !important;
}
.join__revamp .wc-btn-secondary {
  background: transparent !important;
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.4) !important;
}
.join__revamp .wc-btn-secondary:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.6) !important;
}

/* Smooth transitions for all elements inside */
.join__revamp * {
  transition: color 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              background-color 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.join__revamp.bg-gray {
  background: #1a1a1a !important;
}

/* Join section text colors when gray bg is active */
.join__revamp.bg-gray .join__kicker,
.join__revamp.bg-gray .join__headline,
.join__revamp.bg-gray .join__desc,
.join__revamp.bg-gray .join__title,
.join__revamp.bg-gray .join__text,
.join__revamp.bg-gray .join__list li,
.join__revamp.bg-gray .join__chip,
.join__revamp.bg-gray h3,
.join__revamp.bg-gray h4,
.join__revamp.bg-gray p {
  color: #ffffff !important;
  transition: color 0.6s ease;
}

.join__revamp.bg-gray .join__list li i {
  color: rgba(255, 255, 255, 0.6) !important;
}

.join__revamp.bg-gray .join__chip {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.join__revamp.bg-gray .join__card {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Fix button text in gray bg */
.join__revamp.bg-gray .wc-btn-primary {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #ffffff !important;
}

.join__revamp.bg-gray .wc-btn-secondary {
  background: transparent !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
}

.join__revamp.bg-gray .wc-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
}

/* =============================
   Portfolio/Work Section - Scroll Animation (same as Join)
   ============================= */
.portfolio__area {
  background: #f2f3f5 !important;
  transition: background-color 1s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative;
  z-index: 1;
  padding-top: 72px !important;
  padding-bottom: 72px !important;
}

.portfolio__area.bg-gray {
  background: gray !important;
}

/* Portfolio section text colors when gray bg is active */
.portfolio__area.bg-gray .portfolio__text {
  color: #908a8a !important;
  transition: color 0.6s ease;
}

.portfolio__area.bg-gray .portfolio__title,
.portfolio__area.bg-gray .portfolio__info p {
  color: #ffffff !important;
}

/* Fix button in dark background */
.portfolio__area.bg-gray .wc-btn-secondary {
  background: transparent !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
}

.portfolio__area.bg-gray .wc-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
}


/* =============================
   Mobile side spacing (320px – 576px)
   ============================= */
@media (max-width: 576px) {
  .container,
  .container-fluid {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

/* =============================
   Global spacing tune (reduce extra whitespace)
   ============================= */
main .pt-150 { padding-top: 96px !important; }
main .pb-140 { padding-bottom: 88px !important; }
main .pt-120 { padding-top: 76px !important; }
main .pb-120 { padding-bottom: 76px !important; }
main .pt-100 { padding-top: 64px !important; }
main .pb-100 { padding-bottom: 64px !important; }
main .pt-50  { padding-top: 32px !important; }
main .pb-50  { padding-bottom: 32px !important; }

/* Axtra has a more specific rule: .brand__area .pb-100 { padding-bottom: 50px; }
   Override it so spacing stays consistent.
*/
main .brand__area .pb-100 { padding-bottom: 64px !important; }

@media (max-width: 767px) {
  main .pt-150 { padding-top: 78px !important; }
  main .pb-140 { padding-bottom: 72px !important; }
  main .pt-120 { padding-top: 64px !important; }
  main .pb-120 { padding-bottom: 64px !important; }
  main .pt-100 { padding-top: 56px !important; }
  main .pb-100 { padding-bottom: 56px !important; }
  main .pt-50  { padding-top: 26px !important; }
  main .pb-50  { padding-bottom: 26px !important; }
  main .brand__area .pb-100 { padding-bottom: 56px !important; }
}

/* =============================
   Section-specific padding (for sections without pt/pb utilities)
   ============================= */
.about__area,
.services__revamp,
.reels__area {
  padding: 84px 0;
}

/* Card variant overrides the global padding */
.about__area.about__card {
  padding: 0;
}

@media (max-width: 767px) {
  .about__area,
  .services__revamp,
  .reels__area {
    padding: 64px 0;
  }
  .about__area.about__card {
    padding: 0 !important;
  }
  .portfolio__area {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }
}

.portfolio__area.bg-gray {
  background: #f2f3f5 !important;
}

/* Reduce some template spacing utilities that feel too tall */
.testimonial__area .mt-60 {
  margin-top: 28px !important;
}

/* Axtra adds huge padding-top to testimonial title block; neutralize it */
.testimonial__area .sec-title-wrapper {
  max-width: 760px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin: 0 auto !important;
  text-align: center !important;
}

.testimonial__area .sec-sub-title,
.testimonial__area .sec-title,
.testimonial__area .sec-title-wrapper p {
  text-align: center !important;
}

.testimonial__area .sec-title-wrapper p {
  padding-top: 10px !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
}

/* Reduce container padding for testimonial section */
.testimonial__area .pt-120 {
  padding-top: 56px !important;
}

.testimonial__area .pb-120 {
  padding-bottom: 56px !important;
}

.brands__revamp .pt-100 {
  padding-top: 24px !important;
}

.brands__revamp .pb-100 {
  padding-bottom: 24px !important;
}

.brands__revamp .pt-50 {
  padding-top: 24px !important;
}

.brands__revamp .pb-50 {
  padding-bottom: 24px !important;
}

/* Button sits OUTSIDE portfolio__area to escape GSAP fixed-positioned items */
.portfolio__btn-outer {
  display: flex;
  justify-content: center;
  padding: 36px 0 52px;
  background: #f2f3f5;
  position: relative;
  z-index: 10;
}

.portfolio__btn-outer .wc-btn-secondary {
  background: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
  padding: 14px 40px !important;
  border-radius: 6px !important;
  box-shadow: none !important;
  animation: none !important;
  position: relative;
  overflow: hidden !important;
  isolation: isolate;
  transition: color 0.5s ease, transform 0.5s ease, box-shadow 0.5s ease !important;
}

.portfolio__btn-outer .wc-btn-secondary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #F6BC0E;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.7s ease, height 0.7s ease;
  z-index: -1;
}

.portfolio__btn-outer .wc-btn-secondary::after {
  display: none !important;
}

.portfolio__btn-outer .wc-btn-secondary:hover::before {
  width: 400px;
  height: 400px;
}

.portfolio__btn-outer .wc-btn-secondary:hover {
  background: transparent !important;
  color: #000000 !important;
  box-shadow: 0 4px 12px rgba(250, 204, 21, 0.3) !important;
  transform: none !important;
}

.portfolio__btn-outer .wc-btn-secondary i {
  transform: rotate(-45deg);
}

.portfolio__area .portfolio__btn.btn_wrapper {
  display: flex !important;
  justify-content: center !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Override to golden primary style */
.portfolio__area .portfolio__btn .wc-btn-secondary {
  background: linear-gradient(135deg, #F6BC0E 0%, #f59e0b 40%, #1a1000 100%) !important;
  color: #000000 !important;
  border: none !important;
  font-weight: 800 !important;
  box-shadow: 0 8px 28px rgba(251,191,36,0.40), inset 0 1px 0 rgba(255,255,255,0.25) !important;
  animation: btnGoldShift 3s ease infinite;
  position: relative;
  overflow: hidden !important;
}

.portfolio__area .portfolio__btn .wc-btn-secondary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(105deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 55%);
  pointer-events: none;
}

.portfolio__area .portfolio__btn .wc-btn-secondary:hover {
  transform: translateY(-3px) scale(1.03) !important;
  box-shadow: 0 16px 44px rgba(251,191,36,0.55), inset 0 1px 0 rgba(255,255,255,0.30) !important;
}

.portfolio__area .portfolio__btn .wc-btn-secondary i {
  transform: rotate(-45deg);
}


@media (max-width: 991px) {
  .pf__area {
    border-radius: 0 0 28px 28px !important;
    padding: 48px 0 60px !important;
  }
  
  .service__area.services__revamp {
    border-radius: 0 0 28px 28px !important;
    margin-bottom: -28px !important;
    padding-bottom: 64px !important;
  }
  
  .footer__revamp,
  footer.footer__new {
    border-radius: 0;
    padding-top: 48px;
  }
}

@media (max-width: 767px) {
  .pf__area {
    border-radius: 0 0 24px 24px !important;
    padding: 40px 0 8px !important;
  }
  
  .service__area.services__revamp {
    border-radius: 0 0 20px 20px !important;
    margin-bottom: -20px !important;
    padding-bottom: 48px !important;
  }
  
  .footer__revamp,
  footer.footer__new {
    border-radius: 0;
    padding-top: 40px;
  }
}


/* =============================
   Section backgrounds - final authority (placed last to win all specificity races)
   ============================= */
.about__area       { background: #ffffff    !important; }                 /* 1. Clean white */
.service__area     { background: #ffffff !important; }
.registration__area,
.join__revamp      { background: #0d1117    !important; }                 /* 3. Deep dark */
/* counter__area / keystats: bg handled by component inline styles */
.portfolio__area   { background: #f2f3f5    !important; }                 /* 5. Light grey */
.brand__area,
.brands__revamp    { background: #ffffff    !important; }                 /* 6. White */
.testimonial__area { background: #fff8f0    !important; }                 /* 7. Warm amber tint */
.reels__area       { background: linear-gradient(135deg, #0d0900 0%, #1a1000 30%, #0a0600 60%, #1c1400 100%) !important; }  /* 8. Black-gold */

/* Dark join section: ensure all text is white regardless of JS state */
.join__revamp .join__kicker,
.join__revamp .join__headline,
.join__revamp .join__desc,
.join__revamp .join__title,
.join__revamp .join__text,
.join__revamp .join__list li,
.join__revamp h2,
.join__revamp h3,
.join__revamp h4,
.join__revamp p { color: #ffffff !important; }
.join__revamp .join__card,
.join__revamp .creators__card { background: rgba(255,255,255,0.06) !important; border-color: rgba(255,255,255,0.1) !important; }
.join__revamp .wc-btn-primary  { background: linear-gradient(135deg, #F6BC0E 0%, #f59e0b 40%, #1a1000 100%) !important; color: #000000 !important; border: none !important; }
.join__revamp .wc-btn-secondary { background: transparent !important; color: #ffffff !important; border-color: rgba(255,255,255,0.35) !important; }
.join__revamp .wc-btn-secondary:hover { background: rgba(255,255,255,0.1) !important; border-color: rgba(255,255,255,0.6) !important; }

/* =====================================================================
   CAREER PAGE  — styles to be added for new layout
   ===================================================================== */

.career-page {
  background: #2121207a ;
  overflow-x: hidden; 
}

.career-content-wrapper {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
}

/* ── Hero Banner ── */
.career__hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 60px 100px;
}

.career__hero-bg {
  position: absolute;
  inset: 0;
  background: url('/banner-6.png') center center / cover no-repeat;
  z-index: 0;
}

.career__hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.career__hero-content {
  position: relative;
  z-index: 2;
  padding-left: 10px;
 
}

.career__hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 48px;
}

.career__hero-eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #f6bc0e;
}

.career__hero-headline {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 28px;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.career__hero-headline span {
  color: #F6BC0E;
}

.career__hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 420px;
}

.career__hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.career__hero-btn-primary {
  display: inline-block;
  background: #F6BC0E;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.career__hero-btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #000000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.7s ease, height 0.7s ease;
  z-index: -1;
}

.career__hero-btn-primary:hover::before {
  width: 400px;
  height: 400px;
}

.career__hero-btn-primary:hover {
  background: transparent !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.career__hero-btn-ghost {
  display: inline-block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.career__hero-btn-ghost:hover {
  color: #F6BC0E;
}

@media (max-width: 768px) {
  .career__hero {
    padding: 120px 24px 80px;
    min-height: auto;
  }
  .career__hero-headline {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
}

/* ── Why 7P Digital ── */
.career__why {
  background: #f5f3ee;
  padding: 80px 60px !important;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
  position: relative;
  margin-top: 0;
  overflow: hidden;
}

.career__why-top {
  margin-bottom: 36px;
}

.career__why-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F6BC0E !important;
  margin-bottom: 16px;
}

.career__why-eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #F6BC0E;
}

.career__why-headline {
  font-size: clamp(1.8rem, 3.5vw, 3.6rem);
  font-weight: 900;
  color: #111;
  line-height: 1.1;
  margin-bottom: 14px;
}

.career__why-sub {
  font-size: 14px;
  color: #666;
  line-height: 1.75;
  max-width: 460px;
}

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

.career__why-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 22px;
  border: 1px solid #e2dfd790;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}

.career__why-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}

.career__why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #fdf8e8;
  border-radius: 10px;
  margin-bottom: 16px;
  color: #F6BC0E;
  font-size: clamp(22px, 2.5vw, 37px);
}

.career__why-card-title {
  font-size: 14px;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}

.career__why-card-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 991px) {
  .career__why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .career__why {
    padding: 60px 32px !important;
  }
}

@media (max-width: 600px) {
  .career__why-grid {
    grid-template-columns: 1fr;
  }
  .career__why {
    padding: 60px 20px !important;
    border-radius: 0 0 24px 24px;
  }
}

/* ── Life At 7P ── */
.career__life {
  background: black;
  padding: 80px 60px !important;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  position: relative;
}

.career__life-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Left icon grid */
.career__life-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.career__life-cell {
  background: #1E1E1E;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}

.career__life-cell--large {
  grid-row: 1 / 3;
  min-height: 332px;
}

.career__life-icon {
  font-size: 2.4rem;
  color: #F6BC0E;
}

.career__life-emoji {
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1;
}

/* Right text */
.career__life-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F6BC0E !important;
  margin-bottom: 32px;
}

.career__life-eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #F6BC0E;
}

.career__life-headline {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.career__life-headline span {
  color: #F6BC0E;
  font-style: italic;
}

.career__life-body {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6) !important;
  line-height: 1.75;
  margin-bottom: 14px;
}

.career__life-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.career__life-tag {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.75);
  cursor: default;
}

.career__life-tag--active {
  background: #F6BC0E;
  border-color: #F6BC0E;
  color: #000;
}

@media (max-width: 991px) {
  .career__life-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .career__life {
    padding: 60px 32px !important;
  }
  .career__life-cell--large {
    min-height: 200px;
    grid-row: auto;
  }
  .career__life-cell {
    min-height: 140px;
  }
}

@media (max-width: 600px) {
  .career__life {
    padding: 60px 20px !important;
    border-radius: 0 0 24px 24px;
  }
  .career__why-card{
    padding: 15px;
  }
}

/* ── Open Positions ── */
.career__positions {
  background: #ffffff;
  padding: 80px 60px !important;
  position: relative;
  z-index: 30;
}

.career__positions-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.career__positions-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 12px;
}

.career__positions-eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #F6BC0E;
}

.career__positions-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #111;
  margin-bottom: 6px;
  line-height: 1.1;
}

.career__positions-sub {
  font-size: 14px;
  color: #888;
}

.career__positions-header-right {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #555;
  padding-bottom: 4px;
}

.career__positions-loc-icon {
  color: #e53e3e;
  font-size: 13px;
}

/* Category groups */
.career__positions-group {
  margin-bottom: 36px;
}

.career__positions-category {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F6BC0E !important;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0ede8;
}

.career__positions-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.career__position-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fafaf8;
  border: 1px solid #eeece8;
  border-radius: 12px;
  padding: 20px 24px;
  gap: 16px;
}

.career__position-title {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.career__position-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.career__position-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

.career__position-tag--green {
  background: #dcfce7;
  color: #15803d;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.career__position-tag--green::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #15803d;
  flex-shrink: 0;
}

.career__position-tag--blue {
  background: #dbeafe;
  color: #1d4ed8;
}

.career__position-detail {
  font-size: 12px;
  color: #555;
  padding: 3px 10px;
  border-radius: 20px;
  background: #fff;
}

.career__position-btn {
  flex-shrink: 0;
  display: inline-block;
  background: #282725;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.career__position-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #F6BC0E;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.7s ease, height 0.7s ease;
  z-index: -1;
}

.career__position-btn:hover::before {
  width: 400px;
  height: 400px;
}

.career__position-btn:hover {
  background: transparent !important;
  color: #000000 !important;
}

/* Fallback card */
.career__positions-fallback {
  margin-top: 32px;
  background: #fffde8;
  border: 1.5px dashed #F6BC0E;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
}

.career__positions-fallback-title {
  font-size: 18px;
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
}

.career__positions-fallback-sub {
  font-size: 13.5px;
  color: #666;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 24px;
}

.career__positions-fallback-btn {
  display: inline-block;
  background: #F6BC0E;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.2s;
}

.career__positions-fallback-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #000000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.7s ease, height 0.7s ease;
  z-index: -1;
}

.career__positions-fallback-btn:hover::before {
  width: 400px;
  height: 400px;
}

.career__positions-fallback-btn:hover {
  background: transparent !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .career__positions {
    padding: 60px 24px !important;
  }
  .career__positions-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .career__position-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .career__position-btn {
    text-align: center;
  }
  .career__position-row{
    padding: 15px;
  }
}

/* ── How We Hire ── */
.career__process {
  background: #f5f3ee;
  padding: 80px 60px !important;
  position: relative;
}

.career__process-eyebrow {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F6BC0E !important;
  margin-bottom: 20px;
}

.career__process-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: #111;
  line-height: 1.15;
  margin-bottom: 56px;
  text-align: center;
}

.career__process-eyebrow-line {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #F6BC0E;
}

.career__process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 0;
}

/* continuous line through all circle centers */
.career__process-track::before {
  content: '';
  position: absolute;
  top: 26px; /* half of circle height (52px / 2) */
  left: calc(12.5%); /* center of first column */
  right: calc(12.5%); /* center of last column */
  height: 1.5px;
  background: #ccc;
  z-index: 0;
}

.career__process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.career__process-num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #111;
  color: #F6BC0E;
  font-size: 14px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.career__process-step-label {
  font-size: 15px;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}

.career__process-step-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .career__process-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .career__process-track::before {
    display: none;
  }
  .career__process {
    padding: 60px 24px !important;
  }
}

@media (min-width: 1025px) {
  .career__why {
    position: sticky;
    top: 0;
    z-index: 10;
  }
  .career__life {
    position: sticky;
    top: 0;
    z-index: 20;
  }
  .career__positions {
    position: relative;
    top: 0;
    z-index: 30;
  }
  .career__process {
    position: sticky;
    top: 0;
    z-index: 40;
    border-radius: 0 0 40px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  }
}

/* ── Final CTA ── */
.career__cta {
  background: #ffffff;
  padding: 100px 60px !important;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 50;
  margin-bottom: -60px;
}

.career__cta-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F6BC0E !important;
  margin-bottom: 24px;
}

.career__cta-eyebrow-line {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #F6BC0E;
}

.career__cta-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: #111;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0px;
  margin-bottom: 20px;
}

.career__cta-title span {
  color: #F6BC0E;
}

.career__cta-sub {
  font-size: 15px;
  color: #777;
  line-height: 1.7;
  margin-bottom: 36px;
}

.career__cta-btn {
  display: inline-block;
  background: #282725;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 10px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.career__cta-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #F6BC0E;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.7s ease, height 0.7s ease;
  z-index: -1;
}

.career__cta-btn:hover::before {
  width: 400px;
  height: 400px;
}

.career__cta-btn:hover {
  background: transparent !important;
  color: #000000 !important;
}
.policy-space{
  margin-bottom: -60px;
  padding-bottom: 40px;
}

@media (max-width: 768px) {
  .career__cta {
    padding: 60px 24px !important;
    margin-bottom: -40px;
  }
  .career__cta-title {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }
}

/* ============================================================
   ABOUT PAGE STYLES
   ============================================================ */

.about-page {
  overflow-x: hidden;
  background: #f0ede8;
}

@media (max-width: 480px) {
  .about-page {
    font-size: 14px;
  }
}

@media (max-width: 375px) {
  .about-page {
    font-size: 13px;
  }
}

@media (max-width: 320px) {
  .about-page {
    font-size: 12px;
  }
  
  .about-page .content-wrapper {
    border-radius: 0 0 32px 32px !important;
  }
}

.about__hero {
  position: relative;
  min-height: auto;
  aspect-ratio: 19 / 9;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 0;
  background: #111 !important;
}

/* Marquee sits at bottom — positioned absolutely at the bottom of hero */
.about__hero-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #F6BC0E !important;
  padding: 10px 0;
  overflow: hidden;
  z-index: 3;
}

.about__hero-bg {
  position: absolute;
  inset: 0;
  background: url('/banner-5.png') center center / cover no-repeat;
  z-index: 0;
}

/* dark overlay so text is readable */
.about__hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.about__hero .container {
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
}

.about__hero-inner {
  max-width: 700px;
}

.about__hero-headline {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  font-style: italic;
  line-height: 1.1;
  color: #fff !important;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.about__hero-subline {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: rgba(255, 255, 255, 0.75) !important;
  line-height: 1.75;
  margin: 0;
}

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

/* Marquee — same style as services page */
.about__hero-marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll 60s linear infinite;
  color: #000 !important;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about__hero-marquee-track span {
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .about__hero {
    padding: 0;
    min-height: auto;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 768px) {
  .about__hero {
    padding: 0;
    min-height: auto;
    aspect-ratio: 16 / 9;
  }
  
  .about__hero .container {
    padding-bottom: 50px;
  }
  
  .about__hero-marquee {
    padding: 8px 0;
  }
  
  .about__hero-marquee-track {
    animation: marquee-scroll 32s linear infinite !important;
  }
}

@media (max-width: 480px) {
  .about__hero {
    padding: 0;
    min-height: auto;
    aspect-ratio: 4 / 3;
  }
  
  .about__hero .container {
    padding-bottom: 40px;
  }
  
  .about__hero-headline {
    font-size: 28px;
    margin-bottom: 18px;
  }
  
  .about__hero-subline {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .about__hero-marquee {
    padding: 8px 0;
  }
  
  .about__hero-marquee-track {
    font-size: 0.65rem;
  }
}

@media (max-width: 375px) {
  .about__hero {
    padding: 0;
    min-height: auto;
    aspect-ratio: 4 / 3;
  }
  
  .about__hero .container {
    padding-bottom: 35px;
  }
  
  .about__hero-headline {
    font-size: 24px;
    margin-bottom: 16px;
  }
  
  .about__hero-subline {
    font-size: 13px;
  }
  
  .about__hero-marquee {
    padding: 6px 0;
  }
  
  .about__hero-marquee-track {
    font-size: 0.6rem;
  }
}

@media (max-width: 320px) {
  .about__hero {
    padding: 0;
    min-height: auto;
    aspect-ratio: 1 / 1;
  }
  
  .about__hero .container {
    padding-bottom: 30px;
    padding-left: 12px;
    padding-right: 12px;
  }
  
  .about__hero-headline {
    font-size: 20px;
    margin-bottom: 14px;
    line-height: 1.2;
  }
  
  .about__hero-subline {
    font-size: 12px;
    line-height: 1.5;
  }
  
  .about__hero-marquee {
    padding: 5px 0;
  }
  
  .about__hero-marquee-track {
    font-size: 0.55rem;
    letter-spacing: 0.06em;
  }
}

/* ── OUR STORY CARD ── */
.about__story-card {
  background: #F7F7F5;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 60px 40px !important;
  margin-top: 0;
}

@media (max-width: 1024px) {
  .about__story-card {
    position: relative;
    margin-top: 0;
    padding: 40px 24px !important;
    border-radius: 0 0 30px 30px;
  }
}

.about__story-card-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  width: 100%;
}

.about__story-left,
.about__story-right {
  min-width: 0;
  width: 100%;
}

.about__story-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F6BC0E !important;
  margin-bottom: 20px;
}

.about__story-kicker-line {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #F6BC0E;
}

.about__story-title {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  font-style: italic;
  line-height: 1.2;
  color: #111;
  margin-bottom: 24px;
}

.about__story-founded {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #F6BC0E;
  background: #ffffff;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  color: #444;
  margin-bottom: 28px;
}

.about__story-founded strong {
  color: #111;
  font-weight: 700;
}

.about__story-body {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about__story-body em {
  font-style: italic;
  font-weight: 600;
  color: #111;
}

.about__story-body strong {
  font-weight: 700;
  color: #111;
}

.about__story-quote {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-left: 4px solid #F6BC0E;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 28px 28px;
  margin: 0 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.about__story-quote p {
  font-size: 16px;
  font-style: italic;
  color: #111 !important;
  line-height: 1.7;
  margin: 0 0 12px;
  font-weight: 600;
  word-wrap: break-word;
}

.about__story-quote cite {
  font-size: 13px;
  color: #888;
  font-style: normal;
}

.about__story-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}

.about__story-pillar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 20px 20px;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

/* Story Pillar Emoji - Specific styling for this section */
.about__story-pillar .about__pillar-emoji {
  font-size: 28px;
  display: block;
  margin-bottom: 4px;
}

/* Individual emoji variants for story pillars */
.about__story-pillar .about__pillar-emoji--performance {
  font-size: 28px;
}

.about__story-pillar .about__pillar-emoji--relationships {
  font-size: 28px;
}

.about__story-pillar .about__pillar-emoji--creative {
  font-size: 28px;
}

.about__story-pillar .about__pillar-emoji--growth {
  font-size: 28px;
}



.about__story-pillar-icon {
  font-size: 28px;
  color: #F6BC0E !important;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: start;
  margin-bottom: 4px;
}

.about__story-pillar-icon i {
  color: #F6BC0E !important;
  font-size: 28px;
}

/* ── About page emoji classes ── */
.about__pillar-emoji {
  font-size: clamp(22px, 2.5vw, 37px);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
  margin-bottom: 4px;
}

.about__pillar-emoji--performance  { font-size: clamp(22px, 2.5vw, 37px); }
.about__pillar-emoji--relationships { font-size: clamp(22px, 2.5vw, 37px); }
.about__pillar-emoji--creative      { font-size: clamp(22px, 2.5vw, 37px); }
.about__pillar-emoji--growth        { font-size: clamp(22px, 2.5vw, 37px); }

.about__7p-emoji {
  font-size: clamp(22px, 2.5vw, 37px);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}

.about__why-emoji {
  font-size: clamp(18px, 2vw, 37px);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  flex-shrink: 0;
  background: rgba(246, 188, 14, 0.1);
}

/* Individual why emoji variants */
.about__why-emoji--verified {
  font-size: clamp(20px, 2.2vw, 38px);
  width: 48px;
  height: 48px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 10px;
}

.about__why-emoji--execution {
  font-size: clamp(20px, 2.2vw, 38px);
  width: 48px;
  height: 48px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 10px;
}

.about__why-emoji--norebound {
  font-size: clamp(20px, 2.2vw, 38px);
  width: 48px;
  height: 48px;
  background: rgba(168, 85, 247, 0.1);
  border-radius: 10px;
}




.about__story-pillar strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
  word-wrap: break-word;
  width: 100%;
}

.about__story-pillar span {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
  word-wrap: break-word;
  width: 100%;
}

@media (max-width: 900px) {
  .about__story-card {
    padding: 50px 24px 50px !important;
  }
  .about__story-card-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 600px) {
  .about__story-card {
    padding: 40px 16px 40px !important;
    border-radius: 0 0 30px 30px;
  }
  .about__story-pillars {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .about__story-pillar {
    padding: 18px;
  }
  
  .about__story-pillar .about__pillar-emoji {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .about__story-card {
    padding: 32px 14px !important;
    border-radius: 0 0 30px 30px;
  }
  
  .about__story-card-inner {
    gap: 28px;
  }
  
  .about__story-kicker {
    font-size: 11px;
    gap: 8px;
    margin-bottom: 14px;
  }
  
  .about__story-kicker-line {
    width: 24px;
  }
  
  .about__story-title {
    font-size: 22px;
    margin-bottom: 18px;
  }
  
  .about__story-founded {
    font-size: 13px;
    padding: 7px 14px;
    margin-bottom: 20px;
  }
  
  .about__story-body {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 14px;
  }
  
  .about__story-quote {
    padding: 18px 16px;
    border-radius: 12px;
    margin-bottom: 16px;
  }
  
  .about__story-quote p {
    font-size: 15px;
    margin-bottom: 10px;
  }
  
  .about__story-quote cite {
    font-size: 12px;
  }
  
  .about__story-pillars {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .about__story-pillar {
    padding: 16px;
    border-radius: 12px;
    gap: 10px;
  }
  
  .about__story-pillar-icon {
    font-size: 24px;
  }
  
  .about__story-pillar-icon i {
    font-size: 24px;
  }
  
  .about__story-pillar strong {
    font-size: 14px;
  }
  
  .about__story-pillar span {
    font-size: 12px;
  }
}

@media (max-width: 375px) {
  .about__story-card {
    padding: 28px 12px !important;
    border-radius: 0 0 30px 30px;
  }
  
  .about__story-card-inner {
    gap: 24px;
  }
  
  .about__story-kicker {
    font-size: 10px;
    gap: 6px;
    margin-bottom: 12px;
  }
  
  .about__story-kicker-line {
    width: 20px;
  }
  
  .about__story-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
  
  .about__story-founded {
    font-size: 12px;
    padding: 6px 12px;
    margin-bottom: 18px;
  }
  
  .about__story-body {
    font-size: 13px;
    margin-bottom: 12px;
  }
  
  .about__story-quote {
    padding: 16px 14px;
    border-radius: 10px;
  }
  
  .about__story-quote p {
    font-size: 14px;
  }
  
  .about__story-pillars {
    gap: 10px;
  }
  
  .about__story-pillar {
    padding: 14px;
    gap: 8px;
  }
  
  .about__story-pillar .about__pillar-emoji {
    font-size: 22px;
  }
  
  .about__story-pillar-icon {
    font-size: 22px;
  }
  
  .about__story-pillar-icon i {
    font-size: 22px;
  }
  
  .about__story-pillar strong {
    font-size: 13px;
  }
  
  .about__story-pillar span {
    font-size: 11px;
  }
}

@media (max-width: 320px) {
  .about__story-card {
    padding: 24px 10px !important;
    border-radius: 0 0 30px 30px;
  }
  
  .about__story-card-inner {
    gap: 20px;
  }
  
  .about__story-kicker {
    font-size: 9px;
    gap: 5px;
    margin-bottom: 10px;
  }
  
  .about__story-kicker-line {
    width: 18px;
    height: 1.5px;
  }
  
  .about__story-title {
    font-size: 18px;
    margin-bottom: 14px;
    line-height: 1.3;
  }
  
  .about__story-founded {
    font-size: 11px;
    padding: 5px 10px;
    margin-bottom: 16px;
    gap: 6px;
  }
  
  .about__story-founded i {
    font-size: 12px;
  }
  
  .about__story-body {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 10px;
  }
  
  .about__story-quote {
    padding: 14px 12px;
    border-radius: 8px;
    margin-bottom: 12px;
  }
  
  .about__story-quote p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 8px;
  }
  
  .about__story-quote cite {
    font-size: 11px;
  }
  
  .about__story-pillars {
    gap: 10px;
  }
  
  .about__story-pillar {
    padding: 12px;
    border-radius: 10px;
    gap: 8px;
  }
  
  .about__story-pillar-icon {
    font-size: 20px;
  }
  
  .about__story-pillar-icon i {
    font-size: 20px;
  }
  
  .about__story-pillar strong {
    font-size: 12px;
    margin-bottom: 2px;
  }
  
  .about__story-pillar span {
    font-size: 10px;
    line-height: 1.4;
  }
}

/* ── THE 7 Ps ── */
.about__7ps-section {
  background: #ffffff;
  padding: 60px 40px !important;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
  position: sticky;
  top: 0;
  z-index: 20;
  margin-top: 40px;
  overflow: visible;
}

@media (max-width: 1024px) {
  .about__7ps-section {
    position: relative;
    margin-top: 0;
    padding: 40px 24px !important;
    border-radius: 0 0 30px 30px;
  }
}

.about__7ps-header {
  margin-bottom: 40px;
}

@media (max-width: 1024px) {
  .about__7ps-header {
    margin-bottom: 28px;
  }
}

.about__7ps-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F6BC0E !important;
  margin-bottom: 16px;
}

.about__7ps-kicker-line {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #F6BC0E ;
}

.about__7ps-title {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 900;
  font-style: italic;
  color: #111;
  margin-bottom: 12px;
  line-height: 1.15;
}

.about__7ps-subtitle {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  max-width: 480px;
}

.about__7ps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.about__7p-card {
  background: #F7F7F5;
  border: 1px solid #eeece8;
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.about__7p-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.about__7p-num {
  font-size: 28px;
  font-weight: 800;
  color: #f2dbaa;
  opacity: 0.5;
  line-height: 1;
  font-style: italic;
}

.about__7p-icon {
  font-size: 23px;
  color: #F6BC0E !important;
  width: 48px;
  height: 48px;
  min-width: 48px;
  background-color: #f6bc0e38;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__7p-title {
  font-size: 15px;
  font-weight: 700;
  color: #111;
}

.about__7p-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .about__7ps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about__7ps-section {
    padding: 50px 24px !important;
    margin-top: 0;
  }
  .about__7ps-header {
    margin-bottom: 36px;
  }
}

@media (max-width: 600px) {
  .about__7ps-grid {
    grid-template-columns: 1fr;
  }
  .about__7ps-section {
    padding: 40px 16px !important;
    border-radius: 0 0 30px 30px;
    margin-top: 0;
  }
  .about__7ps-header {
    margin-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .about__7ps-section {
    padding: 32px 14px !important;
    border-radius: 0 0 30px 30px;
    margin-top: 0;
  }
  
  .about__7ps-header {
    margin-bottom: 28px;
  }
  
  .about__7ps-kicker {
    font-size: 11px;
    gap: 8px;
    margin-bottom: 12px;
  }
  
  .about__7ps-kicker-line {
    width: 24px;
  }
  
  .about__7ps-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .about__7ps-subtitle {
    font-size: 14px;
  }
  
  .about__7ps-grid {
    gap: 12px;
  }
  
  .about__7p-card {
    padding: 18px 14px;
    border-radius: 14px;
    gap: 8px;
  }
  
  .about__7p-num {
    font-size: 24px;
  }
  
  .about__7p-icon {
    font-size: 18px;
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
  }
  
  .about__7p-title {
    font-size: 14px;
  }
  
  .about__7p-desc {
    font-size: 12px;
  }
}

@media (max-width: 375px) {
  .about__7ps-section {
    padding: 28px 12px !important;
    border-radius: 0 0 30px 30px;
    margin-top: 0;
  }
  
  .about__7ps-header {
    margin-bottom: 24px;
  }
  
  .about__7ps-kicker {
    font-size: 10px;
    gap: 6px;
    margin-bottom: 10px;
  }
  
  .about__7ps-kicker-line {
    width: 20px;
  }
  
  .about__7ps-title {
    font-size: 22px;
    margin-bottom: 8px;
  }
  
  .about__7ps-subtitle {
    font-size: 13px;
  }
  
  .about__7ps-grid {
    gap: 10px;
  }
  
  .about__7p-card {
    padding: 16px 12px;
    border-radius: 12px;
  }
  
  .about__7p-num {
    font-size: 22px;
  }
  
  .about__7p-icon {
    font-size: 16px;
    width: 38px;
    height: 38px;
    min-width: 38px;
  }
  
  .about__7p-title {
    font-size: 13px;
  }
  
  .about__7p-desc {
    font-size: 11px;
  }
}

@media (max-width: 320px) {
  .about__7ps-section {
    padding: 24px 10px !important;
    border-radius: 0 0 30px 30px;
    margin-top: 0;
  }
  
  .about__7ps-header {
    margin-bottom: 20px;
  }
  
  .about__7ps-kicker {
    font-size: 9px;
    gap: 5px;
    margin-bottom: 8px;
  }
  
  .about__7ps-kicker-line {
    width: 18px;
    height: 1.5px;
  }
  
  .about__7ps-title {
    font-size: 20px;
    margin-bottom: 8px;
    line-height: 1.2;
  }
  
  .about__7ps-subtitle {
    font-size: 12px;
    line-height: 1.6;
  }
  
  .about__7ps-grid {
    gap: 8px;
  }
  
  .about__7p-card {
    padding: 14px 10px;
    border-radius: 10px;
    gap: 6px;
  }
  
  .about__7p-num {
    font-size: 20px;
  }
  
  .about__7p-icon {
    font-size: 14px;
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 8px;
  }
  
  .about__7p-title {
    font-size: 12px;
  }
  
  .about__7p-desc {
    font-size: 10px;
    line-height: 1.5;
  }
}

/* ── WHY BRANDS CHOOSE US ── */
.about__why-section {
  background: #F7F7F5;
  padding: 100px 60px !important;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
  position: sticky;
  top: 0;
  z-index: 30;
  margin-top: 60px;
  overflow: visible;
}

@media (max-width: 1024px) {
  .about__why-section {
    position: relative;
    margin-top: 0;
    padding: 40px 24px !important;
    border-radius: 0 0 30px 30px;
  }
}

.about__why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__why-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F6BC0E !important;
  margin-bottom: 16px;
}

.about__why-kicker-line {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #F6BC0E;
}

.about__why-title {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 900;
  font-style: italic;
  color: #111;
  line-height: 1.15;
  margin-bottom: 16px;
}

.about__why-subtitle {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 36px;
}

.about__why-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about__why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.about__why-item-icon {
  font-size: 20px;
  color: #F6BC0E !important;
  flex-shrink: 0;
  margin-top: 2px;
  width: 48px;
  height: 48px;
  min-width: 48px;
  background-color: #f6bc0e38;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__why-item-icon i {
  color: #F6BC0E !important;
  font-size: 20px;
}

.about__why-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}

.about__why-item div > span {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
}

/* Dark card */
.about__why-dark-card {
  background: #000000;
  background-image: url('/assets/diagonal-grid-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  padding: 36px 32px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.about__why-dark-card > * {
  position: relative;
  z-index: 1;
}

.about__why-dark-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(246, 188, 14, 0.15);
  border: 1px solid rgba(246, 188, 14, 0.3);
  color: #F6BC0E;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.about__why-dark-title {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 800;
  font-style: italic;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 16px;
}

.about__why-dark-title span {
  color: #F6BC0E;
}

.about__why-dark-body {
  font-size: 14px;
  color: rgb(255 255 255 / 41%) !important;
  line-height: 1.75;
  margin-bottom: 24px;
}

.about__why-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about__why-tags span {
  border: 1px solid rgba(255,255,255,0.12);
  color: rgb(255 255 255 / 53%);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
}

@media (max-width: 900px) {
  .about__why-inner {
    grid-template-columns: 1fr;
  }
  .about__why-section {
    padding: 80px 32px !important;
  }
}

@media (max-width: 600px) {
  .about__why-section {
    padding: 60px 20px !important;
    border-radius: 0 0 30px 30px;
  }
}

@media (max-width: 480px) {
  .about__why-section {
    padding: 50px 16px !important;
    border-radius: 0 0 30px 30px;
    margin-top: 0;
  }
  
  .about__why-inner {
    gap: 48px;
  }
  
  .about__why-kicker {
    font-size: 11px;
    gap: 8px;
    margin-bottom: 14px;
  }
  
  .about__why-kicker-line {
    width: 24px;
  }
  
  .about__why-title {
    font-size: 24px;
    margin-bottom: 14px;
  }
  
  .about__why-subtitle {
    font-size: 14px;
    margin-bottom: 28px;
  }
  
  .about__why-list {
    gap: 10px;
  }
  
  .about__why-item {
    padding: 16px 16px;
    border-radius: 12px;
    gap: 12px;
  }
  
  .about__why-item-icon {
    font-size: 18px;
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
  }
  
  .about__why-item-icon i {
    font-size: 18px;
  }
  
  .about__why-item strong {
    font-size: 14px;
  }
  
  .about__why-item div > span {
    font-size: 12px;
  }
  
  .about__why-dark-card {
    padding: 28px 24px;
    border-radius: 16px;
  }
  
  .about__why-dark-pill {
    font-size: 11px;
    padding: 5px 12px;
    margin-bottom: 16px;
  }
  
  .about__why-dark-title {
    font-size: 20px;
    margin-bottom: 14px;
  }
  
  .about__why-dark-body {
    font-size: 13px;
    margin-bottom: 20px;
  }
  
  .about__why-tags {
    gap: 6px;
  }
  
  .about__why-tags span {
    font-size: 11px;
    padding: 5px 12px;
  }
}

@media (max-width: 375px) {
  .about__why-section {
    padding: 40px 14px !important;
    border-radius: 0 0 30px 30px;
    margin-top: 0;
  }
  
  .about__why-inner {
    gap: 40px;
  }
  
  .about__why-kicker {
    font-size: 10px;
    gap: 6px;
    margin-bottom: 12px;
  }
  
  .about__why-kicker-line {
    width: 20px;
  }
  
  .about__why-title {
    font-size: 22px;
    margin-bottom: 12px;
  }
  
  .about__why-subtitle {
    font-size: 13px;
    margin-bottom: 24px;
  }
  
  .about__why-item {
    padding: 14px;
    border-radius: 10px;
    gap: 10px;
  }
  
  .about__why-item-icon {
    font-size: 16px;
    width: 38px;
    height: 38px;
    min-width: 38px;
  }
  
  .about__why-item-icon i {
    font-size: 16px;
  }
  
  .about__why-item strong {
    font-size: 13px;
  }
  
  .about__why-item div > span {
    font-size: 11px;
  }
  
  .about__why-dark-card {
    padding: 24px 20px;
    border-radius: 14px;
  }
  
  .about__why-dark-pill {
    font-size: 10px;
    padding: 4px 10px;
    margin-bottom: 14px;
  }
  
  .about__why-dark-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .about__why-dark-body {
    font-size: 12px;
    margin-bottom: 18px;
  }
  
  .about__why-tags span {
    font-size: 10px;
    padding: 4px 10px;
  }
}

@media (max-width: 320px) {
  .about__why-section {
    padding: 32px 10px !important;
    border-radius: 0 0 30px 30px;
    margin-top: 0;
  }
  
  .about__why-inner {
    gap: 32px;
  }
  
  .about__why-kicker {
    font-size: 9px;
    gap: 5px;
    margin-bottom: 10px;
  }
  
  .about__why-kicker-line {
    width: 18px;
    height: 1.5px;
  }
  
  .about__why-title {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.2;
  }
  
  .about__why-subtitle {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .about__why-list {
    gap: 8px;
  }
  
  .about__why-item {
    padding: 12px;
    border-radius: 8px;
    gap: 8px;
  }
  
  .about__why-item-icon {
    font-size: 14px;
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 8px;
  }
  
  .about__why-item-icon i {
    font-size: 14px;
  }
  
  .about__why-item strong {
    font-size: 12px;
    margin-bottom: 2px;
  }
  
  .about__why-item div > span {
    font-size: 10px;
    line-height: 1.4;
  }
  
  .about__why-dark-card {
    padding: 20px 16px;
    border-radius: 12px;
  }
  
  .about__why-dark-pill {
    font-size: 9px;
    padding: 4px 8px;
    margin-bottom: 12px;
    gap: 4px;
  }
  
  .about__why-dark-pill i {
    font-size: 10px;
  }
  
  .about__why-dark-title {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.3;
  }
  
  .about__why-dark-body {
    font-size: 11px;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  
  .about__why-tags {
    gap: 5px;
  }
  
  .about__why-tags span {
    font-size: 9px;
    padding: 4px 8px;
  }
}

/* ── MEET THE FOUNDERS ── */
.about__founders-section {
  background: #ffffff;
  padding: 80px 60px !important;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
  position: sticky;
  top: 0;
  z-index: 40;
  margin-top: 0px;
  overflow: visible;
}

@media (max-width: 1024px) {
  .about__founders-section {
    position: relative;
    margin-top: 0;
    padding: 40px 24px !important;
    border-radius: 0 0 30px 30px;
  }
}

.about__founders-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.about__founders-header {
  margin-bottom: 48px;
}

.about__founders-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F6BC0E !important;
  margin-bottom: 16px;
}

.about__founders-kicker-line {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #F6BC0E;
}

.about__founders-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  font-style: italic;
  color: #111;
  line-height: 1.1;
  margin-bottom: 14px;
}

.about__founders-subtitle {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  max-width: 480px;
}

.about__founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about__founder-card {
  background: #f9f8f5;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #eeece8;
  display: flex;
  flex-direction: column;
}

.about__founder-img-wrap {
  position: relative;
  height: 280px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.about__founder-img-wrap--yellow {
  background: linear-gradient(135deg, #fde68a 0%, #F6BC0E 100%);
}

.about__founder-img-wrap--pink {
  background: linear-gradient(135deg, #fda4af 0%, #f43f5e 100%);
}

.about__founder-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #111;
  color: #F6BC0E;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 999px;
  z-index: 2;
}

.about__founder-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.about__founder-info {
  padding: 24px 24px 28px;
  background: #ffffff;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.about__founder-name {
  font-size: 22px;
  font-weight: 800;
  color: #111;
  margin-bottom: 4px;
}

.about__founder-role {
  display: inline-block;
  width: fit-content;
  font-size: 12px;
  font-weight: 700;
  color: #795100 !important;
  background: #fff8e1;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.about__founder-bio {
  font-size: 14px;
  color: #666;
  line-height: 1.75;
  margin-bottom: 20px;
}

.about__founder-socials {
  display: flex;
  gap: 10px;
}

.about__founder-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 14px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.about__founder-socials a:hover {
  border-color: #F6BC0E;
  color: #F6BC0E;
}

@media (max-width: 768px) {
  .about__founders-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about__founders-section {
    padding: 60px 24px !important;
  }
  
  .about__founder-card {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  
  .about__founder-img-wrap {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .about__founders-section {
    padding: 50px 20px !important;
    border-radius: 0 0 30px 30px;
  }
  
  .about__founder-card {
    max-width: 100%;
  }
  
  .about__founder-img-wrap {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .about__founders-section {
    padding: 40px 16px !important;
    border-radius: 0 0 30px 30px;
    margin-top: 0;
  }
  
  .about__founders-header {
    margin-bottom: 32px;
  }
  
  .about__founders-kicker {
    font-size: 11px;
    gap: 8px;
    margin-bottom: 12px;
  }
  
  .about__founders-kicker-line {
    width: 24px;
  }
  
  .about__founders-title {
    font-size: 26px;
    margin-bottom: 12px;
  }
  
  .about__founders-subtitle {
    font-size: 14px;
  }
  
  .about__founders-grid {
    gap: 18px;
  }
  
  .about__founder-card {
    border-radius: 16px;
    max-width: 100%;
  }
  
  .about__founder-img-wrap {
    height: 260px;
  }
  
  .about__founder-badge {
    top: 12px;
    left: 12px;
    font-size: 10px;
    padding: 5px 12px;
  }
  
  .about__founder-info {
    padding: 20px 18px 24px;
  }
  
  .about__founder-name {
    font-size: 20px;
  }
  
  .about__founder-role {
    font-size: 11px;
    padding: 4px 10px;
    margin-bottom: 12px;
  }
  
  .about__founder-bio {
    font-size: 13px;
    margin-bottom: 16px;
    line-height: 1.7;
  }
  
  .about__founder-socials a {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
}

@media (max-width: 375px) {
  .about__founders-section {
    padding: 32px 14px !important;
    border-radius: 0 0 30px 30px;
    margin-top: 0;
  }
  
  .about__founders-header {
    margin-bottom: 28px;
  }
  
  .about__founders-kicker {
    font-size: 10px;
    gap: 6px;
    margin-bottom: 10px;
  }
  
  .about__founders-kicker-line {
    width: 20px;
  }
  
  .about__founders-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .about__founders-subtitle {
    font-size: 13px;
  }
  
  .about__founders-grid {
    gap: 16px;
  }
  
  .about__founder-card {
    border-radius: 14px;
  }
  
  .about__founder-img-wrap {
    height: 240px;
  }
  
  .about__founder-badge {
    top: 10px;
    left: 10px;
    font-size: 9px;
    padding: 4px 10px;
  }
  
  .about__founder-info {
    padding: 18px 16px 22px;
  }
  
  .about__founder-name {
    font-size: 18px;
  }
  
  .about__founder-role {
    font-size: 10px;
    padding: 3px 8px;
    margin-bottom: 10px;
  }
  
  .about__founder-bio {
    font-size: 12px;
    margin-bottom: 14px;
    line-height: 1.6;
  }
  
  .about__founder-socials {
    gap: 8px;
  }
  
  .about__founder-socials a {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
}

@media (max-width: 320px) {
  .about__founders-section {
    padding: 28px 10px !important;
    border-radius: 0 0 30px 30px;
    margin-top: 0;
  }
  
  .about__founders-header {
    margin-bottom: 24px;
  }
  
  .about__founders-kicker {
    font-size: 9px;
    gap: 5px;
    margin-bottom: 8px;
  }
  
  .about__founders-kicker-line {
    width: 18px;
    height: 1.5px;
  }
  
  .about__founders-title {
    font-size: 22px;
    margin-bottom: 8px;
    line-height: 1.2;
  }
  
  .about__founders-subtitle {
    font-size: 12px;
    line-height: 1.6;
  }
  
  .about__founders-grid {
    gap: 14px;
  }
  
  .about__founder-card {
    border-radius: 12px;
  }
  
  .about__founder-img-wrap {
    height: 220px;
  }
  
  .about__founder-badge {
    top: 8px;
    left: 8px;
    font-size: 8px;
    padding: 4px 8px;
    letter-spacing: 0.06em;
  }
  
  .about__founder-info {
    padding: 16px 14px 20px;
  }
  
  .about__founder-name {
    font-size: 16px;
    margin-bottom: 6px;
  }
  
  .about__founder-role {
    font-size: 9px;
    padding: 3px 8px;
    margin-bottom: 10px;
  }
  
  .about__founder-bio {
    font-size: 11px;
    line-height: 1.6;
    margin-bottom: 12px;
  }
  
  .about__founder-socials {
    gap: 6px;
  }
  
  .about__founder-socials a {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }
}

/* ── CTA SECTION ── */
.about__cta-section {
  background: #f7bd17 url('assets/logobg.png') center center / 30% auto no-repeat;
  padding: 100px 60px !important;
  border-radius: 0 0 40px 40px;
  position: sticky;
  top: 0;
  z-index: 50;
  margin-top: 0;
  text-align: center;
  overflow: hidden;
  margin-bottom: -60px;
}

.about__cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(246, 188, 14, 0.88);
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
}

.about__cta-section > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .about__cta-section {
    position: relative;
    margin-top: 0;
    padding: 50px 24px !important;
    border-radius: 0 0 30px 30px;
  }
}

.about__cta-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  font-style: italic;
  color: #111;
  line-height: 1.15;
  margin-bottom: 16px;
}

.about__cta-title span {
  color: rgba(0, 0, 0, 0.5);
}

.about__cta-sub {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 32px;
  line-height: 1.6;
}

.about__cta-btn {
  display: inline-block;
  background: #282725;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 15px;
  text-decoration: none;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.5s ease, box-shadow 0.5s ease;
}

.about__cta-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #F6BC0E;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.7s ease, height 0.7s ease;
  z-index: -1;
}

.about__cta-btn:hover::before {
  width: 400px;
  height: 400px;
}

.about__cta-btn:hover {
  background: transparent !important;
  color: #000000 !important;
  box-shadow: 0 4px 12px rgba(250, 204, 21, 0.3) !important;
}

.about__cta-note {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
  margin: 0;
}

@media (max-width: 600px) {
  .about__cta-section {
    padding: 80px 24px !important;
    border-radius: 0 0 30px 30px;
  }
}

@media (max-width: 480px) {
  .about__cta-section {
    padding: 60px 20px !important;
    border-radius: 0 0 30px 30px;
  }
  
  .about__cta-title {
    font-size: 26px;
    margin-bottom: 14px;
  }
  
  .about__cta-sub {
    font-size: 14px;
    margin-bottom: 28px;
  }
  
  .about__cta-btn {
    font-size: 14px;
    padding: 12px 32px;
    border-radius: 12px;
    margin-bottom: 14px;
  }
  
  .about__cta-note {
    font-size: 12px;
  }
}

@media (max-width: 375px) {
  .about__cta-section {
    padding: 50px 16px !important;
    border-radius: 0 0 30px 30px;
  }
  
  .about__cta-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
  
  .about__cta-sub {
    font-size: 13px;
    margin-bottom: 24px;
  }
  
  .about__cta-btn {
    font-size: 13px;
    padding: 11px 28px;
    border-radius: 10px;
    margin-bottom: 12px;
  }
  
  .about__cta-note {
    font-size: 11px;
  }
}

@media (max-width: 320px) {
  .about__cta-section {
    padding: 40px 12px !important;
    border-radius: 0 0 30px 30px;
  }
  
  .about__cta-title {
    font-size: 22px;
    margin-bottom: 10px;
    line-height: 1.2;
  }
  
  .about__cta-sub {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  
  .about__cta-btn {
    font-size: 12px;
    padding: 10px 24px;
    border-radius: 8px;
    margin-bottom: 10px;
  }
  
  .about__cta-note {
    font-size: 10px;
  }
}

/* ============================================================
   SERVICES PAGE STYLES
   ============================================================ */

/* ── Base ── */
.services-page {
  background: #0a0a0a !important;
  color: #fff !important;
  overflow-x: hidden;
}

.svc__section-tag {
  display: block;
  background: none !important;
  border: none;
  border-radius: 0;
  padding: 0;
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F6BC0E !important;
  margin-bottom: 14px;
}


/* ── HERO ── */
.svc__hero {
  position: relative;
  background: #000 !important;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 160px 0 100px;
}

.svc__hero-noise {
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E"),
    radial-gradient(ellipse 70% 50% at 60% 40%, rgba(255,215,0,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 70%, rgba(255,215,0,0.04) 0%, transparent 60%) !important;
  pointer-events: none;
  z-index: 0;
}

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

.svc__hero-inner {
  max-width: 820px;
}

.svc__eyebrow {
  display: block;
  background: none !important;
  border: none;
  border-radius: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F6BC0E !important;
  margin-bottom: 20px;
}

.svc__eyebrow-dot {
  display: none;
}

.svc__headline {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff !important;
  margin: 0 0 28px;
  letter-spacing: -0.02em;
}

.svc__headline span {
  color: #F6BC0E !important;
  font-style: italic;
  display: block;
}

.svc__subline {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,0.65) !important;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 0 48px;
}

/* Stats row */
.svc__hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.svc__hero-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #F6BC0E !important;
  line-height: 1;
  letter-spacing: -0.02em;
}

.svc__hero-stat span {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.38) !important;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 4px;
}

.svc__hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1) !important;
}

/* Marquee */
.svc__hero-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #F6BC0E !important;
  padding: 10px 0;
  overflow: hidden;
  z-index: 2;
}

.svc__hero-marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll 60s linear infinite;
  color: #000 !important;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.svc__hero-marquee-track span {
  flex-shrink: 0;
}


/* ── SERVICES LIST ── */
.svc__list {
  padding: 80px 0;
  background: #0a0a0a !important;
}

.svc__item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
  padding: 60px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  cursor: default;
  transition: background 0.4s;
}

.svc__item:first-child {
  border-top: 1px solid rgba(255,255,255,0.07);
}

.svc__item--open {
  background: rgba(255,255,255,0.02) !important;
}

/* Accent bottom bar */
.svc__item-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--svc-accent, #F6BC0E) !important;
  transition: width 0.5s ease;
}

.svc__item--open .svc__item-bar {
  width: 100%;
}

/* Watermark number */
.svc__item-watermark {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 9rem;
  font-weight: 900;
  color: rgba(255,255,255,0.025) !important;
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.04em;
  user-select: none;
  transition: color 0.4s;
}

.svc__item--open .svc__item-watermark {
  color: rgba(255,255,255,0.04) !important;
}

/* Left column */
.svc__item-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 120px;
}

.svc__item-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--svc-accent, #F6BC0E) !important;
  transition: background 0.3s, border-color 0.3s;
}

.svc__item--open .svc__item-icon {
  background: rgba(255,255,255,0.08) !important;
  border-color: var(--svc-accent, #F6BC0E) !important;
}

.svc__item-tag {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--svc-accent, #F6BC0E) !important;
  margin-bottom: 6px;
}

.svc__item-title {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 800;
  color: #fff !important;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  transition: color 0.3s;
}

/* Right column */
.svc__item-right {
  padding-top: 4px;
}

.svc__item-tagline {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 600;
  color: rgba(255,255,255,0.85) !important;
  line-height: 1.55;
  font-style: italic;
  margin: 0 0 20px;
  border-left: 3px solid var(--svc-accent, #F6BC0E);
  padding-left: 20px;
}

.svc__item-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.55) !important;
  line-height: 1.8;
  margin: 0 0 28px;
}

.svc__item-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.svc__item-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65) !important;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.svc__item--open .svc__item-pill {
  background: rgba(255,255,255,0.07) !important;
  border-color: rgba(255,255,255,0.18) !important;
  color: rgba(255,255,255,0.85) !important;
}


/* ── PROCESS ── */
.svc__process {
  padding: 120px 0;
  background: #0d0d0d !important;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.svc__process-header {
  text-align: center;
  margin-bottom: 72px;
}

.svc__process-title {
  font-size: clamp(15px, 1.4vw, 20px);
  font-weight: 800;
  color: #fff !important;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

.svc__process-title span {
  color: #F6BC0E !important;
  font-style: italic;
}

.svc__process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

/* Connector line between steps */
.svc__process-steps::before {
  content: '';
  position: absolute;
  top: 26px;
  left: calc(12.5% + 26px);
  right: calc(12.5% + 26px);
  height: 1px;
  background: linear-gradient(90deg, rgba(255,215,0,0.4), rgba(255,215,0,0.15), rgba(255,215,0,0.4)) !important;
  z-index: 0;
}

.svc__process-step {
  position: relative;
  z-index: 1;
  background: #111 !important;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s;
}

.svc__process-step:hover {
  border-color: rgba(255,215,0,0.3) !important;
  transform: translateY(-4px);
}

.svc__process-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.svc__process-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.2) !important;
  letter-spacing: 0.1em;
}

.svc__process-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,215,0,0.1) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F6BC0E !important;
  font-size: 1.1rem;
}

.svc__process-step-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff !important;
  margin: 0 0 10px;
}

.svc__process-step-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.48) !important;
  line-height: 1.65;
  margin: 0;
}


/* ── CTA ── */
.svc__cta {
  padding: 140px 0;
  background: #000 !important;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.svc__cta-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.svc__cta-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff !important;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.svc__cta-title span {
  color: #F6BC0E !important;
  font-style: italic;
}

.svc__cta-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.52) !important;
  line-height: 1.7;
  margin: 0 0 40px;
}

.svc__cta-btn {
  padding: 18px 42px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 6px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .svc__item {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .svc__item-left {
    position: static !important;
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: wrap !important;
  }

  .svc__item-watermark {
    font-size: 6rem !important;
  }

  .svc__process-steps {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .svc__process-steps::before {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .svc__hero {
    padding: 130px 0 90px !important;
    min-height: auto !important;
  }

  .svc__hero-stats {
    flex-wrap: wrap !important;
    gap: 20px !important;
  }

  .svc__item {
    padding: 40px 0 !important;
  }

  .svc__item-tagline {
    font-size: 1rem !important;
  }

  .svc__list {
    padding: 60px 0 !important;
  }

  .svc__process,
  .svc__cta {
    padding: 80px 0 !important;
  }
}

@media (max-width: 540px) {
  .svc__process-steps {
    grid-template-columns: 1fr !important;
  }

  .svc__hero-stat-divider {
    display: none !important;
  }

  .svc__hero-stats {
    gap: 16px !important;
  }
  
  .svc__item-highlights {
    gap: 8px !important;
  }
}


/* ============================================================
   CONTACT PAGE STYLES
   ============================================================ */

/* ── Base ── */
.contact-page {
  background: #ffffff !important;
  color: #111 !important;
  overflow-x: hidden;
}

/* ── HERO BANNER ── */
.ct__hero-banner {
  position: relative;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.ct__hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 767px) {
  .ct__hero-banner-img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
}

/* ── INTRO SECTION ── */
.ct__intro-section {
  background: #ffffff !important;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 100px 60px !important;
  margin-top: 0;
  overflow: hidden !important;
}

.ct__hero-noise {
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E"),
    radial-gradient(ellipse 60% 55% at 50% 50%, rgba(255,215,0,0.07) 0%, transparent 65%) !important;
  pointer-events: none;
  z-index: 0;
}

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

.ct__hero-inner {
  max-width: 780px;
  text-align: center;
  margin: 0 auto;
}

.ct__eyebrow {
  display: block;
  background: none !important;
  border: none;
  border-radius: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F6BC0E !important;
  margin-bottom: 20px;
}

.ct__eyebrow-dot {
  display: none;
}

.ct__headline {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff !important;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}

.ct__headline span {
  color: #F6BC0E !important;
  font-style: italic;
  display: block;
}

.ct__subline {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.58) !important;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

.ct__hero-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #F6BC0E !important;
  padding: 10px 0;
  overflow: hidden;
  z-index: 2;
}

.ct__hero-marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll 55s linear infinite;
  color: #000 !important;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ct__hero-marquee-track span {
  flex-shrink: 0;
}


/* ── MAIN GRID ── */
.ct__main {
  padding: 100px 0;
  background: #0a0a0a !important;
}

.ct__grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 64px;
  align-items: start;
}


/* ── LEFT SIDE ── */
.ct__info-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.ct__info-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #111 !important;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 20px 24px;
  transition: border-color 0.3s;
}

.ct__info-card:hover {
  border-color: rgba(255,215,0,0.25) !important;
}

.ct__info-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255,215,0,0.1) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F6BC0E !important;
  font-size: 1rem;
  flex-shrink: 0;
}

.ct__info-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35) !important;
  margin-bottom: 4px;
}

.ct__info-value {
  display: block;
  font-size: 0.98rem;
  font-weight: 600;
  color: #fff !important;
  text-decoration: none;
  transition: color 0.2s;
}

a.ct__info-value:hover {
  color: #F6BC0E !important;
}

/* Social links */
.ct__social-block {
  margin-bottom: 40px;
}

.ct__social-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3) !important;
  margin-bottom: 14px;
}

.ct__social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ct__social-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: #111 !important;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  color: rgba(255,255,255,0.55) !important;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.ct__social-link i {
  font-size: 1rem;
  width: 20px;
  text-align: center;
  color: rgba(255,255,255,0.3) !important;
  transition: color 0.25s;
}

.ct__social-link:hover {
  background: rgba(255,215,0,0.07) !important;
  border-color: rgba(255,215,0,0.25) !important;
  color: #fff !important;
}

.ct__social-link:hover i {
  color: #F6BC0E !important;
}

/* FAQ */
.ct__faq-title {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45) !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.ct__faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ct__faq-item {
  border-radius: 12px;
  overflow: hidden;
  background: #111 !important;
  border: 1px solid rgba(255,255,255,0.07);
  transition: border-color 0.3s;
}

.ct__faq-item--open {
  border-color: rgba(255,215,0,0.2) !important;
}

.ct__faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: transparent !important;
  border: none;
  color: rgba(255,255,255,0.75) !important;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

.ct__faq-q:hover {
  color: #fff !important;
}

.ct__faq-item--open .ct__faq-q {
  color: #F6BC0E !important;
}

.ct__faq-q i {
  font-size: 0.75rem;
  flex-shrink: 0;
  color: rgba(255,255,255,0.3) !important;
}

.ct__faq-item--open .ct__faq-q i {
  color: #F6BC0E !important;
}

.ct__faq-a {
  padding: 0 20px 16px;
}

.ct__faq-a p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.48) !important;
  line-height: 1.65;
  margin: 0;
}


/* ── RIGHT: FORM CARD ── */
.ct__form-card {
  background: #111 !important;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 48px;
  position: sticky;
  top: 100px;
}

.ct__form-header {
  margin-bottom: 32px;
}

.ct__form-title {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 800;
  color: #fff !important;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.ct__form-title span {
  color: #F6BC0E !important;
  font-style: italic;
}

.ct__form-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.42) !important;
  line-height: 1.6;
  margin: 0;
}

/* Alert */
.ct__alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 24px;
}

.ct__alert i {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.ct__alert--success {
  background: rgba(52,211,153,0.1) !important;
  border: 1px solid rgba(52,211,153,0.25);
  color: #34D399 !important;
}

.ct__alert--error {
  background: rgba(239,68,68,0.1) !important;
  border: 1px solid rgba(239,68,68,0.25);
  color: #f87171 !important;
}

/* Profile toggle */
.ct__profile-toggle {
  display: flex;
  gap: 12px;
}

.ct__profile-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent !important;
  color: rgba(255,255,255,0.5) !important;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.ct__profile-btn:hover {
  border-color: rgba(255,215,0,0.3) !important;
  color: rgba(255,255,255,0.8) !important;
}

.ct__profile-btn--active {
  background: rgba(255,215,0,0.12) !important;
  border-color: #F6BC0E !important;
  color: #F6BC0E !important;
}

/* Form groups */
.ct__form-group {
  margin-bottom: 20px;
}

.ct__form-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 20px;
  min-width: 0;
}

.ct__form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5) !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ct__form-label span {
  color: #F6BC0E !important;
}

.ct__input {
  width: 100%;
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px 18px;
  color: #fff !important;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  -webkit-appearance: none;
  appearance: none;
}

.ct__input::placeholder {
  color: rgba(255,255,255,0.22) !important;
}

.ct__input:focus {
  border-color: rgba(255,215,0,0.5) !important;
  background: rgba(255,215,0,0.03) !important;
}

.ct__input--error {
  border-color: rgba(239,68,68,0.5) !important;
}

.ct__input-error {
  color: #f87171 !important;
  font-size: 0.75rem;
  margin-top: 6px;
  display: block;
}

/* Phone Input Styling */
.ct__phone-input {
  width: 100%;
  position: relative;
}

.ct__phone-input .react-tel-input {
  width: 100%;
}

.ct__phone-input .ct__phone-input-field {
  width: 100%;
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px 18px 14px 58px;
  color: #fff !important;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  -webkit-appearance: none;
  appearance: none;
  height: 48px;
}

.ct__phone-input .ct__phone-input-field::placeholder {
  color: rgba(255,255,255,0.22) !important;
}

.ct__phone-input .ct__phone-input-field:focus {
  border-color: rgba(255,215,0,0.5) !important;
  background: rgba(255,215,0,0.03) !important;
}

.ct__phone-input.ct__input--error .ct__phone-input-field {
  border-color: rgba(239,68,68,0.5) !important;
}

.ct__phone-input .ct__phone-input-button {
  background: transparent !important;
  border: none;
  border-radius: 12px 0 0 12px;
  padding: 0 12px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: 48px;
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 1;
  box-shadow: none;
}

.ct__phone-input .ct__phone-input-button:hover,
.ct__phone-input .ct__phone-input-button:focus,
.ct__phone-input .ct__phone-input-button:active {
  background: transparent !important;
  outline: none;
  box-shadow: none;
  border: none;
}

.ct__phone-input .selected-flag:hover,
.ct__phone-input .selected-flag:focus {
  background: transparent !important;
  outline: none;
}

.ct__phone-input .flag-dropdown:hover,
.ct__phone-input .flag-dropdown:focus {
  background: transparent !important;
  outline: none;
}

.ct__phone-input .selected-flag {
  background: transparent !important;
  outline: none;
  border: none;
}

.ct__phone-input .flag-dropdown {
  background: transparent !important;
  border: none;
}

.ct__phone-input .ct__phone-input-button .flag {
  transform: scale(1.2);
}

.ct__phone-input .ct__phone-input-button .arrow {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255,255,255,0.4);
  margin-right: 6px;
}

.ct__phone-input .ct__phone-input-dropdown {
  background: #1a1a1a !important;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  margin-top: 4px;
  max-height: 200px;
  overflow-y: auto;
}

.ct__phone-input .ct__phone-input-dropdown .search {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #fff !important;
  padding: 8px 12px;
  margin: 8px;
  width: calc(100% - 16px);
}

.ct__phone-input .ct__phone-input-dropdown .search::placeholder {
  color: rgba(255,255,255,0.3) !important;
}

.ct__phone-input .ct__phone-input-dropdown .country {
  padding: 10px 12px;
  color: rgba(255,255,255,0.7) !important;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s;
}

.ct__phone-input .ct__phone-input-dropdown .country:hover {
  background: rgba(255,215,0,0.1) !important;
  color: #fff !important;
}

.ct__phone-input .ct__phone-input-dropdown .country.highlight {
  background: rgba(255,215,0,0.15) !important;
  color: #F6BC0E !important;
}

.ct__phone-input .ct__phone-input-dropdown .country .flag {
  margin-right: 10px;
  transform: scale(1.1);
}

.ct__phone-input .ct__phone-input-dropdown .country .country-name {
  margin-right: 8px;
}

.ct__phone-input .ct__phone-input-dropdown .country .dial-code {
  color: rgba(255,255,255,0.4) !important;
}

.ct__phone-input .ct__phone-input-dropdown::-webkit-scrollbar {
  width: 6px;
}

.ct__phone-input .ct__phone-input-dropdown::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05) !important;
  border-radius: 3px;
}

.ct__phone-input .ct__phone-input-dropdown::-webkit-scrollbar-thumb {
  background: rgba(255,215,0,0.3) !important;
  border-radius: 3px;
}

.ct__phone-input .ct__phone-input-dropdown::-webkit-scrollbar-thumb:hover {
  background: rgba(255,215,0,0.5) !important;
}

.ct__textarea {
  resize: vertical;
  min-height: 130px;
}

/* Submit button */
.ct__submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: #F6BC0E !important;
  color: #000 !important;
  border: none;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  margin-bottom: 16px;
}

.ct__submit-btn:hover:not(:disabled) {
  background: #f5cb00 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,215,0,0.25);
}

.ct__submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.ct__form-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25) !important;
  justify-content: center;
  margin: 0;
}

.ct__form-note i {
  color: rgba(255,215,0,0.4) !important;
  font-size: 0.7rem;
}


/* ── VIBES STRIP ── */
.ct__vibes {
  padding: 80px 0;
  background: #0d0d0d !important;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.ct__vibes-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ct__vibe {
  background: #111 !important;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.ct__vibe:hover {
  border-color: rgba(255,215,0,0.25) !important;
  transform: translateY(-3px);
}

.ct__vibe-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,215,0,0.1) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F6BC0E !important;
  font-size: 1.1rem;
  margin: 0 auto 14px;
}

.ct__vibe strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff !important;
  margin-bottom: 4px;
}

.ct__vibe span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38) !important;
  line-height: 1.5;
}


/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .ct__grid {
    grid-template-columns: 1fr !important;
    gap: 48px !important;
  }

  .ct__form-card {
    position: static !important;
  }

  .ct__vibes-inner {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .ct__hero {
    padding: 130px 0 90px !important;
    min-height: auto !important;
  }

  .ct__form-card {
    padding: 32px 24px !important;
  }

  .ct__main {
    padding: 70px 0 !important;
  }

  .ct__vibes {
    padding: 60px 0 !important;
  }
}

@media (max-width: 480px) {
  .ct__vibes-inner {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  .ct__profile-toggle {
    flex-direction: column !important;
  }
}


/* =============================
   Testimonials Page - Masonry
   ============================= */

/* Hero */
.testi-page__hero {
  position: relative;
  background: #000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 160px 0 100px;
}

.testi-page__hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E"),
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(255,215,0,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(255,215,0,0.04) 0%, transparent 60%);
  pointer-events: none;
}

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

.testi-page__hero-inner {
  max-width: 720px;
}

.testi-page__eyebrow {
  display: block;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F6BC0E;
  margin-bottom: 20px;
}

.testi-page__eyebrow-dot {
  display: none;
}

.testi-page__headline {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff !important;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}

.testi-page__headline span {
  color: #F6BC0E !important;
  font-style: italic;
}

.testi-page__subline {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.65) !important;
  line-height: 1.7;
  max-width: 520px;
}

/* Sections */
.testi-page__section {
  padding: 80px 0;
  background: #f6f7f9 !important;
  overflow: clip;
}

.testi-page__section--alt {
  background: #edeef1 !important;
  padding-bottom: 100px;
  overflow: clip;
}

.testi-page__section-header {
  text-align: center;
  margin-bottom: 30px;
}

.testi-page__section-tag {
  display: block;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F6BC0E;
  margin-bottom: 14px;
}

.testi-page__section-title {
  font-size: clamp(14px, 1.3vw, 18px);
  font-weight: 800;
  color: #111214 !important;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .testi-page__hero {
    min-height: 0 !important;
    height: auto !important;
    padding: 130px 0 90px !important;
    justify-content: flex-start !important;
  }
}

@media (max-width: 768px) {
  .testi-page__hero {
    min-height: 0 !important;
    height: auto !important;
    padding: 110px 0 70px !important;
  }

  .testi-page__section {
    padding: 60px 0 !important;
  }
}

@media (max-width: 480px) {
  .testi-page__hero {
    padding: 90px 0 60px !important;
  }
  
  /* Mobile pagination on testimonials page */
  .testi-page__section .testimonial__pagination {
    margin-top: 25px !important;
    margin-bottom: 12px !important;
  }
}

@media (max-width: 768px) {
  /* Tablet pagination on testimonials page */
  .testi-page__section .testimonial__pagination {
    margin-top: 30px !important;
    margin-bottom: 15px !important;
  }
}

/* ============================================
   Offcanvas open state (React-controlled)
   ============================================ */
.offcanvas__area.offcanvas--open {
  opacity: 1 !important;
  visibility: visible !important;
}

/* ============================================
   Offcanvas - force white text (overrides body dark color)
   ============================================ */
.offcanvas__area,
.offcanvas__area h1,
.offcanvas__area h2,
.offcanvas__area h3,
.offcanvas__area p,
.offcanvas__area span,
.offcanvas__area li {
  color: #ffffff !important;
}

.offcanvas__area a {
  color: #ffffff !important;
  text-decoration: none !important;
}

.offcanvas__area a:hover {
  color: #F6BC0E !important;
}

/* Nav links - large readable size */
.offcanvas__menu ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.offcanvas__menu ul li a {
  display: block !important;
  font-size: clamp(1.6rem, 5vw, 3.5rem) !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  padding: 14px 0 !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
  line-height: 1.2 !important;
  transition: color 0.3s ease, padding-left 0.3s ease !important;
}

.offcanvas__menu ul li:last-child a {
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}

.offcanvas__menu ul li a:hover {
  color: #F6BC0E !important;
  padding-left: 12px !important;
}

/* Mid padding */
.offcanvas__mid {
  padding: 0 60px !important;
}

/* Close button icon */
.offcanvas__close button i {
  color: #ffffff !important;
}

/* Mobile */
@media (max-width: 767px) {
  .offcanvas__mid {
    padding: 0 24px !important;
    margin-top: 80px !important;
  }

  .offcanvas__menu ul li a {
    font-size: 1.8rem !important;
    padding: 12px 0 !important;
  }
}


/* =========================================================
   TEAM PAGE — complete styles
   ========================================================= */

/* Page base */
.team-page {
  background: #080808 !important;
  color: #fff !important;
  overflow-x: hidden !important;
}

/* ── HERO ── */
.team__hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #000 !important;
  padding: 160px 0 100px;
  overflow: hidden;
}

.team__hero-noise {
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E"),
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(255,215,0,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(255,215,0,0.04) 0%, transparent 60%) !important;
  pointer-events: none;
  z-index: 0;
}

.team__hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.team__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #F6BC0E !important;
  margin-bottom: 24px;
}

.team__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F6BC0E !important;
  box-shadow: 0 0 10px #F6BC0E80;
  animation: eyebrowPulse 2s ease-in-out infinite;
}

@keyframes eyebrowPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.team__headline {
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff !important;
  margin: 0 0 28px;
}

.team__headline span {
  color: #F6BC0E !important;
  font-style: italic;
}

.team__subline {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: rgba(255,255,255,0.52) !important;
  line-height: 1.75;
  max-width: 520px;
  margin: 0;
}

/* Hero marquee */
.team__hero-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  background: #F6BC0E !important;
  padding: 10px 0;
  z-index: 2;
}

.team__hero-marquee-track {
  display: flex;
  white-space: nowrap;
  gap: 0;
  animation: teamMarquee 30s linear infinite;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000 !important;
}

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

/* ── INTRO ── */
.team__intro-section {
  padding: 80px 0 0;
  background: #080808 !important;
}

.team__intro-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.team__intro-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff !important;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 14px 0 16px;
}

.team__intro-title span {
  color: #F6BC0E !important;
  font-style: italic;
}

.team__intro-sub {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.45) !important;
  line-height: 1.7;
  margin: 0;
}

/* ── GRID SECTION ── */
.team__grid-section {
  padding: 60px 0 120px;
  background: #080808 !important;
}

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

/* ── FLIP CARD ── */
.team__card {
  height: 440px;
  perspective: 1200px;
  cursor: pointer;
  outline: none;
}

.team__card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.72s cubic-bezier(0.4, 0, 0.2, 1);
}

.team__card.is-flipped .team__card-inner {
  transform: rotateY(180deg);
}

.team__card-front,
.team__card-back {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Disable pointer events on whichever face is currently hidden */
.team__card:not(.is-flipped) .team__card-back {
  pointer-events: none;
}
.team__card.is-flipped .team__card-front {
  pointer-events: none;
}

/* ── FRONT FACE ── */
.team__card-front {
  background: #111 !important;
  box-shadow: inset 0 -200px 120px -60px rgba(0,0,0,0.95);
}

.team__card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Gradient avatar when no photo */
.team__card-avatar {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
}

.team__card-avatar span {
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  text-shadow: 0 0 60px currentColor;
  opacity: 0.9;
}

.team__card-avatar-ring {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid;
  opacity: 0.3;
  animation: ringPulse 3s ease-in-out infinite;
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.12); opacity: 0.08; }
}

/* Front overlay (bottom gradient + text) */
.team__card-front-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.95) 30%, rgba(0,0,0,0.75) 55%, rgba(0,0,0,0.3) 80%, transparent 100%) !important;
  padding: 50px 24px 22px;
  z-index: 2;
}

.team__card-role-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid;
  border-radius: 30px;
  padding: 3px 10px;
  margin-bottom: 8px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}

.team__card-name {
  font-size: 1.28rem;
  font-weight: 800;
  color: #fff !important;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.9), 0 0 20px rgba(0,0,0,0.7);
}

.team__card-designation {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.75) !important;
  margin: 0 0 14px;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 0 16px rgba(0,0,0,0.6);
}

.team__card-flip-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7) !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.9);
}

.team__card-flip-hint i {
  font-size: 0.8rem;
  animation: rotateHint 2.5s linear infinite;
  filter: drop-shadow(0 0 4px currentColor);
}

@keyframes rotateHint {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Hover glow */
.team__card:not(.is-flipped):hover .team__card-front {
  box-shadow: 0 12px 48px rgba(0,0,0,0.5);
}

/* ── BACK FACE ── */
.team__card-back {
  transform: rotateY(180deg);
  background: #0e0e0e !important;
  border: 1px solid rgba(255,215,0,0.15);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.team__card-back-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.team__card-back-avatar {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  flex-shrink: 0;
}

.team__card-back-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff !important;
  margin: 0 0 3px;
  letter-spacing: -0.01em;
}

.team__card-back-role {
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0;
}

.team__card-back-bio {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.58) !important;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.team__card-back-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.team__card-back-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 1px solid;
  border-radius: 20px;
  padding: 3px 10px;
}

.team__card-back-socials {
  display: flex;
  gap: 10px;
}

.team__card-back-socials a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background 0.25s;
  pointer-events: auto;
  cursor: pointer;
  position: relative;
  z-index: 10;
}

.team__card-back-socials a:hover {
  background: rgba(255,255,255,0.12) !important;
  transform: scale(1.1);
}

.team__card-back-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2) !important;
  margin-top: auto;
}

.team__card-back-hint i {
  font-size: 0.7rem;
}

/* ── CTA SECTION ── */
.team__cta {
  padding: 100px 0;
  background: #080808 !important;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.team__cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.team__cta-title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  color: #fff !important;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0;
}

.team__cta-title span {
  color: #F6BC0E !important;
  font-style: italic;
}

.team__cta-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.5) !important;
  line-height: 1.7;
  margin: 0;
}

.team__cta-btn {
  margin-top: 8px;
}

/* ── RESPONSIVE ── */
/* Tablet (1024px and below) */
@media (max-width: 1024px) {
  .team__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }
  
  .team__card {
    height: 400px !important;
  }
  
  .team__hero {
    padding: 100px 0 70px !important;
  }
  
  .team__headline {
    font-size: clamp(1.8rem, 4vw, 2.8rem) !important;
  }
  
  .team__intro-title {
    font-size: clamp(1.4rem, 2.8vw, 2.2rem) !important;
  }
  
  .team__card-name {
    font-size: 1.1rem !important;
  }
  
  .team__card-designation {
    font-size: 0.78rem !important;
  }
  
  .team__card-avatar span {
    font-size: 3.5rem !important;
  }
  
  .team__cta-title {
    font-size: clamp(1.6rem, 3vw, 2.6rem) !important;
  }
  
  .team__cta-body {
    font-size: 0.95rem !important;
  }
}

/* Mobile (767px and below) */
@media (max-width: 767px) {
  .team__hero {
    padding: 80px 0 60px !important;
    min-height: auto !important;
  }
  
  .team__eyebrow {
    font-size: 0.75rem !important;
  }
  
  .team__headline {
    font-size: clamp(1.4rem, 3.5vw, 2rem) !important;
    line-height: 1.3 !important;
  }
  
  .team__subline {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
  }
  
  .team__intro-section {
    padding: 60px 0 0 !important;
  }
  
  .team__intro-title {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem) !important;
  }
  
  .team__intro-sub {
    font-size: 0.85rem !important;
  }
  
  .team__grid-section {
    padding: 50px 0 80px !important;
  }
  
  .team__grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  
  .team__card {
    height: 380px !important;
  }
  
  .team__card-avatar span {
    font-size: 3rem !important;
  }
  
  .team__card-name {
    font-size: 1rem !important;
  }
  
  .team__card-designation {
    font-size: 0.72rem !important;
  }
  
  .team__card-flip-hint {
    font-size: 0.65rem !important;
  }
  
  .team__card-back-bio {
    font-size: 0.8rem !important;
  }
  
  .team__card-back-tag {
    font-size: 0.65rem !important;
  }
  
  .team__card-back-socials a {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.8rem !important;
  }
  
  .team__cta {
    padding: 70px 0 !important;
  }
  
  .team__cta-title {
    font-size: clamp(1.3rem, 2.8vw, 2rem) !important;
  }
  
  .team__cta-body {
    font-size: 0.9rem !important;
  }
}

/* Small mobile (480px and below) */
@media (max-width: 480px) {
  .team__hero {
    padding: 60px 0 50px !important;
  }
  
  .team__eyebrow {
    font-size: 0.7rem !important;
  }
  
  .team__headline {
    font-size: clamp(1.2rem, 3vw, 1.7rem) !important;
  }
  
  .team__subline {
    font-size: 0.8rem !important;
  }
  
  .team__intro-title {
    font-size: clamp(1.1rem, 2.2vw, 1.5rem) !important;
  }
  
  .team__intro-sub {
    font-size: 0.8rem !important;
  }
  
  .team__grid-section {
    padding: 40px 0 60px !important;
  }
  
  .team__card {
    height: 360px !important;
  }
  
  .team__card-avatar span {
    font-size: 2.5rem !important;
  }
  
  .team__card-name {
    font-size: 0.9rem !important;
  }
  
  .team__card-designation {
    font-size: 0.68rem !important;
  }
  
  .team__cta {
    padding: 50px 0 !important;
  }
  
  .team__cta-title {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem) !important;
  }
  
  .team__cta-body {
    font-size: 0.85rem !important;
  }
}

/* ── Testimonials Hero Marquee ── */
.testi-page__hero-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #F6BC0E !important;
  padding: 10px 0;
  overflow: hidden;
  z-index: 2;
}

.testi-page__hero-marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll 35s linear infinite;
  color: #000 !important;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testi-page__hero-marquee-track span {
  flex-shrink: 0;
}

/* ── Career Hero Marquee ── */
.career__hero-marquee {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  background: #F6BC0E !important;
  padding: 10px 0 !important;
  overflow: hidden !important;
  z-index: 3 !important;
}

.career__hero-marquee-track {
  display: flex !important;
  white-space: nowrap !important;
  animation: marquee-scroll 60s linear infinite !important;
  color: #000 !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.career__hero-marquee-track span {
  flex-shrink: 0 !important;
}

/* Offcanvas - vertically center Get in touch */
.offcanvas__right {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hide Follow Us & Get in touch on mobile (<=767px) */
@media only screen and (max-width: 767px) {
  .offcanvas__left,
  .offcanvas__right {
    display: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════ */
/* GLOBAL RESPONSIVE FONT SIZING FOR ENTIRE PROJECT */
/* ═══════════════════════════════════════════════════════════════ */

/* Tablet devices (max-width: 1024px) */
@media (max-width: 1024px) {
  /* Hero and main headings — scoped to avoid overriding component-level sizes */
  h1 {
    font-size: clamp(1.8rem, 4vw, 3rem) !important;
  }
  
  h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem) !important;
  }
  
  /* h3 intentionally NOT overridden globally — services cards use h3 at 16px */
  
  h4, h5, h6 {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
  }
  
 
  
  /* Section titles */
  .sec-title,
  .section__title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem) !important;
  }
  
  .sec-sub-title,
  .section__subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.2rem) !important;
  }
  
  
  
  /* Labels and small text */
  label, .label, .text-label {
    font-size: 0.85rem !important;
  }
  
  /* Navigation and menu */
  nav, .navbar, .menu {
    font-size: 0.9rem !important;
  }
  
  /* Cards and boxes */
  .card, .box {
    font-size: 0.95rem !important;
  }
}

/* Mobile devices (max-width: 768px) */
@media (max-width: 768px) {
  /* Root font sizing */
  html {
    font-size: 14px !important;
  }
  
  /* Hero and main headings */
  h1 {
    font-size: clamp(1.4rem, 3.5vw, 2.2rem) !important;
    line-height: 1.3 !important;
    margin-bottom: 16px !important;
  }
  
  h2 {
    font-size: clamp(1.2rem, 3vw, 1.9rem) !important;
    line-height: 1.3 !important;
    margin-bottom: 14px !important;
  }
  

  
  h5, h6 {
    font-size: clamp(0.85rem, 1.8vw, 1.1rem) !important;
    margin-bottom: 8px !important;
  }
  
  /* Body text - default paragraph */
  p {
    font-size: 0.9rem !important;
    line-height: 1.65 !important;
  }
  
  /* Smaller paragraphs and descriptions */
  .description, .desc, .text-muted {
    font-size: 0.85rem !important;
    line-height: 1.6 !important;
  }
  
  /* Section titles */
  .sec-title,
  .section__title,
  .section-title {
    font-size: clamp(1.3rem, 2.8vw, 1.8rem) !important;
  }
  
  .sec-sub-title,
  .section__subtitle,
  .section-subtitle {
    font-size: clamp(0.8rem, 1.3vw, 1rem) !important;
  }
  
  /* Button text */
  .btn, button, a.btn, .button {
    font-size: 0.85rem !important;
  }
  
  /* Links */
  a {
    font-size: 0.9rem !important;
  }
  
  /* Labels and small text */
  label, .label, .text-label, .tag {
    font-size: 0.8rem !important;
  }
  
  /* Navigation and menu */
  nav, .navbar, .menu, .nav {
    font-size: 0.85rem !important;
  }
  
  /* Footer */
  footer, .footer {
    font-size: 0.8rem !important;
  }
  
  .footer p {
    font-size: 0.8rem !important;
  }
  
  /* Cards and boxes */
  .card, .box, .card-title {
    font-size: 0.9rem !important;
  }
  
  /* Lists */
  li {
    font-size: 0.9rem !important;
  }
  
  /* Form elements */
  input, textarea, select {
    font-size: 0.9rem !important;
  }
  
  /* Headings with specific classes */
  .headline, .heading {
    font-size: clamp(1.3rem, 2.8vw, 1.8rem) !important;
  }
  
  /* Eyebrow text */
  .eyebrow, .subheading {
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
  }
}

/* Small mobile devices (max-width: 480px) */
@media (max-width: 480px) {
  /* Root font sizing */
  html {
    font-size: 13px !important;
  }
  
  /* Hero and main headings */
  
  
  h2 {
    font-size: clamp(1rem, 2.6vw, 1.6rem) !important;
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
  }
  
  h3 {
    font-size: clamp(0.9rem, 2.2vw, 1.3rem) !important;
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
  }
  
  h4 {
    font-size: clamp(0.8rem, 1.8vw, 1.1rem) !important;
    margin-bottom: 8px !important;
  }
  
  h5, h6 {
    font-size: clamp(0.75rem, 1.5vw, 1rem) !important;
    margin-bottom: 6px !important;
  }
  
  /* Body text */
  p {
    font-size: 0.85rem !important;
    line-height: 1.6 !important;
    margin-bottom: 12px !important;
  }
  
  /* Small text */
  .description, .desc, .text-muted, small {
    font-size: 0.8rem !important;
    line-height: 1.55 !important;
  }
  
  /* Section titles */
  .sec-title,
  .section__title,
  .section-title {
    font-size: clamp(1.1rem, 2.4vw, 1.5rem) !important;
  }
  
  .sec-sub-title,
  .section__subtitle,
  .section-subtitle {
    font-size: clamp(0.75rem, 1.2vw, 0.95rem) !important;
  }
  
  /* Button text */
  .btn, button, a.btn, .button {
    font-size: 0.8rem !important;
  }
  
  /* Links */
  a {
    font-size: 0.85rem !important;
  }
  
  /* Labels and small text */
  label, .label, .text-label, .tag {
    font-size: 0.75rem !important;
  }
  
  /* Navigation and menu */
  nav, .navbar, .menu, .nav {
    font-size: 0.8rem !important;
  }
  
  /* Footer */
  footer, .footer {
    font-size: 0.75rem !important;
  }
  
  .footer p {
    font-size: 0.75rem !important;
  }
  
  /* Cards and boxes */
  .card, .box, .card-title {
    font-size: 0.85rem !important;
  }
  
  /* Lists */
  li {
    font-size: 0.85rem !important;
  }
  
  /* Form elements */
  input, textarea, select {
    font-size: 0.85rem !important;
  }
  
  /* Headings with specific classes */
  .headline, .heading {
    font-size: clamp(1.1rem, 2.4vw, 1.5rem) !important;
  }
  
  /* Eyebrow text */
  .eyebrow, .subheading {
    font-size: 0.7rem !important;
    text-transform: uppercase !important;
  }
  
  /* Testimonials and quotes */
  blockquote, .quote {
    font-size: 0.9rem !important;
  }
  
  /* Breadcrumb */
  .breadcrumb {
    font-size: 0.75rem !important;
  }
  
  /* Badge */
  .badge, .label-badge {
    font-size: 0.7rem !important;
  }
}

/* Extra small devices (max-width: 360px) */
@media (max-width: 360px) {
  html {
    font-size: 12px !important;
  }
  
  h1 {
    font-size: clamp(1.1rem, 2.8vw, 1.6rem) !important;
  }
  
  h2 {
    font-size: clamp(0.95rem, 2.4vw, 1.4rem) !important;
  }
  
  h3 {
    font-size: clamp(0.85rem, 2vw, 1.2rem) !important;
  }
  
  p {
    font-size: 0.8rem !important;
  }
  
  .btn, button {
    font-size: 0.75rem !important;
  }
}

/* ═══════════════════════════════════════════════════════════════ */
/* MARQUEE ANIMATION SPEED ADJUSTMENTS FOR MOBILE */
/* ═══════════════════════════════════════════════════════════════ */

/* Mobile devices - Much faster marquee speed */
@media (max-width: 768px) {
  /* Team page marquee */
  .team__hero-marquee-track {
    animation: teamMarquee 12s linear infinite !important;
  }
  
  /* About page marquee */
  .about__hero-marquee-track {
    animation: marquee-scroll 90s linear infinite !important;
  }
  
  /* Services page marquee */
  .svc__hero-marquee-track {
    animation: marquee-scroll 90s linear infinite !important;
  }
  
  /* Contact page marquee */
  .ct__hero-marquee-track {
    animation: marquee-scroll 90s linear infinite !important;
  }
  
  /* Testimonials page marquee */
  .testi-page__hero-marquee-track {
    animation: marquee-scroll 22s linear infinite !important;
  }
  
  /* Career page marquee */
  .career__hero-marquee-track {
    animation: marquee-scroll 60s linear infinite !important;
  }
  
  /* Brands marquee - very fast */
  .brands__track {
    --marquee-duration: 10s !important;
  }
}

/* Small mobile (max-width: 480px) - Ultra fast */
@media (max-width: 480px) {
  /* Team page marquee */
  .team__hero-marquee-track {
    animation: teamMarquee 10s linear infinite !important;
  }
  
 
 
  /* Testimonials page marquee */
  .testi-page__hero-marquee-track {
    animation: marquee-scroll 20s linear infinite !important;
  }
  
  
  /* Brands marquee - ultra fast */
  .brands__track {
    --marquee-duration: 8s !important;
  }
}

/* Extra small mobile (max-width: 360px) - Maximum speed */
@media (max-width: 360px) {
  /* All marquees - maximum speed */
 
  
  
  /* Brands - fastest */
  .brands__track {
    --marquee-duration: 6s !important;
  }
}

/* ═══════════════════════════════════════════════════════════════ */
/* TESTIMONIAL PAGINATION DOTS — MOBILE FIX                       */
/* Placed at END of file to win the CSS cascade.                  */
/* master.css hides .testimonial__pagination at max-width:767px   */
/* via display:none. We override it here with higher specificity  */
/* (.swiper-pagination.testimonial__pagination = 2 classes) and   */
/* !important so it also beats swiper-pagination-lock.            */
/* ═══════════════════════════════════════════════════════════════ */
@media only screen and (max-width: 767px) {
  .swiper-pagination.testimonial__pagination {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    width: 100% !important;
    margin-top: 28px !important;
    margin-bottom: 16px !important;
    transform: none !important;
  }

  .swiper-pagination.testimonial__pagination .swiper-pagination-bullet {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background: #cccccc !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
  }

  .swiper-pagination.testimonial__pagination .swiper-pagination-bullet-active {
    background: #F6BC0E !important;
    transform: scale(1.15) !important;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4) !important;
  }
}



/* ══════════════════════════════════════════
   Our Work / Stats Section
   ══════════════════════════════════════════ */
.work__stats-area {
  background: #111111 url('/banner-4.png') center center / cover no-repeat;
  display: flex;
  align-items: center;
  border-radius: 0 0 40px 40px;
  overflow: hidden;
  position: relative;
}

/* ── OUR WORK: min-height per screen ── */

/* 2000px+ */
@media (min-width: 2000px) {
  .work__stats-area { min-height: 1090px; }
}
/* 1920px - 1999px */
@media (min-width: 1920px) and (max-width: 1999px) {
  .work__stats-area { min-height: 980px; }
}
/* 1600px - 1919px */
@media (min-width: 1600px) and (max-width: 1919px) {
  .work__stats-area { min-height: 880px; }
}
/* 1400px - 1599px */
@media (min-width: 1400px) and (max-width: 1599px) {
  .work__stats-area { min-height: 750px; }
}
/* 1200px - 1399px */
@media (min-width: 1200px) and (max-width: 1399px) {
  .work__stats-area { min-height: 620px; }
}
/* 1025px - 1199px */
@media (min-width: 1025px) and (max-width: 1199px) {
  .work__stats-area { min-height: 560px; }
}
/* 992px - 1024px */
@media (min-width: 992px) and (max-width: 1024px) {
  .work__stats-area { min-height: 550px; }
}
/* 768px - 991px */
@media (min-width: 768px) and (max-width: 991px) {
  .work__stats-area { min-height: 480px; }
}
/* 601px - 767px */
@media (min-width: 601px) and (max-width: 767px) {
  .work__stats-area { min-height: 420px; }
}
/* 481px - 600px */
@media (min-width: 481px) and (max-width: 600px) {
  .work__stats-area { min-height: 380px; }
}
/* 376px - 480px */
@media (min-width: 376px) and (max-width: 480px) {
  .work__stats-area { min-height: 340px; }
}
/* 321px - 375px */
@media (min-width: 321px) and (max-width: 375px) {
  .work__stats-area { min-height: 300px; }
}
/* ≤320px */
@media (max-width: 320px) {
  .work__stats-area { min-height: 280px; }
}

/* dark overlay */
.work__stats-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.62);
  z-index: 1;
}

.work__stats-area::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 40px;
  border-radius: 0 0 40px 40px;
  z-index: 2;
  pointer-events: none;
}

/* Base inner - 2 column layout on 992px+ */
.work__stats-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 60px 60px 50px;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Left: heading + desc */
.work__stats-left {
  flex: 1 1 0;
  min-width: 0;
}

/* Right: stats grid */
.work__stats-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.work__stats-content {
  max-width: 600px;
}

.work__stats-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #52514f;
  margin-bottom: 60px;
}

.work__stats-kicker-line {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #F6BC0E;
}

.work__stats-headline {
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.work__stats-highlight {
  color: #F6BC0E;
}

.work__stats-desc {
  font-size: clamp(13px, 1vw, 15px);
  color: #5b5b5b;
  line-height: 1.7;
  margin-top: 24px;
  margin-bottom: 40px;
}

.work__stats-numbers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px 40px;
  align-items: start;
}

.work__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.work__stat-value {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.work__stat-value .stat-suffix {
  color: #F6BC0E;
}

.work__stat-label {
  font-size: 12px;
  color: #5b5b5b;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* OUR WORK - ALL BREAKPOINTS */

/* Ultra Wide (1920px+) */
@media (min-width: 1920px) {
  .work__stats-inner { padding: 80px 100px 70px; gap: 80px; }
  .work__stats-numbers { gap: 36px 126px; margin-top: 90px; }
  .work__stats-headline { font-size: 58px; }
  .work__stat-value { font-size: 44px; }
  .work__stat-label { font-size: 14px; }
  .work__stats-kicker { font-size: 15px; }
}

/* Large Desktop (1600px - 1919px) */
@media (min-width: 1600px) and (max-width: 1919px) {
  .work__stats-inner { padding: 72px 90px 62px; gap: 72px; }
  .work__stats-numbers { gap: 32px 52px;margin-top: 120px ; }
  .work__stats-headline { font-size: 54px; }
  .work__stat-value { font-size: 40px; }
  .work__stat-label { font-size: 13px; }
}

/* Desktop XL (1400px - 1599px) */
@media (min-width: 1400px) and (max-width: 1599px) {
  .work__stats-inner { padding: 68px 80px 58px; gap: 64px; }
  .work__stats-numbers { gap: 30px 48px; margin-top: 60px; }
  .work__stats-headline { font-size: 50px; }
  .work__stat-value { font-size: 36px; }
}

/* Desktop Large (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .work__stats-inner { padding: 64px 70px 54px; gap: 56px; }
  .work__stats-numbers { gap: 28px 44px; margin-top: 60px; }
  .work__stats-headline { font-size: 46px; }
  .work__stat-value { font-size: 34px; }
}

/* Desktop Standard (1025px - 1199px) */
@media (min-width: 1025px) and (max-width: 1199px) {
  .work__stats-inner { padding: 60px 60px 50px; gap: 48px; }
  .work__stats-numbers { gap: 26px 40px;  margin-top: 45px;}
  .work__stats-headline { font-size: 42px; }
  .work__stat-value { font-size: 32px; }
}

/* Desktop 992px - 1024px */
@media (min-width: 992px) and (max-width: 1024px) {
  .work__stats-inner { padding: 56px 50px 46px; gap: 40px; }
  .work__stats-numbers { gap: 24px 36px; margin-top: 40px ; }
  .work__stats-headline { font-size: 38px; }
  .work__stat-value { font-size: 30px; }
}

/* Below 992px: stack vertically */
@media (max-width: 991px) {
  .work__stats-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
  .work__stats-right { width: 100%; }
  .work__stats-numbers { grid-template-columns: repeat(4, 1fr); gap: 20px; width: 100%; }
}

/* Tablet Landscape (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .work__stats-area { border-radius: 0 0 32px 32px; }
  .work__stats-inner { padding: 60px 40px 50px; }
  .work__stats-headline { font-size: clamp(28px, 4vw, 44px); margin-bottom: 14px; }
  .work__stats-desc { font-size: 15px; margin-top: 20px; margin-bottom: 36px; }
  .work__stat-value { font-size: clamp(22px, 3vw, 32px); }
  .work__stat-label { font-size: 11px; }
  .work__stats-kicker { font-size: 12px; margin-bottom: 56px; }
}

/* Tablet Portrait (601px - 767px) */
@media (min-width: 601px) and (max-width: 767px) {
  .work__stats-area { border-radius: 0 0 28px 28px; }
  .work__stats-inner { padding: 52px 32px 44px; gap: 24px; }
  .work__stats-numbers { grid-template-columns: repeat(4, 1fr); gap: 20px 24px; }
  .work__stats-headline { font-size: clamp(26px, 5vw, 38px); margin-bottom: 12px; }
  .work__stats-desc { font-size: 14px; margin-top: 18px; margin-bottom: 32px; }
  .work__stat-value { font-size: clamp(20px, 4vw, 28px); }
  .work__stat-label { font-size: 11px; }
  .work__stats-kicker { font-size: 11px; margin-bottom: 44px; }
  .work__stats-kicker-line { width: 22px; }
}

/* Mobile Large (481px - 600px) */
@media (min-width: 481px) and (max-width: 600px) {
  .work__stats-area { border-radius: 0 0 24px 24px; }
  .work__stats-inner { padding: 44px 24px 38px; gap: 20px; }
  .work__stats-numbers { grid-template-columns: repeat(2, 1fr); gap: 24px 20px; }
  .work__stats-headline { font-size: clamp(24px, 6vw, 34px); margin-bottom: 10px; line-height: 1.15; }
  .work__stats-desc { font-size: 13px; margin-top: 16px; margin-bottom: 28px; }
  .work__stat-value { font-size: clamp(18px, 5vw, 26px); }
  .work__stat-label { font-size: 10px; }
  .work__stats-kicker { font-size: 11px; margin-bottom: 40px; }
  .work__stats-kicker-line { width: 20px; }
}

/* Mobile Medium (376px - 480px) */
@media (min-width: 376px) and (max-width: 480px) {
  .work__stats-area { border-radius: 0 0 20px 20px; }
  .work__stats-inner { padding: 40px 20px 34px; gap: 18px; }
  .work__stats-numbers { grid-template-columns: repeat(2, 1fr); gap: 22px 18px; }
  .work__stats-headline { font-size: clamp(22px, 7vw, 30px); margin-bottom: 10px; line-height: 1.15; }
  .work__stats-desc { font-size: 12px; line-height: 1.6; margin-top: 14px; margin-bottom: 24px; }
  .work__stat-value { font-size: clamp(16px, 6vw, 24px); }
  .work__stat-label { font-size: 10px; }
  .work__stats-kicker { font-size: 10px; margin-bottom: 30px !important; gap: 8px; }
  .work__stats-kicker-line { width: 18px; }
}

/* Mobile Small (321px - 375px) */
@media (min-width: 321px) and (max-width: 375px) {
  .work__stats-area { border-radius: 0 0 18px 18px; }
  .work__stats-inner { padding: 36px 16px 30px; gap: 16px; }
  .work__stats-numbers { grid-template-columns: repeat(2, 1fr); gap: 20px 16px; }
  .work__stats-headline { font-size: clamp(20px, 7vw, 26px); margin-bottom: 8px; line-height: 1.15; }
  .work__stats-desc { font-size: 11px; line-height: 1.6; margin-top: 12px; margin-bottom: 20px; }
  .work__stat-value { font-size: clamp(15px, 6vw, 22px); }
  .work__stat-label { font-size: 9px; letter-spacing: 0.04em; }
  .work__stats-kicker { font-size: 9px; margin-bottom: 25px !important;  gap: 7px; }
  .work__stats-kicker-line { width: 16px; }
}

/* Mobile XS (<=320px) */
@media (max-width: 320px) {
  .work__stats-area { border-radius: 0 0 16px 16px; }
  .work__stats-inner { padding: 32px 14px 26px; gap: 14px; }
  .work__stats-numbers { grid-template-columns: repeat(2, 1fr); gap: 18px 14px; }
  .work__stats-headline { font-size: clamp(18px, 7vw, 22px); margin-bottom: 8px; line-height: 1.2; }
  .work__stats-desc { font-size: 10px; line-height: 1.5; margin-top: 10px; margin-bottom: 18px; }
  .work__stat-value { font-size: clamp(14px, 6vw, 18px); }
  .work__stat-label { font-size: 8px; letter-spacing: 0.03em; }
  .work__stats-kicker { font-size: 8px; margin-bottom: 7px; gap: 6px; }
  .work__stats-kicker-line { width: 14px; }
}

/* ══════════════════════════════════════════
   Portfolio Showcase Section
   ══════════════════════════════════════════ */
.pf__area {
  background: #ffffff;
  margin-top: 1px;
   /* footer pe overlap karne ke liye */
  border-radius: 0 0 40px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
  z-index: 2;
  padding-bottom: 64px;
  margin-bottom: -60px;
}

.pf__header {
  text-align: center;
  padding: 48px 24px 36px;
}

.pf__cta-block {
  text-align: center;
  padding: 20px 24px 0px;
}

.pf__cta-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 20px;
}

.pf__cta-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: #aaa;
}

.pf__cta-headline {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: #111;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.pf__cta-highlight {
  color: #F6BC0E;
}

.pf__cta-btn {
  display: inline-block;
  padding: 14px 40px;
  background: #282725;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 15px;
  text-decoration: none;
  transition: background 0.2s;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.pf__cta-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #F6BC0E;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.7s ease, height 0.7s ease;
  z-index: -1;
}

.pf__cta-btn:hover::before {
  width: 400px;
  height: 400px;
}

.pf__cta-btn:hover {
  background: transparent !important;
  color: #000000 !important;
}

.pf__cta-sub {
  font-size: 14px;
  color: #888;
  margin: 0;
}

.pf__cta-sub-link {
  color: #F6BC0E;
  text-decoration: none;
  font-weight: 600;
}

.pf__cta-sub-link:hover {
  text-decoration: underline;
}

.pf__title {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: bold;
  letter-spacing: 0.08em;
  color: #111;
  text-transform: uppercase;
  margin: 0;
}

/* Stage has no border-radius — images are square, curve is on the section below */
.pf__stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 88vh;
  max-height: 580px;
  overflow: hidden;
  border-radius: 0; /* no curve on images */
  position: relative;
}

/* ── Center pill hover marquee ── */
.pf__marquee-pill {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 52px;
  background: #F6BC0E;
  border-radius: 26px;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 20;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  visibility: hidden;
  text-decoration: none;
  width: 200px;
}

@media (min-width: 1025px) {
  .pf__stage:hover .pf__marquee-pill {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.pf__marquee-pill-track {
  display: flex;
  white-space: nowrap;
  animation: pf-marquee-scroll 6s linear infinite;
}

.pf__marquee-pill-text {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  padding-right: 16px;
  text-transform: capitalize;
}

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

/* ── Left panel ── */
.pf__left {
  position: relative;
  overflow: hidden;
  background: #f0ede8;
  display: flex;
  flex-direction: column;
}

/* ── Right panel ── */
.pf__right {
  position: relative;
  overflow: hidden;
  background: #f7f6f2;
  border-left: 1px solid #e8e5e0;
}

/* Shared track */
.pf__img-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Each slide item */
.pf__img-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

.pf__img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Active slide */
.pf__img-item--active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  z-index: 2;
}

/* ── Left: new slide enters from top, old exits down ── */
.pf__img-track--left .pf__img-item--active {
  animation: pf-enter-from-top 0.65s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.pf__img-track--left .pf__img-item--exit-down {
  opacity: 1; z-index: 1;
  animation: pf-exit-down 0.65s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.pf__img-track--left .pf__img-item--exit-up {
  opacity: 1; z-index: 1;
  animation: pf-exit-up 0.65s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* ── Right: new slide enters from bottom, old exits up ── */
.pf__img-track--right .pf__img-item--active {
  animation: pf-enter-from-bottom 0.65s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.pf__img-track--right .pf__img-item--exit-up {
  opacity: 1; z-index: 1;
  animation: pf-exit-up 0.65s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.pf__img-track--right .pf__img-item--exit-down {
  opacity: 1; z-index: 1;
  animation: pf-exit-down 0.65s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes pf-enter-from-top {
  from { transform: translateY(-100%); opacity: 1; }
  to   { transform: translateY(0);     opacity: 1; }
}
@keyframes pf-enter-from-bottom {
  from { transform: translateY(100%);  opacity: 1; }
  to   { transform: translateY(0);     opacity: 1; }
}
@keyframes pf-exit-down {
  from { transform: translateY(0);     opacity: 1; }
  to   { transform: translateY(100%);  opacity: 0; }
}
@keyframes pf-exit-up {
  from { transform: translateY(0);     opacity: 1; }
  to   { transform: translateY(-100%); opacity: 0; }
}

/* Left overlay — brand row at top, headline above image bottom half */
.pf__left-overlay {
  position: absolute;
  inset: 0;
  padding: 28px 28px 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 3;
  pointer-events: none;
}

.pf__brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pf__brand-logo {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
}

.pf__brand-x {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  font-weight: 300;
}

.pf__brand-partner {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pf__left-headline {
  color: #fff;
  font-size: clamp(20px, 2.6vw, 34px);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

/* Arrow button — bottom left */
.pf__arrow {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  padding: 0;
  flex-shrink: 0;
}

.pf__arrow:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: scale(1.08);
}

/* Right content — text only, no image */
.pf__right-content {
  position: absolute;
  inset: 0;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 3;
  background: #f7f6f2;
}

.pf__right-kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.pf__right-headline {
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 900;
  color: #111;
  line-height: 1.2;
  margin-bottom: 20px;
}

.pf__highlight {
  background: #F6BC0E;
  padding: 1px 6px;
  border-radius: 2px;
  color: #111;
}

.pf__right-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  border-top: 1px solid #ddd;
  padding-top: 18px;
}

/* Mobile */
@media (max-width: 767px) {
  .pf__area {
    margin-top: 32px;
    margin-bottom: -40px !important;
    border-radius: 0 0 24px 24px !important;
    padding-bottom: 40px;
  }
  .pf__stage {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
    border-radius: 0;
  }
  .pf__left {
    height: 70vw;
    min-height: 280px;
  }
  .pf__right {
    border-left: none;
    border-top: 1px solid #e8e5e0;
    min-height: 320px;
  }
  .pf__right-content {
    position: relative;
    inset: unset;
    padding: 28px 24px;
  }
  .pf__header {
    padding: 36px 24px 28px;
  }
}

/* ══════════════════════════════════════════
   Portfolio - Mobile Banner Layout (≤767px)
   ══════════════════════════════════════════ */

/* Dot pagination — hidden on desktop, shown on mobile */
.pf__mobile-dots {
  display: none;
}

@media (max-width: 767px) {

  /* Show dots */
  .pf__mobile-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 14px 0 4px;
  }

  .pf__mobile-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }

  .pf__mobile-dot--active {
    background: #F6BC0E;
    width: 24px;
    border-radius: 4px;
  }

  .pf__mobile-dot:hover:not(.pf__mobile-dot--active) {
    background: #9ca3af;
  }

  /* Stage: single full-width banner */
  .pf__stage {
    display: block !important;
    height: auto !important;
    max-height: none !important;
    position: relative;
  }

  /* Left panel = full-width banner image */
  .pf__left {
    width: 100%;
    height: 56vw !important;
    min-height: 200px !important;
    max-height: 360px !important;
    position: relative;
  }

  /* Hide right panel on mobile — single banner layout */
  .pf__right {
    display: none !important;
  }

  /* Arrow button — hide on mobile, use dots instead */
  .pf__arrow {
    display: none !important;
  }

  /* Hide marquee pill on mobile */
  .pf__marquee-pill {
    display: none !important;
  }
}

/* Tablet Portrait (601px - 767px) */
@media (max-width: 767px) and (min-width: 601px) {
  .pf__left {
    height: 52vw !important;
    min-height: 220px !important;
    max-height: 310px !important;
  }
}

/* Mobile Large (481px - 600px) */
@media (max-width: 600px) and (min-width: 481px) {
  .pf__left {
    height: 56vw !important;
    min-height: 200px !important;
    max-height: 270px !important;
  }
}

/* Mobile Medium (376px - 480px) */
@media (max-width: 480px) and (min-width: 376px) {
  .pf__left {
    height: 60vw !important;
    min-height: 190px !important;
    max-height: 250px !important;
  }
  .pf__mobile-dot {
    width: 7px;
    height: 7px;
  }
  .pf__mobile-dot--active {
    width: 20px;
  }
}

/* Mobile Small (≤375px) */
@media (max-width: 375px) {
  .pf__left {
    height: 64vw !important;
    min-height: 180px !important;
    max-height: 260px !important;
  }
  .pf__mobile-dots {
    gap: 6px;
    padding: 12px 0 4px;
  }
  .pf__mobile-dot {
    width: 6px;
    height: 6px;
  }
  .pf__mobile-dot--active {
    width: 18px;
  }
}

/* ══════════════════════════════════════════
   Footer New (reference design)
   ══════════════════════════════════════════ */
.footer__new {
  background: #1e1e1e;
  color: #fff;
  padding: 0;
  margin-top: 0;
}

/* Big logo */
.footer__new-logo-wrap {
  text-align: center;
  padding: 64px 24px 48px;
}

/* Logo image — same visual size as the old text wordmark */
.footer__new-logo-img {
  height: clamp(64px, 11vw, 130px);
  width: auto;
  display: inline-block;
}

/* Big wordmark */
.footer__new-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  line-height: 1;
  font-weight: 900;
}

.footer__new-wordmark-num {
  font-size: clamp(64px, 11vw, 130px);
  color: #fff;
  font-weight: 900;
  line-height: 1;
}

.footer__new-wordmark-p {
  font-size: clamp(64px, 11vw, 130px);
  color: #F6BC0E;
  font-weight: 900;
  line-height: 1;
}

.footer__new-wordmark-text {
  font-size: clamp(64px, 11vw, 130px);
  color: #fff;
  font-weight: 900;
  line-height: 1;
  margin-left: 16px;
}

/* Divider with center dot — full width line */
.footer__new-divider {
  position: relative;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0 32px;
}

.footer__new-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #F6BC0E;
  border: 3px solid #1e1e1e;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.25);
}

/* Three-column row */
.footer__new-row {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 32px;
  padding: 36px 48px 40px;
  align-items: start;
}

.footer__new-col--center {
  text-align: center;
}

.footer__new-col--right {
  text-align: right;
}

/* Social icons */
.footer__new-socials {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.footer__new-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  font-size: 23px;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}

.footer__new-social-btn:hover {
  border-color: #F6BC0E;
  color: #F6BC0E;
}

.footer__new-social-btn--linkedin {
  border-radius: 9px;
}

/* Responsive footer social button sizes */
@media (max-width: 1199px) {
  .footer__new-social-btn {
    width: 34px;
    height: 34px;
    font-size: 21px;
    border-width: 1px;
  }
}

@media (max-width: 991px) {
  .footer__new-social-btn {
    width: 32px;
    height: 32px;
    font-size: 19px;
    border-width: 1px;
  }
}

@media (max-width: 767px) {
  .footer__new-social-btn {
    width: 30px;
    height: 30px;
    font-size: 17px;
    border-width: 0.9px;
  }
  .footer__new-socials {
    justify-content: start;
  }
}

@media (max-width: 575px) {
  .footer__new-social-btn {
    width: 28px;
    height: 28px;
    font-size: 16px;
    border-width: 0.8px;
  }
}

@media (max-width: 480px) {
  .footer__new-social-btn {
    width: 26px;
    height: 26px;
    font-size: 15px;
    border-width: 0.8px;
  }
}

/* X (Twitter) SVG icon — responsive */
.footer__x-icon {
  width: 14px;
  height: 14px;
  display: block;
}

@media (max-width: 1199px) { .footer__x-icon { width: 13px; height: 13px; } }
@media (max-width: 991px)  { .footer__x-icon { width: 13px; height: 13px; } }
@media (max-width: 767px)  { .footer__x-icon { width: 12px; height: 12px; } }
@media (max-width: 575px)  { .footer__x-icon { width: 11px; height: 11px; } }
@media (max-width: 480px)  { .footer__x-icon { width: 11px; height: 11px; } }
@media (max-width: 375px)  { .footer__x-icon { width: 10px; height: 10px; } }
@media (max-width: 320px)  { .footer__x-icon { width: 9px;  height: 9px;  } }

/* Quick links */
.footer__new-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer__new-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 4px;
  align-items: center;
}

.footer__new-links a {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer__new-links a:hover { color: #F6BC0E; }

.footer__new-sep {
  color: rgba(255,255,255,0.25);
  font-size: 12px;
}

/* Contact info */
.footer__new-contact-line {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
  line-height: 1.5;
}

.footer__new-contact-line a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}

.footer__new-contact-line a:hover { color: #F6BC0E; }

.footer__new-contact-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgb(255 255 255 / 82%);
  text-transform: uppercase;
}

/* Bottom bar */
.footer__new-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 48px;
  text-align: center;
}

.footer__new-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.footer__new-bottom a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}

.footer__new-bottom a:hover { color: #F6BC0E; }

/* Mobile */
/* Tablet range - single column centered layout */
@media (max-width: 991px) and (min-width: 768px) {
  .footer__new-row {
    grid-template-columns: 1fr;
    padding: 32px 20px 36px;
    gap: 24px;
  }
  .footer__new-col--center,
  .footer__new-col--right {
    text-align: center;
  }
  .footer__new-links {
    justify-content: center;
  }
  .footer__new-bottom {
    text-align: center;
    padding: 20px 20px;
  }
}

/* Mobile - single column left aligned */
@media (max-width: 767px) {
  .footer__new-row {
    grid-template-columns: 1fr;
    padding: 28px 24px 32px;
    gap: 28px;
  }
  .footer__new-col--center,
  .footer__new-col--right {
    text-align: left;
  }
  .footer__new-links {
    justify-content: flex-start;
  }
  .footer__new-bottom {
    padding: 16px 24px;
    text-align: left;
  }
}

/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — 1024px DESKTOP RESPONSIVE
   Fixes layout for screens exactly at 1024px wide
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {

  /* ── Hero carousel — handled in home.css ── */

  /* ── About card ── */
  .about__area.about__card {
    min-height: auto;
    padding-bottom: 16px !important;
  }

  .about__card-inner {
    padding: 20px 40px 15px;
    max-width: 680px;
  }

  .about__card-headline {
    font-size: clamp(26px, 3.5vw, 44px);
  }

  .about__card-desc {
    font-size: 16px;
  }

  /* ── Services section ── */
  .service__area.services__revamp {
    margin-top: 0;
    padding-bottom: 26px !important;
    border-radius: 0 0 32px 32px !important;
  }

  .service__area.services__revamp .container {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  /* 4 columns → 2 columns at 1024px (cards are too narrow at 4-col) */
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .services__card {
    padding: 22px 20px 20px;
  }

  /* Keep card title at its intended size — don't let global h3 override win */
  .services__title {
    font-size: 16px !important;
  }

  .services__kicker {
    font-size: clamp(20px, 2.2vw, 26px) !important;
  }

  .services__headline {
    font-size: 16px;
  }

  .services__desc {
    font-size: 15px;
  }

  .services__footer {
    margin-top: 32px;
  }

  /* ── Portfolio showcase ── */
  .pf__area {
    margin-top: 6px;
    padding-bottom: 56px;
  }

  .pf__stage {
    height: 72vh;
    max-height: 440px;
  }

  .pf__header {
    padding: 0px 24px 28px;
  }

  .pf__left-headline {
    font-size: clamp(18px, 2.2vw, 28px);
  }

  .pf__right-headline {
    font-size: clamp(16px, 1.8vw, 24px);
  }

  .pf__right-content {
    padding: 36px 32px;
  }

  .pf__right-desc {
    font-size: 14px;
  }

  /* ── Container max-width ── */
  .container {
    max-width: 960px;
    padding-left: 24px;
    padding-right: 24px;
    margin-top: 20px;
  }
}
.policy-page{
  margin-top: 30px !important;
}


/* ============================================================
   APPLY NOW MODAL
   ============================================================ */

.apply-modal__overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: modalFadeIn 0.2s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.apply-modal__box {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalSlideUp 0.25s ease;
  scrollbar-width: thin;
  scrollbar-color: #F6BC0E #f0f0f0;
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.apply-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 28px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding-bottom: 20px;
}

.apply-modal__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #111 !important;
  margin: 0 0 4px;
  letter-spacing: -0.02em;
}

.apply-modal__sub {
  font-size: 0.85rem;
  color: rgba(0,0,0,0.45) !important;
  margin: 0;
}

.apply-modal__close {
  background: rgba(0,0,0,0.06) !important;
  border: none;
  border-radius: 10px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,0.5) !important;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.apply-modal__close:hover {
  background: rgba(246, 188, 14, 0.15) !important;
  color: #111 !important;
}

.apply-modal__form {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.apply-modal__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.apply-modal__label {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(0,0,0,0.55) !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.apply-modal__label span {
  color: #F6BC0E !important;
}

.apply-modal__input {
  background: #f5f5f5 !important;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.95rem;
  color: #111 !important;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.apply-modal__input::placeholder {
  color: rgba(0,0,0,0.25) !important;
}

.apply-modal__input:focus {
  border-color: #F6BC0E;
  background: #fff !important;
}

.apply-modal__input--readonly {
  background: rgba(246, 188, 14, 0.08) !important;
  border-color: rgba(246, 188, 14, 0.4);
  color: #b8860b !important;
  cursor: default;
}

.apply-modal__input--error {
  border-color: #ef4444 !important;
}

/* Phone input overrides for light modal */
.apply-modal__phone-wrap {
  width: 100%;
  position: relative;
}

.apply-modal__phone-wrap .react-tel-input {
  width: 100%;
}

.apply-modal__phone-wrap .react-tel-input .form-control {
  background: #ffffff !important;
  border: 1.5px solid rgba(0,0,0,0.12) !important;
  border-radius: 10px !important;
  padding: 12px 16px 12px 52px !important;
  font-size: 0.95rem !important;
  color: #111 !important;
  width: 100% !important;
  height: 48px !important;
  line-height: 1.5 !important;
  outline: none !important;
  transition: border-color 0.2s !important;
  box-shadow: none !important;
}

.apply-modal__phone-wrap .react-tel-input .form-control::placeholder {
  color: rgba(0,0,0,0.3) !important;
}

.apply-modal__phone-wrap .react-tel-input .form-control:focus {
  border-color: #F6BC0E !important;
  box-shadow: none !important;
}

.apply-modal__phone-wrap .react-tel-input .flag-dropdown {
  background: #ffffff !important;
  border: 1.5px solid rgba(0,0,0,0.12) !important;
  border-right: none !important;
  border-radius: 10px 0 0 10px !important;
}

.apply-modal__phone-wrap .react-tel-input .flag-dropdown:hover,
.apply-modal__phone-wrap .react-tel-input .flag-dropdown.open {
  background: #f5f5f5 !important;
}

.apply-modal__phone-wrap .react-tel-input .selected-flag {
  background: transparent !important;
}

.apply-modal__phone-wrap .react-tel-input .selected-flag:hover,
.apply-modal__phone-wrap .react-tel-input .selected-flag:focus {
  background: transparent !important;
}

.apply-modal__phone-wrap .react-tel-input .selected-flag .arrow {
  border-top-color: rgba(0,0,0,0.4) !important;
}

.apply-modal__phone-wrap .react-tel-input .country-list {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.1) !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important;
  color: #111 !important;
  z-index: 99999 !important;
  position: absolute !important;
  max-height: 160px !important;
  overflow-y: auto !important;
  width: 300px !important;
  margin: 4px 0 0 0 !important;
  padding-top: 42px !important;
  padding-bottom: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.apply-modal__phone-wrap .react-tel-input .country-list .search,
.apply-modal__phone-wrap .react-tel-input .country-list li.search input,
.apply-modal__phone-wrap .react-tel-input .search-box {
  position: absolute !important;
  top: 0 !important; left: 0 !important; right: 0 !important;
  z-index: 10 !important;
  width: 100% !important;
  padding: 10px 14px !important;
  border: none !important;
  border-bottom: 1px solid rgba(0,0,0,0.08) !important;
  border-radius: 10px 10px 0 0 !important;
  background: #ffffff !important;
  color: #111 !important;
  font-size: 0.88rem !important;
  outline: none !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
  margin: 0 !important;
}

.apply-modal__phone-wrap .react-tel-input .country-list .country:hover,
.apply-modal__phone-wrap .react-tel-input .country-list .country.highlight {
  background: rgba(246,188,14,0.1) !important;
  color: #111 !important;
}

.apply-modal__phone-wrap .react-tel-input .country-list .country-name {
  color: #111 !important;
}

.apply-modal__phone-wrap .react-tel-input .country-list .dial-code {
  color: rgba(0,0,0,0.4) !important;
}

.apply-modal__phone-wrap.apply-modal__input--error .react-tel-input .form-control {
  border-color: #ef4444 !important;
}

/* Upload area */
.apply-modal__upload {
  background: #f5f5f5 !important;
  border: 1.5px dashed rgba(0,0,0,0.25) !important;
  border-radius: 10px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: #333 !important;
  font-size: 0.88rem;
  transition: border-color 0.2s, background 0.2s;
}

.apply-modal__upload svg {
  color: #555 !important;
  flex-shrink: 0;
}

.apply-modal__upload:hover {
  border-color: #F6BC0E !important;
  background: rgba(246, 188, 14, 0.05) !important;
  color: #b8860b !important;
}

.apply-modal__upload.apply-modal__input--error {
  border-color: #ef4444 !important;
}

.apply-modal__file-hidden {
  display: none;
}

.apply-modal__error {
  font-size: 0.78rem;
  color: #ef4444 !important;
  margin: 0;
}

.apply-modal__alert {
  background: rgba(239, 68, 68, 0.1) !important;
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.88rem;
  color: #ef4444 !important;
}

.apply-modal__submit-btn {
  background: #F6BC0E !important;
  color: #000 !important;
  border: none;
  border-radius: 10px;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
  margin-top: 4px;
  letter-spacing: 0.01em;
}

.apply-modal__submit-btn:hover:not(:disabled) {
  background: #e0aa00 !important;
  transform: translateY(-1px);
}

.apply-modal__submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.apply-modal__spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0,0,0,0.2);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Success state */
.apply-modal__success {
  padding: 40px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.apply-modal__success-icon {
  width: 64px;
  height: 64px;
  background: rgba(246, 188, 14, 0.15) !important;
  border: 2px solid #F6BC0E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #F6BC0E !important;
  font-weight: 800;
}

.apply-modal__success h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff !important;
  margin: 0;
}

.apply-modal__success p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.5) !important;
  margin: 0;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 480px) {
  .apply-modal__box {
    border-radius: 16px;
    max-height: 95vh;
  }
  .apply-modal__header,
  .apply-modal__form {
    padding-left: 20px;
    padding-right: 20px;
  }
  .apply-modal__title {
    font-size: 1.25rem;
  }
}
