/* =========================================================
   Swami Samarth Enterprises — Design System
   Premium Corporate / Modern Logistics
   ========================================================= */

:root {
  --primary: #0A3D91;
  --primary-rgb: 10, 61, 145;
  --navy: #0B2C6A;
  --light-blue: #DCEAFF;
  --bg: #F7F9FC;
  --white: #FFFFFF;
  --text: #1F2937;
  --text-secondary: #4B5563;
  --gold: #C9A227;

  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 4px 16px rgba(11, 44, 106, 0.06);
  --shadow-md: 0 12px 32px rgba(11, 44, 106, 0.10);
  --shadow-lg: 0 24px 60px rgba(11, 44, 106, 0.16);

  --container-max: 1280px;
  --section-pad: 84px;
  --section-pad-mobile: 48px;

  --transition: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ---------- Reset & base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  margin: 0;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  margin: 0 0 16px;
  line-height: 1.25;
}
h1 { font-size: 58px; font-weight: 800; }
h2 { font-size: 44px; font-weight: 700; }
h3 { font-size: 30px; font-weight: 600; }
h4 { font-size: 24px; font-weight: 600; }
p { font-size: 17px; color: var(--text-secondary); margin: 0 0 16px; }
small, .text-small { font-size: 15px; }
.nav-text { font-size: 16px; font-weight: 500; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}
.section-title { max-width: 720px; margin-bottom: 42px; }
.section-title.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title p { font-size: 18px; }

@media (max-width: 991px) {
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  h3 { font-size: 24px; }
  h4 { font-size: 20px; }
  :root { --section-pad: var(--section-pad-mobile); }
}
@media (max-width: 575px) {
  h1 { font-size: 34px; }
  h2 { font-size: 27px; }
}

/* ---------- Buttons ---------- */
.btn-primary-ss, .btn-outline-ss, .btn-white-ss {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 34px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary-ss {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(var(--primary-rgb), 0.28);
}
.btn-primary-ss:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(var(--primary-rgb), 0.35);
}
.btn-outline-ss {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-ss:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}
.btn-white-ss {
  background: var(--white);
  color: var(--primary);
}
.btn-white-ss:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}
.btn-sm-ss { padding: 12px 24px; font-size: 15px; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.site-header.transparent {
  background: linear-gradient(to bottom, rgba(5,17,42,0.55) 0%, rgba(5,17,42,0.28) 65%, rgba(5,17,42,0) 100%);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 36px rgba(11, 44, 106, 0.14);
  padding: 12px 0;
}
.header-topbar {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  font-size: 14px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  transition: opacity var(--transition), max-height var(--transition);
}
.site-header.scrolled .header-topbar { opacity: 0; max-height: 0; overflow: hidden; padding: 0; margin: 0; border: 0; }
.header-topbar a, .header-topbar span { color: inherit; display: inline-flex; align-items: center; gap: 6px; }
.site-header:not(.scrolled) .header-topbar a { color: var(--white); }

.site-header .container { max-width: 1360px; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: nowrap; }
.brand-logo { display: inline-flex; align-items: center; gap: 12px; }
.logo-badge {
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  border-radius: 50%;
  padding: 14px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), padding var(--transition);
  flex-shrink: 0;
}
.logo-badge img { height: 90px; width: 90px; object-fit: contain; object-position: center; display: block; transition: height var(--transition), width var(--transition); }
.brand-logo .brand-text { line-height: 1.2; }
.brand-logo .brand-text strong { display: block; font-family: var(--font-heading); font-size: 15px; color: var(--navy); font-weight: 700; letter-spacing: 0.02em; }
.brand-logo .brand-text span { display: block; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); font-weight: 600; }
.site-header.scrolled .logo-badge { padding: 11px; }
.site-header.scrolled .logo-badge img { height: 70px; width: 70px; }
@media (max-width: 767px) { .logo-badge { padding: 12px; } .logo-badge img { height: 73px; width: 73px; } }
@media (max-width: 420px) { .brand-logo .brand-text { display: none; } .logo-badge { padding: 10px; } .logo-badge img { height: 64px; width: 64px; } }
.footer-logo-link { display: inline-flex; margin-bottom: 22px; }
.logo-badge-footer { padding: 13px; }
.logo-badge-footer img { height: 80px; width: 80px; }
.mobile-logo-link { display: inline-flex; }
.logo-badge-mobile { padding: 9px; }
.logo-badge-mobile img { height: 54px; width: 54px; }

.main-nav { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.main-nav > ul { display: flex; align-items: center; gap: 0; flex-wrap: nowrap; }
.main-nav > ul > li { position: relative; flex-shrink: 0; }
.main-nav > ul > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 15px;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
@media (max-width: 1400px) {
  .main-nav > ul > li > a { padding: 12px 11px; font-size: 14.5px; }
}
.site-header.scrolled .main-nav > ul > li > a { color: var(--navy); }
.main-nav > ul > li > a:hover, .main-nav > ul > li.active > a { color: var(--gold); }
.site-header.scrolled .main-nav > ul > li > a:hover { background: var(--light-blue); color: var(--primary); }
.main-nav .fa-chevron-down { font-size: 11px; transition: transform var(--transition); }
.main-nav li:hover > a .fa-chevron-down { transform: rotate(180deg); }

.dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 300px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  z-index: 20;
}
.main-nav li:hover > .dropdown-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-panel a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.dropdown-panel a i { color: var(--primary); font-size: 15px; width: 20px; text-align: center; }
.dropdown-panel a:hover { background: var(--light-blue); color: var(--primary); padding-left: 18px; }

/* Services mega menu (2-column) */
.dropdown-panel.mega-menu {
  min-width: 600px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 8px;
  padding: 22px;
}
.mega-menu .mega-col { display: flex; flex-direction: column; }
.mega-menu .mega-col + .mega-col { border-left: 1px solid #EEF1F6; padding-left: 22px; }
.mega-menu .mega-col-title {
  font-family: var(--font-heading); font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold);
  margin: 2px 0 10px; padding: 0 14px;
}
@media (max-width: 1300px) { .dropdown-panel.mega-menu { min-width: 520px; } }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-quote-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--navy));
  color: var(--white) !important;
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(var(--primary-rgb), 0.35);
  transition: all var(--transition);
  overflow: hidden;
  isolation: isolate;
}
.header-quote-btn::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f1d8";
  font-size: 13px;
}
.header-quote-btn::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.35) 48%, transparent 66%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  z-index: -1;
}
.header-quote-btn:hover { background: linear-gradient(135deg, var(--navy), var(--primary)); color: var(--white) !important; transform: translateY(-3px); box-shadow: 0 16px 32px rgba(var(--primary-rgb), 0.42); }
.header-quote-btn:hover::after { transform: translateX(120%); }

.mobile-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 20px;
  border: none;
}
.site-header.scrolled .mobile-toggle { background: var(--light-blue); color: var(--primary); }

@media (max-width: 1310px) {
  .main-nav, .header-cta .header-quote-btn { display: none; }
  .mobile-toggle { display: flex; }
  .header-topbar { display: none; }
}

/* Mobile menu drawer */
.mobile-drawer {
  position: fixed; top: 0; right: -100%; width: min(360px, 88vw); height: 100%;
  background: var(--white); z-index: 1200; padding: 28px 24px; overflow-y: auto;
  box-shadow: -20px 0 60px rgba(0,0,0,0.2);
  transition: right 0.4s cubic-bezier(0.25,0.8,0.25,1);
}
.mobile-drawer.open { right: 0; }
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(11,44,106,0.55); z-index: 1150;
  opacity: 0; visibility: hidden; transition: opacity var(--transition);
}
.mobile-overlay.open { opacity: 1; visibility: visible; }
.mobile-drawer-close { width: 40px; height: 40px; border-radius: 50%; background: var(--bg); border: none; font-size: 18px; color: var(--navy); }
.mobile-drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.mobile-nav > li { border-bottom: 1px solid #EEF1F6; }
.mobile-nav > li > a, .mobile-nav .mobile-sub-toggle {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 4px; font-size: 16px; font-weight: 600; color: var(--navy);
}
.mobile-submenu { max-height: 0; overflow: hidden; transition: max-height var(--transition); }
.mobile-submenu.open { max-height: 800px; }
.mobile-submenu a { display: block; padding: 10px 4px 10px 16px; font-size: 15px; color: var(--text-secondary); }
.mobile-nav .mobile-sub-toggle i { transition: transform var(--transition); font-size: 13px; }
.mobile-nav li.open .mobile-sub-toggle i { transform: rotate(180deg); }
.mobile-drawer .header-quote-btn { display: flex; justify-content: center; margin-top: 24px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 90px;
  background: linear-gradient(155deg, var(--navy) 0%, var(--primary) 55%, #124fb0 100%);
  overflow: hidden;
  color: var(--white);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 15% 20%, rgba(255,255,255,0.10) 0, transparent 45%),
                     radial-gradient(circle at 85% 80%, rgba(255,255,255,0.08) 0, transparent 40%);
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
}
.hero-content { position: relative; z-index: 2; max-width: 720px; margin-top: 130px; }
.hero .eyebrow { color: var(--gold); }
.hero .eyebrow::before { background: var(--white); }
.hero h1 { color: var(--white); font-size: 58px; text-shadow: 0 2px 18px rgba(0,0,0,0.38); }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-sub { font-size: 19px; color: rgba(255,255,255,0.92); max-width: 560px; margin-bottom: 34px; text-shadow: 0 1px 10px rgba(0,0,0,0.32); }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 44px; margin-top: 64px; flex-wrap: wrap; }
.hero-stats .stat-num { font-family: var(--font-heading); font-size: 36px; font-weight: 800; color: var(--white); }
.hero-stats .stat-label { font-size: 14px; color: rgba(255,255,255,0.75); }
@media (max-width: 991px) { .hero-content { margin-top: 100px; } }
@media (max-width: 767px) { .hero-content { margin-top: 80px; } }
@media (max-width: 575px) { .hero-content { margin-top: 64px; } }

/* Hero image slider */
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slider, .hero-slider .swiper-wrapper, .hero-slider .swiper-slide { height: 100%; }
.hero-slide { position: relative; overflow: hidden; }
.hero-slide-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transform: scale(1);
  animation: heroKenBurns 7s ease-in-out forwards;
}
.swiper-slide-active .hero-slide-img { animation: heroKenBurns 7s ease-in-out forwards; }
@keyframes heroKenBurns { from { transform: scale(1); } to { transform: scale(1.09); } }
.hero-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(7,26,64,.86) 0%, rgba(9,37,88,.68) 32%, rgba(11,44,106,.40) 55%, rgba(11,44,106,.22) 75%, rgba(11,44,106,.16) 100%);
}
@media (max-width: 767px) {
  .hero-slide-overlay { background: linear-gradient(180deg, rgba(7,26,64,.70) 0%, rgba(9,37,88,.62) 45%, rgba(11,44,106,.55) 100%); }
}
.hero-slider .swiper-pagination { bottom: 34px !important; display: flex; justify-content: center; gap: 8px; }
.hero-slider .swiper-pagination-bullet {
  background: #fff; opacity: .5; width: 9px; height: 9px; margin: 0 !important; transition: all var(--transition);
}
.hero-slider .swiper-pagination-bullet-active { opacity: 1; background: var(--gold); width: 26px; border-radius: 5px; }
.hero-slider .swiper-button-next, .hero-slider .swiper-button-prev {
  width: 52px; height: 52px; color: var(--white);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition);
}
.hero-slider .swiper-button-next:hover, .hero-slider .swiper-button-prev:hover { background: rgba(255,255,255,0.25); }
.hero-slider .swiper-button-next::after, .hero-slider .swiper-button-prev::after { font-size: 17px; font-weight: 700; }
@media (max-width: 767px) {
  .hero-slider .swiper-button-next, .hero-slider .swiper-button-prev { display: none; }
}

.wave-divider { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; z-index: 3; }
.wave-divider svg { width: 100%; height: 90px; display: block; }

/* Page (interior) hero — smaller, for subpages */
.page-hero {
  position: relative;
  padding: 200px 0 100px;
  background: linear-gradient(155deg, var(--navy) 0%, var(--primary) 100%);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08) 0, transparent 45%);
}
.page-hero h1 { color: var(--white); font-size: 46px; position: relative; z-index: 2; }
.breadcrumb-ss { position: relative; z-index: 2; display: flex; justify-content: center; gap: 10px; font-size: 15px; color: rgba(255,255,255,0.75); margin-top: 12px; }
.breadcrumb-ss a { color: rgba(255,255,255,0.9); font-weight: 500; }
.breadcrumb-ss a:hover { color: var(--gold); }
@media (max-width: 767px) { .page-hero { padding: 160px 0 70px; } .page-hero h1 { font-size: 32px; } }

/* =========================================================
   SECTIONS / LAYOUT
   ========================================================= */
.section { padding: var(--section-pad) 0; }
.section-tight { padding: 54px 0; }
.bg-light { background: var(--bg); }
.bg-navy { background: linear-gradient(155deg, var(--navy), var(--primary)); color: var(--white); }
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }
.bg-navy p { color: rgba(255,255,255,0.8); }

/* Cards */
.card-ss {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(11,44,106,0.06);
}
.card-ss:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.glass-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 36px;
}

/* Service cards */
.service-card {
  position: relative;
  padding: 44px 30px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
  border-top: 3px solid transparent;
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-top-color: var(--gold); }
.service-card .icon-wrap {
  width: 68px; height: 68px;
  border-radius: var(--radius-md);
  background: var(--light-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--primary);
  margin-bottom: 24px;
  transition: all var(--transition);
}
.service-card:hover .icon-wrap { background: var(--primary); color: var(--white); transform: rotate(-8deg) scale(1.08); }
.icon-wrap.icon-photo { background: transparent; box-shadow: var(--shadow-sm); overflow: hidden; }
.icon-wrap.icon-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-md); transition: transform var(--transition); }
.service-card:hover .icon-wrap.icon-photo { background: transparent; transform: translateY(-4px); }
.service-card:hover .icon-wrap.icon-photo img { transform: scale(1.14); }
.feature-item:hover .icon-wrap.icon-photo img { transform: scale(1.14); }
.service-card h3 { font-size: 22px; margin-bottom: 12px; }
.service-card p { margin-bottom: 18px; }
.service-card .card-link { font-size: 15px; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 8px; }
.service-card .card-link i { transition: transform var(--transition); }
.service-card:hover .card-link i { transform: translateX(5px); }
.service-card .serial { position: absolute; top: 30px; right: 30px; font-family: var(--font-heading); font-size: 30px; font-weight: 700; color: var(--light-blue); }

/* Solution cards */
.solution-card { display: flex; gap: 22px; padding: 32px; border-radius: var(--radius-lg); background: var(--bg); transition: all var(--transition); height: 100%; }
.solution-card:hover { background: var(--white); box-shadow: var(--shadow-md); transform: translateY(-6px); }
.solution-card .num { font-family: var(--font-heading); font-size: 26px; font-weight: 800; color: var(--light-blue); flex-shrink: 0; }

/* Stats / counters */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat-item { text-align: center; }
.stat-item .stat-num { font-family: var(--font-heading); font-size: 46px; font-weight: 800; color: var(--primary); }
.bg-navy .stat-item .stat-num { color: var(--white); }
.stat-item .stat-label { font-size: 15px; color: var(--text-secondary); font-weight: 500; }
.bg-navy .stat-item .stat-label { color: rgba(255,255,255,0.75); }
@media (max-width: 767px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }

/* Why choose us feature */
.feature-item { display: flex; gap: 18px; padding: 26px; border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); height: 100%; transition: all var(--transition); }
.feature-item:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.feature-item .icon-wrap { width: 54px; height: 54px; border-radius: 50%; background: var(--light-blue); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.feature-item h4 { margin-bottom: 6px; font-size: 19px; }
.feature-item p { margin: 0; font-size: 15px; }

/* Why choose us — premium image-card variant (homepage) */
.feature-card-img { flex-direction: column; padding: 0; overflow: hidden; }
.feature-card-img .icon-wrap.icon-photo { width: 100%; height: 190px; border-radius: 0; box-shadow: none; }
.feature-card-img .icon-wrap.icon-photo img { height: 190px; border-radius: 0; }
.feature-card-img:hover .icon-wrap.icon-photo { transform: none; }
.feature-card-img > div:last-child { padding: 26px 26px 30px; }
.feature-card-img h4 { display: flex; align-items: center; gap: 10px; }
.feature-card-img h4::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* Trust badge strip */
.trust-badge-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.trust-badge {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 26px;
  border-radius: var(--radius-pill);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11,44,106,0.06);
  transition: all var(--transition);
}
.trust-badge:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.trust-badge .trust-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--light-blue); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
  transition: all var(--transition);
}
.trust-badge:hover .trust-icon { background: var(--primary); color: var(--white); }
.trust-badge span { font-size: 14.5px; font-weight: 600; color: var(--navy); white-space: nowrap; }

/* Clients marquee */
.clients-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.clients-track { display: flex; gap: 20px; width: max-content; animation: clientsMarquee 34s linear infinite; }
.clients-marquee:hover .clients-track { animation-play-state: paused; }
@keyframes clientsMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.clients-marquee .client-badge { flex: 0 0 210px; filter: grayscale(1); opacity: 0.62; }
.clients-marquee .client-badge:hover { filter: grayscale(0); opacity: 1; }
@media (max-width: 767px) { .clients-marquee .client-badge { flex-basis: 170px; } }

/* Timeline (About) */
.timeline { position: relative; padding-left: 40px; border-left: 3px solid var(--light-blue); }
.timeline-item { position: relative; padding-bottom: 44px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { content: ''; position: absolute; left: -49px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--primary); border: 4px solid var(--light-blue); }
.timeline-item h4 { margin-bottom: 8px; }

/* Testimonials */
.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(11,44,106,0.08);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  padding: 40px 48px; position: relative; height: 100%;
  min-height: 260px;
  transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testimonial-card .quote-icon { font-size: 36px; color: var(--light-blue); margin-bottom: 10px; }
.testimonial-stars { color: var(--gold); font-size: 14px; letter-spacing: 3px; margin-bottom: 14px; }
.testimonial-card p { font-size: 17px; color: var(--text); font-style: italic; margin-bottom: 22px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author .avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--primary); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; font-size: 18px; flex-shrink: 0; }
.testimonial-author strong { display: block; color: var(--navy); }
.testimonial-author span { font-size: 14px; color: var(--text-secondary); }
.testimonial-swiper { max-width: 1040px; margin-left: auto; margin-right: auto; padding: 6px 64px 56px !important; transition: transform var(--transition); }
.testimonial-swiper .swiper-wrapper { align-items: stretch; transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1) !important; }
.testimonial-swiper .swiper-slide { height: auto; }
.testimonial-swiper .testimonial-card { height: 100%; display: flex; flex-direction: column; justify-content: center; }
.testimonial-swiper .testimonial-card p { flex-grow: 1; }
.testimonial-swiper .swiper-pagination-bullet { background: var(--primary); opacity: .3; width: 9px; height: 9px; }
.testimonial-swiper .swiper-pagination-bullet-active { opacity: 1; background: var(--gold); width: 24px; border-radius: 5px; }
.testimonial-swiper .swiper-button-next, .testimonial-swiper .swiper-button-prev {
  width: 48px; height: 48px; color: var(--primary);
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  top: 45%;
}
.testimonial-swiper .swiper-button-next:hover, .testimonial-swiper .swiper-button-prev:hover { background: var(--primary); color: var(--white); }
.testimonial-swiper .swiper-button-next::after, .testimonial-swiper .swiper-button-prev::after { font-size: 15px; font-weight: 700; }
.testimonial-swiper .swiper-button-prev { left: 4px; }
.testimonial-swiper .swiper-button-next { right: 4px; }
@media (max-width: 767px) {
  .testimonial-swiper { padding: 6px 44px 56px !important; }
  .testimonial-swiper .swiper-button-next, .testimonial-swiper .swiper-button-prev { width: 38px; height: 38px; }
  .testimonial-swiper .swiper-button-next::after, .testimonial-swiper .swiper-button-prev::after { font-size: 12px; }
}

/* Client grid */
.client-badge {
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 22px 14px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid #EEF1F6;
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  min-height: 92px;
  transition: all var(--transition);
}
.client-badge:hover { background: var(--primary); color: var(--white); transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }

/* Client category header (Clients page) */
.client-category-head { max-width: 720px; margin: 0 auto 42px; text-align: center; }
.client-category-head .eyebrow { justify-content: center; }
.client-category-head p { margin: 0 auto; }
.client-subgroup-head { text-align: center; margin: 8px 0 32px; }
.client-subgroup-head h3 { font-size: 24px; margin-bottom: 6px; }
.client-subgroup-head span { font-size: 14px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-secondary); }

/* Featured client cards */
.client-card-featured {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 40px 24px;
  height: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11,44,106,0.06);
  border-top: 3px solid transparent;
  transition: all var(--transition);
}
.client-card-featured:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--gold);
}
.client-card-featured .client-mark {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--light-blue);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 18px;
  letter-spacing: 0.02em;
  transition: all var(--transition);
}
.client-card-featured:hover .client-mark { background: var(--primary); color: var(--white); transform: scale(1.08); }
.client-card-featured .client-name { font-family: var(--font-heading); font-weight: 700; font-size: 15.5px; color: var(--navy); line-height: 1.4; }
.client-card-featured .client-tag { font-size: 11.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }

/* Compact client cards ("More Clients") */
.client-card-compact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 16px;
  height: 100%;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid #EEF1F6;
  transition: all var(--transition);
}
.client-card-compact:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.client-card-compact .client-mark-sm {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--light-blue);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 12.5px;
  flex-shrink: 0;
  transition: all var(--transition);
}
.client-card-compact:hover .client-mark-sm { background: var(--primary); color: var(--white); }
.client-card-compact span { font-size: 13.5px; font-weight: 600; color: var(--navy); line-height: 1.35; }

/* International client cards */
.client-card-intl {
  position: relative;
  padding: 40px 28px;
  height: 100%;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid transparent;
  transition: all var(--transition);
}
.client-card-intl:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-top-color: var(--gold); }
.client-card-intl .intl-badge {
  position: absolute; top: 20px; right: 20px;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--light-blue); color: var(--primary);
  font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 6px 13px; border-radius: var(--radius-pill);
}
.client-card-intl .client-mark {
  width: 62px; height: 62px; margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--light-blue); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  transition: all var(--transition);
}
.client-card-intl:hover .client-mark { background: var(--primary); color: var(--white); }
.client-card-intl .client-name { font-family: var(--font-heading); font-weight: 700; font-size: 17px; color: var(--navy); margin-bottom: 6px; }
.client-card-intl .client-country { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; color: var(--text-secondary); font-weight: 500; }
.client-card-intl .client-country i { color: var(--gold); }

/* Certifications strip */
.cert-strip { display: flex; flex-wrap: wrap; gap: 14px; }
.cert-pill { display: inline-flex; align-items: center; gap: 10px; padding: 12px 22px; border-radius: var(--radius-pill); background: var(--light-blue); color: var(--primary); font-size: 14px; font-weight: 600; }
.cert-pill i { font-size: 16px; }

/* FAQ Accordion */
.accordion-ss .accordion-item { border: none; border-radius: var(--radius-md) !important; overflow: hidden; margin-bottom: 16px; box-shadow: var(--shadow-sm); }
.accordion-ss .accordion-button { font-family: var(--font-body); font-weight: 600; font-size: 17px; color: var(--navy); padding: 22px 26px; }
.accordion-ss .accordion-button:not(.collapsed) { background: var(--light-blue); color: var(--primary); box-shadow: none; }
.accordion-ss .accordion-button:focus { box-shadow: none; }
.accordion-ss .accordion-body { padding: 4px 26px 26px; color: var(--text-secondary); }

/* Country / gateway grid */
.country-card { text-align: center; border-radius: var(--radius-md); overflow: hidden; background: var(--white); box-shadow: var(--shadow-sm); transition: all var(--transition); }
.country-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.country-card img { height: 110px; object-fit: cover; width: 100%; }
.country-card .name { padding: 14px 8px; font-weight: 600; font-size: 15px; color: var(--navy); }

/* CTA band */
.cta-band { position: relative; border-radius: var(--radius-lg); overflow: hidden; padding: 64px 56px; background: linear-gradient(120deg, var(--navy), var(--primary)); color: var(--white); }
.cta-band h3 { color: var(--white); font-size: 32px; margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,0.82); margin-bottom: 0; }
@media (max-width: 767px) { .cta-band { padding: 44px 26px; text-align: center; } .cta-band .row { text-align: center; } .cta-band .justify-content-end { justify-content: center !important; margin-top: 22px; } }

/* Newsletter */
.newsletter-form { display: flex; gap: 10px; max-width: 480px; }
.newsletter-form input { flex: 1; border-radius: var(--radius-pill); border: none; padding: 15px 22px; font-size: 15px; }
.newsletter-form input:focus { outline: 2px solid var(--gold); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.78); padding-top: 66px; }
.site-footer h5 { color: var(--white); font-family: var(--font-heading); font-size: 19px; margin-bottom: 20px; letter-spacing: 0.01em; }
.site-footer a { color: rgba(255,255,255,0.72); }
.site-footer a:hover { color: var(--gold); }
.site-footer .footer-about { max-width: 560px; }
.site-footer .footer-about p { color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 14px; }
.site-footer .footer-about p:last-child { margin-bottom: 0; }
@media (max-width: 767px) { .site-footer .footer-about { max-width: 100%; } }
.footer-links li { margin-bottom: 11px; font-size: 15px; }
.footer-links li a { display: flex; align-items: center; gap: 8px; transition: transform var(--transition), color var(--transition); }
.footer-links li a:hover { transform: translateX(4px); }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 15px; font-size: 15px; line-height: 1.5; }
.footer-contact i { color: var(--gold); margin-top: 4px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.footer-social a:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }
.footer-extra { margin-top: 56px; padding-top: 44px; border-top: 1px solid rgba(255,255,255,0.12); }
.footer-extra h5 { font-size: 17px; margin-bottom: 18px; }
.footer-extra .cert-strip .cert-pill { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.88); }
.footer-extra .cert-strip .cert-pill:hover { background: var(--gold); color: var(--navy); }
.footer-map { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid rgba(255,255,255,0.12); height: 190px; }
.footer-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) contrast(1.05); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 44px; padding: 26px 0; display: flex; justify-content: center; text-align: center; flex-wrap: wrap; gap: 12px; font-size: 14px; }

/* Floating CTA group: Call / WhatsApp / Back-to-top, stacked bottom-right */
.floating-cta-group {
  position: fixed; right: 26px; bottom: 26px; z-index: 900;
  display: flex; flex-direction: column; gap: 14px; align-items: center;
}
.floating-cta-group > a, .floating-cta-group > button {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
  position: static;
  opacity: 1; visibility: visible; transform: none;
  transition: all var(--transition);
}
.floating-cta-group > a:hover, .floating-cta-group > button:hover { transform: translateY(-4px) scale(1.06); }

.call-float {
  background: linear-gradient(155deg, var(--navy), var(--primary));
  background-image: linear-gradient(155deg, rgba(255,255,255,0.22), rgba(255,255,255,0) 50%), linear-gradient(155deg, var(--navy), var(--primary));
}

.whatsapp-float {
  background-image: linear-gradient(155deg, rgba(255,255,255,0.28), rgba(255,255,255,0) 50%), linear-gradient(155deg, #2be27a, #1fa855);
  animation: pulse-wa 2.4s infinite;
}
@keyframes pulse-wa { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5);} 70% { box-shadow: 0 0 0 14px rgba(37,211,102,0);} 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0);} }

.back-to-top {
  background-image: linear-gradient(155deg, rgba(255,255,255,0.22), rgba(255,255,255,0) 50%), linear-gradient(155deg, var(--navy), var(--primary));
  font-size: 18px;
  opacity: 0; visibility: hidden; height: 0; width: 0; margin-top: -14px;
  overflow: hidden;
}
.back-to-top.show { opacity: 1; visibility: visible; height: 56px; width: 56px; margin-top: 0; }

@media (max-width: 575px) {
  .floating-cta-group { right: 16px; bottom: 16px; gap: 10px; }
  .floating-cta-group > a, .floating-cta-group > button { width: 48px; height: 48px; font-size: 19px; }
  .back-to-top.show { width: 48px; height: 48px; }
}

/* Utility */
.text-primary-ss { color: var(--primary) !important; }
.text-gold { color: var(--gold) !important; }
.bg-white-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.shape-blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.5; z-index: 0; }
.overflow-hidden-x { overflow-x: hidden; }
.gap-ss { gap: 24px; }
hr.divider { border: none; height: 1px; background: #EEF1F6; margin: 40px 0; }

.img-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); height: 450px; transition: box-shadow var(--transition); }
.img-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform var(--transition); }
.img-frame:hover { box-shadow: var(--shadow-lg); }
.img-frame:hover img { transform: scale(1.08); }
@media (max-width: 991px) { .img-frame { height: 360px; } }
@media (max-width: 767px) { .img-frame { height: 300px; } }

.badge-list { display: flex; flex-wrap: wrap; gap: 12px; }
.badge-list .pill { padding: 10px 18px; background: var(--light-blue); color: var(--primary); border-radius: var(--radius-pill); font-size: 14px; font-weight: 600; }

/* Sidebar (service pages) */
.service-sidebar { background: var(--bg); border-radius: var(--radius-lg); padding: 30px; }
.service-sidebar h5 { font-family: var(--font-heading); font-size: 19px; color: var(--navy); margin-bottom: 18px; }
.service-sidebar .service-list li { border-bottom: 1px solid #E6EAF2; }
.service-sidebar .service-list li:last-child { border-bottom: none; }
.service-sidebar .service-list a { display: flex; align-items: center; justify-content: space-between; padding: 13px 4px; font-size: 15px; font-weight: 500; color: var(--text); }
.service-sidebar .service-list a:hover, .service-sidebar .service-list li.active a { color: var(--primary); padding-left: 8px; }
.service-sidebar .support-box { margin-top: 24px; padding: 24px; background: var(--primary); border-radius: var(--radius-md); color: var(--white); }
.service-sidebar .support-box a { color: var(--white); font-weight: 600; }
.service-sidebar .support-box p { color: rgba(255,255,255,0.85); margin-bottom: 6px; font-size: 15px; }

.feature-list-ss li { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px dashed #E6EAF2; }
.feature-list-ss li:last-child { border-bottom: none; }
.feature-list-ss .num { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; background: var(--light-blue); color: var(--primary); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; }
.feature-list-ss strong { color: var(--navy); }
@media (min-width: 992px) {
  .feature-list-ss { display: grid; grid-template-columns: 1fr 1fr; column-gap: 48px; }
}

/* View All Services CTA (end of Related Services sections) */
.view-all-wrap { display: flex; justify-content: center; margin-top: 44px; }
.view-all-btn i { transition: transform var(--transition); }
.view-all-btn:hover i { transform: translateX(5px); }
@media (max-width: 575px) {
  .view-all-wrap { width: 100%; }
  .view-all-btn { width: 100%; }
}

.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step { text-align: center; padding: 30px 20px; }
.process-step .step-num { width: 60px; height: 60px; border-radius: 50%; background: var(--primary); color: var(--white); font-family: var(--font-heading); font-weight: 700; font-size: 22px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
@media (max-width: 767px) { .process-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .process-steps { grid-template-columns: 1fr; } }

/* AOS-safe fallback */
[data-aos] { transition-property: transform, opacity; }

/* Accessibility: visible keyboard focus */
a:focus-visible, button:focus-visible, .accordion-button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Coming soon (Resources) */
.coming-soon-box { text-align: center; padding: 90px 30px; background: var(--bg); border-radius: var(--radius-lg); }
.coming-soon-box i { font-size: 54px; color: var(--primary); margin-bottom: 22px; }

/* Content cards: blog & case study listing cards */
.content-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; height: 100%; display: flex; flex-direction: column; transition: all var(--transition); border-top: 3px solid transparent; }
.content-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-top-color: var(--gold); }
.content-card .content-card-img { position: relative; height: 210px; overflow: hidden; }
.content-card .content-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.content-card:hover .content-card-img img { transform: scale(1.1); }
.content-card .content-card-cat { position: absolute; top: 16px; left: 16px; background: var(--primary); color: var(--white); font-size: 12.5px; font-weight: 600; padding: 6px 14px; border-radius: var(--radius-pill); letter-spacing: 0.02em; }
.content-card .content-card-body { padding: 26px; display: flex; flex-direction: column; flex-grow: 1; }
.content-card .content-card-meta { display: flex; flex-wrap: wrap; gap: 14px; font-size: 13px; color: var(--text-secondary); margin-bottom: 12px; }
.content-card .content-card-meta span { display: inline-flex; align-items: center; gap: 6px; }
.content-card .content-card-meta i { color: var(--primary); }
.content-card h3 { font-size: 20px; margin-bottom: 10px; }
.content-card p { font-size: 15px; margin-bottom: 18px; flex-grow: 1; }
.content-card .card-link { font-size: 15px; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 8px; }
.content-card .card-link i { transition: transform var(--transition); }
.content-card:hover .card-link i { transform: translateX(5px); }

/* Article prose (blog detail pages) */
.article-prose h2 { font-size: 28px; margin-top: 40px; scroll-margin-top: 110px; }
.article-prose h3 { font-size: 21px; margin-top: 26px; scroll-margin-top: 110px; }
.article-prose ul, .article-prose ol { margin: 0 0 20px; padding-left: 22px; }
.article-prose li { color: var(--text-secondary); margin-bottom: 8px; font-size: 17px; }
.article-prose p { font-size: 17px; }
.toc-list li { margin-bottom: 2px; }
.toc-list a { display: block; padding: 10px 4px; font-size: 14.5px; font-weight: 500; color: var(--text); border-bottom: 1px solid #E6EAF2; }
.toc-list a:hover { color: var(--primary); padding-left: 8px; }

/* Case study specifics */
.case-meta-bar { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.case-block { margin-bottom: 34px; }
.case-block h3 { font-size: 22px; display: flex; align-items: center; gap: 10px; }
.case-block h3 i { color: var(--primary); font-size: 19px; }

/* Industry filter bar (case studies hub) */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.filter-btn { padding: 10px 22px; border-radius: var(--radius-pill); background: var(--white); border: 1px solid #E6EAF2; font-size: 14px; font-weight: 600; color: var(--text-secondary); transition: all var(--transition); cursor: pointer; }
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.content-grid-item[hidden] { display: none; }

@media (max-width: 991px) {
  .stat-grid { gap: 20px; }
  .cta-band { text-align: center; }
}

/* =========================================================
   SERVICE PAGE REBUILD — additional shared components
   ========================================================= */

/* Page hero — large watermark icon + texture, unique per page via inline gradient */
.page-hero { isolation: isolate; }
.page-hero .hero-pattern-overlay {
  position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
}
.hero-watermark {
  position: absolute; top: 50%; right: 4%; transform: translateY(-50%);
  font-size: 260px; color: rgba(255,255,255,0.07); z-index: 0; pointer-events: none; line-height: 1;
}
.page-hero .hero-sub-text { position: relative; z-index: 2; max-width: 640px; margin: 16px auto 26px; color: rgba(255,255,255,0.9); font-size: 18px; }
.page-hero .hero-actions { position: relative; z-index: 2; }
@media (max-width: 991px) { .hero-watermark { font-size: 160px; right: 2%; } }
@media (max-width: 575px) { .hero-watermark { display: none; } }

/* Who Can Benefit — compact pill badges (reuses .trust-badge visuals via alias) */
.benefit-strip { display: flex; flex-wrap: wrap; gap: 16px; }
.benefit-pill {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 24px;
  border-radius: var(--radius-pill);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11,44,106,0.06);
  transition: all var(--transition);
}
.benefit-pill:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.benefit-pill .benefit-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}
.benefit-pill span:last-child { font-size: 14.5px; font-weight: 600; color: var(--navy); white-space: nowrap; }

/* Industries We Serve — icon tile grid */
.industry-tile {
  text-align: center;
  padding: 30px 16px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
}
.industry-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.industry-tile .tile-icon {
  width: 64px; height: 64px; border-radius: var(--radius-sm);
  background: var(--light-blue); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin: 0 auto 16px;
  transition: all var(--transition);
}
.industry-tile:hover .tile-icon { background: var(--gold); color: var(--white); transform: rotate(-6deg) scale(1.06); }
.industry-tile span { display: block; font-weight: 600; font-size: 14.5px; color: var(--navy); }

/* End-to-End Solution — vertical icon timeline with connecting line */
.ets-timeline { position: relative; }
.ets-timeline::before {
  content: ''; position: absolute; left: 29px; top: 30px; bottom: 30px; width: 3px;
  background: linear-gradient(var(--light-blue), var(--primary));
}
.ets-step { position: relative; display: flex; gap: 26px; padding-bottom: 42px; }
.ets-step:last-child { padding-bottom: 0; }
.ets-step .ets-icon {
  position: relative; z-index: 2; flex-shrink: 0;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; box-shadow: var(--shadow-md);
  transition: all var(--transition);
}
.ets-step:hover .ets-icon { background: var(--gold); transform: scale(1.08); }
.ets-step .ets-body { padding-top: 9px; }
.ets-step .ets-body h4 { margin-bottom: 6px; }
.ets-step .ets-body p { margin-bottom: 0; }
@media (max-width: 575px) {
  .ets-timeline::before { left: 23px; }
  .ets-step { gap: 18px; }
  .ets-step .ets-icon { width: 46px; height: 46px; font-size: 18px; }
}

/* CTA band — premium photo variant for the final page CTA */
.cta-band.cta-photo {
  background-image: linear-gradient(120deg, rgba(11,44,106,0.93), rgba(10,61,145,0.86)), url('../img/hero/port3.jpg');
  background-size: cover;
  background-position: center;
}

/* Documents hub — numbered document list */
.doc-list { display: flex; flex-direction: column; gap: 14px; }
.doc-list-item {
  display: flex; align-items: center; gap: 22px;
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); padding: 22px 28px;
  transition: all var(--transition); text-decoration: none;
}
.doc-list-item:hover { box-shadow: var(--shadow-md); transform: translateX(6px); background: var(--light-blue); }
.doc-list-num {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
  background: var(--light-blue); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 16px;
  transition: all var(--transition);
}
.doc-list-item:hover .doc-list-num { background: var(--primary); color: var(--white); }
.doc-list-title { flex-grow: 1; font-family: var(--font-heading); font-weight: 600; font-size: 16.5px; color: var(--navy); line-height: 1.4; }
.doc-list-arrow { flex-shrink: 0; color: var(--primary); font-size: 15px; transition: transform var(--transition); }
.doc-list-item:hover .doc-list-arrow { transform: translateX(6px); color: var(--navy); }
@media (max-width: 575px) {
  .doc-list-item { padding: 16px 18px; gap: 14px; }
  .doc-list-num { width: 38px; height: 38px; font-size: 14px; }
  .doc-list-title { font-size: 15px; }
}

/* Document content pages — tables inside article-prose */
.article-prose table { width: 100%; border-collapse: collapse; margin: 8px 0 26px; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.article-prose thead th { background: var(--primary); color: var(--white); font-family: var(--font-heading); font-weight: 600; font-size: 14.5px; text-align: left; padding: 14px 18px; }
.article-prose tbody td { padding: 13px 18px; font-size: 15px; color: var(--text-secondary); border-bottom: 1px solid #E6EAF2; vertical-align: top; }
.article-prose tbody tr:last-child td { border-bottom: none; }
.article-prose tbody tr:nth-child(even) { background: var(--bg); }
.article-prose h2:first-child, .article-prose > h2:first-of-type { margin-top: 0; }
.doc-meta-bar { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }

/* =========================================================
   ABOUT PAGE — Meet the Founder section
   ========================================================= */
.founder-section { padding-top: 22px; padding-bottom: 20px; }
.founder-section .eyebrow { margin-bottom: 8px; }
.founder-section .section-title { margin-bottom: 16px; }
.founder-section .row.g-5 { --bs-gutter-y: 16px; }
@media (max-width: 991px) { .founder-section { padding-top: 12px; padding-bottom: 12px; } }

.founder-portrait { max-width: 480px; width: 100%; margin: 0 auto; border-radius: 20px; overflow: hidden; border: 2px solid var(--navy); box-shadow: var(--shadow-lg); }
.founder-portrait img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: top center; transition: transform var(--transition); }
.founder-portrait:hover img { transform: scale(1.06); }
@media (max-width: 991px) { .founder-portrait { max-width: 380px; } }
@media (min-width: 992px) {
  .founder-section .col-lg-5 { display: flex; flex-direction: column; justify-content: center; }
}

.founder-name-block { text-align: center; }
.founder-name { margin: 16px 0 0; font-family: var(--font-heading); font-weight: 700; font-size: 30px; color: var(--navy); }
.founder-role { margin: 8px 0 0; font-size: 19px; font-weight: 500; color: var(--gold); }
.founder-name-divider { width: 90px; height: 3px; border-radius: 2px; background: var(--gold); margin: 16px auto 0; }

.founder-highlights { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 16px 0; }
.founder-highlight-card { text-align: center; padding: 24px 14px; background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: all var(--transition); }
.founder-highlight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.founder-highlight-card .icon-wrap { width: 50px; height: 50px; border-radius: 50%; background: var(--light-blue); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 19px; margin: 0 auto 12px; transition: all var(--transition); }
.founder-highlight-card:hover .icon-wrap { background: var(--primary); color: var(--white); transform: rotate(-8deg) scale(1.08); }
.founder-highlight-card .fh-num { font-family: var(--font-heading); font-weight: 800; font-size: 26px; color: var(--navy); }
.founder-highlight-card .fh-label { font-size: 12.5px; color: var(--text-secondary); font-weight: 500; line-height: 1.4; margin-top: 2px; }
@media (max-width: 767px) { .founder-highlights { grid-template-columns: repeat(2, 1fr); } }

.founder-quote { background: var(--light-blue); border-left: 4px solid var(--navy); border-radius: var(--radius-md); padding: 24px 24px; margin: 16px 0 0; }
.founder-quote .quote-icon { display: block; color: var(--primary); font-size: 24px; margin-bottom: 8px; }
.founder-quote p { font-size: 17.5px; font-style: italic; font-weight: 500; color: var(--navy); margin: 0; line-height: 1.6; }
@media (max-width: 575px) { .founder-quote { padding: 16px 16px; } }
