/*
Theme Name:   First Class Marketing
Theme URI:    https://firstclassmktg.com
Description:  Custom WordPress theme for First Class Marketing — no Elementor required.
Author:       First Class Marketing
Version:      1.0.0
License:      GNU General Public License v2 or later
Text Domain:  firstclassmktg
*/

/* ============================================================
   FONT AWESOME — override CDN @font-face with local webfonts
============================================================ */
@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url('assets/webfonts/fa-solid-900.woff2') format('woff2');
}
@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('assets/webfonts/fa-regular-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('assets/webfonts/fa-brands-400.woff2') format('woff2');
}

/* ============================================================
   VARIABLES & RESET
============================================================ */
:root {
  --primary: #1273eb;
  --primary-dark: #0d5ec4;
  --primary-light: #4ac4f3;
  --dark: #1d2746;
  --dark-bg: #1b1b1b;
  --text: #666666;
  --white: #ffffff;
  --light: #f8faff;
  --border: #edf2ff;
  --gradient: linear-gradient(135deg, #2d8af7 0%, #1273eb 100%);
  --gradient-bg: linear-gradient(90deg, rgba(237,245,255,1) 0%, rgba(204,223,247,1) 100%);
  --shadow: 0 10px 40px rgba(18,115,235,0.1);
  --shadow-dark: 0 20px 50px rgba(18,115,235,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  color: var(--dark);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 15px;
}

h1 { font-size: clamp(32px, 5vw, 52px); }
h2 { font-size: clamp(26px, 4vw, 38px); }
h3 { font-size: clamp(20px, 3vw, 28px); }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 14px; }

p { color: var(--text); margin: 0 0 15px; line-height: 1.8; }
p:last-child { margin-bottom: 0; }
a { color: var(--dark); text-decoration: none; transition: all 0.3s ease; }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 0; list-style: none; }
input, textarea, select, button { font-family: 'Roboto', sans-serif; }

/* ============================================================
   LAYOUT
============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 70px 0; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 40px;
  border-radius: 8px;
  transition: all 0.35s ease;
  cursor: pointer;
  letter-spacing: 0.4px;
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--gradient);
  background-size: 200%;
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(18,115,235,0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(18,115,235,0.45);
}

.btn-white {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ============================================================
   TOP BAR
============================================================ */
.fcm-topbar {
  background: var(--dark-bg);
  padding: 10px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}
.fcm-topbar a { color: rgba(255,255,255,0.8); }
.fcm-topbar a:hover { color: var(--white); }

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
}
.topbar-item i { color: var(--primary); font-size: 13px; }

.topbar-social {
  display: flex;
  gap: 8px;
  align-items: center;
}
.topbar-social a {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  transition: all 0.3s;
}
.topbar-social a:hover { background: var(--primary); color: var(--white); }

/* ============================================================
   NAVIGATION
============================================================ */
.fcm-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.fcm-navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.12); }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.navbar-logo img { height: 48px; width: auto; }

/* ---- Desktop nav menu (WordPress native classes) ---- */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2px;
  margin: 0;
  padding: 0;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 10px 15px;
  color: var(--dark);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  border-radius: 6px;
  transition: all 0.3s;
  text-decoration: none;
}
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current-menu-ancestor > a,
.nav-menu > li.current-menu-parent > a { color: var(--primary); }

/* Chevron on top-level parent items */
.nav-menu > li.menu-item-has-children > a::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 11px;
  margin-left: 4px;
  opacity: 0.6;
}

/* Hide ALL sub-menus by default — critical */
.nav-menu .sub-menu {
  position: absolute;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.12);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 200;
}

/* Level-1 positioning — top:100% + padding-top keeps hover zone gapless */
.nav-menu > li > .sub-menu {
  top: 100%;
  left: 0;
  min-width: 240px;
  padding-top: 14px;
  transform: translateY(4px);
}

/* Level-2 fly-out positioning — padding-left bridges the gap */
.nav-menu .sub-menu li > .sub-menu {
  top: -10px;
  left: 100%;
  min-width: 220px;
  padding-left: 8px;
  transform: translateX(4px);
}

/* Show on hover or touch */
.nav-menu > li:hover > .sub-menu,
.nav-menu > li > .sub-menu.touch-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-menu .sub-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

/* Sub-menu item styles */
.nav-menu .sub-menu li { position: relative; }
.nav-menu .sub-menu li a {
  display: block;
  padding: 10px 22px;
  color: var(--dark);
  font-size: 14px;
  font-weight: 400;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.nav-menu .sub-menu li a:hover {
  color: var(--primary);
  padding-left: 28px;
  background: #f8fbff;
}

/* Arrow on level-2 parents */
.nav-menu .sub-menu li.menu-item-has-children > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-menu .sub-menu li.menu-item-has-children > a::after {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 11px;
  opacity: 0.5;
  flex-shrink: 0;
  margin-left: 12px;
}

.nav-cta { margin-left: 10px; }
.nav-cta .btn { padding: 11px 26px; font-size: 14px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  border-radius: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s;
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--white);
  z-index: 9999;
  padding: 24px;
  box-shadow: -5px 0 30px rgba(0,0,0,0.15);
  transition: right 0.35s ease;
  overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  display: none;
}
.mobile-overlay.open { display: block; }
.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-top img { height: 38px; }
.mobile-close {
  background: none;
  border: none;
  font-size: 22px;
  color: var(--dark);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--light);
}
/* ---- Mobile menu (WordPress native classes) ---- */
.mobile-menu { list-style: none; padding: 0; margin: 0; }
.mobile-menu li { border-bottom: 1px solid #f0f0f0; position: relative; }
.mobile-menu li li { border-bottom: none; }
.mobile-menu a {
  display: block;
  padding: 13px 0;
  color: var(--dark);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--primary); }
.mobile-menu li.current-menu-item > a,
.mobile-menu li.current-menu-ancestor > a { color: var(--primary); }

/* Parent row: link + toggle button side by side */
.mobile-menu .menu-item-has-children {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.mobile-menu .menu-item-has-children > a { flex: 1; }
.mobile-sub-toggle {
  background: none;
  border: none;
  padding: 0 4px 0 12px;
  cursor: pointer;
  color: var(--text);
  font-size: 13px;
  line-height: 1;
  transition: color 0.2s;
}
.mobile-sub-toggle:hover { color: var(--primary); }
.mobile-sub-toggle i { transition: transform 0.25s; display: block; }

/* Sub-menus hidden by default, full width */
.mobile-menu .sub-menu {
  width: 100%;
  list-style: none;
  padding: 0 0 8px 16px;
  margin: 0;
  display: none;
}
.mobile-menu .sub-menu.open { display: block; }
.mobile-menu .sub-menu a { font-size: 14px; font-weight: 400; color: var(--text); padding: 8px 0; }
.mobile-menu .sub-menu .sub-menu { padding-left: 12px; }
.mobile-menu .sub-menu .sub-menu a { font-size: 13px; padding: 6px 0; }
.mobile-nav-cta { margin-top: 24px; }
.mobile-nav-cta .btn { width: 100%; justify-content: center; }

/* ============================================================
   PAGE HERO / BREADCRUMB (Inner Pages)
============================================================ */
.page-hero {
  background: linear-gradient(135deg, #0a1628 0%, #1d2746 60%, #1a3a6e 100%);
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400"><circle cx="600" cy="200" r="300" fill="rgba(18,115,235,0.07)"/><circle cx="100" cy="300" r="200" fill="rgba(74,196,243,0.05)"/></svg>') no-repeat center/cover;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 14px;
}
.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  max-width: 580px;
  margin-bottom: 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--primary-light); }
.breadcrumb span.sep { font-size: 11px; }
.breadcrumb span.current { color: var(--primary-light); }

/* ============================================================
   SECTION HEADINGS
============================================================ */
.section-heading { margin-bottom: 50px; }
.section-heading.center { text-align: center; }
.section-heading.center p { margin: 0 auto; }

.section-tag {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 6px 16px;
  background: rgba(18,115,235,0.08);
  border-radius: 30px;
  border: 1px solid rgba(18,115,235,0.15);
}

.section-heading h2 { margin-bottom: 16px; }
.section-heading p { font-size: 16px; max-width: 580px; }

/* ============================================================
   HERO SECTION (Homepage)
============================================================ */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #05101f 0%, #1d2746 55%, #1e3d7a 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-bg-shapes span {
  position: absolute;
  border-radius: 50%;
  background: rgba(18,115,235,0.08);
  animation: heroFloat 10s infinite ease-in-out;
}
.hero-bg-shapes span:nth-child(1) { width: 500px; height: 500px; top: -150px; right: -100px; animation-delay: 0s; }
.hero-bg-shapes span:nth-child(2) { width: 300px; height: 300px; bottom: -100px; left: -80px; animation-delay: 3s; background: rgba(74,196,243,0.06); }
.hero-bg-shapes span:nth-child(3) { width: 200px; height: 200px; top: 40%; right: 20%; animation-delay: 6s; }

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-40px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 760px;
  padding: 100px 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--primary-light);
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 26px;
  letter-spacing: -1px;
}
.hero-content h1 span { color: var(--primary-light); }

.hero-content .hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
}

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

.hero-stats-row {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat .number {
  font-size: 34px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat .number span { color: var(--primary-light); }
.hero-stat .label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* ============================================================
   STATS BAND
============================================================ */
.stats-band {
  background: var(--gradient);
  padding: 60px 0;
}
.stats-band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}
.stats-band-grid .divider {
  width: 1px;
  background: rgba(255,255,255,0.2);
  align-self: stretch;
  display: none;
}
.stat-number {
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   INTRO SECTION
============================================================ */
.intro-section { background: var(--white); }
.intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-content .section-tag { display: block; width: fit-content; }
.intro-icon-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 36px;
}
.intro-icon-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dark);
  font-weight: 500;
  font-size: 15px;
}
.intro-icon-item i { color: var(--primary); font-size: 18px; flex-shrink: 0; }

.intro-visual {
  position: relative;
}
.intro-visual-card {
  background: linear-gradient(135deg, #1d2746, #1273eb);
  border-radius: 20px;
  padding: 50px 40px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.intro-visual-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.intro-visual-card .big-stat {
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}
.intro-visual-card .big-stat span { color: var(--primary-light); }
.intro-visual-card p { color: rgba(255,255,255,0.8); margin: 0; font-size: 16px; }

/* ============================================================
   SERVICES GRID
============================================================ */
.services-section { background: var(--light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.35s ease;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-dark); }
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 66px; height: 66px;
  background: linear-gradient(135deg, #e8f0fe, #cce0ff);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
  color: var(--primary);
  transition: all 0.35s;
}
.service-card:hover .service-icon { background: var(--gradient); color: var(--white); }
.service-card h4 { font-size: 18px; margin-bottom: 12px; }
.service-card p { font-size: 14px; line-height: 1.7; margin: 0; }
.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  margin-top: 18px;
}
.service-card .card-link:hover { gap: 10px; }

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why-section {
  background: linear-gradient(135deg, #07111f 0%, #1d2746 100%);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  right: -150px; top: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(18,115,235,0.12) 0%, transparent 65%);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-content .section-tag { color: var(--primary-light); background: rgba(74,196,243,0.1); border-color: rgba(74,196,243,0.2); }
.why-content h2 { color: var(--white); }
.why-content > p { color: rgba(255,255,255,0.7); font-size: 16px; margin-bottom: 36px; }

.why-features { display: grid; gap: 22px; }
.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-feature-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(18,115,235,0.15);
  border: 1px solid rgba(18,115,235,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary-light);
  flex-shrink: 0;
  transition: all 0.3s;
}
.why-feature:hover .why-feature-icon { background: var(--primary); border-color: var(--primary); }
.why-feature h5 { color: var(--white); margin-bottom: 4px; font-size: 16px; }
.why-feature p { color: rgba(255,255,255,0.6); font-size: 14px; margin: 0; }

.why-right { position: relative; z-index: 1; }
.why-highlight-card {
  background: rgba(18,115,235,0.12);
  border: 1px solid rgba(18,115,235,0.25);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
}
.why-highlight-card .giant-number {
  font-size: 80px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.why-highlight-card .giant-number span { color: var(--primary-light); }
.why-highlight-card p { color: rgba(255,255,255,0.7); font-size: 16px; margin: 0 0 30px; }
.why-mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.why-mini-stat .num { font-size: 28px; font-weight: 800; color: var(--primary-light); line-height: 1; }
.why-mini-stat .lbl { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

/* ============================================================
   ABOUT / WHO WE ARE
============================================================ */
.about-section { background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 20px;
}
.about-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--gradient);
  color: var(--white);
  padding: 22px 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(18,115,235,0.35);
}
.about-badge .years { font-size: 44px; font-weight: 900; line-height: 1; }
.about-badge .badge-label { font-size: 12px; font-weight: 600; opacity: 0.9; }

.about-checklist {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 16px;
  margin: 28px 0 36px;
}
.about-checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.about-checklist li i { color: var(--primary); font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.about-checklist li strong { display: block; color: var(--dark); font-size: 15px; margin-bottom: 2px; }
.about-checklist li span { color: var(--text); font-size: 14px; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-section { background: var(--light); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
  transition: all 0.35s ease;
  position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-dark); }
.testimonial-card .stars { color: #f5a623; font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card .quote {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-card .quote::before { content: '\201C'; font-size: 36px; color: var(--primary); opacity: 0.25; line-height: 0; vertical-align: -12px; margin-right: 4px; font-family: Georgia, serif; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}
.author-info .name { font-weight: 700; color: var(--dark); font-size: 15px; margin: 0; line-height: 1.2; }
.author-info .role { color: var(--primary); font-size: 13px; margin: 2px 0 0; }

/* ============================================================
   BLOG SECTION
============================================================ */
.blog-section { background: var(--white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.35s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-dark); }

.blog-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.06); }
.blog-cat {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gradient);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.blog-body { padding: 28px; }
.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: #aaa;
  margin-bottom: 14px;
}
.blog-meta i { color: var(--primary); }
.blog-card h4 { font-size: 17px; line-height: 1.4; margin-bottom: 12px; }
.blog-card h4 a { color: var(--dark); }
.blog-card h4 a:hover { color: var(--primary); }
.blog-card p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.read-more {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
}
.read-more:hover { gap: 10px; }

/* ============================================================
   CTA BANNER
============================================================ */
.cta-banner {
  background: var(--gradient);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 200"><circle cx="200" cy="100" r="200" fill="rgba(255,255,255,0.03)"/><circle cx="1000" cy="50" r="150" fill="rgba(255,255,255,0.03)"/></svg>') no-repeat center/cover;
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 17px; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; position: relative; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ============================================================
   FOOTER
============================================================ */
.fcm-footer {
  background: #0d1425;
  color: rgba(255,255,255,0.65);
}
.footer-main {
  padding: 80px 0 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-logo { height: 64px; width: auto; margin-bottom: 20px; }
.footer-about { font-size: 14px; line-height: 1.8; margin-bottom: 26px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: all 0.3s;
}
.footer-social a:hover { background: var(--primary); color: var(--white); }

.footer-col h5 {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(18,115,235,0.3);
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links li a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links li a::before { content: '\f105'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 11px; color: var(--primary); }
.footer-links li a:hover { color: var(--primary); padding-left: 4px; }

.footer-contact { list-style: none; padding: 0; }
.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  align-items: flex-start;
  line-height: 1.6;
}
.footer-contact li i { color: var(--primary); font-size: 15px; margin-top: 2px; flex-shrink: 0; }
.footer-contact li a { color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.2s; }
.footer-contact li a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.footer-bottom-nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-nav a { color: rgba(255,255,255,0.5); }
.footer-bottom-nav a:hover { color: var(--primary); }

/* ============================================================
   BLOG ARCHIVE PAGE
============================================================ */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Featured Post */
.archive-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  min-height: 420px;
}
.archive-featured-img {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 300px;
  display: block;
}
.archive-featured-img-link {
  position: absolute;
  inset: 0;
}
.archive-featured-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18,115,235,0.25), rgba(7,17,31,0.35));
}
.archive-featured-body {
  background: #fff;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.archive-featured-body h2 {
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.3;
  margin: 0;
}
.archive-featured-body h2 a { color: var(--dark); }
.archive-featured-body h2 a:hover { color: var(--primary); }
.archive-featured-body p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  margin: 0;
}

/* Pagination */
.archive-pagination {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}
.archive-pagination .nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  background: #fff;
  border: 1px solid var(--border);
  transition: all 0.25s ease;
  text-decoration: none;
}
.archive-pagination .page-numbers:hover,
.archive-pagination .page-numbers.current {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.archive-pagination .page-numbers.dots {
  background: transparent;
  border-color: transparent;
  cursor: default;
}
.archive-pagination .page-numbers.prev,
.archive-pagination .page-numbers.next {
  padding: 0 18px;
  gap: 8px;
}

/* Responsive */
@media (max-width: 900px) {
  .archive-featured { grid-template-columns: 1fr; min-height: auto; }
  .archive-featured-img { min-height: 260px; }
  .archive-featured-body { padding: 32px 28px; }
}

/* ============================================================
   SINGLE BLOG POST
============================================================ */
.single-post-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px;
  align-items: start;
}
.post-content { max-width: 100%; }
.post-header { margin-bottom: 32px; }
.post-header .post-cat {
  display: inline-block;
  background: rgba(18,115,235,0.08);
  color: var(--primary);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.post-header h1 { font-size: clamp(24px, 3.5vw, 38px); margin-bottom: 16px; }
.post-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: #aaa;
  flex-wrap: wrap;
}
.post-meta i { color: var(--primary); }
.post-thumb {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 36px;
}
.post-body { font-size: 16px; line-height: 1.85; color: #555; }
.post-body h2, .post-body h3, .post-body h4 { color: var(--dark); margin: 32px 0 16px; }
.post-body p { margin-bottom: 20px; }
.post-body ul, .post-body ol { padding-left: 24px; margin-bottom: 20px; list-style: disc; }
.post-body ul li, .post-body ol li { margin-bottom: 8px; }
.post-body blockquote {
  border-left: 4px solid var(--primary);
  padding: 20px 28px;
  margin: 28px 0;
  background: #f8fbff;
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: var(--dark);
  font-size: 17px;
}

.post-sidebar { position: sticky; top: 100px; }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 24px;
}
.sidebar-widget h4 {
  font-size: 16px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.recent-posts-list { list-style: none; padding: 0; }
.recent-posts-list li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.recent-posts-list li:last-child { border-bottom: none; padding-bottom: 0; }
.recent-posts-list .thumb { width: 60px; height: 60px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.recent-posts-list .thumb img { width: 100%; height: 100%; object-fit: cover; }
.recent-posts-list .info a { color: var(--dark); font-size: 13px; font-weight: 600; line-height: 1.4; display: block; margin-bottom: 4px; }
.recent-posts-list .info a:hover { color: var(--primary); }
.recent-posts-list .info span { font-size: 12px; color: #aaa; }

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-section { background: var(--white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.contact-info-list { list-style: none; padding: 0; margin-bottom: 36px; }
.contact-info-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-info-list .ci-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e8f0fe, #cce0ff);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-info-list .ci-label { font-size: 13px; color: #aaa; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; margin-bottom: 4px; }
.contact-info-list .ci-value { color: var(--dark); font-weight: 600; font-size: 15px; margin: 0; }
.contact-info-list .ci-value a { color: var(--dark); }
.contact-info-list .ci-value a:hover { color: var(--primary); }

.contact-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow);
}
.contact-form-box h3 { margin-bottom: 8px; }
.contact-form-box > p { margin-bottom: 30px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; color: var(--dark); margin-bottom: 7px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #e0e8f5;
  border-radius: 10px;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(18,115,235,0.08); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group.full { grid-column: 1 / -1; }
.form-submit .btn { width: 100%; justify-content: center; }

/* ============================================================
   ABOUT PAGE
============================================================ */
.about-mission { background: var(--light); }
.about-mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.35s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #e8f0fe, #cce0ff);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--primary);
  margin: 0 auto 20px;
  transition: all 0.35s;
}
.value-card:hover .value-icon { background: var(--gradient); color: var(--white); }
.value-card h4 { font-size: 17px; margin-bottom: 10px; }
.value-card p { font-size: 14px; margin: 0; }

/* ============================================================
   INDUSTRY / SERVICE PAGE CONTENT
============================================================ */
.page-content-section { background: var(--white); }
.page-content-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.page-feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 14px;
  margin: 24px 0 32px;
}
.page-feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
}
.page-feature-list li i { color: var(--primary); font-size: 18px; margin-top: 1px; flex-shrink: 0; }
.page-feature-list li strong { color: var(--dark); }

.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 22px;
  transition: all 0.35s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--primary); }
.feature-card .fc-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #e8f0fe, #cce0ff);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 18px;
  transition: all 0.35s;
}
.feature-card:hover .fc-icon { background: var(--gradient); color: var(--white); }
.feature-card h4 { font-size: 16px; margin-bottom: 8px; }
.feature-card p { font-size: 13px; margin: 0; }

.page-visual-card {
  background: linear-gradient(135deg, #1d2746 0%, #1273eb 100%);
  border-radius: 20px;
  padding: 50px 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-visual-card::before {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 250px; height: 250px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.page-visual-card .stat-big { font-size: 64px; font-weight: 900; line-height: 1; color: var(--primary-light); margin-bottom: 8px; }
.page-visual-card h3 { color: var(--white); margin-bottom: 14px; }
.page-visual-card p { color: rgba(255,255,255,0.75); margin-bottom: 28px; }
.page-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.page-stat-item .ps-num { font-size: 28px; font-weight: 800; color: var(--white); line-height: 1; }
.page-stat-item .ps-lbl { font-size: 12px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

/* Steps / Process */
.steps-section { background: var(--light); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-item {
  background: var(--white);
  border-radius: 14px;
  padding: 32px 24px;
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  transition: all 0.35s;
}
.step-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-number {
  width: 48px; height: 48px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 18px;
}
.step-item h4 { font-size: 16px; margin-bottom: 10px; }
.step-item p { font-size: 14px; margin: 0; }

/* ============================================================
   ANIMATIONS / UTILS
============================================================ */
.text-primary { color: var(--primary) !important; }
.text-white { color: var(--white) !important; }
.text-dark { color: var(--dark) !important; }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-stats-row { flex-wrap: wrap; gap: 28px; }
  .intro-inner, .why-inner, .about-inner, .contact-inner, .page-content-inner, .about-mission-inner { grid-template-columns: 1fr; gap: 50px; }
  .about-badge { right: 20px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid, .archive-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-main > *:first-child { grid-column: 1 / -1; }
  .single-post-wrap { grid-template-columns: 1fr; }
  .why-highlight-card .giant-number { font-size: 60px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .topbar-left { display: none; }
  .topbar-right { margin: 0 auto; }
  .section-padding { padding: 70px 0; }
  .hero-content { padding: 80px 0; }
  .page-hero { padding: 60px 0 48px; }
  .cta-banner { padding: 60px 0; }
  .stats-band-grid { grid-template-columns: 1fr; text-align: center; }
  .testimonials-grid, .blog-grid, .archive-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .footer-main { grid-template-columns: 1fr; padding: 60px 0 40px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .about-values-grid { grid-template-columns: 1fr; }
  .feature-cards-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .contact-form-box { padding: 30px 22px; }
}

@media (max-width: 480px) {
  .topbar { display: none; }
  .hero-content h1 { font-size: 34px; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

/* ============================================================
   INDUSTRY HUB PAGE
============================================================ */
.industry-hub-group {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
}
.industry-hub-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 32px;
  background: #f8faff;
  border-bottom: 1px solid #e2e8f0;
}
.industry-hub-header .fc-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: linear-gradient(135deg,#e8f0fe,#cce0ff);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--primary);
}
.industry-hub-header h3 { font-size: 20px; margin: 0 0 4px; }
.industry-hub-header h3 a { color: var(--dark); text-decoration: none; }
.industry-hub-header h3 a:hover { color: var(--primary); }
.industry-hub-header p { margin: 0; color: #666; font-size: 14px; }
.industry-hub-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 20px 28px;
}
.industry-hub-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  border-radius: 8px;
  transition: background .2s, color .2s;
}
.industry-hub-links a:hover { background: #e8f0fe; color: var(--primary); }
.industry-hub-links a i { color: var(--primary); font-size: 13px; }
@media (max-width: 768px) {
  .industry-hub-header { padding: 20px; }
  .industry-hub-links { padding: 12px 14px; }
  .industry-hub-links a { padding: 9px 12px; font-size: 13px; }
}

/* ============================================================
   SKIP TO CONTENT
============================================================ */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 99999;
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 0 0 6px 0;
  text-decoration: none;
  transition: top .2s ease;
}
.skip-to-content:focus {
  top: 0;
}

/* ============================================================
   BACK TO TOP
============================================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease, background .2s ease;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  box-shadow: 0 4px 20px rgba(18,115,235,.4);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-4px);
}
@media (max-width: 768px) {
  .back-to-top { bottom: 20px; right: 20px; width: 44px; height: 44px; font-size: 15px; }
}

/* ============================================================
   404 PAGE
============================================================ */
.error-404-number {
  font-size: 140px;
  font-weight: 900;
  line-height: 1;
  color: rgba(18,115,235,0.25);
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .error-404-number { font-size: 80px; }
}

/* ============================================================
   PRIVACY / LEGAL PAGE TABLES
============================================================ */
.page-content-inner table th,
.page-content-inner table td {
  font-size: 14px;
  line-height: 1.6;
}
.page-content-inner h2 {
  color: var(--dark);
}
.page-content-inner h3 {
  color: var(--dark);
}

/* ============================================================
   UI / UX UPGRADES
============================================================ */

/* --- Scroll progress bar --- */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #1273eb, #00d4ff);
  z-index: 100002;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* --- Page load fade-in removed (caused white screen if JS delayed) --- */

/* --- Button shimmer sweep on hover --- */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}
.btn-primary:hover::before { left: 160%; }

/* --- Feature card bottom accent on hover --- */
.feature-card {
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient);
  transition: width 0.35s ease;
}
.feature-card:hover::after { width: 100%; }

/* --- fc-icon scale on card hover --- */
.feature-card:hover .fc-icon,
.service-card:hover .service-icon {
  transform: scale(1.08) rotate(-3deg);
}
.fc-icon, .service-icon { transition: all 0.35s ease; }

/* --- Floating animation for visual/stat cards --- */
@keyframes fcm-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
.intro-visual-card,
.why-highlight-card,
.page-visual-card {
  animation: fcm-float 5s ease-in-out infinite;
}

/* --- Testimonials carousel --- */
.testimonials-track-wrap {
  overflow: hidden;
  position: relative;
}
.testimonials-grid {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.testimonials-grid .testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
}

/* Carousel dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d0dae8;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s, width 0.25s;
}
.carousel-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* Carousel prev/next arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--dark);
  transition: all 0.25s;
  z-index: 2;
}
.carousel-arrow:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.carousel-prev { left: -20px; }
.carousel-next { right: -20px; }

@media (max-width: 1024px) {
  .testimonials-grid .testimonial-card { flex: 0 0 calc(50% - 12px); }
  .carousel-prev { left: 0; }
  .carousel-next { right: 0; }
}
@media (max-width: 640px) {
  .testimonials-grid .testimonial-card { flex: 0 0 100%; }
}

/* --- Active nav dot indicator --- */
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current-menu-ancestor > a {
  background: rgba(18,115,235,0.07);
  border-radius: 6px;
}

/* --- Improved mobile overlay transition --- */
.mobile-overlay {
  transition: opacity 0.3s ease;
  opacity: 0;
}
.mobile-overlay.open { opacity: 1; }

/* --- Blog card image zoom improvement --- */
.blog-thumb img { transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.blog-card:hover .blog-thumb img { transform: scale(1.07); }

/* --- Read more arrow slide --- */
.read-more i,
.card-link i {
  transition: transform 0.25s ease;
}
.read-more:hover i,
.card-link:hover i {
  transform: translateX(4px);
}

/* --- Section tag pulse on first view --- */
@keyframes fcm-tag-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal.visible .section-tag {
  animation: fcm-tag-in 0.45s ease forwards;
}

/* --- Smooth input focus across all forms --- */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(18,115,235,0.12) !important;
  background: #fff !important;
}
