/* ==========================================================================
   FIB IT SOLUTIONS — DESIGN SYSTEM v2
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary-blue: #1A237E;
  --primary-blue-hover: #283593;
  --bg-blue-light: #E8EAF6;

  --white: #FFFFFF;
  --bg-light: #F8FAFC;
  --border-grey: #E2E8F0;

  --text-black: #0F172A;
  --text-dark: #334155;
  --text-muted: #64748B;

  --top-bar-bg: #1E293B;
  --hero-bg: #080C14;

  --container-width: 1280px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
}

a { text-decoration: none; color: inherit; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--primary-blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.35);
}
.btn-primary:hover {
  background: var(--primary-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.45);
}
.btn-primary svg { transition: transform 0.3s ease; }
.btn-primary:hover svg { transform: translateX(4px); }

.label-pill {
  display: inline-block;
  padding: 5px 14px;
  background: var(--bg-blue-light);
  color: var(--primary-blue);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ==========================================================================
   1. TOP SOCIAL PROOF BAR — Emtech Style
   ========================================================================== */
.top-bar {
  background: #1A237E;
  padding: 4px 0;
  font-size: 0.8125rem;
  color: #FFFFFF;
  border-bottom: 1px solid #283593;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.top-bar-social {
  display: flex;
  align-items: center;
  gap: 4px;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 4px;
  background: #283593;
  color: #FFFFFF;
  transition: var(--transition);
  border: 1px solid transparent;
}
.social-icon:hover {
  background: var(--primary-blue);
  color: #fff;
  border-color: var(--primary-blue);
}
.social-icon svg { width: 14px; height: 14px; }

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #FFFFFF;
}
.top-bar-item svg { color: #FFFFFF; flex-shrink: 0; opacity: 0.8; }
.top-bar-item a { color: #FFFFFF; opacity: 0.9; transition: color 0.2s; }
.top-bar-item a:hover { color: var(--primary-blue); opacity: 1; }

.top-bar-divider { width: 1px; height: 16px; background: #283593; }

.trust-badges {
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-badge {
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255,255,255,0.15);
  color: #CBD5E1;
}
.trust-badge.blue {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: #fff;
}

.sticky-header-group {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* ==========================================================================
   2. MAIN NAVIGATION HEADER — Clean White, Rounded Sides
   ========================================================================== */
.header-wrap {
  background: var(--white);
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  max-width: var(--container-width);
  margin: 0 auto;
  border-radius: 100px;
  padding: 0 10px;
  border: 1px solid var(--border-grey);
}
.header { 
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  height: 100%;
  text-decoration: none;
}
.logo img { 
  height: 52px; 
  width: auto; 
  object-fit: contain; 
  display: block;
}
.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  line-height: 1;
  text-transform: uppercase;
}

.brand-line-1 {
  display: flex;
  align-items: baseline;
  letter-spacing: 0.05em;
}

.b-f {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1F1A17;
  line-height: 1;
}
.b-future {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1F1A17;
  letter-spacing: 0.04em;
}

.b-i {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1A237E;
  line-height: 1;
}
.b-info {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1A237E;
  letter-spacing: 0.01em;
}

.b-b {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #6B7280;
  line-height: 1;
}
.b-iz {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #6B7280;
  letter-spacing: 0.01em;
}

.brand-line-2 {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0F172A;
  text-align: right;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Nav Links */
nav.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-black);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover { background: var(--bg-blue-light); color: var(--primary-blue); }
.nav-link svg { width: 15px; height: 15px; opacity: 0.6; transition: transform 0.2s; }
.nav-link:hover svg { opacity: 1; transform: rotate(180deg); }

/* Header CTA — Rounded Pill */
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: #1A237E;
  color: #FFFFFF;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--transition);
  box-shadow: none;
  border: none;
  cursor: pointer;
}
.btn-nav-cta:hover {
  background: #283593;
  color: #FFFFFF;
  transform: translateY(-1px);
}
.btn-nav-cta svg { width: 16px; height: 16px; transition: transform 0.2s; }
.btn-nav-cta:hover svg { transform: translateX(3px); }

/* ==========================================================================
   3. HERO HEADER SLIDER
   ========================================================================== */
.hero-slider {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: var(--hero-bg);
}
.slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  display: flex;
  align-items: center;
}
.slide.active { opacity: 1; z-index: 1; }

.slide-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    90deg,
    rgba(43,43,44,0.75) 0%,
    rgba(43,43,44,0.45) 55%,
    rgba(43,43,44,0.05) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding: 0 32px;
  margin-left: max(32px, calc((100% - var(--container-width)) / 2));
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}
.slide.active .hero-content { opacity: 1; transform: translateY(0); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--primary-blue);
  border: 1px solid var(--primary-blue);
  border-radius: 50px;
  color: #FFFFFF;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(6px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero-title span { color: #FFFFFF; }

.hero-subtitle {
  font-size: 0.9375rem;
  color: #FFFFFF;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 480px;
  font-weight: 400;
  opacity: 0.9;
}

.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.btn-hero {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9375rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-hero-primary {
  background: #CBD5E1;
  color: #0F172A;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.btn-hero-primary:hover { background: #94A3B8; color: #0F172A; transform: translateY(-2px); }
.btn-hero-outline {
  background: var(--primary-blue);
  color: #fff;
  border: 1px solid var(--primary-blue);
  backdrop-filter: blur(8px);
}
.btn-hero-outline:hover { background: var(--primary-blue-hover); border-color: var(--primary-blue-hover); }

/* Hero Bottom Operator Bar — Front/Back Controls */
.hero-operator-bar {
  position: absolute;
  bottom: 24px;
  left: 0;
  width: 100%;
  z-index: 10;
  pointer-events: none;
}
.hero-operator-container {
  display: flex;
  justify-content: center;
}
.operator-controls {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 8px 24px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.op-arrow {
  background: transparent;
  border: none;
  color: #1E293B;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 4px;
  transition: var(--transition);
}
.op-arrow:hover {
  color: #1A237E;
  transform: scale(1.15);
}
.op-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.op-dot {
  width: 14px;
  height: 10px;
  border-radius: 10px;
  background: #E2E8F0;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.op-dot:hover {
  background: #CBD5E1;
}
.op-dot.active {
  width: 32px;
  background: #334155;
}

/* ==========================================================================
   4. CORPORATE INTRO SECTION (Above Partners)
   ========================================================================== */
.intro-section {
  padding: 96px 0;
  background: var(--white);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.intro-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.intro-eyebrow span { margin-right: 6px; color: var(--text-muted); }

.intro-title {
  font-size: 2.875rem;
  font-weight: 800;
  color: var(--text-black);
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.avatar-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
}
.av {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  object-fit: cover;
  margin-left: -10px;
  background: var(--bg-light);
}
.av:first-child { margin-left: 0; }
.av-plus {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--text-black);
  color: #fff;
  border: 2.5px solid #fff;
  margin-left: -10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.av-label {
  margin-left: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
}

.intro-desc {
  font-size: 1.0625rem;
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 32px;
}

/* Intro Image */
.intro-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.1);
}
.intro-img-wrapper img {
  width: 100%; height: 440px;
  object-fit: cover; display: block;
}
.intro-float-btn {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--primary-blue);
  backdrop-filter: blur(12px);
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9375rem;
  color: #fff;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 92, 185, 0.25);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
}
.intro-float-btn:hover { transform: translateY(-3px); background: #004d9c; box-shadow: 0 12px 32px rgba(0, 92, 185, 0.35); }
.intro-float-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.intro-float-icon svg { width: 16px; height: 16px; }

/* ==========================================================================
   5. TRUSTED PARTNERS MARQUEE
   ========================================================================== */
.partners-section {
  background: var(--bg-light);
  border-top: 1px solid var(--border-grey);
  border-bottom: 1px solid var(--border-grey);
  padding: 44px 0;
  overflow: hidden;
}
.partners-label {
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-weight: 600;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 44px;
  flex-shrink: 0;
}
.partner-item img,
.partner-item svg {
  height: 32px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  transition: var(--transition);
}
.partner-item:hover img,
.partner-item:hover svg {
  transform: scale(1.05);
}

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

/* ==========================================================================
   6. ABOUT US SECTION (Below Partners)
   ========================================================================== */
.about-section {
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.about-content { }
.about-title {
  font-size: 2.875rem;
  font-weight: 800;
  color: var(--text-black);
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.about-desc {
  font-size: 1.0625rem;
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 36px;
}

/* About Image Card */
.about-visual {
  position: relative;
  height: 100%;
}
.about-card {
  background: var(--bg-blue-light);
  border-radius: 40px;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: visible;
  min-height: 480px;
  height: 100%;
}
.about-portrait {
  width: 100%;
  height: 100%;
  flex-grow: 1;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* New Micro Badges */
.mbadge-growth {
  position: absolute;
  top: 30px; left: -10px;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border: 1px solid rgba(226,232,240,0.6);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  animation: mbfloat 5s ease-in-out infinite;
}
.mb-icon { color: #1E293B; display: flex; }
.mb-icon svg { width: 16px; height: 16px; }
.mb-label { font-size: 0.875rem; font-weight: 600; color: var(--text-black); }

.mbadge-review {
  position: absolute;
  top: 100px; left: -60px;
  transform: perspective(800px) rotateY(12deg) rotateX(4deg);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
  border: 1px solid rgba(226,232,240,0.6);
  z-index: 3;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: mbfloatPerspective 6s ease-in-out infinite;
}
@keyframes mbfloatPerspective {
  0%, 100% { transform: perspective(800px) rotateY(12deg) rotateX(4deg) translateY(0); }
  50% { transform: perspective(800px) rotateY(12deg) rotateX(4deg) translateY(-8px); }
}
.review-stars-box {
  display: flex; gap: 3px;
}
.star-box {
  width: 24px; height: 24px;
  background: #00B67A;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
}
.star-box svg { width: 14px; height: 14px; }
.star-box.half-star {
  background: linear-gradient(90deg, #00B67A 50%, #D1D5DB 50%);
}
.review-avatars {
  display: flex; align-items: center;
}
.r-av {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  object-fit: cover;
  margin-left: -10px;
}
.r-av:first-child { margin-left: 0; }
.r-av-plus {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #1E293B;
  color: #fff;
  border: 2.5px solid #fff;
  margin-left: -10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 400;
}
.review-bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 2px;
}
.rb-left {
  display: flex; align-items: center; gap: 6px;
}
.rb-star { width: 14px; height: 14px; }
.rb-score { font-size: 0.9375rem; font-weight: 700; color: #1E293B; }
.rb-text { font-size: 0.75rem; color: #6B7280; font-weight: 500; }
.rb-check {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #E5E7EB;
  display: flex; align-items: center; justify-content: center;
  color: #9CA3AF;
}
.rb-check svg { width: 10px; height: 10px; }

.pill-tags {
  position: absolute;
  bottom: 80px; right: -20px;
  display: flex; flex-direction: column;
  gap: 8px;
  z-index: 3;
}
.pill-tag {
  background: #fff;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-black);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border: 1px solid rgba(226,232,240,0.6);
  animation: mbfloat 5s ease-in-out infinite;
}
.pill-tag:nth-child(1) { animation-delay: 0.3s; }
.pill-tag:nth-child(2) { animation-delay: 1.4s; transform: translateX(10px); }
.pill-tag:nth-child(3) { animation-delay: 2.5s; }

@keyframes mbfloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.pill-tag:nth-child(2) { animation-name: mbfloat2; }
@keyframes mbfloat2 {
  0%, 100% { transform: translateX(10px) translateY(0); }
  50% { transform: translateX(10px) translateY(-8px); }
}

/* ==========================================================================
   7. WHY CHOOSE US
   ========================================================================== */
.why-choose-us {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.wcu-bg-pattern {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 140%; height: 140%;
  background: radial-gradient(circle at center, rgba(240, 244, 248, 0.6) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
  pointer-events: none;
}
.why-choose-us .container { position: relative; z-index: 1; }
.wcu-header {
  max-width: 800px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wcu-pill {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid rgba(0, 92, 185, 0.2);
  background: rgba(0, 92, 185, 0.05);
  color: var(--primary-blue);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.wcu-header .section-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-black);
  margin-bottom: 24px;
  line-height: 1.1;
  text-align: center;
}
.title-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--primary-blue);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(0, 92, 185, 0.15);
  margin-bottom: 6px;
  margin-left: 8px;
}
.wcu-sub-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #9CA3AF;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.sub-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--primary-blue);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(0, 92, 185, 0.15);
}

.wcu-grid {
  display: grid;
  grid-template-columns: 1fr 340px 1fr;
  gap: 40px;
  align-items: center;
}
.wcu-col {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.wcu-item {
  text-align: center;
  max-width: 320px;
  margin: 0 auto;
}
.wcu-icon {
  color: var(--primary-blue);
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}
.wcu-icon svg {
  width: 32px;
  height: 32px;
}
.wcu-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-black);
  margin-bottom: 12px;
}
.wcu-desc {
  font-size: 0.9375rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.wcu-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.wcu-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
}
/* The solid offset box behind the image */
.wcu-image-wrapper::before {
  content: '';
  position: absolute;
  top: 20px;
  right: -20px;
  bottom: -20px;
  left: 20px;
  background-color: var(--primary-blue);
  opacity: 0.1;
  border-radius: 4px;
  z-index: 0;
}
.wcu-image-wrapper img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  z-index: 1;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.wcu-cta {
  text-align: center;
  z-index: 2;
  margin-top: 10px;
}

@media (max-width: 991px) {
  .wcu-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .wcu-center {
    order: -1;
  }
  .wcu-image-wrapper {
    max-width: 340px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   8. OUR CAPABILITIES (Replicated from Emtech)
   ========================================================================== */
.capabilities-section {
  padding: 100px 0;
  background: #fafbfc;
  border-top: 1px solid var(--border-grey);
}
.capabilities-head {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}
.svc-eyebrow {
  font-size: 13px;
  color: var(--primary-blue);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.capabilities-head .section-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-black);
  margin-bottom: 16px;
  line-height: 1.15;
}
.capabilities-head .section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-dark);
  line-height: 1.6;
}

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

.svc-card {
  background: #ffffff;
  border: 1px solid #e4eaea;
  border-radius: 20px;
  padding: 32px 28px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  min-height: 310px;
  color: var(--text-black);
  text-decoration: none;
  isolation: isolate;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(48, 52, 52, 0.04);
}

.svc-card:hover {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #003875 100%);
  border-color: var(--primary-blue);
  box-shadow: 0 28px 64px rgba(0, 92, 185, 0.32), 0 0 0 1px rgba(0, 92, 185, 0.4);
  transform: translateY(-6px);
  color: #ffffff;
}

.svc-card:hover::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.15), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.svc-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 92, 185, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
  transition: all 0.28s ease;
}

.svc-card:hover .svc-card-icon {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.svc-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--primary-blue);
  color: #ffffff;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  width: fit-content;
  position: relative;
  z-index: 1;
  transition: all 0.28s ease;
}

.svc-card:hover .svc-card-badge {
  background: #ffffff;
  color: var(--primary-blue);
}

.svc-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-black);
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  transition: color 0.28s;
}

.svc-card:hover .svc-card-title {
  color: #ffffff;
}

.svc-card-desc {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 22px;
  flex: 1;
  position: relative;
  z-index: 1;
  transition: color 0.28s;
}

.svc-card:hover .svc-card-desc {
  color: rgba(255, 255, 255, 0.88);
}

.svc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-blue);
  transition: gap 0.2s, color 0.28s, border-color 0.28s;
  position: relative;
  z-index: 1;
  padding-top: 16px;
  border-top: 1px solid var(--border-grey);
}

.svc-card:hover .svc-card-link {
  color: #ffffff;
  border-top-color: rgba(255, 255, 255, 0.22);
  gap: 12px;
}

.svc-card-link svg {
  transition: transform 0.2s;
}

.svc-card:hover .svc-card-link svg {
  transform: translateX(3px);
}

@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   9. INDUSTRY SOLUTIONS
   ========================================================================== */
.industry-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.industry-header {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}
.ind-eyebrow {
  display: inline-block;
  padding: 6px 16px;
  background: var(--bg-light);
  border: 1px solid var(--border-grey);
  color: var(--primary-blue);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.industry-header .section-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-black);
  margin-bottom: 16px;
  line-height: 1.15;
}
.title-dot-white {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: #38bdf8;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(56, 189, 248, 0.15);
  margin-bottom: 6px;
  margin-left: 8px;
}
.industry-header .section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.industry-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 32px;
  -webkit-overflow-scrolling: touch;
  /* Premium scrollbar styling */
  scrollbar-width: thin;
  scrollbar-color: var(--primary-blue) #e2e8f0;
}
.industry-grid::-webkit-scrollbar {
  height: 6px;
}
.industry-grid::-webkit-scrollbar-track {
  background: #e2e8f0;
  border-radius: 10px;
}
.industry-grid::-webkit-scrollbar-thumb {
  background-color: var(--primary-blue);
  border-radius: 10px;
}

.ind-card {
  position: relative;
  flex: 0 0 320px;
  height: 340px; /* Reduced vertical sizing */
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(0, 92, 185, 0.03); /* Faint light-blue tint */
  border: 1px solid rgba(0, 92, 185, 0.08); /* Faint border */
  box-shadow: 0 10px 30px rgba(0, 92, 185, 0.02);
  scroll-snap-align: start;
  transition: all 0.4s ease;
}

.ind-card-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Custom Industry Photo Backgrounds */
.bg-ind-healthcare { background-image: url('../assets/images/industry_healthcare_1785076990647.webp'); }
.bg-ind-realestate { background-image: url('../assets/images/industry_real_estate_1785077003634.webp'); }
.bg-ind-finance { background-image: url('../assets/images/industry_finance_1785077014742.webp'); }
.bg-ind-retail { background-image: url('../assets/images/industry_retail_1785077026935.webp'); }
.bg-ind-education { background-image: url('../assets/images/industry_education_1785077096522.webp'); }
.bg-ind-government { background-image: url('../assets/images/industry_government_1785077109330.webp'); }
.bg-ind-manufacturing { background-image: url('../assets/images/industry_manufacturing_1785077123550.webp'); }
.bg-ind-hospitality { background-image: url('../assets/images/industry_hospitality_1785077134139.webp'); }

.ind-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(0, 40, 85, 0.95) 0%, rgba(0, 60, 130, 0.6) 50%, rgba(0, 92, 185, 0.2) 100%);
  opacity: 0;
  transition: all 0.4s ease;
}

.ind-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  z-index: 2;
  transition: transform 0.4s ease;
}

.ind-icon {
  width: 44px;
  height: 44px;
  background: #e2e8f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.ind-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-black);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.ind-desc {
  font-size: 0.875rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 20px;
  transition: color 0.4s ease;
}

.ind-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.4s ease;
}

/* Hover Effects */
.ind-card:hover {
  border-color: transparent;
  box-shadow: 0 16px 40px rgba(0, 92, 185, 0.15);
}
.ind-card:hover .ind-card-bg {
  opacity: 1;
  transform: scale(1.08);
}
.ind-card:hover .ind-overlay {
  opacity: 1;
}
.ind-card:hover .ind-icon {
  background: #38bdf8;
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(56, 189, 248, 0.3);
}
.ind-card:hover .ind-title {
  color: #ffffff;
}
.ind-card:hover .ind-desc {
  color: rgba(255, 255, 255, 0.85);
}
.ind-card:hover .ind-link {
  color: #38bdf8;
  gap: 12px;
}

@media (max-width: 1024px) {
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .industry-grid { grid-template-columns: 1fr; }
  .ind-card { height: 380px; }
}

/* =========================================
   10. AI AUTOMATION BANNER
   ========================================= */
.ai-banner {
  padding: 100px 0;
  background: #ffffff;
  color: var(--text-black);
  position: relative;
  overflow: hidden;
}
.ai-banner-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ai-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(56, 189, 248, 0.1);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.ai-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
}
.ai-desc {
  font-size: 1.125rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 32px;
}
.ai-list {
  list-style: none;
  margin-bottom: 40px;
  padding: 0;
}
.ai-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-black);
  margin-bottom: 16px;
}
.ai-list li svg {
  width: 20px;
  height: 20px;
  color: #38bdf8;
  flex-shrink: 0;
}
.ai-btn {
  background: var(--primary-blue);
  color: #ffffff;
}
.ai-btn:hover {
  background: var(--text-black);
  color: #ffffff;
}
.ai-banner-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  height: 500px;
}
.ai-banner-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ai-glass-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 32px;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.ai-stat {
  display: flex;
  flex-direction: column;
}
.ai-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1;
  margin-bottom: 8px;
}
.ai-stat-text {
  font-size: 0.875rem;
  color: var(--text-dark);
  max-width: 120px;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .ai-banner-container {
    grid-template-columns: 1fr;
  }
  .ai-banner-visual {
    height: 400px;
  }
}
@media (max-width: 576px) {
  .ai-glass-card {
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
    bottom: 16px;
    left: 16px;
    right: 16px;
    padding: 16px;
  }
  .ai-stat-num {
    font-size: 2rem;
  }
}
/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonials-section {
  padding: 100px 0;
  background-color: #f9fafb;
}
.testimonials-container {
  display: flex;
  gap: 60px;
  align-items: center;
}
.testi-left {
  flex: 0 0 320px;
}
.testi-quote-icon {
  margin-bottom: 20px;
}
.testi-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-black);
  line-height: 1.2;
  margin-bottom: 40px;
}
.testi-nav {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testi-arrow {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  padding: 0;
  transition: color 0.3s;
}
.testi-arrow:hover {
  color: var(--text-black);
}
.testi-track {
  height: 2px;
  width: 80px;
  background: #e2e8f0;
  position: relative;
}
.testi-progress {
  height: 2px;
  width: 30%;
  background: var(--text-black);
  position: absolute;
  left: 0;
  top: 0;
}

.testi-right {
  flex: 1;
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0 40px 0;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.testi-right::-webkit-scrollbar {
  display: none;
}
.testi-item {
  flex: 0 0 350px;
  scroll-snap-align: start;
}
.testi-bubble-wrapper {
  filter: drop-shadow(0 10px 25px rgba(0,0,0,0.06));
  margin-bottom: 30px;
}
.testi-bubble {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}
.testi-bubble::after {
  content: '';
  position: absolute;
  bottom: -24px;
  left: 30px;
  border-style: solid;
  border-width: 25px 25px 0 0;
  border-color: #ffffff transparent transparent transparent;
}
.testi-text {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}
.testi-stars {
  color: #10b981; /* Emerald green stars matching image */
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.testi-author-area {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-left: 10px;
}
.author-avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e2e8f0;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.125rem;
}
.testi-author-info h4 {
  margin: 0 0 4px 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-black);
}
.testi-author-info span {
  font-size: 0.875rem;
  color: #94a3b8;
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-section {
  padding: 100px 0;
  background-color: #ffffff;
}
.faq-header {
  margin-bottom: 50px;
}
.faq-eyebrow {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0, 92, 185, 0.1);
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 50px;
  margin-bottom: 15px;
}
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.faq-item.active {
  border-color: var(--primary-color);
  box-shadow: 0 4px 20px rgba(0, 92, 185, 0.08);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 30px;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}
.faq-question:hover {
  color: var(--primary-color);
}
.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--text-light);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--primary-color);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer p {
  padding: 0 30px 30px 30px;
  margin: 0;
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 1rem;
}

/* =========================================
   BLOG SECTION
   ========================================= */
.blog-section {
  padding: 100px 0;
  background-color: #f9fafb;
}
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}
.blog-header-left {
  flex: 1;
}
.blog-eyebrow {
  color: #ef4444;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.blog-sub-eyebrow {
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
.btn-view-all {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  color: var(--text-black);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-view-all:hover {
  background-color: #f3f4f6;
  border-color: #d1d5db;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  background: transparent;
  transition: transform 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
}
.blog-img-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-img-wrapper img {
  transform: scale(1.03);
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.blog-tag {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  background: #f1f5f9;
  color: var(--text-dark);
}
.blog-tag.tag-award {
  background: #ef4444;
  color: #ffffff;
}
.blog-tag.tag-cyber {
  background: #e0f2fe;
  color: #0369a1;
}
.blog-tag.tag-news {
  background: #fef9c3;
  color: #854d0e;
}
.blog-dot {
  color: #d1d5db;
  font-size: 0.75rem;
}
.blog-date {
  color: #9ca3af;
  font-size: 0.875rem;
  font-weight: 500;
}
.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-black);
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-excerpt {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Responsive */
@media (max-width: 992px) {
  .testimonials-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .testi-left {
    flex: none;
    width: 100%;
  }
  .testi-right {
    width: 100%;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  }
}

/* =========================================
   FOOTER SECTION
   ========================================= */
.site-footer {
  background-color: #0f172a;
  color: #9ca3af;
  padding-top: 80px;
  font-family: var(--font-primary);
}
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-desc {
  margin-top: 15px;
  margin-bottom: 25px;
  line-height: 1.6;
  font-size: 0.95rem;
}
.social-links {
  display: flex;
  gap: 15px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #1e293b;
  color: #ffffff;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
.social-links a:hover {
  background-color: var(--primary-red);
}
.footer-heading {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 25px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--primary-red);
}
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  line-height: 1.5;
}
.footer-contact svg {
  color: var(--primary-red);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 25px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  color: #9ca3af;
  text-decoration: none;
}
.footer-legal a:hover {
  color: #ffffff;
}



/* =========================================
   NEW FAQ SECTION
   ========================================= */
.faq-new-container {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.book-call-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  position: sticky;
  top: 100px;
}
.book-call-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 25px;
  position: relative;
}
.book-call-avatar::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(255,80,50,0.2) 0%, rgba(255,80,50,0) 70%);
  z-index: 1;
}
.book-call-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.faq-accordion-new {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq-item-new {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item-new.active {
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.faq-question-new {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s;
  font-family: inherit;
}
.faq-item-new.active .faq-question-new {
  color: #111827;
}
.faq-icon-new {
  font-size: 1.5rem;
  color: #9ca3af;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.3s ease, color 0.3s ease;
}
.faq-item-new.active .faq-icon-new {
  transform: rotate(45deg);
  color: #111827;
}
.faq-answer-new {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-new p {
  padding: 0 30px 24px 30px;
  color: #6b7280;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

@media (max-width: 992px) {
  .faq-new-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .book-call-card {
    position: static;
  }
}

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* =========================================
   NEW WHITE FOOTER REDESIGN
   ========================================= */
.footer-new {
  background: #ffffff;
  color: #1e293b;
  font-family: 'Inter', sans-serif;
  border-top: 1px solid #f3f4f6;
}

.footer-social-bar {
  border-bottom: 1px solid #f3f4f6;
  padding: 30px 0;
}
.social-bar-text {
  font-weight: 500;
  color: #374151;
  font-size: 1.05rem;
}
.social-icons-new {
  display: flex;
  gap: 12px;
}
.social-icons-new a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #333333;
  color: white;
  transition: background 0.3s, transform 0.2s;
}
.social-icons-new a:hover {
  background: var(--primary-red);
  transform: translateY(-2px);
}

.footer-main {
  padding: 70px 0 50px;
}
.footer-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}
.footer-heading-new {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 25px;
}
.footer-links-new {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-links-new a {
  color: #4b5563;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links-new a:hover {
  color: var(--primary-red);
}

.footer-contact-new {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #4b5563;
  font-size: 0.9rem;
}
.footer-contact-new li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom-new {
  border-top: 1px solid #f3f4f6;
  padding: 25px 0;
}
.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #6b7280;
}
.footer-bottom-left {
  display: flex;
  gap: 25px;
}
.footer-bottom-left a {
  color: #6b7280;
  transition: color 0.2s;
}
.footer-bottom-left a:hover {
  color: var(--primary-red);
}
.footer-bottom-right {
  display: flex;
  gap: 25px;
  align-items: center;
}
.footer-bottom-right a {
  color: #6b7280;
  transition: color 0.2s;
}
.footer-bottom-right a:hover {
  color: var(--primary-red);
}

@media (max-width: 1024px) {
  .footer-grid-5 {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .footer-grid-5 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .footer-links-new a, .footer-contact-new li {
    font-size: 0.8rem;
  }
  .footer-heading-new {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  .footer-links-new {
    gap: 12px;
  }
  .footer-bottom-flex {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer-bottom-left, .footer-bottom-right {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ==========================================================================
   MEGA MENU STYLES
   ========================================================================== */
.nav-item-dropdown {
  position: relative;
}
.nav-item-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 900px;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border: 1px solid #E2E8F0;
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
}
.mega-menu-column h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #F1F5F9;
}
.mega-menu-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mega-menu-column li {
  margin-bottom: 10px;
}
.mega-menu-column a {
  font-size: 0.875rem;
  color: #334155;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  display: block;
}
.mega-menu-column a:hover {
  color: var(--primary-blue);
  transform: translateX(3px);
}

/* Industries Mega Menu - Smaller width */
.mega-menu-industries {
  width: 320px;
  grid-template-columns: 1fr;
  left: 0;
  transform: translateY(10px);
}
.nav-item-dropdown:hover .mega-menu-industries {
  transform: translateY(0);
}

/* Global fix for fitting images */
img { max-width: 100%; }
.service-card img, .industry-card img, .blog-card img, .wcu-image-wrapper img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Mobile Navigation Components are hidden on Desktop */
.mobile-menu-toggle,
.mobile-drawer-overlay,
.mobile-drawer {
  display: none;
}


.faq-item-new.active .faq-answer-new { max-height: 1000px !important; }

