/* ════════════════════════════════════════════════════════════
   FALCON VERACITY GROUP LTD — Premium Website Stylesheet
   ════════════════════════════════════════════════════════════ */

/* ── RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #081B33;
  --navy-mid:   #0d2545;
  --navy-light: #122d50;
  --gold:       #D4AF37;
  --gold-light: #e8c84a;
  --gold-dim:   rgba(212,175,55,0.15);
  --green:      #2E8B57;
  --green-light:#3aac6c;
  --green-dim:  rgba(46,139,87,0.12);
  --white:      #FFFFFF;
  --off-white:  #F8F7F4;
  --gray-100:   #F5F5F5;
  --gray-200:   #E8E8E8;
  --gray-500:   #8a8a8a;
  --gray-700:   #444;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-head:    'Playfair Display', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;

  --section-pad: 110px;
  --container:   1280px;
  --radius:      12px;
  --radius-lg:   20px;

  --shadow-sm:  0 2px 12px rgba(8,27,51,0.08);
  --shadow-md:  0 8px 40px rgba(8,27,51,0.14);
  --shadow-lg:  0 20px 80px rgba(8,27,51,0.22);
  --shadow-gold:0 4px 30px rgba(212,175,55,0.25);

  --ease-expo: cubic-bezier(0.16,1,0.3,1);
  --ease-back: cubic-bezier(0.34,1.56,0.64,1);
  --transition: 0.4s var(--ease-expo);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }

/* ── SELECTION ───────────────────────────────────────────── */
::selection { background: var(--gold); color: var(--navy); }

/* ── PRELOADER ───────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-inner { text-align: center; }

.preloader-logo {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.preloader-logo .logo-f,
.preloader-logo .logo-g { color: var(--white); }
.preloader-logo .logo-v { color: var(--gold); }

.preloader-bar {
  width: 200px; height: 2px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px; overflow: hidden;
  margin: 0 auto 1.5rem;
}
.preloader-fill {
  height: 100%; width: 0; background: var(--gold);
  border-radius: 10px;
  animation: fillBar 2s var(--ease-expo) forwards;
}
@keyframes fillBar { to { width: 100%; } }

.preloader-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ── CONTAINER ───────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}
.section-pad { padding: var(--section-pad) 0; }

/* ── TYPOGRAPHY HELPERS ──────────────────────────────────── */
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-label::before {
  content: '';
  display: block; width: 30px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-label.light { color: var(--gold); }
.section-label.green-label { color: var(--green); }
.section-label.green-label::before { background: var(--green); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.section-title.light { color: var(--white); }

.section-sub {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 560px;
  margin-bottom: 3rem;
}
.section-sub.light { color: rgba(255,255,255,0.55); }

.section-header.centered {
  text-align: center;
}
.section-header.centered .section-label {
  justify-content: center;
}
.section-header.centered .section-label::before { display: none; }
.section-header.centered .section-sub { margin: 0 auto 3rem; }
.section-header.centered .section-title { color: var(--white); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 2.2rem;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--navy);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease-expo);
}
.btn-primary:hover::before { transform: scaleX(1); transform-origin: left; }
.btn-primary:hover { color: var(--gold); }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-primary.full-width { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 2.2rem;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 2.2rem;
  border: 1px solid var(--gold);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
}
.btn-outline-dark:hover { background: var(--gold); color: var(--navy); }

/* ── REVEAL ANIMATIONS ───────────────────────────────────── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
}
.reveal-up    { transform: translateY(50px); }
.reveal-left  { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }

.revealed {
  opacity: 1 !important;
  transform: none !important;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.35s; }
.delay-4 { transition-delay: 0.5s; }

/* ── NAVBAR ──────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.5rem 0;
  transition: padding 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}
#navbar.scrolled {
  background: rgba(8,27,51,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
}
.logo-mark {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
}
.logo-mark .gold { color: var(--gold); }
.logo-text { display: flex; flex-direction: column; gap: 0; }
.logo-name {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
}
.logo-tag {
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links {
  display: flex; align-items: center; gap: 2.5rem;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  position: relative;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-expo);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  padding: 0.55rem 1.5rem !important;
  background: var(--gold);
  color: var(--navy) !important;
  border-radius: 2px;
  font-weight: 600 !important;
  transition: background 0.3s ease, transform 0.3s ease !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white);
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  background: rgba(8,27,51,0.98);
  backdrop-filter: blur(20px);
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease-expo);
}
.mobile-menu.open { max-height: 400px; }
.mobile-menu ul { padding: 1rem 0 2rem; }
.mobile-menu li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-menu a {
  display: block;
  padding: 1rem clamp(1.25rem,5vw,3rem);
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s ease, padding-left 0.3s ease;
}
.mobile-menu a:hover { color: var(--gold); padding-left: calc(clamp(1.25rem,5vw,3rem) + 12px); }

/* ── DARK SECTION ────────────────────────────────────────── */
.dark-section {
  background: var(--navy);
  color: var(--white);
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}

.hero-bg{
  position:absolute;
  inset:0;
  z-index:0;

  background:
  linear-gradient(
    rgba(2,10,18,0.72),
    rgba(2,10,18,0.82)
  ),
  url('images/greencity.jpeg');

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;

  transform:scale(1.05);

  filter:
    brightness(0.9)
    contrast(1.08)
    saturate(1.1);

  animation:heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom{
  from{
    transform:scale(1.03);
  }

  to{
    transform:scale(1.10);
  }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(212,175,55,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 80%, rgba(46,139,87,0.06) 0%, transparent 50%);
}

.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, transparent, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.5) 70%, transparent);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 8rem clamp(1.25rem,5vw,3rem) 4rem;
  width: 100%;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.eyebrow-line {
  flex: none; width: 40px; height: 1px; background: var(--gold); opacity: 0.6;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 2rem;
  max-width: 900px;
  letter-spacing: -0.01em;
}
.gold-italic {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 3rem;
  font-weight: 300;
}

.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 5rem;
}

.hero-stats {
  display: flex; align-items: center; gap: 0; flex-wrap: wrap;
}
.stat {
  padding: 0 2.5rem 0 0;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-plus {
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 300;
}
.stat-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 0.3rem;
}
.stat-divider {
  width: 1px; height: 50px;
  background: rgba(255,255,255,0.15);
  margin-right: 2.5rem;
  flex-shrink: 0;
}

.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4), var(--gold));
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}
.hero-scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════ */
.about { background: var(--off-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-frame {
  position: relative;
  height: 550px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-frame img { border-radius: var(--radius-lg); }
.about-img-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(8,27,51,0.3));
  border-radius: var(--radius-lg);
}

.about-badge {
  position: absolute; bottom: 2rem; left: -2rem; z-index: 2;
  background: var(--gold);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
  text-align: center;
}
.badge-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.badge-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.3;
}

.about-img-secondary {
  position: absolute; bottom: -2rem; right: -2rem;
  width: 200px; height: 160px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}

.about-content { padding-left: 1rem; }

.about-lead {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.about-body {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.about-pillars { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.pillar {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pillar:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); }
.pillar-icon {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.pillar strong { display: block; font-size: 0.9rem; margin-bottom: 0.2rem; color: var(--navy); }
.pillar p { font-size: 0.83rem; color: var(--gray-500); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════════ */
.services { background: var(--navy); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 1rem;
}

.service-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: var(--navy-mid);
  transition: background 0.4s ease;
  cursor: default;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-expo);
}
.service-card:hover { background: var(--navy-light); }
.service-card:hover::before { transform: scaleX(1); }

.service-card.featured-service {
  background: linear-gradient(135deg, var(--navy-light), rgba(46,139,87,0.1));
  border: 1px solid rgba(46,139,87,0.2);
}
.featured-label {
  position: absolute; top: 1rem; right: 1rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
  padding: 0.2rem 0.6rem;
  border: 1px solid var(--green);
  border-radius: 20px;
}

.service-icon {
  width: 44px; height: 44px;
  color: var(--gold);
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease;
}
.service-card:hover .service-icon { transform: scale(1.1); }

.service-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.service-arrow {
  font-size: 1rem;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* ═══════════════════════════════════════════════════════════
   PROJECTS GALLERY
═══════════════════════════════════════════════════════════ */
.projects { background: var(--white); }

.gallery-filter {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--gray-200);
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--gray-500);
  transition: all 0.3s ease;
  cursor: pointer;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--gray-100);
  aspect-ratio: 1;
}
.gallery-item.large { grid-column: span 2; aspect-ratio: unset; min-height: 340px; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: unset; }

.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease-expo);
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,27,51,0.9) 0%, rgba(8,27,51,0.3) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-cat {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.gallery-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.gallery-overlay p { font-size: 0.78rem; color: rgba(255,255,255,0.6); }

.gallery-item.hidden { display: none; }

.gallery-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ═══════════════════════════════════════════════════════════
   GREEN BUILDING
═══════════════════════════════════════════════════════════ */
.green-section {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.green-bg-pattern {
  position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(46,139,87,0.06) 0%, transparent 60%),
    repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(46,139,87,0.015) 30px, rgba(46,139,87,0.015) 31px);
  pointer-events: none;
}

.green-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.green-lead {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.green-features { display: flex; flex-direction: column; gap: 1.5rem; }
.green-feat {
  display: flex; align-items: flex-start; gap: 1rem;
}
.gf-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.green-feat strong { display: block; font-size: 0.95rem; color: var(--navy); margin-bottom: 0.2rem; }
.green-feat p { font-size: 0.83rem; color: var(--gray-500); line-height: 1.6; }

.green-visual { position: relative; }
.green-circle-bg {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,139,87,0.08) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}

.green-metrics {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
}
.metric-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.metric-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.metric-ring {
  position: relative;
  width: 90px; height: 90px;
  margin: 0 auto 1rem;
}
.metric-ring svg { width: 100%; height: 100%; transform: none; }
.metric-ring span {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
}
.metric-card p {
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.5;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════════════════════════ */
.why-section { background: var(--navy); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.why-card {
  padding: 3rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s ease;
  position: relative; overflow: hidden;
}
.why-card:nth-child(3n) { border-right: none; }
.why-card:nth-child(4),
.why-card:nth-child(5),
.why-card:nth-child(6) { border-bottom: none; }
.why-card:hover { background: rgba(255,255,255,0.03); }
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease-expo);
}
.why-card:hover::before { transform: scaleX(1); }

.why-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(212,175,55,0.12);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}
.why-card:hover .why-number { color: rgba(212,175,55,0.25); }
.why-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.why-card p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   CAREERBRIDGE
═══════════════════════════════════════════════════════════ */
.careerbridge { background: var(--white); }

.cb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.gold-em { color: var(--gold); }

.cb-lead {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.cb-offers { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.cb-item {
  display: flex; align-items: flex-start; gap: 1rem;
}
.cb-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.cb-item strong { display: block; font-size: 0.95rem; color: var(--navy); margin-bottom: 0.2rem; }
.cb-item p { font-size: 0.83rem; color: var(--gray-500); line-height: 1.6; }

.cb-visual { position: relative; }
.cb-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 540px;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.cb-img-wrap img { border-radius: var(--radius-lg); }
.cb-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(8,27,51,0.8));
}

.cb-quote {
  position: absolute; bottom: 2rem; left: 1.5rem; right: 1.5rem;
  z-index: 2;
}
.cb-quote p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.cb-quote span {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════ */
.testimonials { background: var(--navy-mid); }

.testimonial-track {
  position: relative;
  min-height: 260px;
  margin-bottom: 2rem;
}
.testimonial-slide {
  position: absolute; inset: 0;
  opacity: 0; pointer-events: none;
  transition: opacity 0.6s ease;
  display: flex; justify-content: center;
}
.testimonial-slide.active { opacity: 1; pointer-events: auto; position: relative; }

.t-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 800px;
  width: 100%;
  backdrop-filter: blur(10px);
  position: relative;
}
.t-card::before {
  content: '"';
  position: absolute; top: 1.5rem; left: 2rem;
  font-family: var(--font-display);
  font-size: 6rem;
  color: rgba(212,175,55,0.12);
  line-height: 1;
  pointer-events: none;
}

.t-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1.5rem; letter-spacing: 0.2em; }
.t-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.t-author {
  display: flex; align-items: center; gap: 1rem;
}
.t-avatar {
  width: 46px; height: 46px;
  background: var(--gold-dim);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.t-author strong { display: block; color: var(--white); font-size: 0.9rem; }
.t-author span { font-size: 0.78rem; color: rgba(255,255,255,0.45); }

.testimonial-dots {
  display: flex; justify-content: center; gap: 0.6rem;
}
.t-dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.t-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════ */
.contact { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
  margin-bottom: 4rem;
}

.contact-lead {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.contact-details { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.c-detail {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: inherit;
}
.c-detail:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.c-detail.whatsapp:hover { background: rgba(37,211,102,0.06); }
.c-icon { font-size: 1.2rem; flex-shrink: 0; }
.c-detail strong { display: block; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-500); }
.c-detail span { font-size: 0.9rem; color: var(--navy); }

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1rem;           /* controls icon size */
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

/* Individual brand colors on hover */
.social-btn[aria-label="LinkedIn"]:hover    { background: #0A66C2; border-color: #0A66C2; color: #fff; }
.social-btn[aria-label="Facebook"]:hover    { background: #1877F2; border-color: #1877F2; color: #fff; }
.social-btn[aria-label="Instagram"]:hover   { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: #dc2743; color: #fff; }
.social-btn[aria-label="Twitter / X"]:hover { background: #000; border-color: #000; color: #fff; }
.social-btn[aria-label="TikTok"]:hover      { background: #010101; border-color: #69C9D0; color: #69C9D0; }


/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-200); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem;
}
.form-success.show { display: block; }
.success-icon {
  width: 60px; height: 60px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
}
.form-success h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 0.5rem; }
.form-success p { font-size: 0.9rem; color: var(--gray-500); }

/* Map */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-wrap iframe { display: block; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer { background: var(--navy); color: rgba(255,255,255,0.6); }

.footer-top { padding: 5rem 0 3rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
}

.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
  max-width: 260px;
}

.footer-socials { display: flex; gap: 0.75rem; }
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s ease;
}
.footer-socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--gold); }
.footer-col li:not(li a) {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
}
.wa-link { color: #25D366 !important; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom-inner p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-credits .gold { color: var(--gold); }
.footer-credits .green { color: var(--green); }

/* ── FLOATING ELEMENTS ───────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: floatWA 3s ease infinite;
}
.whatsapp-float svg { width: 26px; height: 26px; color: white; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
@keyframes floatWA {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.back-to-top {
  position: fixed; bottom: 6rem; right: 2rem; z-index: 500;
  width: 42px; height: 42px;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .about-grid,
  .green-grid,
  .cb-grid { gap: 3.5rem; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-item.large { grid-column: span 2; }
  .gallery-item.tall { grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 860px) {
  :root { --section-pad: 70px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .about-grid,
  .green-grid,
  .cb-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  .about-img-secondary { display: none; }
  .about-badge { left: 1rem; }
  .about-content { padding-left: 0; }

  .hero-title { font-size: clamp(2.8rem, 10vw, 5rem); }
  .hero-stats { flex-direction: row; }

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

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.large { grid-column: span 2; }

  .green-metrics { gap: 1rem; padding: 0; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero-title { font-size: clamp(2.4rem, 12vw, 3.5rem); }
  .hero-stats { gap: 1.5rem; }
  .stat-divider { display: none; }

  .services-grid { border-radius: 0; }
  .service-card { padding: 2rem 1.5rem; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: auto; }

  .why-grid { grid-template-columns: 1fr; }
  .why-card:nth-child(3n) { border-right: 1px solid rgba(255,255,255,0.06); }
  .why-card:last-child { border-bottom: none; }

  .green-metrics { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }

  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .whatsapp-float { bottom: 1.25rem; right: 1.25rem; }
  .back-to-top { bottom: 5rem; right: 1.25rem; }

}
.footer-logo-img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 8px;
  background: white;
  padding: 5px;
  flex-shrink: 0;
}
/* ── NAVBAR LOGO IMAGE ───────────────────────── */
.nav-logo-img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  border-radius: 6px;
  background: white;
  padding: 3px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.05);
}
/* ── PRELOADER LOGO ──────────────────────────── */
.preloader-logo-img {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  border-radius: 16px;
  background: white;
  padding: 10px;
  box-shadow: 0 8px 40px rgba(212,175,55,0.25);
  animation: logoAppear 0.8s cubic-bezier(0.16,1,0.3,1) forwards;
}

.preloader-logo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@keyframes logoAppear {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: scale(1); }
}

/* ===== TEAM SECTION ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.team-card:hover {
  border-color: #b8952a;
  box-shadow: 0 8px 40px rgba(184, 149, 42, 0.18);
  transform: translateY(-6px);
}
.ceo-card { border-top: 3px solid #b8952a; }

.team-card-top {
  padding: 2rem 1.5rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.ceo-ribbon {
  display: inline-block;
  background: linear-gradient(135deg, #b8952a, #e2c060);
  color: #1a1200;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.2rem 0.8rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
.team-avatar {
  width: 74px; height: 74px;
  border-radius: 50%;
  border: 2px solid #b8952a;
  background: rgba(184, 149, 42, 0.1);
  color: #b8952a;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700;
  letter-spacing: 1px;
  margin: 0 auto 1rem;
  transition: var(--transition);
}
.team-card:hover .team-avatar {
  background: #b8952a;
  color: #000;
  box-shadow: 0 0 20px rgba(184, 149, 42, 0.4);
}
.team-name {
  font-family: var(--font-display);
  font-size: 0.92rem; font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 1px; margin-bottom: 0.3rem;
}
.team-role {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b8952a;
  margin: 0;
}
.team-card-body { padding: 1.25rem 1.5rem 1.5rem; }
.team-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.team-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(184, 149, 42, 0.1);
  border: 1px solid rgba(184, 149, 42, 0.3);
  color: #b8952a;
  font-size: 0.75rem; font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius);
  letter-spacing: 0.5px;
}

/* ===== PARTNERS SECTION ===== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.partner-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex; gap: 1.5rem; align-items: flex-start;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.partner-card:hover {
  border-color: #3B6D11;
  box-shadow: 0 8px 40px rgba(59, 109, 17, 0.15);
  transform: translateY(-4px);
}
.partner-logo-box {
  width: 60px; height: 60px;
  background: rgba(59, 109, 17, 0.1);
  border: 1px solid rgba(59, 109, 17, 0.3);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #3B6D11;
  flex-shrink: 0;
  transition: var(--transition);
}
.partner-card:hover .partner-logo-box {
  background: #3B6D11;
  color: #fff;
}
.partner-name {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 2px; margin-bottom: 0.3rem;
}
.partner-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem; letter-spacing: 2px;
  text-transform: uppercase;
  color: #3B6D11; margin-bottom: 0.75rem;
}
.partner-desc {
  font-size: 0.9rem; color: var(--text-secondary);
  line-height: 1.75; margin: 0;
}
.partners-tagline {
  display: flex; align-items: center; gap: 1.5rem;
  margin-top: 2rem;
}
.tagline-line {
  flex: 1; height: 1px;
  background: var(--border);
}
.tagline-text {
  font-family: var(--font-mono);
  font-size: 0.75rem; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted); white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
  .partner-card { flex-direction: column; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
}
body{
  overflow-x:hidden;
}
