/* ═══════════════════════════════════════════
   DIRECT EQUITY SOURCE — styles.css
   ═══════════════════════════════════════════ */

:root {
  --blue: #c29e77; /* was #27aae1 — new primary warm tan */
  --teal: #4e392e; /* was #65c9d0 — new secondary dark brown */
  --mid: #a8845a; /* was #439bba — mid tone between primary/secondary */
  --grey: #676767;
  --dark: #0d0d0d;
  --cream: #f5f1ec;
  --white: #ffffff;
  --font-display: "Aspekta", Arial, sans-serif;
  --font-body: "Aspekta", Arial, sans-serif;
}

/* ── SMOOTH SCROLL SETUP ── */
body {
  overflow-x: hidden;
  overflow-y: scroll; /* native scrollbar stays */
  height: auto;
}
#scroll-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  will-change: transform;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--dark);
}
::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 2px;
}

/* ═══════════════════════════════════════════
   MOBILE NAV OVERLAY
   ═══════════════════════════════════════════ */

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 40px 32px;
}
/* Show when JS adds .open class */
.nav-mobile.open {
  display: flex;
}
.nav-mobile-close {
  position: absolute;
  top: 28px;
  right: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s;
}
.nav-mobile-close:hover {
  background: rgba(255, 255, 255, 0.15);
}
.nav-mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.nav-mobile-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.02em;
  padding: 8px 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.2s;
}
.nav-mobile-links a:last-child {
  border-bottom: none;
}
.nav-mobile-links a:hover {
  color: var(--teal);
}
.nav-mobile-footer {
  margin-top: 32px;
  text-align: center;
}
.nav-mobile-footer p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99998;
  padding: 30px 40px;
  transition: all 0.4s ease;
}
#navbar.scrolled {
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(16px);
  padding: 14px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* max-width: 1400px; */
  margin: 0 auto;
}
.nav-logo img {
  height: 44px;
  filter: brightness(0) invert(1);
  display: block;
}
.nav-links-pill {
  background: #c29e77;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 6px 8px;
  display: flex;
  gap: 4px;
}
.nav-links-pill a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 18px;
  border-radius: 100px;
  transition: all 0.25s;
  letter-spacing: 0.02em;
}
.nav-links-pill a:hover,
.nav-links-pill a.active {
  background: white;
  color: black;
}
.btn-nav-cta {
  background: var(--white);
  color: var(--dark);
  border: none;
  border-radius: 100px;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
  font-family: var(--font-body);
}
.btn-nav-cta:hover {
  background: #e1dadaf5;
  color: black;
}

/* Hamburger — hidden on desktop, shown on mobile */
.nav-hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  padding: 4px;
}
.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  display: block;
  transition: 0.3s;
}

/* ═══════════════════════════════════════════
   HERO WRAPPER — creates padding/box effect
   ═══════════════════════════════════════════ */

.hero-wrapper {
  padding: 16px; /* gap from all 4 sides of the screen */
  padding-top: 16px;
  background: var(--white);
}

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */

#hero {
  position: relative;
  height: calc(100vh - 32px); /* full height minus wrapper padding top+bottom */
  min-height: 650px;
  border-radius: 24px; /* rounded box */
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 70px;
}

/* VIDEO BACKGROUND */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(13, 13, 13, 0.72) 0%,
    rgba(13, 13, 13, 0.3) 55%,
    rgba(13, 13, 13, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  /* max-width: 1400px; */
  margin: 0 auto;
  padding: 0 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.hero-eyebrow {
  color: white;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}
.hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--teal);
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--teal);
}
.hero-h1 .line1 {
  opacity: 0;
  animation: fadeUp 0.9s 0.8s forwards;
  display: block;
}
.hero-h1 .line2 {
  opacity: 0;
  animation: fadeUp 0.9s 1s forwards;
  display: block;
}
.hero-h1 .line3 {
  opacity: 0;
  animation: fadeUp 0.9s 1.2s forwards;
  display: block;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.06rem;
  line-height: 1.7;
  max-width: 660px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.9s 1.4s forwards;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 1.6s forwards;
}

.hero-stat-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 28px 32px;
  color: var(--white);
  min-width: 220px;
  opacity: 0;
  animation: fadeUp 0.9s 1.8s forwards;
  flex-shrink: 0;
}
.hero-stat-card .stat-val {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-card .stat-val span {
  color: white;
}
.hero-stat-card .stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 56px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  letter-spacing: 0.14em;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.9s 2s forwards;
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--teal);
  animation: scrollAnim 2s 2.2s infinite;
}
@keyframes scrollAnim {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */

.btn-primary-des {
  background: #ffffff;
  color: black;
  border: none;
  border-radius: 100px;
  padding: 14px 30px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  letter-spacing: 0.02em;
  font-family: var(--font-body);
}
.btn-primary-des:hover {
  background: #e1dadaf5;
  color: black;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(39, 170, 225, 0.35);
}

.btn-ghost-des {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  padding: 14px 30px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
  font-family: var(--font-body);
}
.btn-ghost-des:hover {
  background: #c29e77;
  color: var(--white);
}

.btn-discover {
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 13px 28px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  font-family: var(--font-body);
}
.btn-discover:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.text-link {
  color: var(--dark);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--dark);
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
}
.text-link:hover {
  color: var(--blue);
  border-color: var(--blue);
  gap: 14px;
}

/* ═══════════════════════════════════════════
   SECTION SHARED
   ═══════════════════════════════════════════ */

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--blue);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 24px;
}
.section-title em {
  font-style: italic;
  color: var(--blue);
}

.section-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: 32px;
}

/* ═══════════════════════════════════════════
   ABOUT + STATS
   ═══════════════════════════════════════════ */

.about-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

/* Glassmorphism stat card overlaid on image */
.about-stat-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(13, 13, 13, 0.68);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px 28px;
  color: var(--white);
}
.about-stat-card .card-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 18px;
  font-weight: 500;
}
.about-stat-card .mini-stats {
  display: flex;
  gap: 40px;
}
.mini-stat .val {
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 4px;
}
.mini-stat .lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
}

/* Right content */
.about-right {
  padding-left: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Section title — clean, no em color */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.2vw, 36px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

/* Body text — ref uses ~1.06rem */
.section-body {
  font-size: 1.06rem;
  line-height: 1.75;
  color: #555;
  margin-bottom: 28px;
  font-weight: 300;
}

/* Underlined link — ref style */
.text-link {
  color: var(--dark);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1.5px solid var(--dark);
  padding-bottom: 3px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s;
  letter-spacing: 0.01em;
}
.text-link:hover {
  color: var(--blue);
  border-color: var(--blue);
  gap: 12px;
}

/* Big stats — ALL dark, no blue accent */
.big-stats {
  display: flex;
  gap: 52px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.big-stat .num {
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 300;
  line-height: 1;
  color: var(--dark); /* ALL dark — no blue span */
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
/* Remove blue from counter span */
.big-stat .num span {
  color: var(--dark);
}
.big-stat .lbl {
  font-size: 13px;
  color: var(--grey);
  font-weight: 400;
  letter-spacing: 0.01em;
}

@media (max-width: 991px) {
  .about-right {
    padding-left: 0;
    padding-top: 40px;
  }
  .big-stats {
    gap: 32px;
  }
}
@media (max-width: 767px) {
  .about-img-wrap img {
    height: 380px;
  }
  .big-stats {
    gap: 20px;
    flex-wrap: wrap;
  }
  .big-stat {
    min-width: 80px;
  }
}

/* ═══════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════ */

#marquee {
  padding: 48px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  overflow: hidden;
  background: var(--white);
}
.marquee-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 32px;
  font-weight: 500;
}
.marquee-inner {
  display: flex;
  gap: 60px;
  align-items: center;
  animation: marqueeScroll 22s linear infinite;
  flex-shrink: 0;
  white-space: nowrap;
}
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.marquee-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.2);
  letter-spacing: 0.04em;
  padding: 0 20px;
  transition: color 0.3s;
  cursor: default;
}
.marquee-logo:hover {
  color: var(--blue);
}
.marquee-sep {
  color: rgba(0, 0, 0, 0.1);
  font-size: 20px;
}

/* ═══════════════════════════════════════════
   WHY US / TABS
   ═══════════════════════════════════════════ */

#why-us {
  padding: 110px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Decorative circle top-right background */
#why-us::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(39, 170, 225, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}
#why-us::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: 80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(101, 201, 208, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Top row: title left, desc+btn right */
.why-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.why-top-left {
  max-width: 520px;
}
.why-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 0;
}
.why-title em {
  color: var(--blue);
  font-style: italic;
}
.why-title .accent {
  color: var(--blue);
}

.why-top-right {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-top: 8px;
}
.why-top-right p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.75;
  margin: 0;
}

/* Tab rows — full width */
.why-tabs {
  width: 100%;
}

.why-tab {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

/* Animated bg fill — slides up from bottom on hover */
.why-tab::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: #c29e77;
  border-radius: 12px;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.why-tab:hover::before,
.why-tab.active::before {
  height: 100%;
}

.why-tab-num {
  font-size: 35px;
  font-weight: 500;
  color: #c29e77;
  min-width: 32px;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}
.why-tab-text {
  font-size: 35px;
  font-weight: 400;
  color: var(--dark);
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}

/* On hover/active — text turns white */
.why-tab:hover .why-tab-num,
.why-tab.active .why-tab-num {
  color: rgba(255, 255, 255, 0.7);
}
.why-tab:hover .why-tab-text,
.why-tab.active .why-tab-text {
  color: var(--white);
}
/* First tab active by default */
.why-tab:first-child {
  border-bottom: none;
}

/* ═══════════════════════════════════════════
   PORTFOLIO SLIDER
   ═══════════════════════════════════════════ */

#portfolio {
  padding: 110px 0;
  background: var(--white);
  overflow: hidden;
}
.portfolio-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}
.portfolio-head-right {
  text-align: right;
}
.portfolio-head-right p {
  font-size: 14px;
  color: var(--grey);
  max-width: 280px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.swiper-portfolio {
  overflow: visible !important;
  padding-bottom: 12px !important;
}

/* BASE CARD */
.portfolio-card {
  border-radius: 20px;
  overflow: hidden;
  height: 480px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
}

/* TEXT CARD — dark bg, no image */
.portfolio-card.card-text {
  background: #2a2a2a;
  justify-content: space-between;
  padding: 32px;
}
.portfolio-card.card-text::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 0 0 40px rgba(255, 255, 255, 0.03),
    0 0 0 80px rgba(255, 255, 255, 0.02);
  pointer-events: none;
}
.card-text-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.card-text-logo {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: white;
  text-transform: uppercase;
}
.portfolio-card-badge {
  background: var(--blue);
  color: white;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  display: inline-block;
}
.card-text-bottom {
  margin-top: auto;
}
.portfolio-card.card-text h5 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}
.portfolio-card.card-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}
.portfolio-card-link {
  color: var(--teal);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition:
    gap 0.25s,
    color 0.25s;
}
.portfolio-card-link:hover {
  gap: 12px;
  color: var(--white);
}

/* IMAGE CARD — full photo only */
.portfolio-card.card-image {
  background: #111;
}
.portfolio-card.card-image .portfolio-card-img {
  position: absolute;
  inset: 0;
  height: 100%;
}
.portfolio-card.card-image .portfolio-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.portfolio-card.card-image:hover .portfolio-card-img img {
  transform: scale(1.05);
}
.portfolio-card.card-image .portfolio-card-body {
  display: none;
}

/* Nav buttons — dark circles */
.swiper-nav-btns {
  display: flex;
  gap: 12px;
}
.swiper-btn-custom {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
}
.swiper-btn-custom:hover {
  background: var(--blue);
}
.swiper-btn-custom svg {
  width: 16px;
}
.swiper-btn-custom svg path {
  stroke: white;
  stroke-width: 1.5;
  fill: none;
}

.swiper-progress-bar {
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 1px;
  position: relative;
}
.swiper-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--dark);
  border-radius: 1px;
  transition: width 0.4s ease;
}

/* ═══════════════════════════════════════════
   KEY STRENGTHS
   ═══════════════════════════════════════════ */

/* Outer wrapper adds the padding/box effect like hero */
.strengths-wrapper {
  padding: 0 16px 80px;
  background: var(--white);
}

#strengths {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 100px 0 110px;
}

/* BG image lives on a pseudo-element so we can scale it independently */
#strengths::after {
  content: "";
  position: absolute;
  inset: -5%; /* slightly oversized so scale doesn't show edges */
  background: url("bg-image.avif") center/cover no-repeat;
  z-index: 0;
  transform: scale(1.15);
  opacity: 0;
  transition:
    transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 1s ease;
}

/* Blue overlay on top of bg */
#strengths::before {
  background: linear-gradient(
    160deg,
    rgba(30, 18, 8, 0.88) 0%,
    rgba(194, 158, 119, 0.75) 40%,
    rgba(120, 85, 50, 0.65) 72%,
    rgba(20, 12, 6, 0.9) 100%
  );
}
/* When in-view: bg zooms to natural size and fades in */
#strengths.in-view::after {
  transform: scale(1);
  opacity: 1;
}

.strengths-wave {
  display: none;
}

.strengths-inner {
  position: relative;
  z-index: 2;
}

.strengths-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}
.strengths-tag::before {
  content: "•";
}

.strengths-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 300;
  color: var(--white);
  text-align: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s ease 0.5s,
    transform 0.9s ease 0.5s;
}
#strengths.in-view .strengths-title {
  opacity: 1;
  transform: translateY(0);
}

.strength-cards-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}

.strength-card {
  border-radius: 18px;
  padding: 32px 36px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    background 0.35s,
    box-shadow 0.35s;
}

/* Card 1 — appears first, delay on entry only */
.strength-card:nth-child(1) {
  align-self: flex-start;
  width: 52%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}
/* Card 2 — appears second */
.strength-card:nth-child(2) {
  align-self: center;
  width: 58%;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
}
/* Card 3 — appears last */
.strength-card:nth-child(3) {
  align-self: flex-end;
  width: 52%;
  background: rgba(20, 40, 60, 0.55);
  backdrop-filter: blur(18px);
}

/* Card animates in when JS adds .card-visible */
.strength-card.card-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

/* Hover — always fast, no delay */
.strength-card:hover {
  background: rgba(255, 255, 255, 0.16) !important;
  transform: translateY(-5px) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease !important;
}

.strength-card p {
  font-size: 17px;
  line-height: 1.65;
  font-weight: 300;
  margin: 0;
}
.strength-card .s-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .strengths-wrapper {
    padding: 0 10px 60px;
  }
  #strengths {
    border-radius: 16px;
    padding: 70px 0 80px;
  }
  .strength-card:nth-child(1),
  .strength-card:nth-child(2),
  .strength-card:nth-child(3) {
    width: 100%;
    align-self: stretch;
  }
}

/* ═══════════════════════════════════════════
   LEADERSHIP
   ═══════════════════════════════════════════ */

#leadership {
  padding: 110px 0;
  background: var(--white);
}

.leadership-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 400;
  text-align: center;
  margin-bottom: 72px;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.leader-card {
  background: #f0ebe3; /* cream/beige like reference */
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

/* Top section — photo left, info right */
.leader-top {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 32px;
}

/* Photo — tall rectangular like reference */
.leader-photo {
  width: 160px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #c9b99a, #a89070);
  display: flex;
  align-items: center;
  justify-content: center;
}
.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.leader-photo .initials {
  font-size: 36px;
  color: white;
  font-weight: 300;
  letter-spacing: -0.02em;
}

/* Right info column */
.leader-info {
  display: flex;
  flex-direction: column;
  padding-top: 4px;
}
.leader-info h4 {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.leader-info .role {
  font-size: 14px;
  color: var(--grey);
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

/* Quote with left border accent — matches reference */
.leader-quote {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.55;
  margin-bottom: 20px;
  padding-left: 14px;
  border-left: 3px solid #b8a882;
}

/* LinkedIn button — tan/warm color like reference */
.btn-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #b8a882;
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s;
  width: fit-content;
  letter-spacing: 0.02em;
}
.btn-linkedin:hover {
  background: #9e8f6e;
  color: white;
  transform: translateY(-1px);
}

/* Divider */
.leader-divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin: 24px 0;
}

/* Bullet points — proper dots like reference */
.leader-points {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}
.leader-points li {
  font-size: 13.5px;
  color: #555;
  line-height: 1.65;
  margin-bottom: 10px;
  padding-left: 4px;
}
.leader-points li::marker {
  color: var(--dark);
  font-size: 14px;
}

@media (max-width: 767px) {
  .leader-photo {
    width: 120px;
    height: 150px;
  }
  .leader-info h4 {
    font-size: 20px;
  }
  .leader-card {
    padding: 28px;
  }
}

/* ═══════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════ */

#cta-connect {
  padding: 80px 20px;
}
.cta-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1560179707-f14e90ef3623?w=1400&q=80")
    center/cover no-repeat;
  filter: brightness(0.5);
  transition: transform 8s ease;
}
.cta-card:hover .cta-bg {
  transform: scale(1.04);
}
.cta-content {
  position: relative;
  z-index: 2;
  padding: 60px 40px;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 28px;
}
.cta-content h2 em {
  font-style: italic;
  color: var(--teal);
}
.btn-cta-pill {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  border-radius: 100px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  font-family: var(--font-body);
}
.btn-cta-pill:hover {
  background: var(--white);
  color: var(--dark);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

#footer {
  background: var(--dark);
  border-radius: 28px 28px 0 0;
  margin: 0 16px;
  padding: 72px 72px 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

/* Top row — 4 columns */
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* Col 1 — tagline + CTA */
.footer-brand p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 28px;
  font-weight: 300;
  max-width: 280px;
}
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s;
  font-family: var(--font-body);
}
.footer-cta-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

/* Nav columns */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-links ul li a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  transition: color 0.25s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links ul li a.active {
  color: var(--white);
}
/* Active dot like reference */
.footer-links ul li a.active::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}
.footer-links ul li a:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* Contact column */
.footer-contact p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.9;
  font-weight: 300;
}
.footer-contact a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-contact a:hover {
  color: var(--white);
}

/* Bottom bar — logo left, copyright center, back to top right */
.footer-bottom {
  padding: 36px 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}
.footer-logo img {
  height: 34px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer-copyright {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.28);
}
.back-to-top {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.25s;
  letter-spacing: 0.04em;
  justify-content: flex-end;
}
.back-to-top:hover {
  color: rgba(255, 255, 255, 0.8);
}
.back-to-top svg {
  width: 14px;
}

/* Responsive */
@media (max-width: 991px) {
  #footer {
    padding: 56px 40px 0;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  #footer {
    margin: 0 4px;
    padding: 48px 24px 0;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }
  .footer-copyright {
    text-align: center;
  }
  .back-to-top {
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════
   MODAL
   ═══════════════════════════════════════════ */

/* Force above scroll container */
.modal {
  z-index: 999999 !important;
}
.modal-backdrop {
  z-index: 999998 !important;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.6) !important;
}

.modal-des .modal-content {
  border-radius: 20px;
  border: none;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
  font-family: var(--font-body);
}

/* Header — cream bg */
.modal-des .modal-header {
  background: #f0ebe3;
  border: none;
  padding: 40px 44px 36px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.modal-header-inner {
  flex: 1;
}
.modal-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}
.modal-des .modal-title {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--dark);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.modal-des .modal-title em {
  font-style: italic;
  color: var(--blue);
}
.modal-subtitle {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.6;
  margin: 0;
  font-weight: 300;
}
.modal-close-btn {
  background: #aaaaa9;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--dark);
  flex-shrink: 0;
  margin-left: 20px;
  transition: background 0.2s;
}
.modal-close-btn:hover {
  background: #d9d3d3;
}

/* Body */
.modal-des .modal-body {
  background: var(--white);
  padding: 36px 44px 44px;
}

/* Form labels */
.form-des .form-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  display: block;
}

/* Inputs */
.form-des .form-control,
.form-des select.form-control {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 13px 16px;
  background: #fafafa;
  width: 100%;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    background 0.25s;
  appearance: none;
  outline: none;
}
.form-des .form-control::placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.form-des .form-control:focus,
.form-des select.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(194, 158, 119, 0.15);
  background: var(--white);
}
.form-des textarea.form-control {
  min-height: 100px;
  resize: none;
  line-height: 1.65;
}

/* Custom checkbox */
.form-check-label-custom {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 13px;
  color: var(--grey);
  user-select: none;
}
.form-check-label-custom strong {
  color: var(--dark);
}
.form-check-input-custom {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1.5px solid rgba(0, 0, 0, 0.18);
  cursor: pointer;
  accent-color: var(--blue);
  flex-shrink: 0;
}

/* Submit button */
.btn-submit-des {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  background: var(--dark);
  color: white;
  border: none;
  border-radius: 100px;
  padding: 15px 32px;
  width: 100%;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.02em;
}
.btn-submit-des:hover {
  background: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(194, 158, 119, 0.3);
}

/* Disclaimer */
.form-disclaimer {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.28);
  line-height: 1.65;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Success state */
.form-success {
  text-align: center;
  padding: 40px 20px;
  display: none;
}
.form-success h4 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--dark);
}
.form-success p {
  font-size: 14px;
  color: var(--grey);
}

/* ═══════════════════════════════════════════
   POPUP / MODAL FONT STYLES
   ═══════════════════════════════════════════ */

/* Override Bootstrap modal backdrop */
.modal-backdrop {
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.65) !important;
}

.modal-des .modal-content {
  font-family: var(--font-body);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
}

/* Modal header — dark with display font */
.modal-des .modal-header {
  background: var(--dark);
  border: none;
  padding: 36px 40px 24px;
}
.modal-des .modal-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: 0.01em;
}
.modal-des .modal-title em {
  font-style: italic;
  color: var(--teal);
}
.modal-des .btn-close {
  filter: invert(1);
  opacity: 0.45;
  transition: opacity 0.2s;
}
.modal-des .btn-close:hover {
  opacity: 1;
}

/* Modal body */
.modal-des .modal-body {
  padding: 36px 40px 40px;
  background: var(--white);
}
.modal-des .modal-body > p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 28px;
  font-family: var(--font-body);
}

/* Form labels */
.form-des .form-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

/* Inputs */
.form-des .form-control,
.form-des select.form-control {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 13px 18px;
  background: #fafafa;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    background 0.25s;
  appearance: none;
}
.form-des .form-control::placeholder {
  color: rgba(0, 0, 0, 0.28);
}
.form-des .form-control:focus,
.form-des select.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(39, 170, 225, 0.12);
  background: var(--white);
  outline: none;
}
.form-des textarea.form-control {
  min-height: 110px;
  resize: none;
  line-height: 1.65;
}

/* Checkbox */
.form-des .form-check {
  padding-left: 28px;
}
.form-des .form-check-input {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1.5px solid rgba(0, 0, 0, 0.18);
  cursor: pointer;
  margin-top: 2px;
  margin-left: -28px;
}
.form-des .form-check-input:checked {
  background-color: var(--blue);
  border-color: var(--blue);
}
.form-des .form-check-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--grey);
  line-height: 1.5;
  cursor: pointer;
}
.form-des .form-check-label strong {
  color: var(--dark);
}

/* Submit button */
.btn-submit-des {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  width: 100%;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 4px;
}
.btn-submit-des:hover {
  background: var(--mid);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(39, 170, 225, 0.3);
}

/* Disclaimer text */
.form-disclaimer {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(0, 0, 0, 0.3);
  line-height: 1.65;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 1199px) {
  .hero-content {
    padding: 0 40px;
  }
  .hero-scroll {
    right: 40px;
  }
}

@media (max-width: 991px) {
  .about-right {
    padding-left: 0;
    padding-top: 48px;
  }
  .why-left {
    padding-right: 0;
    padding-bottom: 48px;
  }
  .hero-stat-card {
    display: none;
  }
  .big-stats {
    gap: 28px;
  }
  .footer-top {
    gap: 48px;
  }
  #footer {
    padding: 48px 32px 0;
    margin: 0 8px;
  }
  .strength-card:nth-child(1),
  .strength-card:nth-child(2),
  .strength-card:nth-child(3) {
    width: 100%;
    align-self: stretch;
  }
}

@media (max-width: 767px) {
  /* Navbar */
  #navbar {
    padding: 14px 20px;
  }
  #navbar.scrolled {
    padding: 12px 20px;
  }
  .nav-links-pill {
    display: none;
  }
  .btn-nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .nav-logo img {
    height: 36px;
  }

  /* Hero */
  .hero-wrapper {
    padding: 10px;
  }
  #hero {
    height: calc(100vh - 20px);
    min-height: 580px;
    border-radius: 16px;
    padding-bottom: 48px;
  }
  .hero-content {
    padding: 0 24px;
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-h1 {
    font-size: clamp(40px, 10vw, 64px);
  }
  .hero-scroll {
    right: 24px;
    bottom: 20px;
  }

  /* Portfolio — fix horizontal overflow */
  #portfolio {
    padding: 70px 0;
  }
  #portfolio .container {
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
  }
  .portfolio-head {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
  }
  .portfolio-head-right {
    text-align: left;
  }
  .portfolio-head-right p {
    max-width: 100%;
  }
  .swiper-portfolio {
    overflow: hidden !important;
  }
  .portfolio-card {
    height: 360px;
  }
  .portfolio-card.card-text {
    padding: 24px;
  }
  .portfolio-card.card-text h5 {
    font-size: 20px;
  }
  .portfolio-card.card-text p {
    font-size: 12px;
  }

  /* Sections */
  #cta-connect {
    padding: 40px 10px;
  }
  .footer-top {
    flex-direction: column;
    gap: 36px;
  }
  #footer {
    margin: 0 4px;
    padding: 40px 24px 0;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .big-stats {
    gap: 20px;
    flex-wrap: wrap;
  }
  .big-stat {
    min-width: 80px;
  }

  .cta-card {
    padding: 20px 0;
  }
}

@media (max-width: 480px) {
  .hero-wrapper {
    padding: 8px;
  }
  #hero {
    border-radius: 12px;
  }
  .hero-content {
    padding: 0 20px;
  }
  .hero-btns {
    flex-direction: column;
    gap: 10px;
  }
  .btn-primary-des,
  .btn-ghost-des {
    justify-content: center;
  }

  .cta-card {
    padding: 20px 0;
  }
}
