/* ============================================
   STRUCT ENGINEERING — Custom Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@300;400;500;600&display=swap');

:root {
  --navy: white;
  --navy-mid: white;
  --navy-light: white;
  /* --navy: #f8f7f4; */
  /* was #0a1628 — main background */
  /* --navy-mid: #f0ede8; */
  /* was #132040 — card/section backgrounds */
  /* --navy-light: #e8e4de; */
  /* was #1e3060 — lighter panels */
  /* --steel: #8a9bb5;
  --steel-light: #b8c8de; */
  --accent: #2563eb;
  --accent-bright: #3b82f6;
  --silver: #c8d6e5;
  /* --white: #f0f4f8;
  --text-muted: #6b7f9e;
  --border: rgba(138, 155, 181, 0.18); */
  --white: #1a1a2e;
  /* was #f0f4f8 — flip to dark text */
  --steel: #4a5568;
  /* was #8a9bb5 — body text */
  --steel-light: #2d3748;
  /* was #b8c8de — secondary text */
  --text-muted: #718096;
  /* was #6b7f9e — muted text */
  --border: rgba(0, 0, 0, 0.1);
  /* was rgba(138,155,181,0.18) */
  --glow: rgba(37, 99, 235, 0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow', sans-serif;
  background-color: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

/* ========== TOP HEADER ========== */
#top-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: #111111;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transform: translateY(0);
  transition: transform 0.35s ease;
  padding: 0.5rem 0;
}

#top-header.hide {
  transform: translateY(-100%);
}

.top-header-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
   flex-wrap: wrap;
  gap: 0.5rem;
}

.top-header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  /* flex-wrap: wrap; */
}

.top-header-left a {
  color: #d1d5db;
    text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: none;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 0.4rem;
   transition: color 0.2s;
}

.top-header-left a:hover {
  color: #ffffff;
}

.top-info-icon {
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
    gap: 0.75rem;
}

.top-info-icon svg {
  width: 12px;
  height: 12px;
}

.top-header-right {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.top-social-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.top-social-links a {
  color: #d1d5db;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
   transition: color 0.2s;
}

.top-social-links a:hover {
  color: #ffffff;
}

.top-social-links svg {
  width: 14px;
  height: 14px;
}

.top-header-cta {
  background: #dc2626;
  color: #ffffff;
  border: none;
  border-radius: 2px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.45rem 0.95rem;
  line-height: 1;
}

.top-header-cta:hover {
  background: #ef4444;
}

/* Hide top header on small screens to save space */
@media (max-width: 768px) {
  .top-header-left a:not(:first-child) {
    display: none;   /* show only phone number on mobile */
  }

  
}

@media (min-width: 769px) {
  /* ── Top header text links ── */
  .top-header-left a {
    font-size: 1rem;        /* was 0.78rem */
    gap: 0.6rem;
  }

  /* ── Top header icons ── */
  .top-info-icon {
    width: 18px;
    height: 18px;
  }

  .top-info-icon svg {
    width: 18px;
    height: 18px;
  }

  /* ── Social icons ── */
  .top-social-links a {
    width: 20px;
    height: 20px;
  }

  .top-social-links svg {
    width: 20px;
    height: 20px;
  }

  /* ── Gap between left items ── */
  .top-header-left {
    gap: 2rem;              /* was 1rem */
  }

  /* ── Social links gap ── */
  .top-social-links {
    gap: 1rem;              /* was 0.6rem */
  }

  /* ── Top header overall padding ── */
  #top-header {
    padding: 0.75rem 0;    /* was 0.5rem */
  }
}


/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--navy);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

/* ========== NAVBAR ========== */
#navbar {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 0.5rem 0;
  /* background:  #ede9e3; */
  background: white;
}

/* #navbar.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
} */
#navbar.scrolled {
   background: white;
  /* background: #ede9e3; */
  /* match your --navy off-white */
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.5rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body.top-header-hidden #navbar {
  top: 0;
}

.nav-logo img {
  height: 100px;
  width: auto;
}

.nav-link {
  position: relative;
  color: #2d3748;
  /* var(--steel-light); */
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
  padding-bottom: 4px; 
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-bright);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--accent-bright);
  box-shadow: 0 0 24px var(--glow);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  color: white;
  border: 2px solid var(--accent);
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--accent);
  box-shadow: 0 0 24px var(--glow);
}

/* ========== MOBILE MENU ========== */
#mobile-menu {
  display: none;
  background: rgba(248, 247, 244, 0.99);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  /* background: rgba(10, 22, 40, 0.99);
  border-top: 1px solid var(--border); */
}

#mobile-menu.open {
  display: block;
}

.mobile-nav-link {
  display: block;
  color: #2d3748;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  /* color: var(--steel-light); */
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 1.5rem;
  /* border-bottom: 1px solid var(--border); */
  transition: all 0.2s;
}

.mobile-nav-link:hover {
  color: #1a1a2e;
  background: #f0ede8;
  /* color: var(--white);
  background: var(--navy-mid); */
  padding-left: 2rem;
}

/* ========== HERO ========== */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #0d1f3c 100%);
  padding-top: 50px; 
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),   url('hpbi.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-beam {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulseBeam 6s ease-in-out infinite;
}

@keyframes pulseBeam {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

.hero-beam-2 {
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 42, 100, 0.4) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-tag {
  display: inline-block;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.4);
  color: var(--accent-bright);
  color: black;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  color: white;
}

.hero-title span {
  color: var(--accent-bright);
  display: block;
}

.hero-subtitle {
 
 color: white;
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 520px;
}

.hero-stat {
  text-align: center;
}

.hero-stat .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat .num span {
  color: var(--accent-bright);
}

.hero-stat .label {
  font-size: 0.78rem;
  color: white;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.3rem;
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  background: var(--border);
  height: 50px;
  align-self: center;
}

.hero-image-wrap {
  position: relative;
}

.hero-image-inner {
  position: relative;
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(37, 99, 235, 0.1);
}

.hero-image-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, transparent 60%);
  z-index: 1;
}

.hero-image-inner img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--accent);
  padding: 1rem 1.3rem;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.4);
  z-index: 2;
}

.hero-badge .badge-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
}

.hero-badge .badge-text {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ========== SECTION COMMONS ========== */
.section-tag {
  display: inline-block;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.35);
  color: var(--accent-bright);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.section-title span {
  color: var(--accent-bright);
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: 1rem 0 1.5rem;
}

/* ========== ABOUT ========== */
#about {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
  padding-bottom: 1px;
}

#about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.about-img-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.about-accent-box {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--accent);
  border-radius: 6px;
  opacity: 0.3;
}

.about-accent-box-2 {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 80px;
  height: 80px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 4px;
}

.feature-item {
  display: flex;
    flex-direction: column;    /* stack icon above text */
  align-items: center;       /* center everything horizontally */
  text-align: center;        /* center the text */
  /* gap: 1rem;
  align-items: flex-start; */
  margin-bottom: 1.4rem;
   padding: 1.5rem;
  background: rgba(37,99,235,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-bright);
  font-size: 1.2rem;
   margin-bottom: 1rem; 
}

.feature-text h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  /* margin-bottom: 0.25rem; */
   text-align: center;
  margin-bottom: 0.4rem;
}

.feature-text p {
  font-size: 0.88rem;
  color: var(--steel);
  line-height: 1.6;
  text-align: center;
}

/* ========== SERVICES ========== */
#services {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.service-card {
  background: var(--navy-mid);
  background: rgba(37,99,235,0.04);

  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: default;
  height: 100%;
  
}

.service-card-img-wrap {
  width: 100%;
  height: 200px;        /* vertical half of card */
  overflow: hidden;
  flex-shrink: 0;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-img {
  transform: scale(1.05);  /* subtle zoom on hover */
}



.service-card-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}

.service-card-body p {
  color: var(--steel);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.service-card-body ul {
  list-style: none;
}

.service-card-body ul li {
  color: var(--steel-light);
  font-size: 0.85rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card-body ul li::before {
  content: '▸';
  color: var(--accent-bright);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.service-card-body ul li:last-child {
  border-bottom: none;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(37, 99, 235, 0.15);
}

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

.service-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  font-size: 1.5rem;
  transition: all 0.3s;
}

.service-card:hover .service-card-icon {
  background: rgba(37, 99, 235, 0.25);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}

.service-card p {
  color: var(--steel);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.service-card ul {
  list-style: none;
}

.service-card ul li {
  color: var(--steel-light);
  font-size: 0.85rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card ul li::before {
  content: '▸';
  color: var(--accent-bright);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.service-card ul li:last-child {
  border-bottom: none;
}

.service-card-body {
  padding: 1.5rem;
}



/* ========== WORK PLATFORMS MARQUEE ========== */
#platforms {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}

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

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 3rem;
  gap: 1rem;
  /* border-right: 1px solid var(--border); */
  flex-shrink: 0;
  transition: all 0.3s;
  /* filter: grayscale(0.6) brightness(0.85); */
}

.marquee-item:hover {
  filter: grayscale(0) brightness(1);
}

.marquee-item img {
  height: 42px;
  width: auto;
  object-fit: contain;
  max-width: 140px;
}

.marquee-fade-left,
.marquee-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  z-index: 2;
  pointer-events: none;
}

/* .marquee-fade-left {
  left: 0;
  background: linear-gradient(90deg, var(--navy-mid), transparent);
}

.marquee-fade-right {
  right: 0;
  background: linear-gradient(-90deg, var(--navy-mid), transparent);
} */

.marquee-fade-left {
  background: linear-gradient(90deg, #f0ede8, transparent);
}

.marquee-fade-right {
  background: linear-gradient(-90deg, #f0ede8, transparent);
}

/* ========== TEAM ========== */
#team {
  background: var(--navy);
}

.team-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s;
  position: relative;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.team-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  filter: grayscale(30%);
  transition: filter 0.4s;
}

.team-card:hover .team-card-img {
  filter: grayscale(0%);
}

.team-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 240px;
  background: linear-gradient(to bottom, transparent 50%, var(--navy-mid) 100%);
}

.team-card-body {
  padding: 1.2rem 1.4rem 1.4rem;
}

.team-card-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-card-role {
  color: var(--accent-bright);
  font-size: 0.82rem;
  font-weight: 500;
  margin-top: 0.2rem;
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}

.team-card-bio {
  color: var(--steel);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ========== CLIENTS ========== */
#clients {
  background: var(--navy-mid);
}

.client-logo-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  min-height: 100px;
}

.client-logo-box:hover {
  background: rgba(37, 99, 235, 0.06);
  border-color: rgba(37, 99, 235, 0.3);
  transform: scale(1.03);
}

.client-logo-box span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  transition: color 0.3s;
}

.client-logo-box:hover span {
  color: var(--white);
}

/* ========== CONTACT ========== */
#contact {
  background: var(--navy);
}

.contact-form {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-light);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--white);
  padding: 0.75rem 1rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s;
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
  background: rgba(37, 99, 235, 0.05);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.form-select option {
  background: var(--navy-mid);
  color: var(--white);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-bright);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.25rem;
}

.contact-info-text p,
.contact-info-text a {
  color: var(--white);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info-text a:hover {
  color: var(--accent-bright);
}

/* ========== FOOTER ========== */
footer {
  /* background: #ede9e3; */
  background: white;
  /* was #060e1c — slightly darker than page bg for contrast */
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  /* background: #060e1c;
  border-top: 1px solid var(--border); */
}

.footer-link {
  color: #4a5568;
  /* color: var(--text-muted); */
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-link:hover {
  color: #2563eb;
  /* color: var(--accent-bright); */
}

.footer-logo img {
  height: 100px;
  width: auto;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  /* background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border); */
  border-radius: 4px;
  /* color: var(--steel); */
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #4a5568;
  font-size: 1rem;
  text-decoration: none;
  margin-right: 0.5rem;
  transition: all 0.3s;
}

.footer-social a:hover {
  /* background: var(--accent);
  border-color: var(--accent);
  color: var(--white); */
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.footer-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1a1a2e;
  /* color: var(--white); */
  margin-bottom: 1rem;
}

/* ========== STATS BAR ========== */
.stats-bar {
  background: var(--accent);
  padding: 1.5rem 0;
}

.stat-block {
  text-align: center;
  padding: 0 1rem;
}

.stat-block .stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.stat-block .stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* ========== WHY US ========== */
#why-us {
  padding-top: 1px;
  background: var(--navy-mid);
}

.why-card {
  background: rgba(37, 99, 235, 0.05);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 8px;
  padding: 1.8rem;
  text-align: center;
  transition: all 0.3s;
}

.why-card:hover {
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(-4px);
}

.why-card-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}

.why-card p {
  color: var(--steel);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ========== ANIMATIONS ========== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 {
  transition-delay: 0.1s;
}

.fade-in-delay-2 {
  transition-delay: 0.2s;
}

.fade-in-delay-3 {
  transition-delay: 0.3s;
}

.fade-in-delay-4 {
  transition-delay: 0.4s;
}

/* ========== SUCCESS / ERROR MESSAGE ========== */
.form-message {
  display: none;
  padding: 1rem;
  border-radius: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 1rem;
}

.form-message.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
}

.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

/* ========== ACTIVE NAV ========== */
.page-section {
  scroll-margin-top: 110px;
}

/* ========== RESPONSIVE HELPERS ========== */
@media (max-width: 768px) {
  .hero-stat-divider {
    display: none;
  }

  .hero-badge {
    bottom: -12px;
    left: -8px;
  }

  .about-accent-box,
  .about-accent-box-2 {
    display: none;
  }

  .contact-form {
    padding: 1.5rem;
  }
}


/* ========== FAQ ========== */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: rgba(37, 99, 235, 0.4);
}

.faq-question {
  width: 100%;
  background: var(--navy-mid);
  border: none;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 1.2rem 1.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover {
  background: rgba(37, 99, 235, 0.08);
}

.faq-item.open .faq-question {
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent-bright);
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent-bright);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: var(--steel);
  font-size: 0.95rem;
  line-height: 1.75;
  padding: 0 1.5rem;
  background: var(--navy-mid);
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 1rem 1.5rem 1.4rem;
}

#typed-text {
  white-space: nowrap;
  display: block;
}

.logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1a2e;
  font-size: 2.5rem;       /* desktop size */
}

.logo-tagline {
  font-size: 1rem;
  font-weight: 600;
  color: #6b7f9e;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .logo-name {
    font-size: 1rem;        /* smaller on mobile */
  }

  .logo-tagline {
   font-size: 0.5rem;          /* hide tagline on mobile to save space */
  }

  .nav-logo img {
    height: 50px;
    padding-bottom: 5px;           /* shrink logo image on mobile */
  }
}