/* =========================================================
   RIGHTSKU — Glassmorphism Luxury Edition v3.0
   Colors: Primary #26658C | Accent #54ACBF | Dark #011C40 — LUNA PALETTE
   ========================================================= */

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

:root {
  /* Original logo-derived palette — unchanged */
  --primary: #26658C;
  --primary-dark: #023859;
  --primary-light: #54ACBF;
  --primary-glow: rgba(38, 101, 140, 0.15);
  --secondary: #26658C;
  --accent: #54ACBF;
  --accent-glow: rgba(84, 172, 191, 0.15);
  --dark: #011C40;
  --dark-mid: #021F4A;
  --dark-card: #032554;
  --white: #FFFFFF;
  /* Original light palette — restored */
  --light-bg: #EAF7F9;
  --light-mid: #C5E8EE;
  --grey: #4D8FAD;
  --grey-dark: #26658C;
  --text-body: #023859;
  --text-dark: #011C40;
  /* Glass layer — overlaid on top of original colors */
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-bg-hover: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.80);
  --glass-border-accent: rgba(38, 101, 140, 0.35);
  --glass-blur: blur(20px) saturate(180%);
  --glass-blur-sm: blur(12px) saturate(160%);
  --glass-shadow: 0 4px 24px rgba(38,101,140,0.08), 0 1px 0 rgba(255,255,255,0.90) inset;
  --glass-shadow-hover: 0 20px 48px rgba(38,101,140,0.14), 0 0 0 1px rgba(38,101,140,0.18), 0 1px 0 rgba(255,255,255,0.90) inset;
  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(1,28,64,0.08);
  --shadow-md: 0 8px 32px rgba(1,28,64,0.12);
  --shadow-lg: 0 24px 64px rgba(1,28,64,0.16);
  --shadow-xl: 0 40px 80px rgba(1,28,64,0.20);
  --glow-primary: 0 0 40px rgba(38,101,140,0.22);
  --glow-accent: 0 0 40px rgba(84,172,191,0.18);
  --glow-card: 0 8px 32px rgba(38,101,140,0.10);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.3s var(--ease);
}

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

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

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section-pad { padding: 110px 0; }
.section-pad-sm { padding: 72px 0; }

/* BADGE */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--primary);
  background: var(--primary-glow); border: 1px solid rgba(38,101,140,0.25);
  padding: 7px 18px; border-radius: 40px; margin-bottom: 18px;
}
.badge-white { color: var(--accent); background: rgba(84,172,191,0.10); border-color: rgba(84,172,191,0.25); }

/* SECTION TITLE */
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 4vw, 46px); font-weight: 800;
  color: var(--dark); line-height: 1.12; letter-spacing: -0.5px; margin-bottom: 18px;
}
.section-title span { Color: linear-gradient(135deg, var(--primary), var(--primary-light)); }
.section-title-white { color: var(--white); }
.section-title-white span { color: var(--accent); }
/* section-sub on light backgrounds */
.section-sub { font-size: 17px; color:#000000; line-height: 1.78; max-width: 560px; }
.section-sub-center { margin: 0 auto; text-align: center; }
/* section-sub on dark backgrounds — used inside .about-section, .why-works-section etc */
.about-section .section-sub,
.why-works-section .section-sub,
.cta-section .section-sub { color: rgba(255,255,255,0.70); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 30px; border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700;
  transition: var(--t); cursor: pointer; position: relative; overflow: hidden;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform var(--t); }
.btn:hover svg { transform: translateX(3px); }
.btn::after { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%); transform: translateX(-100%); transition: transform 0.5s ease; }
.btn:hover::after { transform: translateX(100%); }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: var(--white); box-shadow: 0 4px 24px rgba(38,101,140,0.40), inset 0 1px 0 rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.10); }
.btn-primary:hover { background: linear-gradient(135deg, var(--primary-light), #54ACBF); transform: translateY(-2px); box-shadow: 0 8px 40px rgba(38,101,140,0.55); }
.btn-outline { background: rgba(255,255,255,0.06); color: var(--white); border: 1px solid rgba(255,255,255,0.18); backdrop-filter: var(--glass-blur-sm); -webkit-backdrop-filter: var(--glass-blur-sm); }
.btn-outline:hover { background: rgba(84,172,191,0.10); border-color: var(--accent); color: var(--accent); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(84,172,191,0.22); }
.btn-outline-blue { background: rgba(38,101,140,0.08); color: var(--primary); border: 1px solid rgba(38,101,140,0.30); backdrop-filter: var(--glass-blur-sm); -webkit-backdrop-filter: var(--glass-blur-sm); }
.btn-outline-blue:hover { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: var(--white); border-color: transparent; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(38,101,140,0.45); }
.btn-accent { background: linear-gradient(135deg, var(--accent), #A7EBF2); color: var(--dark); box-shadow: 0 4px 24px rgba(84,172,191,0.40); font-weight: 800; }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(84,172,191,0.55); }

/* NAVBAR — floating pill, visible glass shadow even on light bg */
#navbar {
  position: fixed;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1180px;
  z-index: 1000;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 60px;
  border: 1.5px solid transparent;
  box-shadow: none;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease), top 0.3s var(--ease), width 0.3s var(--ease);
}
#navbar.scrolled {
  background: rgba(1,14,32,0.88);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1.5px solid rgba(38,101,140,0.35);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 14px rgba(38,101,140,0.22);
  top: 20px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 14px 8px 10px;
}
.nav-logo { display: flex; align-items: center; background: transparent; }
.nav-logo img { height: 70px; width: auto; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.7)) brightness(1.15); transition: filter 0.3s ease; }
#navbar.scrolled .nav-logo img { filter: drop-shadow(0 2px 8px rgba(0,0,0,0.7)) brightness(1.15); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  position: relative; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13.5px; font-weight: 600;
  color: rgba(255, 255, 255, 0.85); padding: 8px 16px; border-radius: 40px;
  transition: color 0.25s, background 0.25s; letter-spacing: 0.1px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 5px; left: 16px; right: 16px; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 2px;
  transform: scaleX(0); transition: transform 0.28s var(--ease); transform-origin: center;
}
@media (max-width: 768px) {
  .nav-logo img {
    height: 47px; /* smaller logo */
    filter: drop-shadow(0 1px 5px rgba(0,0,0,0.5)) brightness(1.1);
  }
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.10); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
/* Scrolled — still white on dark bg */
#navbar.scrolled .nav-links a { color: rgba(255,255,255,0.75); }
#navbar.scrolled .nav-links a:hover, #navbar.scrolled .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-btn { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 700; padding: 11px 24px; border-radius: 40px; transition: var(--t); }
.nav-btn-ghost { color: rgba(255,255,255,0.70); }
.nav-btn-ghost:hover { color: var(--white); }
.nav-btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  box-shadow: 0 3px 20px rgba(38,101,140,0.45), inset 0 1px 0 rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.10);
  position: relative; overflow: hidden;
}
.nav-btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%);
  transform: translateX(-100%); transition: transform 0.5s ease;
}
.nav-btn-primary:hover::after { transform: translateX(100%); }
.nav-btn-primary:hover { background: linear-gradient(135deg, var(--primary-light), #54ACBF); transform: translateY(-1px); box-shadow: 0 6px 28px rgba(38,101,140,0.60); }
/* ── HAMBURGER ── */
.hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; padding: 8px; width: 40px; height: 40px; border-radius: 8px;
  transition: background var(--t);
}
.hamburger:hover { background: rgba(255,255,255,0.10); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--t); transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU OVERLAY (no dim — transparent, just catches outside clicks) ── */
.mobile-menu-overlay {
  display: none; position: fixed; inset: 0;
  background: transparent;
  z-index: 1098;
}
.mobile-menu-overlay.open { display: block; }

/* ── MOBILE MENU PANEL — full-screen slide in from right ── */
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  z-index: 1099;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overflow-x: hidden;
}
.mobile-menu.open { transform: translateX(0); }

/* Close button row */
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px 18px;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}
.mobile-menu-logo img { height: 54px; width: auto; }
.mobile-menu-close {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: #f5f5f5; transition: background 0.2s;
  cursor: pointer; border: none;
}
.mobile-menu-close:hover { background: #e8e8e8; }
.mobile-menu-close svg { width: 20px; height: 20px; stroke: #111; }

/* Nav links body */
.mobile-menu-body { flex: 1; padding: 8px 0 32px; }

.mobile-menu a {
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px; font-weight: 600;
  color: #ffffff;
  padding: 18px 28px;
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.02em;
}
.mobile-menu a:hover { background: #f9fafb; color: var(--primary); }
.mobile-menu a.active { color: var(--primary); }
.mobile-menu a .mm-arrow {
  width: 20px; height: 20px; stroke: #9ca3af; flex-shrink: 0;
  transition: transform 0.25s;
}
.mobile-menu a:hover .mm-arrow { stroke: var(--primary); transform: translateX(3px); }

/* CTA button inside menu */
.mobile-menu .mob-cta {
  display: flex; align-items: center; justify-content: center;
  margin: 24px 28px 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff !important;
  border-radius: 12px;
  padding: 16px 28px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.6px;
  border-bottom: none !important;
  box-shadow: 0 4px 20px rgba(38,101,140,0.35);
  transition: box-shadow 0.2s, transform 0.2s !important;
}
.mobile-menu .mob-cta:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary)) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 28px rgba(38,101,140,0.45) !important;
}
.mobile-menu .mob-cta .mm-arrow { display: none; }

/* HERO */
.hero { position: relative; height: 100vh; min-height: 640px; max-height: 900px; overflow: hidden; background: var(--dark); }
.carousel-track { position: absolute; inset: 0; width: 100%; height: 100%; }
.carousel-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s ease; }
.carousel-slide.active { opacity: 1; }
.carousel-slide > img, .slide-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; z-index: 0; transition: transform 8s ease; }
.carousel-slide.active > img, .carousel-slide.active .slide-img { transform: scale(1.06); }
.slide-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 1px; color: rgba(255,255,255,0.2); text-transform: uppercase; }
.slide-1-bg { background: linear-gradient(135deg, #010E20 0%, #0d2d4d 40%, #102640 100%); }
.slide-2-bg { background: linear-gradient(135deg, #010E20 0%, #021F4A 40%, #011730 100%); }
.slide-3-bg { background: linear-gradient(135deg, #010E20 0%, #011C40 40%, #021F4A 100%); }
.slide-4-bg { background: linear-gradient(135deg, #010E20 0%, #021F4A 40%, #032554 100%); }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(1,14,24,0.55) 0%, rgba(6,18,36,0.60) 50%, rgba(1,14,24,0.65) 100%); z-index: 1; }
.slide-grid { position: absolute; inset: 0; z-index: 2; background-image: linear-gradient(rgba(38,101,140,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(38,101,140,0.05) 1px, transparent 1px); background-size: 52px 52px; mask-image: radial-gradient(ellipse 100% 100% at 30% 50%, black 20%, transparent 70%); }
.hero-glow-1 { position: absolute; top: -80px; left: -60px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(38,101,140,0.18) 0%, transparent 60%); filter: blur(60px); z-index: 2; pointer-events: none; }
.hero-glow-2 { position: absolute; bottom: -100px; right: -80px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(84,172,191,0.14) 0%, transparent 60%); filter: blur(60px); z-index: 2; pointer-events: none; }
.hero-content { position: absolute; inset: 0; z-index: 10; display: flex; align-items: center; justify-content: center; padding: 0; }
.hero-text { width: 100%; max-width: 700px; text-align: center; }
.slide-text { text-align: center; display: none; }
.slide-text.active { display: block; animation: heroTextIn 0.9s var(--ease) forwards; }
.slide-text.active .hero-badge { animation: heroTextIn 0.7s var(--ease) 0.05s both; }
.slide-text.active .hero-title { animation: heroTextIn 0.8s var(--ease) 0.15s both; text-align: center; }
.slide-text.active .hero-sub { animation: heroTextIn 0.8s var(--ease) 0.28s both; text-align: center; }
.slide-text.active .hero-btns { animation: heroTextIn 0.8s var(--ease) 0.40s both; justify-content: center; }
@keyframes heroTextIn { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

.hero-badge {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent);
  background: rgba(84,172,191,0.10); border: 1px solid rgba(84,172,191,0.30);
  padding: 7px 18px; border-radius: 40px; margin-bottom: 24px; margin-top: 50px;
  backdrop-filter: var(--glass-blur-sm); -webkit-backdrop-filter: var(--glass-blur-sm);
  float: none; margin-left: 0; margin-right: auto; position: relative; z-index: 5; white-space: nowrap;
}
.hero-badge::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); animation: blink 1.8s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(34px, 5.5vw, 62px); font-weight: 800; color: var(--white); line-height: 1.09; letter-spacing: -1px; margin-bottom: 20px; text-align: center; text-shadow: 0 4px 30px rgba(0,0,0,0.6); }
.hero-title .hl { background: linear-gradient(135deg, var(--accent), #A7EBF2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; filter: drop-shadow(0 0 20px rgba(84,172,191,0.4)); }
.hero-sub { font-size: 16px; color: rgba(255,255,255,0.72); line-height: 1.82; margin-bottom: 40px; max-width: 560px; text-align: center; margin-left: auto; margin-right: auto; text-shadow: 0 1px 8px rgba(0,0,0,0.4); }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; align-items: center; margin-bottom: 40px; }

/* HERO STATS */
.hero-stats { position: relative; margin-top: 60px; width: 100%; z-index: 1; background: rgba(1,14,32,0.75); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); border-top: 1px solid rgba(255,255,255,0.07); }
.hero-stats-section { width: 100%; background: rgba(1,20,48,0.95); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); border-top: 1px solid rgba(255,255,255,0.08); padding: 32px 0; position: relative; z-index: 5; }
.hero-stats-inner { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 800px; margin: 0 auto; }
.hs-item { padding: 22px 28px; border-right: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; gap: 14px; }
.hs-item:last-child { border-right: none; }
.hs-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(38,101,140,0.12); border: 1px solid rgba(38,101,140,0.20); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.hs-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 800; color: var(--white); line-height: 1; }
.hs-num span { color: var(--accent); }
.hs-label { font-size: 12px; color: rgb(255, 255, 255); font-weight: 500; margin-top: 2px; }

/* CAROUSEL CONTROLS */
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 20; width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); backdrop-filter: var(--glass-blur-sm); -webkit-backdrop-filter: var(--glass-blur-sm); display: flex; align-items: center; justify-content: center; color: var(--white); transition: var(--t); cursor: pointer; margin-top: -40px; }
.carousel-btn:hover { background: rgba(38,101,140,0.35); border-color: var(--primary); box-shadow: var(--glow-primary); transform: translateY(-50%) scale(1.08); }
.carousel-btn svg { width: 20px; height: 20px; }
.carousel-prev { left: 24px; }
.carousel-next { right: 24px; }
.carousel-dots { position: absolute; bottom: 88px; left: 50%; transform: translateX(-50%); z-index: 20; display: flex; gap: 8px; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.25); cursor: pointer; transition: var(--t); border: none; }
.carousel-dot.active { background: var(--accent); width: 28px; border-radius: 4px; box-shadow: 0 0 12px rgba(84,172,191,0.6); }

/* IMAGE PLACEHOLDER */
.img-placeholder { width: 100%; height: 100%; background: rgba(14,32,60,0.60); border-radius: var(--radius); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: rgba(255,255,255,0.35); font-size: 13px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; border: 1px dashed rgba(255,255,255,0.12); overflow: hidden; position: relative; }
.img-placeholder svg { width: 32px; height: 32px; opacity: 0.35; }
.img-wrap { overflow: hidden; border-radius: var(--radius-lg); position: relative; background: linear-gradient(135deg, var(--dark) 0%, #032554 60%, #021F4A 100%); }
.img-wrap img, .img-wrap .img-placeholder { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }

/* FEATURES STRIP */
.features-strip { background: linear-gradient(135deg, #ffffff 0%, #EAF7F9 100%); border-bottom: 1px solid var(--light-mid); }
.features-strip-inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--light-mid); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,255,255,0.80); box-shadow: 0 4px 24px rgba(38,101,140,0.08); }
.fs-item { background: rgba(255,255,255,0.55); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); padding: 36px 28px; display: flex; align-items: flex-start; gap: 16px; transition: background 0.3s, box-shadow 0.3s; position: relative; overflow: hidden; }
.fs-item::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(38,101,140,0.04) 0%, transparent 70%); opacity: 0; transition: opacity 0.3s; }
.fs-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--primary-glow); border: 1px solid rgba(38,101,140,0.20); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; transition: var(--t); }
.fs-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.fs-desc { font-size: 13px; color: #032554; line-height: 1.55; }

/* SERVICES SECTION */
.services-section { background: linear-gradient(160deg, #c8eaf1 0%, #d8f3f7 35%, #EAF7F9 65%, #C5E8EE 100%); position: relative; }
.services-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 80% 30%, rgba(38,101,140,0.08) 0%, transparent 60%), radial-gradient(ellipse 50% 40% at 20% 70%, rgba(84,172,191,0.06) 0%, transparent 55%); pointer-events: none; }
.services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; margin-bottom: 64px; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }

/* SERVICE CARD — frosted glass on light bg */
.svc-card { background: rgba(255,255,255,0.55); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border-radius: var(--radius-lg); padding: 32px 28px 28px; border: 1px solid rgba(255,255,255,0.80); box-shadow: 0 4px 24px rgba(38,101,140,0.08), 0 1px 0 rgba(255,255,255,0.90) inset; transition: transform 0.38s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.38s var(--ease), border-color 0.32s ease, background 0.32s ease, padding 0.4s cubic-bezier(0.4,0,0.2,1); position: relative; overflow: hidden; cursor: pointer; will-change: transform; }
.svc-card::before { content: ''; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(135deg, rgba(38,101,140,0.05) 0%, transparent 60%); opacity: 0; transition: opacity 0.28s; }
.svc-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease); }
.svc-card:not(.expanded):hover { transform: translateY(-10px) scale(1.02); background: rgba(255,255,255,0.75); border-color: rgba(38,101,140,0.35); box-shadow: 0 20px 48px rgba(38,101,140,0.14), 0 0 0 1px rgba(38,101,140,0.18), 0 1px 0 rgba(255,255,255,0.90) inset; }
.svc-card:not(.expanded):hover::before { opacity: 1; }
.svc-card:not(.expanded):hover::after { transform: scaleX(1); }
.svc-card:not(.expanded):hover .svc-title { color: var(--primary); }
.svc-card:not(.expanded):hover .svc-link { gap: 12px; color: var(--primary-light); }
.svc-card:not(.expanded):hover .svc-icon-wrap { background: var(--primary-glow); border-color: rgba(38,101,140,0.30); animation: iconPulse 1.2s ease infinite; }

@keyframes iconPulse { 0% { box-shadow: 0 0 0 0 rgba(38,101,140,0.35); } 70% { box-shadow: 0 0 0 10px rgba(38,101,140,0); } 100% { box-shadow: 0 0 0 0 rgba(38,101,140,0); } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes cardFloat { 0% { transform: translateY(0); } 50% { transform: translateY(-6px); } 100% { transform: translateY(0); } }
@keyframes fadeSlideIn { from { opacity: 0; transform: translateX(-8px); } to { opacity: 1; transform: translateX(0); } }

.svc-icon-wrap { width: 60px; height: 60px; border-radius: 14px; background: rgba(255,255,255,0.70); border: 1.5px solid rgba(255,255,255,0.90); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; transition: var(--t); position: relative; overflow: hidden; }
.svc-icon-img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.svc-icon-emoji { font-size: 26px; }
.svc-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; transition: color 0.25s; }
.svc-desc { font-size: 14px; color: var(--grey); line-height: 1.68; margin-bottom: 22px; }
.svc-link { display: inline-flex; align-items: center; gap: 6px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 700; color: var(--primary); transition: gap 0.2s, color 0.2s; }
.svc-link:hover { gap: 10px; color: var(--primary-light); }
.svc-link svg { width: 16px; height: 16px; }

/* Expanded card */
.svc-card.expanded { transform: translateY(-12px) scale(1.025); background: rgba(255,255,255,0.75); border-color: rgba(38,101,140,0.35); box-shadow: 0 20px 48px rgba(38,101,140,0.14), 0 0 0 1px rgba(38,101,140,0.18), 0 1px 0 rgba(255,255,255,0.90) inset; backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); padding-bottom: 32px; z-index: 10; position: relative; animation: cardFloat 3.5s ease-in-out infinite; }
.svc-card.expanded::after { transform: scaleX(1); }
.svc-card.expanded::before { opacity: 1; }
.svc-card.expanded .svc-icon-wrap { background: var(--primary-glow); border-color: rgba(38,101,140,0.35); transform: scale(1.12) rotate(-3deg); animation: iconPulse 2s ease infinite; }
.svc-card.expanded .svc-title { color: var(--primary); }
.svc-extra { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.4s ease 0.05s, margin-top 0.3s ease; margin-top: 0; }
.svc-card.expanded .svc-extra { max-height: 320px; opacity: 1; margin-top: 18px; }
.svc-extra-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; border-top: 1px solid var(--light-mid); padding-top: 14px; }
.svc-extra-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--text-body); line-height: 1.55; animation: fadeSlideIn 0.35s ease both; }
.svc-extra-list li:nth-child(1) { animation-delay: 0.06s; } .svc-extra-list li:nth-child(2) { animation-delay: 0.12s; } .svc-extra-list li:nth-child(3) { animation-delay: 0.18s; } .svc-extra-list li:nth-child(4) { animation-delay: 0.24s; }
.svc-extra-list li::before { content: "✓"; color: var(--primary); font-weight: 700; font-size: 10px; margin-top: 2px; flex-shrink: 0; width: 18px; height: 18px; background: var(--primary-glow); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(38,101,140,0.22); }
.svc-card.expanded .svc-link { display: none; }
.svc-collapse-hint { display: none; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12px; font-weight: 600; color: var(--grey); margin-top: 14px; cursor: pointer; transition: color 0.2s; }
.svc-collapse-hint:hover { color: var(--primary); }
.svc-card.expanded .svc-collapse-hint { display: block; }

/* HOW IT WORKS */
.how-section { background: linear-gradient(135deg, #ffffff 0%, #EAF7F9 50%, #d8f3f7 100%); position: relative; }
.how-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 15% 50%, rgba(38,101,140,0.06) 0%, transparent 60%); pointer-events: none; }
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: start; }
.how-steps { display: flex; flex-direction: column; }
.step-item { display: flex; gap: 22px; padding: 28px 0; position: relative; transition: var(--t); }
.step-item:not(:last-child)::after { content: ''; position: absolute; left: 18px; top: 68px; bottom: -4px; width: 2px; background: linear-gradient(to bottom, var(--primary), rgba(38,101,140,0.06)); }
.step-num { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-light)); display: flex; align-items: center; justify-content: center; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 800; color: var(--white); flex-shrink: 0; position: relative; z-index: 2; box-shadow: 0 4px 20px rgba(38,101,140,0.40); }
.step-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 7px; }
.step-desc { font-size: 14px; color: #000000; line-height: 1.68; }
.how-visual { position: relative; padding: 28px; }
.how-img-wrap { border-radius: var(--radius-xl); overflow: hidden; position: relative; aspect-ratio: 7/8; box-shadow: 0 40px 100px rgba(0,0,0,0.70), 0 0 0 1px rgba(255,255,255,0.06); background: linear-gradient(135deg, var(--dark) 0%, #032554 60%, #021F4A 100%); }
.how-img-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(1,14,24,0.40) 100%); z-index: 1; pointer-events: none; }
.how-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.how-float-card { position: absolute; bottom: 0; left: 0; background: rgba(255,255,255,0.55); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border-radius: 20px; padding: 22px 26px; box-shadow: 0 4px 24px rgba(38,101,140,0.08), 0 1px 0 rgba(255,255,255,0.90) inset; border: 1px solid rgba(255,255,255,0.80); min-width: 240px; z-index: 10; }
.hfc-title { font-size: 11px; font-weight: 700; color: #000000; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; font-family: 'Plus Jakarta Sans', sans-serif; }
.hfc-bar { margin-bottom: 10px; }
.hfc-bar-label { display: flex; justify-content: space-between; margin-bottom: 5px; font-size: 12px; color: var(--dark); font-weight: 600; }
.hfc-bar-label span:last-child { color: #000000; font-weight: 700; }
.hfc-bar-track { height: 4px; background: rgba(38,101,140,0.15); border-radius: 99px; overflow: hidden; }
.hfc-bar-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 99px; width: 0; transition: width 1.5s var(--ease); box-shadow: 0 0 8px rgba(38,101,140,0.60); }
.hfc-bar-fill.ready { width: var(--w); }
.how-float-card2 { position: absolute; top: 0; right: 0; background: var(--dark); border-radius: 16px; padding: 18px 22px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; z-index: 10; }
.hfc2-icon { font-size: 22px; }
.hfc2-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 800; color: var(--white); line-height: 1; }
.hfc2-label { font-size: 11px; color: rgba(255,255,255,0.72); margin-top: 2px; }

/* ABOUT */
.about-section { background: var(--dark); position: relative; overflow: hidden; }
.about-section::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(38,101,140,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(38,101,140,0.04) 1px, transparent 1px); background-size: 52px 52px; pointer-events: none; }
.about-glow { position: absolute; top: -100px; right: -100px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(38,101,140,0.14) 0%, transparent 60%); filter: blur(70px); pointer-events: none; }
.about-inner { position: relative; z-index: 2; margin-top: 20px;margin-bottom: 20px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; margin-bottom: 72px; }
.about-img-wrap { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 11/9; position: relative; box-shadow: var(--shadow-xl); background: linear-gradient(135deg, var(--dark) 0%, #032554 60%, #021F4A 100%); }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge { position: absolute; bottom: 24px; right: 24px; background: var(--primary); border-radius: 14px; padding: 18px 22px; box-shadow: 0 10px 40px rgba(38,101,140,0.55); }
.aib-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 26px; font-weight: 800; color: var(--white); line-height: 1; }
.aib-label { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 3px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.af-item { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 24px; transition: var(--t); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.af-item:hover { background: rgba(255,255,255,0.12); border-color: rgba(38,101,140,0.40); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.22); }
.af-icon { font-size: 26px; margin-bottom: 12px; }
.af-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.af-desc { font-size: 13px; color: rgba(255,255,255,0.72); line-height: 1.6; }
.about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,0.10); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,255,255,0.18); box-shadow: var(--glass-shadow); max-width: 700px; margin: 0 auto; }
.as-item { background: rgba(255,255,255,0.55); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border: 1px solid rgba(255,255,255,0.80); padding: 36px 24px; text-align: center; transition: background 0.3s; }
.as-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 38px; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 8px; }
.as-num span { color: #021F4A; }
.as-label { font-size: 13px; color: #000000; font-weight: 500; }

/* INDUSTRIES */
.industries-section { background: linear-gradient(160deg, #d8f3f7 0%, #c8eaf1 40%, #C5E8EE 70%, #EAF7F9 100%); position: relative; }
.industries-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(38,101,140,0.07) 0%, transparent 70%); pointer-events: none; }
.industries-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; margin-top: 56px; }
.ind-card { text-align: center; padding: 36px 16px 30px; border-radius: var(--radius-lg); background: rgba(255,255,255,0.55); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border: 1px solid rgba(255,255,255,0.80); box-shadow: 0 4px 24px rgba(38,101,140,0.08), 0 1px 0 rgba(255,255,255,0.90) inset; transition: transform 0.32s var(--ease), box-shadow 0.32s, background 0.32s, border-color 0.32s; cursor: pointer; position: relative; overflow: hidden; }
.ind-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(38,101,140,0.05) 0%, transparent 70%); opacity: 0; transition: opacity 0.3s; }
.ind-card:hover { background: rgba(255,255,255,0.75); border-color: rgba(38,101,140,0.35); transform: translateY(-10px); box-shadow: 0 20px 48px rgba(38,101,140,0.14), 0 0 0 1px rgba(38,101,140,0.18), 0 1px 0 rgba(255,255,255,0.90) inset; }
.ind-card:hover::before { opacity: 1; }
.ind-icon-wrap { width: 68px; height: 68px; border-radius: 50%; background: var(--light-bg); box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 28px; transition: var(--t); overflow: hidden; }
.ind-card:hover .ind-icon-wrap { background: var(--primary-glow); }
.ind-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 5px; transition: color 0.28s; }
.ind-desc { font-size: 12px; color: var(--grey); transition: color 0.28s; }
.ind-card:hover .ind-name { color: var(--white); }
.ind-card:hover .ind-desc { color: rgba(255,255,255,0.65); }

/* CTA */
.cta-section { background: linear-gradient(130deg, var(--primary-dark) 0%, var(--primary) 50%, #54ACBF 100%); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 100% at 0% 50%, rgba(1,14,24,0.40) 0%, transparent 60%), url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E"); pointer-events: none; }
.cta-section::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.30), transparent); }
.cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 48px; padding: 72px 0; flex-wrap: wrap; }
.cta-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(24px,3vw,38px); font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 10px; text-shadow: 0 2px 20px rgba(0,0,0,0.30); }
.cta-sub { font-size: 16px; color: rgba(255,255,255,0.72); max-width: 440px; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-cta-dark { background: rgba(1,14,24,0.85); backdrop-filter: var(--glass-blur-sm); -webkit-backdrop-filter: var(--glass-blur-sm); color: var(--white); padding: 15px 34px; border-radius: 10px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700; transition: var(--t); display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,0.10); box-shadow: 0 4px 20px rgba(0,0,0,0.30); }
.btn-cta-dark:hover { background: rgba(1,14,24,0.95); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,0.45); }
.btn-cta-white { background: rgba(255,255,255,0.12); backdrop-filter: var(--glass-blur-sm); -webkit-backdrop-filter: var(--glass-blur-sm); color: var(--white); border: 1px solid rgba(255,255,255,0.30); padding: 15px 34px; border-radius: 10px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700; transition: var(--t); }
.btn-cta-white:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }

/* FOOTER */
footer { background: rgba(1,12,28,0.96); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); padding: 80px 0 0; position: relative; border-radius: 40px 40px 0 0; margin-top: -40px; border-top: 1px solid rgba(255,255,255,0.06); }
footer::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 60%; height: 1px; background: linear-gradient(90deg, transparent, rgba(38,101,140,0.40), transparent); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.footer-logo-wrap { margin-bottom: 18px; background: transparent; }
.footer-logo-wrap img { height: 68px; width: auto; object-fit: contain; background: transparent; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.6)) brightness(1.15); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.62); line-height: 1.78; max-width: 280px; margin-bottom: 28px; }
.footer-tagline { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 700; color: var(--accent); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; display: block; }
.social-links { display: flex; gap: 10px; }
.social-btn { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.65); transition: var(--t); }
.social-btn:hover { background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-color: transparent; color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(38,101,140,0.45); }
.social-btn svg { width: 16px; height: 16px; }
.footer-col h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.80); text-transform: uppercase; letter-spacing: 1.8px; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.62); transition: color 0.22s, padding-left 0.22s; }
.footer-col ul li a:hover { color: var(--accent); padding-left: 5px; }
.fc-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.fc-icon { width: 34px; height: 34px; border-radius: 9px; background: rgba(38,101,140,0.10); border: 1px solid rgba(38,101,140,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.fc-icon svg { width: 15px; height: 15px; color: var(--accent); }
.fc-text { font-size: 13px; color: rgba(255,255,255,0.62); line-height: 1.55; }
.fc-text strong { display: block; font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.footer-bottom { padding: 24px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.50); }
.footer-bottom p span { color: var(--accent); }
.fb-links { display: flex; gap: 22px; }
.fb-links a { font-size: 13px; color: rgba(255,255,255,0.50); transition: color 0.22s; }
.fb-links a:hover { color: var(--accent); }

/* PAGE HERO */
.page-hero { background: var(--dark); padding: 0; min-height: 500px; display: flex; align-items: flex-end; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(38,101,140,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(38,101,140,0.04) 1px, transparent 1px); background-size: 52px 52px; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(38,101,140,0.35), transparent); }
.page-hero-glow { position: absolute; top: -100px; right: -80px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(38,101,140,0.16) 0%, transparent 60%); filter: blur(70px); z-index: 3; }
.page-hero-inner { position: relative; z-index: 3; padding: 100px 0 60px; width: 100%; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.breadcrumb a, .breadcrumb span { font-size: 13px; color: rgba(255,255,255,0.60); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: rgba(255,255,255,0.30); }
.breadcrumb .cur { color: var(--accent); }
.page-hero-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(32px,5vw,58px); font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 16px; letter-spacing: -0.5px; text-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.page-hero-sub { font-size: 17px; color: rgba(255,255,255,0.78); max-width: 520px; line-height: 1.75; }

/* ABOUT PAGE */
.about-page-section { background: linear-gradient(135deg, #ffffff 0%, #EAF7F9 100%); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 40px; }
.mc-card { border-radius: var(--radius-lg); padding: 32px; border-left: 4px solid var(--primary); background: rgba(255,255,255,0.55); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border-top: 1px solid rgba(255,255,255,0.80); border-right: 1px solid rgba(255,255,255,0.80); border-bottom: 1px solid rgba(255,255,255,0.80); box-shadow: 0 4px 24px rgba(38,101,140,0.08), 0 1px 0 rgba(255,255,255,0.90) inset; transition: var(--t); }
.mc-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.75); border-color: rgba(38,101,140,0.35); box-shadow: 0 20px 48px rgba(38,101,140,0.14), 0 0 0 1px rgba(38,101,140,0.18), 0 1px 0 rgba(255,255,255,0.90) inset; }
.mc-card.navy { border-left-color: var(--dark); }
.mc-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.mc-desc { font-size: 15px; color: var(--text-body); line-height: 1.72; }
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px; }
.trust-item { display: flex; gap: 16px; align-items: flex-start; }
.ti-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--primary-glow); border: 1.5px solid rgba(38,101,140,0.20); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.ti-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.ti-desc { font-size: 13px; color: var(--grey); line-height: 1.6; }

/* SERVICES PAGE DETAIL */
.services-detail-grid { display: flex; flex-direction: column; gap: 48px; }
.sd-card { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; background: rgba(255,255,255,0.55); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border-radius: var(--radius-xl); border: 1px solid rgba(255,255,255,0.80); padding: 48px; box-shadow: 0 4px 24px rgba(38,101,140,0.08), 0 1px 0 rgba(255,255,255,0.90) inset; transition: box-shadow 0.28s, border-color 0.28s; }
.sd-card:hover { background: rgba(255,255,255,0.75); border-color: rgba(38,101,140,0.35); box-shadow: 0 20px 48px rgba(38,101,140,0.14), 0 0 0 1px rgba(38,101,140,0.18), 0 1px 0 rgba(255,255,255,0.90) inset; }
.sd-card:nth-child(even) { direction: rtl; }
.sd-card:nth-child(even) > * { direction: ltr; }
.sd-icon { width: 60px; height: 60px; border-radius: 14px; background: var(--dark); display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 20px; }
.sd-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 24px; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.sd-desc { font-size: 15px; color: var(--text-body); line-height: 1.75; margin-bottom: 24px; }
.sd-features h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 700; color: var(--grey); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; }
.sd-features ul { display: flex; flex-direction: column; gap: 9px; }
.sd-features ul li { display: flex; gap: 10px; font-size: 14px; color: var(--text-body); line-height: 1.5; align-items: flex-start; }
.sd-features ul li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex-shrink: 0; margin-top: 6px; }
.sd-benefits { background: var(--light-bg); border: 1px solid var(--light-mid); border-radius: var(--radius); padding: 28px; }
.sd-img-wrap { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 5/4; box-shadow: var(--shadow-xl); }
.sd-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.sdb-item { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.55); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border-radius: 10px; padding: 12px 16px; border: 1px solid rgba(255,255,255,0.80); margin-bottom: 10px; box-shadow: 0 4px 24px rgba(38,101,140,0.08), 0 1px 0 rgba(255,255,255,0.90) inset; transition: background 0.2s, border-color 0.2s; }
.sdb-item:last-child { margin-bottom: 0; }
.sdb-item:hover { background: rgba(255,255,255,0.75); border-color: rgba(38,101,140,0.35); }
.sdb-check { width: 26px; height: 26px; border-radius: 50%; background: var(--primary-glow); display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; color: var(--primary); font-weight: 700; }
.sdb-text { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 600; color: var(--dark); }

/* HIW PAGE */
.hiw-wrap { max-width: 820px; margin: 0 auto; position: relative; padding-left: 56px; }
.hiw-wrap::before { content: ''; position: absolute; left: 18px; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, var(--primary), rgba(38,101,140,0.05)); }
.hiw-step { position: relative; padding-bottom: 52px; }
.hiw-step::before { content: ''; position: absolute; left: -38px; top: 5px; width: 14px; height: 14px; border-radius: 50%; background: var(--primary); border: 3px solid var(--white); box-shadow: 0 0 0 3px rgba(38,101,140,0.25), 0 0 16px rgba(38,101,140,0.35); z-index: 2; }
.hiw-step-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 700; color: var(--primary); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 7px; }
.hiw-step-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.hiw-step-desc { font-size: 15px; color: var(--text-body); line-height: 1.75; margin-bottom: 16px; }
.hiw-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.hiw-tag { font-size: 12px; font-weight: 600; background: #c6d0d77d; color: #000000; padding: 5px 14px; border-radius: 20px; font-family: 'Plus Jakarta Sans', sans-serif; border: 1px solid rgba(38,101,140,0.20); }

/* INDUSTRIES PAGE */
.industries-page-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.ipc-card { background: rgba(255,255,255,0.55); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border: 1px solid rgba(255,255,255,0.80); box-shadow: 0 4px 24px rgba(38,101,140,0.08), 0 1px 0 rgba(255,255,255,0.90) inset; border-radius: var(--radius-xl); overflow: hidden; transition: transform 0.32s var(--ease), box-shadow 0.32s, border-color 0.32s; padding: 0 !important; }
.ipc-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.75); border-color: rgba(38,101,140,0.35); box-shadow: 0 20px 48px rgba(38,101,140,0.14), 0 0 0 1px rgba(38,101,140,0.18), 0 1px 0 rgba(255,255,255,0.90) inset; }
.ipc-header { background: rgba(255,255,255,0.30); padding: 20px 24px 12px; display: flex; align-items: center; gap: 16px; border-bottom: 1px solid rgba(255,255,255,0.80); }
.ipc-img-area { width: 100%; height: 180px; overflow: hidden; position: relative; background: linear-gradient(135deg, var(--dark) 0%, #032554 60%, #021F4A 100%); }
.ipc-banner-img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.5s ease; position: absolute; inset: 0; }
.ipc-card:hover .ipc-banner-img { transform: scale(1.04); }
.ipc-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(1,20,48,0.80) 0%, rgba(1,16,38,0.60) 100%); }
.ipc-img-placeholder span { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.25); text-align: center; padding: 0 16px; }
.ipc-icon { width: 52px; height: 52px; border-radius: 12px; background: rgba(38,101,140,0.12); border: 1px solid rgba(38,101,140,0.20); display: flex; align-items: center; justify-content: center; font-size: 24px; }
.ipc-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 800; color: var(--dark); }
.ipc-body { padding: 0 24px 24px; }
.ipc-desc { font-size: 14px; color: var(--text-body); line-height: 1.68; margin-bottom: 18px; }
.ipc-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.ipc-tag { font-size: 12px; font-weight: 600; color: var(--secondary); background: rgba(255,255,255,0.70); padding: 4px 12px; border-radius: 20px; font-family: 'Plus Jakarta Sans', sans-serif; }

/* CONTACT PAGE */
.contact-section-bg { background: linear-gradient(135deg, #EAF7F9 0%, #d8f3f7 50%, #c8eaf1 100%); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: start; }
.ci-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.ci-icon { width: 50px; height: 50px; background: var(--primary-glow); border: 1.5px solid rgba(38,101,140,0.20); border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-icon svg { width: 20px; height: 20px; color: var(--primary); }
.ci-label { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--grey); margin-bottom: 4px; }
.ci-value { font-size: 15px; font-weight: 600; color: var(--dark); }
.map-box { background: var(--light-mid); border: 1.5px solid var(--light-mid); border-radius: var(--radius-lg); height: 200px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; color: var(--grey); font-size: 14px; margin-top: 24px; }
.map-box svg { width: 32px; height: 32px; opacity: 0.35; }
.contact-form-box { background: rgba(255,255,255,0.55); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border: 1px solid rgba(255,255,255,0.80); border-radius: var(--radius-xl); padding: 48px; box-shadow: 0 4px 24px rgba(38,101,140,0.08), 0 1px 0 rgba(255,255,255,0.90) inset; position: relative; overflow: hidden; }
.contact-form-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, rgba(38,101,140,0.35), transparent); }
.cf-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.cf-sub { font-size: 14px; color: var(--grey); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group label { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 700; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea { padding: 12px 16px; border: 1px solid rgba(38,101,140,0.20); border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 14px; color: var(--dark); background: rgba(255,255,255,0.65); backdrop-filter: var(--glass-blur-sm); -webkit-backdrop-filter: var(--glass-blur-sm); transition: border-color 0.22s, box-shadow 0.22s, background 0.22s; outline: none; resize: vertical; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--grey); }
.form-group select option { background: var(--white); color: var(--dark); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 3px rgba(38,101,140,0.10); }
.form-group textarea { min-height: 118px; }
.form-submit { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: var(--white); padding: 16px 32px; border-radius: 10px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 800; width: 100%; border: 1px solid rgba(255,255,255,0.10); cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: var(--t); box-shadow: 0 4px 24px rgba(38,101,140,0.40), inset 0 1px 0 rgba(255,255,255,0.15); position: relative; overflow: hidden; }
.form-submit::after { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.10) 50%, transparent 70%); transform: translateX(-100%); transition: transform 0.5s ease; }
.form-submit:hover::after { transform: translateX(100%); }
.form-submit:hover { background: linear-gradient(135deg, var(--primary-light), #54ACBF); transform: translateY(-2px); box-shadow: 0 8px 36px rgba(38,101,140,0.55); }
.form-submit svg { width: 18px; height: 18px; }

/* SVC PAGE CARDS */
.svc-page-section { background: linear-gradient(180deg, #EAF7F9 0%, #d8f3f7 50%, #c8eaf1 100%); }
.svc-page-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.svc-page-card { background: rgba(255,255,255,0.55); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.80); overflow: hidden; position: relative; cursor: pointer; transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease, border-color 0.3s ease; will-change: transform; box-shadow: 0 4px 24px rgba(38,101,140,0.08), 0 1px 0 rgba(255,255,255,0.90) inset; }
.spc-glow { position: absolute; top: -60px; right: -60px; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(38,101,140,0.12) 0%, transparent 70%); pointer-events: none; transition: opacity 0.4s, transform 0.5s; opacity: 0; z-index: 0; }
.svc-page-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.svc-page-card:hover { transform: translateY(-12px) scale(1.015); background: rgba(255,255,255,0.75); border-color: rgba(38,101,140,0.35); box-shadow: 0 20px 48px rgba(38,101,140,0.14), 0 0 0 1px rgba(38,101,140,0.18), 0 1px 0 rgba(255,255,255,0.90) inset; }
.svc-page-card:hover::after { transform: scaleX(1); }
.svc-page-card:hover .spc-glow { opacity: 1; transform: scale(1.3); }
.svc-page-card:hover .spc-img { transform: scale(1.07); }
.svc-page-card:hover .spc-title { color: var(--primary); }
.svc-page-card:hover .spc-btn { gap: 10px; background: var(--primary); color: var(--white); border-color: var(--primary); }
.svc-page-card:hover .spc-btn svg { transform: translateX(3px); }
.svc-page-card:hover .spc-emoji { transform: scale(1.2) rotate(-5deg); }
.spc-top { position: relative; height: 190px; overflow: hidden; background: var(--dark); }
.spc-icon-wrap { width: 100%; height: 100%; position: relative; }
.spc-img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.6s ease; }
.spc-img-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(1,28,64,0.05) 0%, rgba(1,28,64,0.55) 100%); }
.spc-badge-wrap { position: absolute; bottom: 14px; left: 18px; z-index: 3; }
.spc-emoji { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; font-size: 22px; background: rgba(255,255,255,0.95); border-radius: 12px; box-shadow: 0 4px 16px rgba(1,28,64,0.18); transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1); }
.spc-body { padding: 22px 24px 26px; position: relative; z-index: 1; }
.spc-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 800; color: var(--dark); margin-bottom: 10px; transition: color 0.25s; }
.spc-desc { font-size: 13.5px; color: var(--grey); line-height: 1.72; margin-bottom: 16px; }
.spc-list { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 7px; border-top: 1px solid var(--light-mid); padding-top: 14px; }
.spc-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 12.5px; color: var(--text-body); line-height: 1.5; }
.spc-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent)); flex-shrink: 0; margin-top: 5px; }
.spc-btn { display: inline-flex; align-items: center; gap: 6px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 700; color: var(--primary); border: 1.5px solid rgba(38,101,140,0.30); border-radius: 8px; padding: 9px 18px; background: transparent; transition: gap 0.25s, background 0.3s, color 0.3s, border-color 0.3s; position: relative; z-index: 3; cursor: pointer; }
.spc-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); gap: 10px; }
.spc-btn:hover svg { transform: translateX(3px); }
.spc-btn svg { width: 15px; height: 15px; flex-shrink: 0; transition: transform 0.25s; }

/* WHY WORKS */
.why-works-section { background: rgba(1,14,30,0.85); position: relative; }
.why-works-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(1,14,24,0.90) 0%, rgba(1,14,32,0.80) 60%, rgba(1,20,48,0.72) 100%); z-index: 1; }
.why-works-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.why-works-card { background: rgba(255,255,255,0.07); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; padding: 36px 28px; text-align: center; box-shadow: 0 4px 24px rgba(0,0,0,0.20), 0 1px 0 rgba(255,255,255,0.08) inset; transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), background 0.3s, border-color 0.3s, box-shadow 0.35s; }
.why-works-card:hover { transform: translateY(-10px); background: rgba(255,255,255,0.12); border-color: rgba(38,101,140,0.40); box-shadow: 0 20px 48px rgba(0,0,0,0.30), 0 0 0 1px rgba(38,101,140,0.20); }
.wwc-icon { font-size: 38px; margin-bottom: 16px; display: block; transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1); }
.why-works-card:hover .wwc-icon { transform: scale(1.18) rotate(-5deg); }
.wwc-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.wwc-desc { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.68; }

/* BG IMAGE OVERRIDES */
.cta-section.cta-has-image { background-image: url('assets/images/cta-bg.jpg'); background-size: cover; background-position: center; }
.cta-section.cta-has-image::before { background: linear-gradient(130deg, rgba(2,44,80,0.90) 0%, rgba(2,56,100,0.85) 60%, rgba(38,101,140,0.82) 100%) !important; }
.page-hero-banner-wrap { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.page-hero-banner-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(1,14,24,0.88) 0%, rgba(1,14,32,0.75) 50%, rgba(1,20,48,0.65) 100%); z-index: 1; }
.page-hero-img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--dark) 0%, #021F4A 40%, #032554 70%, #26658C 100%); position: absolute; inset: 0; }
.page-hero-banner-img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; position: absolute; inset: 0; z-index: 0; }
.page-hero-glow { position: absolute; z-index: 3; }
.page-hero-inner { position: relative; z-index: 3; }

/* SCROLL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.10s; } .reveal-delay-2 { transition-delay: 0.20s; } .reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; } .reveal-delay-5 { transition-delay: 0.50s; } .reveal-delay-6 { transition-delay: 0.60s; }

/* PRELOADER — unchanged */
body.pl-loading { overflow: hidden; }
#rightsku-preloader { position: fixed; inset: 0; z-index: 99999; display: flex; align-items: center; justify-content: center; background: radial-gradient(ellipse at 50% 45%, #011730 0%, #010E20 60%, #010814 100%); will-change: opacity; }
#rightsku-preloader::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(38,101,140,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(38,101,140,0.035) 1px, transparent 1px); background-size: 52px 52px; pointer-events: none; z-index: 0; }
.pl-stage { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; }
.pl-logo-area { position: relative; display: flex; align-items: center; justify-content: center; }
.pl-logo-img { width: 300px; height: auto; display: block; position: relative; z-index: 3; animation: plLogoIn 0.55s cubic-bezier(0.34,1.4,0.64,1) both; will-change: transform, opacity; }
@keyframes plLogoIn { from { opacity: 0; transform: scale(0.9) translateY(8px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.pl-ring-wrap { position: absolute; left: -10px; top: 50%; transform: translateY(-54%); width: 70px; height: 70px; pointer-events: none; z-index: 4; }
.pl-ring-svg { width: 100%; height: 100%; animation: plRingSpin 2.2s linear infinite; }
@keyframes plRingSpin { to { transform: rotate(360deg); } }
.pl-ring-track { fill: none; stroke: rgba(38,101,140,0.10); stroke-width: 2; }
.pl-ring-arc { fill: none; stroke: url(#plArcGrad); stroke-width: 2; stroke-linecap: round; stroke-dasharray: 182; stroke-dashoffset: 182; animation: plArcDraw 1.2s cubic-bezier(0.4,0,0.2,1) 0.25s forwards, plArcPulse 2s ease-in-out 1.6s infinite; }
@keyframes plArcDraw { to { stroke-dashoffset: 0; opacity: 1; } from { stroke-dashoffset: 182; opacity: 0.4; } }
@keyframes plArcPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.pl-glow { position: absolute; left: -4px; top: 50%; transform: translateY(-54%); width: 66px; height: 66px; border-radius: 50%; background: radial-gradient(circle, rgba(84,172,191,0.16) 0%, rgba(38,101,140,0.08) 50%, transparent 72%); animation: plGlowBreath 2.2s ease-in-out infinite; pointer-events: none; z-index: 2; }
@keyframes plGlowBreath { 0%, 100% { transform: translateY(-54%) scale(1); opacity: 0.55; } 50% { transform: translateY(-54%) scale(1.28); opacity: 1; } }
.pl-arrow-ray { position: absolute; left: -10px; top: 50%; transform: translateY(-54%); width: 70px; height: 70px; border-radius: 50%; overflow: hidden; pointer-events: none; z-index: 5; }
.pl-arrow-ray::before { content: ''; position: absolute; top: -10%; left: -100%; width: 55%; height: 120%; background: linear-gradient(50deg, transparent 0%, transparent 35%, rgba(84,172,191,0.07) 42%, rgba(255,255,255,0.13) 50%, rgba(84,172,191,0.07) 58%, transparent 65%, transparent 100%); animation: plRaySweep 2s cubic-bezier(0.4,0,0.6,1) infinite; }
@keyframes plRaySweep { 0% { left: -100%; opacity: 0; } 12% { opacity: 1; } 62% { left: 160%; opacity: 1; } 65% { opacity: 0; } 100% { left: 160%; opacity: 0; } }
.pl-arrow-pulse { position: absolute; left: -10px; top: 50%; transform: translateY(-54%); width: 70px; height: 70px; pointer-events: none; z-index: 6; overflow: hidden; border-radius: 50%; }
.pl-arrow-pulse::before { content: ''; position: absolute; width: 4px; height: 4px; border-radius: 50%; background: #54ACBF; box-shadow: 0 0 6px 2px rgba(84,172,191,0.7), 0 0 12px 4px rgba(38,101,140,0.4); bottom: 22%; left: 14%; animation: plSparkTravel 2s cubic-bezier(0.4,0,0.2,1) infinite; }
@keyframes plSparkTravel { 0% { transform: translate(0,0) scale(0.6); opacity: 0; } 8% { opacity: 1; } 50% { transform: translate(34px,-28px) scale(1.1); opacity: 1; } 72% { transform: translate(46px,-38px) scale(0.7); opacity: 0.4; } 73% { opacity: 0; } 100% { transform: translate(46px,-38px) scale(0.6); opacity: 0; } }
.pl-arrow-pulse::after { content: ''; position: absolute; width: 28px; height: 2px; border-radius: 99px; background: linear-gradient(90deg, transparent, rgba(84,172,191,0.55), rgba(255,255,255,0.3)); bottom: 24%; left: 14%; transform-origin: left center; transform: rotate(-38deg) scaleX(0); animation: plStreakGrow 2s cubic-bezier(0.4,0,0.2,1) infinite; }
@keyframes plStreakGrow { 0% { transform: rotate(-38deg) scaleX(0) translateY(-1px); opacity: 0; } 10% { opacity: 0.8; } 45% { transform: rotate(-38deg) scaleX(1) translateY(-1px); opacity: 0.8; } 72% { transform: rotate(-38deg) scaleX(0.4) translateY(-1px); opacity: 0; } 100% { transform: rotate(-38deg) scaleX(0) translateY(-1px); opacity: 0; } }
#rightsku-preloader.pl-exit { animation: plExit 0.6s cubic-bezier(0.4,0,0.2,1) forwards; pointer-events: none; }
@keyframes plExit { 0% { opacity: 1; transform: scale(1); } 30% { opacity: 1; transform: scale(1.008); } 100% { opacity: 0; transform: scale(0.97); } }
@media (max-width: 480px) { .pl-logo-img { width: 220px; } .pl-ring-wrap, .pl-arrow-ray, .pl-arrow-pulse { width: 56px; height: 56px; left: -6px; } .pl-glow { width: 52px; height: 52px; left: -2px; } }

/* RESPONSIVE */
@media (max-width: 1080px) {
  .how-grid { grid-template-columns: 1fr; gap: 56px; }
  .how-float-card { left: 0; bottom: 0; min-width: 200px; }
  .how-float-card2 { right: 0; top: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap { max-width: 560px; }
  .about-stats { grid-template-columns: repeat(3,1fr); }
  .industries-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .sd-card { grid-template-columns: 1fr; gap: 32px; }
  .sd-card:nth-child(even) { direction: ltr; }
  .contact-layout { grid-template-columns: 1fr; }
  .industries-page-grid { grid-template-columns: repeat(2,1fr); }
  .mission-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .svc-page-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 1024px) { .hero-badge { margin-top: 60px; } }

@media (max-width: 768px) {
  .section-pad { padding: 72px 0; }
  .section-pad-sm { padding: 44px 0; }
  .container { padding: 0 18px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  #navbar { background: transparent !important; backdrop-filter: none; -webkit-backdrop-filter: none; width: calc(100% - 24px); top: 10px; border: 1.5px solid transparent !important; box-shadow: none !important; }
  #navbar.scrolled { background: rgba(1,14,32,0.96) !important; top: 8px; }
  #navbar.scrolled { background: rgba(1,14,32,0.88) !important; backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); top: 8px; border: 1.5px solid rgba(38,101,140,0.35) !important; box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 0 14px rgba(38,101,140,0.22) !important; }
  .hamburger span { background: #ffffff !important; width: 26px; height: 2.5px; }
  .mobile-menu { z-index: 1050; padding: 88px 28px 48px; align-items: center; text-align: center; }
  .mobile-menu a { text-align: center; width: 100%; }
  .mobile-menu .mob-cta { width: 100%; text-align: center; justify-content: center; }
  .hero { max-height: none; min-height: 100vh; }
  .hero-badge { font-size: 10px; padding: 6px 14px; letter-spacing: 1.5px; margin-bottom: 16px; margin-top: 0; }
  .hero-content { justify-content: center !important; padding: 0 20px !important; }
  .hero-text { max-width: 100% !important; text-align: center !important; }
  .slide-text { text-align: center !important; }
  .hero-badge { margin: 0 auto 18px !important; float: none !important; justify-content: center; }
  .hero-title { text-align: center !important; font-size: clamp(28px,8vw,44px); }
  .hero-sub { text-align: center !important; border-left: none !important; padding-left: 0 !important; padding-bottom: 0; margin: 0 auto 36px !important; max-width: 100%; }
  .hero-btns { justify-content: center !important; flex-wrap: wrap; gap: 12px; }
  .hero-btns .btn { min-width: 140px; justify-content: center; }
  .hero-stats-inner { grid-template-columns: repeat(3,1fr); max-width: 100%; gap: 0; }
  .hs-item { flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 8px; padding: 18px 10px; border-right: 1px solid rgba(255,255,255,0.06); border-bottom: none; }
  .hs-item:last-child { border-right: none; }
  .badge, .badge-white { display: inline-flex; margin-left: auto; margin-right: auto; }
  .section-title, .section-sub { text-align: center; }
  .section-sub { margin-left: auto; margin-right: auto; }
  .features-strip-inner { grid-template-columns: 1fr; }
  .fs-item { flex-direction: column; align-items: center; text-align: center; padding: 24px 20px; }
  .services-header { grid-template-columns: 1fr; text-align: center; gap: 16px; }
  .services-header > * { text-align: center; }
  .services-header a.btn { margin: 0 auto; display: inline-flex; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-page-grid { grid-template-columns: 1fr; }
  .spc-body { text-align: center; }
  .spc-list { text-align: left; }
  .spc-btn { margin: 0 auto; display: inline-flex; }
  .how-grid { grid-template-columns: 1fr; gap: 40px; }
  .how-section .section-title, .how-section .section-sub { text-align: center; }
  .how-visual { padding: 0; }
  .how-float-card { position: relative; bottom: auto; left: auto; width: 100%; min-width: unset; margin-top: 16px; border-radius: var(--radius); }
  .how-float-card2 { position: relative; top: auto; right: auto; margin-bottom: 16px; width: 100%; justify-content: center; border-radius: var(--radius); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-section .section-title, .about-section .section-sub { text-align: center; }
  .about-img-wrap { margin: 0 auto; max-width: 100%; }
  .about-features { grid-template-columns: 1fr; }
  .af-item { text-align: center; }
  .af-icon { margin: 0 auto 10px; }
  .about-stats { grid-template-columns: repeat(3,1fr); }
  .as-item { text-align: center; }
  .as-num { font-size: 28px; }
  .industries-section .section-title, .industries-section .section-sub { text-align: center; }
  .industries-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .ind-card { text-align: center; padding: 24px 12px 20px; }
  .cta-inner { flex-direction: column; text-align: center; align-items: center; padding: 48px 0; gap: 28px; }
  .cta-btns { justify-content: center; flex-wrap: wrap; width: 100%; gap: 12px; }
  .btn-cta-dark, .btn-cta-white { flex: 1; min-width: 160px; justify-content: center; }
  footer { margin-top: 0 !important; border-radius: 24px 24px 0 0; }
  .page-hero { padding-top: 72px; min-height: 420px; }
  .page-hero-inner { padding: 32px 0 48px; text-align: center; }
  .page-hero-title, .page-hero-sub { text-align: center; margin-left: auto; margin-right: auto; }
  .breadcrumb { justify-content: center; }
  .hiw-wrap { padding-left: 40px; max-width: 100%; }
  .industries-page-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { flex-direction: column; align-items: center; text-align: center; }
  .ti-icon { margin: 0 auto 8px; }
  .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .contact-form-box { padding: 28px 18px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 40px; text-align: center; }
  .footer-brand p { max-width: 100%; margin: 0 auto 24px; text-align: center; }
  .footer-logo-wrap { display: flex; justify-content: center; }
  .footer-col { text-align: center; }
  .footer-col ul li a:hover { padding-left: 0; }
  .social-links { justify-content: center; }
  .fc-item { justify-content: flex-start; text-align: left; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .fb-links { justify-content: center; }
  .sd-card { grid-template-columns: 1fr; gap: 28px; padding: 28px 20px; direction: ltr !important; }
  .sd-card:nth-child(even) { direction: ltr !important; }
  .sd-card:nth-child(even) > * { direction: ltr !important; }
}

@media (max-width: 520px) {
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2,1fr); }
  .features-strip-inner { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .carousel-btn { width: 40px; height: 40px; }
  .carousel-prev { left: 12px; }
  .carousel-next { right: 12px; }
  .svc-page-grid { grid-template-columns: 1fr; }
  .spc-top { height: 160px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 300px; justify-content: center; }
  .hero-title { font-size: clamp(24px,9vw,36px); }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .btn-cta-dark, .btn-cta-white { width: 100%; justify-content: center; text-align: center; }
  .about-stats { grid-template-columns: 1fr; }
  .as-num { font-size: 26px; }
  .industries-grid { grid-template-columns: repeat(2,1fr); }
  .hiw-wrap { padding-left: 32px; }
  .hiw-wrap::before { left: 10px; }
  .hiw-step::before { left: -22px; }
  .ipc-header { flex-wrap: wrap; gap: 10px; }
  .contact-form-box { padding: 20px 14px; }
  .section-pad { padding: 48px 0; }
}

/* =====================================================
   HORIZONTAL SERVICE CARDS — HOME PAGE
   ===================================================== */
.services-grid-new {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.svc-h-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.80);
  box-shadow: 0 4px 24px rgba(38,101,140,0.08), 0 1px 0 rgba(255,255,255,0.90) inset;
  overflow: hidden;
  position: relative;
  transition: transform 0.38s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.38s var(--ease), border-color 0.32s ease, background 0.32s ease;
  will-change: transform;
}
.svc-h-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s var(--ease);
}
.svc-h-card:hover {
  transform: translateY(-8px) scale(1.012);
  background: rgba(255,255,255,0.75);
  border-color: rgba(38,101,140,0.35);
  box-shadow: 0 20px 48px rgba(38,101,140,0.14), 0 0 0 1px rgba(38,101,140,0.18), 0 1px 0 rgba(255,255,255,0.90) inset;
}
.svc-h-card:hover::after { transform: scaleY(1); }
.svc-h-card:hover .svc-h-title { color: var(--primary); }
.svc-h-card:hover .svc-h-img { transform: scale(1.06); }
.svc-h-card:hover .svc-h-badge { transform: scale(1.2) rotate(-5deg); }

.svc-h-img-wrap {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, #032554 60%, #021F4A 100%);
  min-height: 200px;
}
.svc-h-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.svc-h-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(1,28,64,0.10) 0%, rgba(1,28,64,0.55) 100%);
}
.svc-h-badge {
  position: absolute; bottom: 14px; left: 14px; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; font-size: 22px;
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(1,28,64,0.18);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

.svc-h-body {
  padding: 28px 30px 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 2;
}
.svc-h-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  background: var(--primary-glow);
  border: 1px solid rgba(38,101,140,0.20);
  border-radius: 6px;
  padding: 3px 10px;
  display: inline-block;
  margin-bottom: 10px;
  width: fit-content;
}
.svc-h-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
  transition: color 0.25s;
  line-height: 1.3;
}
.svc-h-desc {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 20px;
  flex-grow: 1;
}
.svc-h-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  border: 1.5px solid rgba(38,101,140,0.30);
  border-radius: 8px;
  padding: 10px 20px;
  background: transparent;
  cursor: pointer;
  transition: gap 0.25s, background 0.3s, color 0.3s, border-color 0.3s, transform 0.25s;
  width: fit-content;
}
.svc-h-btn svg { width: 15px; height: 15px; flex-shrink: 0; transition: transform 0.25s; }
.svc-h-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  gap: 11px;
  transform: translateY(-1px);
}
.svc-h-btn:hover svg { transform: translateX(3px); }

/* =====================================================
   HORIZONTAL SERVICE CARDS — SERVICES PAGE
   ===================================================== */
.svc-page-grid-new {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.svc-ph-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.80);
  box-shadow: 0 4px 24px rgba(38,101,140,0.08), 0 1px 0 rgba(255,255,255,0.90) inset;
  overflow: hidden;
  position: relative;
  transition: transform 0.38s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.38s var(--ease), border-color 0.32s ease, background 0.32s ease;
  will-change: transform;
}
.svc-ph-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.svc-ph-card:hover {
  transform: translateY(-10px) scale(1.012);
  background: rgba(255,255,255,0.75);
  border-color: rgba(38,101,140,0.35);
  box-shadow: 0 20px 48px rgba(38,101,140,0.14), 0 0 0 1px rgba(38,101,140,0.18), 0 1px 0 rgba(255,255,255,0.90) inset;
}
.svc-ph-card:hover::after { transform: scaleX(1); }
.svc-ph-card:hover .svc-ph-title { color: var(--primary); }
.svc-ph-card:hover .svc-ph-img { transform: scale(1.06); }
.svc-ph-card:hover .svc-ph-badge { transform: scale(1.2) rotate(-5deg); }
.svc-ph-card:hover .spc-glow { opacity: 1; transform: scale(1.3); }
.svc-ph-card:hover .spc-btn { background: var(--primary); color: #fff; border-color: var(--primary); gap: 10px; }
.svc-ph-card:hover .spc-btn svg { transform: translateX(3px); }

.svc-ph-img-wrap {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, #032554 60%, #021F4A 100%);
  min-height: 220px;
}
.svc-ph-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.svc-ph-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(1,28,64,0.08) 0%, rgba(1,28,64,0.60) 100%);
}
.svc-ph-badge {
  position: absolute; bottom: 14px; left: 16px; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; font-size: 24px;
  background: rgba(255,255,255,0.95);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(1,28,64,0.18);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.svc-ph-body {
  padding: 32px 36px 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.svc-ph-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  background: var(--primary-glow);
  border: 1px solid rgba(38,101,140,0.20);
  border-radius: 6px;
  padding: 3px 10px;
  display: inline-block;
  margin-bottom: 12px;
  width: fit-content;
}
.svc-ph-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  transition: color 0.25s;
  line-height: 1.3;
}
.svc-ph-desc {
  font-size: 14.5px;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 22px;
}

/* =====================================================
   SERVICE DETAIL MODAL
   ===================================================== */
.svc-modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(1,14,32,0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.svc-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
/* =====================================================
   NEW SERVICE CARDS — Zigzag / Staggered Offset Layout
   Odd cards: 80% left-aligned | Even cards: 80% right-aligned
   Applied to both Home (svc-h-*) and Services page (svc-ph-*)
   ===================================================== */

/* ---- Shared row wrapper ---- */
.services-grid-new,
.svc-page-grid-new {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Each card sits inside a full-width row wrapper */
.svc-card-row {
  width: 100%;
  display: flex;
}

/* Odd rows (1,3,5) — card on left, 80% width */
.svc-card-row.row-left {
  justify-content: flex-start;
}
.svc-card-row.row-left .svc-h-card,
.svc-card-row.row-left .svc-ph-card {
  width: 80%;
  margin-right: auto;
}

/* Even rows (2,4,6) — card on right, 80% width */
.svc-card-row.row-right {
  justify-content: flex-end;
}
.svc-card-row.row-right .svc-h-card,
.svc-card-row.row-right .svc-ph-card {
  width: 80%;
  margin-left: auto;
}

/* ---- Shared card base (both home + services) ---- */
.svc-h-card,
.svc-ph-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.80);
  box-shadow: 0 4px 24px rgba(38,101,140,0.08), 0 1px 0 rgba(255,255,255,0.90) inset;
  overflow: hidden;
  position: relative;
  transition: transform 0.38s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.38s var(--ease), border-color 0.32s ease, background 0.32s ease;
  cursor: pointer;
  will-change: transform;
  min-height: 200px;
}

.svc-h-card::after,
.svc-ph-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.svc-h-card:hover,
.svc-ph-card:hover {
  transform: translateY(-8px) scale(1.012);
  background: rgba(255,255,255,0.75);
  border-color: rgba(38,101,140,0.35);
  box-shadow: 0 20px 48px rgba(38,101,140,0.14), 0 0 0 1px rgba(38,101,140,0.18), 0 1px 0 rgba(255,255,255,0.90) inset;
}

.svc-h-card:hover::after,
.svc-ph-card:hover::after { transform: scaleX(1); }

.svc-h-card:hover .svc-h-title,
.svc-ph-card:hover .svc-ph-title { color: var(--primary); }

.svc-h-card:hover .svc-h-img,
.svc-ph-card:hover .svc-ph-img { transform: scale(1.07); }

.svc-h-card:hover .svc-h-badge,
.svc-ph-card:hover .svc-ph-badge { transform: scale(1.2) rotate(-5deg); }

.svc-h-card:hover .svc-h-btn { background: var(--primary); color: #fff; border-color: var(--primary); gap: 10px; }
.svc-ph-card:hover .spc-btn,
.svc-h-card:hover .spc-btn { background: var(--primary); color: var(--white); border-color: var(--primary); gap: 10px; }
.svc-h-card:hover .spc-btn svg { transform: translateX(3px); }
.svc-ph-card:hover .spc-glow { opacity: 1; transform: scale(1.3); }

/* ---- Image panel (shared) ---- */
.svc-h-img-wrap,
.svc-ph-img-wrap {
  position: relative;
  width: 260px;
  min-width: 260px;
  flex-shrink: 0;
  background: var(--dark);
  overflow: hidden;
}

.svc-ph-img-wrap {
  width: 300px;
  min-width: 300px;
}

.svc-h-img,
.svc-ph-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.svc-h-img-overlay,
.svc-ph-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(1,28,64,0.08) 0%, rgba(1,28,64,0.52) 100%);
}

.svc-h-badge,
.svc-ph-badge {
  position: absolute;
  bottom: 14px;
  left: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  font-size: 22px;
  background: rgba(255,255,255,0.96);
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(1,28,64,0.18);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

.svc-ph-badge {
  width: 54px;
  height: 54px;
  font-size: 25px;
  border-radius: 14px;
  bottom: 18px;
  left: 20px;
}

/* ---- Content panel (home) ---- */
.svc-h-body {
  flex: 1;
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.svc-h-tag,
.svc-ph-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-glow);
  border: 1px solid rgba(38,101,140,0.22);
  border-radius: 20px;
  padding: 3px 12px;
  display: inline-block;
  width: fit-content;
}

.svc-h-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
  line-height: 1.3;
  transition: color 0.25s;
}

.svc-h-desc {
  font-size: 13px;
  color: #032554;
  line-height: 1.68;
  margin: 0;
}

.svc-h-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--primary);
  border: 1.5px solid rgba(38,101,140,0.30);
  border-radius: 8px;
  padding: 9px 18px;
  background: transparent;
  cursor: pointer;
  transition: gap 0.25s, background 0.3s, color 0.3s, border-color 0.3s;
  align-self: flex-start;
  margin-top: 4px;
}

.svc-h-btn svg { width: 14px; height: 14px; flex-shrink: 0; transition: transform 0.25s; }
.svc-h-btn:hover svg { transform: translateX(3px); }

/* ---- Content panel (services page) ---- */
.svc-ph-body {
  flex: 1;
  padding: 34px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.svc-ph-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 23px;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
  line-height: 1.25;
  transition: color 0.25s;
}

.svc-ph-desc {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.75;
  margin: 0;
  max-width: 640px;
}


/* =====================================================
   SERVICE MODAL
   ===================================================== */
.svc-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(1,14,32,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.svc-modal-overlay.active {
  display: flex;
  animation: modalFadeIn 0.3s ease both;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Modal box — flex column so footer is always pinned */
.svc-modal-box {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-radius: 28px;
  border: 1px solid rgba(38,101,140,0.18);
  box-shadow: 0 32px 80px rgba(1,28,64,0.22), 0 0 0 1px rgba(255,255,255,0.90) inset;
  width: 100%;
  max-width: 1300px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  position: relative;
  animation: modalSlideUp 0.35s cubic-bezier(0.34,1.56,0.64,1) both;
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(32px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Close button — absolute to modal box, always visible above scroll */
.svc-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(38,101,140,0.20);
  box-shadow: 0 2px 12px rgba(1,28,64,0.14);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  z-index: 20;
  flex-shrink: 0;
}
.svc-modal-close svg { width: 16px; height: 16px; color: var(--dark); transition: color 0.2s; }
.svc-modal-close:hover { background: var(--primary); transform: rotate(90deg) scale(1.1); box-shadow: 0 4px 20px rgba(38,101,140,0.40); }
.svc-modal-close:hover svg { color: #fff; }

/* Scrollable inner area */
.svc-modal-scroll {
  flex: 1;
  overflow-y: auto;
  border-radius: 28px 28px 0 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(38,101,140,0.25) transparent;
}
.svc-modal-scroll::-webkit-scrollbar { width: 5px; }
.svc-modal-scroll::-webkit-scrollbar-track { background: transparent; }
.svc-modal-scroll::-webkit-scrollbar-thumb { background: rgba(38,101,140,0.25); border-radius: 10px; }

/* Plain header (no image) */
.svc-modal-header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 52px 36px 24px; /* top padding accounts for close btn space */
  border-bottom: 1px solid rgba(38,101,140,0.10);
}

.svc-modal-emoji {
  font-size: 32px;
  width: 64px; height: 64px; min-width: 64px;
  background: linear-gradient(135deg, var(--primary-glow), rgba(84,172,191,0.12));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(38,101,140,0.15);
  box-shadow: 0 4px 20px rgba(38,101,140,0.12);
}

.svc-modal-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--primary);
  background: var(--primary-glow);
  border: 1px solid rgba(38,101,140,0.22);
  border-radius: 20px; padding: 3px 12px;
  display: inline-block; margin-bottom: 8px;
}

.svc-modal-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px; font-weight: 800;
  color: var(--dark); margin: 0; line-height: 1.2;
}

/* Body */
.svc-modal-body { padding: 28px 36px 8px; }

.svc-modal-section { margin-bottom: 22px; padding-bottom: 20px; border-bottom: 1px solid rgba(38,101,140,0.08); }
.svc-modal-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.svc-modal-section-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 800; color: var(--primary); margin: 0 0 10px; text-transform: uppercase; letter-spacing: 0.8px; }
.svc-modal-section p { font-size: 13.5px; color: var(--text-body); line-height: 1.75; margin: 0 0 10px; }
.svc-modal-section p:last-child { margin-bottom: 0; }

.svc-modal-list { list-style: none; padding: 0; margin: 0 0 12px; display: flex; flex-direction: column; gap: 8px; }
.svc-modal-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--text-body); line-height: 1.6; }
.svc-modal-list li::before { content: "✓"; color: var(--primary); font-weight: 700; font-size: 10px; margin-top: 3px; flex-shrink: 0; width: 18px; height: 18px; background: var(--primary-glow); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(38,101,140,0.22); }

/* Footer — pinned, never scrolls */
.svc-modal-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px 20px;
  border-top: 1px solid rgba(38,101,140,0.10);
  flex-shrink: 0;
  border-radius: 0 0 28px 28px;
  background: rgba(255,255,255,0.97);
}

/* Back button — pushes right-side buttons to the right */
.svc-modal-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--primary);
  background: var(--primary-glow);
  border: 1.5px solid rgba(38,101,140,0.30);
  border-radius: 10px;
  padding: 10px 18px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  margin-right: auto; /* pushes Get Started + Close to right */
}
.svc-modal-back-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* Right-side footer buttons wrapper */
.svc-modal-footer-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto; /* always right-aligned even when no back btn */
}

.svc-modal-close-btn {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; font-weight: 600;
  color: var(--grey);
  background: rgba(1,28,64,0.05);
  border: 1.5px solid rgba(1,28,64,0.10);
  border-radius: 10px;
  padding: 10px 22px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.svc-modal-close-btn:hover { background: rgba(1,28,64,0.10); color: var(--dark); }

/* ---- Sub-service cards grid (Gas Stations / CStores modal) ---- */
.sub-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.sub-svc-card {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.80);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(38,101,140,0.08), 0 1px 0 rgba(255,255,255,0.90) inset;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s var(--ease), border-color 0.25s ease, background 0.25s ease;
  cursor: pointer;
  position: relative;
}

.sub-svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.sub-svc-card:hover {
  transform: translateY(-5px) scale(1.02);
  background: rgba(255,255,255,0.75);
  border-color: rgba(38,101,140,0.35);
  box-shadow: 0 20px 48px rgba(38,101,140,0.14), 0 0 0 1px rgba(38,101,140,0.18), 0 1px 0 rgba(255,255,255,0.90) inset;
}

.sub-svc-card:hover::after { transform: scaleX(1); }
.sub-svc-card:hover .sub-svc-title { color: var(--primary); }
.sub-svc-card:hover .sub-svc-img { transform: scale(1.07); }
.sub-svc-card:hover .sub-svc-btn { background: var(--primary); color: var(--white); border-color: var(--primary); gap: 10px; }
.sub-svc-card:hover .sub-svc-btn svg { transform: translateX(3px); }

/* Image top section */
.sub-svc-img-wrap {
  position: relative;
  width: 100%;
  height: 110px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, #032554 60%, #021F4A 100%);
  flex-shrink: 0;
}

.sub-svc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.sub-svc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1,28,64,0.05) 0%, rgba(1,28,64,0.50) 100%);
}

.sub-svc-emoji {
  position: absolute;
  bottom: 10px;
  left: 12px;
  z-index: 3;
  font-size: 18px;
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(255,255,255,0.95);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(1,28,64,0.18);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

.sub-svc-card:hover .sub-svc-emoji { transform: scale(1.15) rotate(-5deg); }

/* Body section */
.sub-svc-body {
  padding: 14px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.sub-svc-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  transition: color 0.2s;
}

.sub-svc-desc {
  font-size: 11.5px;
  color: var(--grey);
  line-height: 1.6;
  flex: 1;
}

.sub-svc-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--primary);
  border: 1.5px solid rgba(38,101,140,0.30);
  border-radius: 7px;
  padding: 6px 12px;
  background: transparent;
  cursor: pointer;
  transition: gap 0.25s, background 0.3s, color 0.3s, border-color 0.3s;
  align-self: flex-start;
  margin-top: auto;
}

.sub-svc-btn svg { width: 12px; height: 12px; flex-shrink: 0; transition: transform 0.25s; }

/* ---- Detail view image banner with overlaid emoji + title ---- */
.svc-modal-img-banner {
  position: relative;
  width: 100%;
  height: 0px;
  overflow: hidden;
  border-radius: 28px 28px 0 0;
  flex-shrink: 0;
}

.svc-modal-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.svc-modal-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1,28,64,0.10) 0%, rgba(1,28,64,0.72) 100%);
}

/* Emoji + tag + title sitting over the image at the bottom */
.svc-modal-banner-content {
  position: absolute;
  bottom: 22px;
  left: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 3;
}

.svc-modal-banner-emoji {
  font-size: 28px;
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(1,28,64,0.25);
}

.svc-modal-tag-light {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(84,172,191,0.18);
  border: 1px solid rgba(84,172,191,0.35);
  border-radius: 20px;
  padding: 3px 12px;
  display: inline-block;
  margin-bottom: 6px;
}

.svc-modal-title-light {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(1,28,64,0.40);
}

@media (max-width: 640px) {
  .svc-modal-img-banner { height: 170px; border-radius: 20px 20px 0 0; }
  .svc-modal-banner-content { bottom: 16px; left: 20px; gap: 12px; }
  .svc-modal-banner-emoji { width: 48px; height: 48px; min-width: 48px; font-size: 22px; border-radius: 12px; }
  .svc-modal-title-light { font-size: 18px; }
  .sub-svc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 400px) {
  .sub-svc-grid { grid-template-columns: 1fr; }
}

.svc-modal-section {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(38,101,140,0.08);
}

.svc-modal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.svc-modal-section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.svc-modal-section p {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.75;
  margin: 0 0 10px;
}

.svc-modal-section p:last-child { margin-bottom: 0; }

.svc-modal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.svc-modal-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.6;
}

.svc-modal-list li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
  font-size: 10px;
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: var(--primary-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(38,101,140,0.22);
}

/* =====================================================
   RESPONSIVE — Zigzag cards
   ===================================================== */  .svc-ph-card { grid-template-rows: 170px auto; }
  .svc-modal-box { border-radius: 16px; }
  .svc-modal-scroll { border-radius: 16px 16px 0 0; }
  .svc-modal-emoji { width: 52px; height: 52px; min-width: 52px; font-size: 26px; }
  .svc-modal-footer { border-radius: 0 0 16px 16px; }
}

/* =====================================================
   MOBILE — Single authoritative block
   1024px → 768px → 480px → 380px
   ===================================================== */

/* --- why-works grid (how-it-works page) --- */
.why-works-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

/* ── 1024px ── */
@media (max-width: 1024px) {
  .how-visual { display: none; }
  .how-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .sd-card { grid-template-columns: 1fr; gap: 32px; }
  .sd-card:nth-child(even) { direction: ltr; }
  .contact-layout { grid-template-columns: 1fr; }
  .industries-page-grid { grid-template-columns: repeat(2,1fr); }
  .mission-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .svc-page-grid { grid-template-columns: repeat(2,1fr); }
  .why-works-grid { grid-template-columns: repeat(2,1fr); }

  /* Zigzag cards — slight narrow */
  .svc-card-row.row-left .svc-h-card,
  .svc-card-row.row-right .svc-h-card,
  .svc-card-row.row-left .svc-ph-card,
  .svc-card-row.row-right .svc-ph-card { width: 90%; }
}

/* ── 768px ── */
@media (max-width: 768px) {
  /* Base */
  .container { padding: 0 16px; }
  .section-pad { padding: 60px 0; }
  .section-pad-sm { padding: 40px 0; }
  .section-title { font-size: clamp(22px,6vw,36px) !important; }
  .section-sub { font-size: 15px; }
  .badge, .badge-white { display: table; margin-left: auto; margin-right: auto; }
  .section-title, .section-sub { text-align: center; }
  .section-sub { margin-left: auto; margin-right: auto; }

  /* Navbar */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  #navbar { width: calc(100% - 20px); top: 10px; }
  .mobile-menu { padding: 42px 24px 48px; align-items: center; text-align: center; }
  .mobile-menu a { text-align: center; width: 100%; }
  .mobile-menu .mob-cta { width: 100%; text-align: center; justify-content: center; }

  /* Hero */
  .hero { max-height: none; min-height: 100vh; }
  .hero-content { justify-content: center !important; padding: 0 16px !important; }
  .hero-text { max-width: 100% !important; text-align: center !important; }
  .hero-badge { margin: 0 auto 16px !important; justify-content: center; float: none !important; }
  .hero-title { text-align: center !important; font-size: clamp(26px,7vw,44px); }
  .hero-sub { text-align: center !important; border-left: none !important; padding-left: 0 !important; margin: 0 auto 32px !important; max-width: 100%; font-size: 15px; }
  .hero-btns { justify-content: center !important; flex-wrap: wrap; gap: 12px; }
  .hero-btns .btn { min-width: 140px; justify-content: center; }
  .slide-text { text-align: center !important; }

  /* Hero stats bar */
  .hero-stats-inner { grid-template-columns: repeat(3,1fr); max-width: 100%; }
  .hs-item { flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 6px; padding: 16px 8px; }
  .hs-num { font-size: 18px; }
  .hs-label { font-size: 11px; }

  /* Features strip */
  .features-strip-inner { grid-template-columns: 1fr 1fr; }
  .fs-item { flex-direction: column; align-items: center; text-align: center; padding: 22px 16px; }

  /* Services section header */
  .services-header { grid-template-columns: 1fr; text-align: center; gap: 16px; }
  .services-header > * { text-align: center; }
  .services-header a.btn { margin: 0 auto; display: inline-flex; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-page-grid { grid-template-columns: 1fr; }

  /* Zigzag service cards — full width, stacked */
  .svc-card-row { justify-content: stretch !important; }
  .svc-card-row.row-left .svc-h-card,
  .svc-card-row.row-right .svc-h-card,
  .svc-card-row.row-left .svc-ph-card,
  .svc-card-row.row-right .svc-ph-card { width: 100%; margin: 0; }

  .svc-h-card,
  .svc-ph-card {
    display: flex !important;
    flex-direction: column !important;
    min-height: auto !important;
    grid-template-columns: unset !important;
    grid-template-rows: unset !important;
  }
  .svc-h-img-wrap,
  .svc-ph-img-wrap {
    width: 100% !important;
    min-width: unset !important;
    height: 190px !important;
    flex-shrink: 0;
  }
  .svc-h-body { padding: 18px 20px 22px !important; }
  .svc-ph-body { padding: 20px 22px 24px !important; }
  .svc-ph-title { font-size: 18px; }
  .svc-h-title { font-size: 16px; }
  .services-grid-new, .svc-page-grid-new { gap: 16px; }

  /* How section */
  .how-visual { display: none; }
  .how-grid { grid-template-columns: 1fr; gap: 40px; margin-top: 20px;margin-bottom: 20px;}
  .how-section .section-title, .how-section .section-sub { text-align: center; }
  .hiw-wrap { padding-left: 36px; max-width: 100%; }
  .hiw-wrap::before { left: 12px; }
  .hiw-step::before { left: -24px; }
  .hiw-step-title { font-size: 19px; color: var(--dark); }
  .hiw-step-desc { font-size: 14px; }
  .why-works-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* About section */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-section .section-title, .about-section .section-sub { text-align: center; }
  .about-img-wrap { margin: 0 auto; max-width: 100%; }
  .about-features { grid-template-columns: 1fr 1fr; gap: 12px; }
  .af-item { text-align: center; }
  .af-icon { margin: 0 auto 10px; }
  .about-stats { grid-template-columns: repeat(3,1fr); max-width: 100%; }
  .as-num { font-size: 26px; }
  .as-label { font-size: 12px; }

  /* Industries */
  .industries-grid { grid-template-columns: repeat(3,1fr); gap: 12px; }
  .ind-card { padding: 22px 10px 18px; }
  .industries-section .section-title, .industries-section .section-sub { text-align: center; }
  .industries-page-grid { grid-template-columns: 1fr; }
  .ipc-header { flex-wrap: wrap; gap: 10px; }

  /* Mission / Trust / Why-works */
  .mission-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { flex-direction: column; align-items: center; text-align: center; }
  .ti-icon { margin: 0 auto 8px; }

  /* How-it-works sd-card */
  .sd-card { grid-template-columns: 1fr; gap: 28px; padding: 28px 20px; direction: ltr !important; }
  .sd-card:nth-child(even) { direction: ltr !important; }
  .sd-card:nth-child(even) > * { direction: ltr !important; }

  /* CTA */
  .cta-inner { flex-direction: column; text-align: center; align-items: center; padding: 48px 0; gap: 24px; }
  .cta-title { font-size: clamp(20px,5.5vw,32px); }
  .cta-btns { justify-content: center; flex-wrap: wrap; width: 100%; gap: 12px; }
  .btn-cta-dark, .btn-cta-white { flex: 1; min-width: 150px; justify-content: center; }

  /* Page hero */
  .page-hero { min-height: 380px; padding-top: 72px; }
  .page-hero-inner { padding: 28px 0 44px; text-align: center; }
  .page-hero-title { font-size: clamp(24px,6.5vw,40px); }
  .page-hero-sub { font-size: 15px; color: rgba(255,255,255,0.78); margin-left: auto; margin-right: auto; }
  .breadcrumb { justify-content: center; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-box { padding: 28px 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .cf-title { font-size: 20px; }
  .map-box { height: 180px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; padding-bottom: 36px; }
  .footer-brand { grid-column: 1 / -1; text-align: center; }
  .footer-brand p { max-width: 100%; margin: 0 auto 20px; text-align: center; }
  .footer-logo-wrap { display: flex; justify-content: center; margin-bottom: 14px; }
  .social-links { justify-content: center; }
  .footer-col { text-align: center; }
  .footer-col ul li a:hover { padding-left: 0; }
  .fc-item { text-align: left; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
  .fb-links { justify-content: center; flex-wrap: wrap; gap: 16px; }
  footer { margin-top: 0 !important; border-radius: 24px 24px 0 0; }

  /* Modal */
  .svc-modal-overlay { padding: 12px; }
  .svc-modal-box { border-radius: 20px; max-height: 92vh; }
  .svc-modal-scroll { border-radius: 20px 20px 0 0; }
  .svc-modal-header { padding: 44px 20px 16px; }
  .svc-modal-body { padding: 18px 20px 8px; }
  .svc-modal-title { font-size: 18px; }
  .svc-modal-footer { padding: 14px 18px 18px; flex-wrap: wrap; gap: 10px; border-radius: 0 0 20px 20px; }
  .svc-modal-footer-right { margin-left: 0; width: 100%; }
  .svc-modal-footer-right .btn, .svc-modal-close-btn { flex: 1; justify-content: center; text-align: center; }
  .svc-modal-back-btn { margin-right: 0; }
  .svc-modal-img-banner { height: 160px; border-radius: 20px 20px 0 0; }
  .svc-modal-banner-content { bottom: 14px; left: 16px; gap: 10px; }
  .svc-modal-banner-emoji { width: 44px; height: 44px; min-width: 44px; font-size: 20px; }
  .svc-modal-title-light { font-size: 16px; }
  .sub-svc-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .sub-svc-img-wrap { height: 90px; }
}

/* ── 480px ── */
@media (max-width: 480px) {
  .container { padding: 0 14px;margin-top: 20px;margin-bottom: 20px; }
  .section-pad { padding: 0px 0; }

  /* Hero */
  .hero-title { font-size: clamp(22px,8vw,32px); }
  .hero-sub { font-size: 14px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 280px; justify-content: center; }

  /* Hero stats — single column rows */
  .hero-stats-inner { grid-template-columns: 1fr; }
  .hs-item { flex-direction: row; justify-content: center; gap: 14px; border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 14px 16px; }
  .hs-item:last-child { border-bottom: none; }

  /* Features */
  .features-strip-inner { grid-template-columns: 1fr; }
  .fs-item { padding: 20px 16px; }

  /* Service cards */
  .svc-h-card, .svc-ph-card { min-height: auto !important; }
  .svc-h-img-wrap, .svc-ph-img-wrap { height: 160px !important; }

  /* About */
  .about-features { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr;  }

  /* Industries */
  .industries-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }

  /* Why-works */
  .why-works-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-btns { flex-direction: column; align-items: stretch; }
  .btn-cta-dark, .btn-cta-white { width: 100%; justify-content: center; text-align: center; }

  /* Page hero */
  .page-hero { min-height: 320px; }
  .page-hero-title { font-size: clamp(20px,7.5vw,32px); }

  /* Contact */
  .contact-form-box { padding: 22px 14px; }
  .cf-title { font-size: 18px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .footer-logo-wrap img { height: 52px; }
  .fc-item { justify-content: flex-start; }

  /* How-it-works */
  .hiw-wrap { padding-left: 28px; }
  .hiw-wrap::before { left: 8px; }
  .hiw-step::before { left: -20px; }
  .hiw-step-title { font-size: 17px; }

  /* Modal — sheet from bottom */
  .svc-modal-overlay { padding: 0; align-items: flex-end; }
  .svc-modal-box { border-radius: 20px 20px 0 0; max-height: 94vh; }
  .svc-modal-scroll { border-radius: 20px 20px 0 0; }
  .svc-modal-footer { border-radius: 0; }
  .sub-svc-grid { grid-template-columns: 1fr 1fr; }
}

/* ── 380px ── */
@media (max-width: 380px) {
  .container { padding: 0 12px; }
  .hero-title { font-size: clamp(20px,9vw,28px); }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .sub-svc-grid { grid-template-columns: 1fr; }
  .about-stats { max-width: 340px; }
  .footer-grid { gap: 20px; }
  .svc-modal-banner-emoji { width: 38px; height: 38px; min-width: 38px; font-size: 18px; }
  .svc-modal-title-light { font-size: 15px; }
  .page-hero-title { font-size: clamp(18px,8vw,28px); }
  .hero-btns .btn { font-size: 13px; padding: 11px 18px; }
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start; /* 🔥 THIS fixes vertical alignment */
  gap: 2rem;
}
.about-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* ✅ 4 equal columns */
  gap: 16px;
}

@media (max-width: 768px) {

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  /* Brand full width */
  .footer-brand {
    grid-column: span 2;
    text-align: center;
  }

  /* Navigation + Services side by side */
  .footer-col:nth-child(2),
  .footer-col:nth-child(3) {
    grid-column: span 1;
  }

  /* Contact full width */
  .footer-col:nth-child(4) {
    grid-column: span 2;
  }

  /* Center align for mobile */
  .footer-col h4 {
    text-align: center;
  }

  .footer-col ul {
    text-align: center;
  }

  .fc-item {
    justify-content: center;
    text-align: center;
  }

  .footer-bottom {
    text-align: center;
    flex-direction: column;
    gap: 10px;
  }

  .fb-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}



.svc-modal-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top; /* 🔥 FIX */
  display: block;
}

/* ===============================
   HERO STATS — AI STYLE EXACT
================================ */

.hero-stats-section {
  background: linear-gradient(180deg, #0b2545, #0a1f3a);
  padding: 0px 0;
}

/* MAIN ROW */
.hero-stats-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}

/* EACH ITEM */
.hs-item {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 20px;
}

@media (max-width: 375px){
      display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: column;
}
/* REMOVE ALL BOXES */
.hs-item,
.hs-content,
.hs-icon {
  background: none !important;
  box-shadow: none !important;
  border: none !important;
  text-align: center;
}

/* ICON */
.hs-icon {
  font-size: 28px;
  margin-bottom: 6px;
}

/* NUMBER */
.hs-num {
  font-size: 28px;
  font-weight: 800;
  color: #7dd3fc;
  line-height: 1;
}

/* LABEL */
.hs-label {
  font-size: 13px;
  color: #cbd5e1;
  margin-top: 4px;
}

/* 🔥 DIVIDER LINE */
.hs-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255,255,255,0.25);
}

/* ===============================
   MOBILE — EXACT MATCH
================================ */

@media (max-width: 768px) {

  .hero-stats-inner {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-around !important;
    align-items: center;
    width: 100%;
  }

  .hs-item {
    flex: 1;
    padding: 0 6px;
  }

  .hs-icon {
    font-size: 18px;
  }

  .hs-num {
    font-size: 18px;
  }

  .hs-label {
    font-size: 10px;
  }

  /* SMALLER DIVIDER */
  .hs-item:not(:last-child)::after {
    height: 40%;
    top: 30%;
  }
}

/* ❌ Remove hover effect completely */
.fs-item::before {
  display: none !important;
}



.fs-item::before {
  opacity: 0 !important;
  transition: none !important;
}


.fs-item {
  transition: none !important;
}

/* =============================================
   WHATSAPP WIDGET — bottom-left
   ============================================= */
#whatsapp-widget {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0,0,0,0.18);
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s ease;
  animation: wa-pop-in 0.5s 1.2s cubic-bezier(.34,1.56,.64,1) both;
}
#whatsapp-widget:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.60), 0 4px 12px rgba(0,0,0,0.18);
}
.wa-pulse {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.40);
  animation: wa-pulse-ring 2s ease-out infinite;
  pointer-events: none;
}
.wa-tooltip {
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) scale(0.92);
  background: #111;
  color: #fff;
  font-size: 13px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.wa-tooltip::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: #111;
}
#whatsapp-widget:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
@keyframes wa-pulse-ring {
  0%   { transform: scale(1); opacity: 0.7; }
  70%  { transform: scale(1.65); opacity: 0; }
  100% { transform: scale(1.65); opacity: 0; }
}
@keyframes wa-pop-in {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* =============================================
   SCROLL TO TOP — bottom-right
   ============================================= */
#scroll-to-top {
  position: fixed;
  bottom: 120px;
  right: 33px;
  z-index: 9999;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #26658C;
  border: 1.5px solid rgba(84, 172, 191, 0.35);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(38, 101, 140, 0.40);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(.34,1.56,.64,1), background 0.2s ease, box-shadow 0.2s ease;
}
#scroll-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#scroll-to-top:hover {
  background: #54ACBF;
  box-shadow: 0 8px 32px rgba(84, 172, 191, 0.55);
  transform: translateY(-3px);
}
#scroll-to-top:active {
  transform: translateY(0) scale(0.94);
}

/* FORCE SAME LAYOUT (ALL DEVICES) */
.hero-stats-inner {
  display: flex !important;
  flex-direction: row !important;   /* 🔥 ALWAYS HORIZONTAL */
  justify-content: center;
  align-items: center;
  gap: 60px;
  text-align: center;
}

/* EACH ITEM */
.hs-item {
  position: relative;
  display: flex;
  flex-direction: column;  /* icon top, text below */
  align-items: center;
}

/* ICON */
.hs-icon {
  font-size: 26px;
  margin-bottom: 6px;
}

/* NUMBER */
.hs-num {
  font-size: 22px;
  font-weight: 700;
  color: #7fe7f0;
}

/* LABEL */
.hs-label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}

/* 🔥 CENTER DIVIDER LINE */
.hs-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
}

/* Default (Desktop) — keep your current styles */
.footer-col {
  text-align: left; /* or whatever you already use */
}

/* Mobile View (max-width: 768px) */
@media (max-width: 768px) {
  .footer-col {
    text-align: left;
    align-items: flex-start;
  }

  .fc-item {
    justify-content: flex-start;
    text-align: left;
  }

  .fc-text {
    text-align: left;
  }
}

.pl-ring-wrap {
  position: absolute;
  left: 13%; /* increase from 50% */
  transform: translate(-50%, -50%);
}
.pl-arrow-pulse.second {
  animation-delay: 0.8s; /* adjust timing as needed */
}
@keyframes plSparkTravel2 {
  0% {
    transform: translate(0,0) scale(0.6);
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  50% {
    transform: translate(30px,-10px) scale(1.1); /* different direction */
    opacity: 1;
  }
  72% {
    transform: translate(45px,-15px) scale(0.7);
    opacity: 0.4;
  }
  73% {
    opacity: 0;
  }
  100% {
    transform: translate(45px,-15px) scale(0.6);
    opacity: 0;
  }
}
.pl-arrow-pulse.second {
  left: -6px; /* tweak this */
  top: 72%;   /* slight adjustment */
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-form-box {
    order: -1; /* brings form to top */
  }

  .contact-info-col {
    order: 2;
  }
}

.rsku-gl-nav {
  margin-top: -20px; /* move up */
}
.rsku-gl-nav {
  display: flex;
  justify-content: center; /* bring together */
  align-items: center;
  gap: 8px; /* control spacing manually */
}

.main-wrapper > * + * {
  margin-top: 60px;
}

@media (max-width: 768px) {
  .main-wrapper > * + * {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 85vh;
  }
}

.page-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;     /* vertical center */
  justify-content: center; /* horizontal center */
  text-align: center;
  position: relative;
}

footer .container {
  margin-bottom: 0 !important;
}

@media (max-width: 480px) {
  .about-stats {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .about-stats > div {
    flex: 1;
    min-width: 0; /* prevents overflow issues */
  }
}

@media (max-width: 480px) {
  .about-stats {
    display: flex;
    flex-wrap: nowrap;        /* ❗ force one line */
    gap: 10px;
  }

  .about-stats > div {
    flex: 1;
    min-width: 0;
  }

  .about-stats > div div:first-child {
    font-size: 22px;          /* number */
  }

  .about-stats > div div:last-child {
    font-size: 10px;          /* label */
  }
}

  .breadcrumb { justify-content: center; }
  .page-hero-sub { margin: auto; }

  /* ===== TOP MARQUEE BAR ===== */
.top-marquee {
  width: 100%;
  background: linear-gradient(90deg, #021f4a, #26658C);
  color: #fff;
  font-size: 13px;
  overflow: hidden;
  position: relative;
  z-index: 9999;
}

/* Scrolling content */
.marquee-content {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee-scroll 20s linear infinite;
  padding: 8px 0;

  width: max-content; /* 🔥 important */
}
.marquee-content span {
  display: inline-block;
}

/* Animation */
@keyframes marquee-scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 768px) {
  .top-marquee {
    font-size: 12px;
  }

  .marquee-content {
    gap: 40px;
    animation-duration: 14s;
  }
}

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

@keyframes marquee-scroll {
  0% {
    transform: translateX(100%); /* start from right */
  }
  100% {
    transform: translateX(-100%); /* fully exit left */
  }
}
.top-marquee {
  overflow: hidden;
}

.marquee-track {
  display: block; /* ❗ important change */
}

.marquee-content {
  display: inline-block;
  white-space: nowrap;
  padding: 8px 20px;

  animation: marquee-scroll 18s linear infinite;
}
@media (max-width: 768px) {
  .marquee-content {
    animation-duration: 14s; /* faster for small screen */
  }
}





@media (max-width: 480px) {

  .about-stats {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;              /* 🔥 full width */
    max-width: 100%;          /* 🔥 override old limit */
    padding: 0 12px;
    gap: 8px;
  }

  .about-stats .as-item {
    flex: 1;                  /* 🔥 expand evenly */
    min-width: 0;
    
    padding: 12px 6px;        /* reduce vertical, increase horizontal feel */
    border-radius: 12px;
  }

}



.page-hero {
  position: relative;
  min-height: 100vh; /* full screen height */
  display: flex;
  align-items: center;   /* 🔥 vertical center */
  justify-content: center; /* horizontal center */
  text-align: center;
}

.page-hero-inner {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}


.marquee-content span {
  position: relative;
  padding-right: 40px;
}

.marquee-content span::after {
  content: "|";
  position: absolute;
  right: 10px;
  opacity: 0.5;
}

.marquee-content span:last-child::after {
  display: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;

  z-index: 999999; /* VERY IMPORTANT */

  background: rgba(1, 14, 32, 0.98);
}
body.menu-open {
  overflow: hidden;
}
.mobile-menu {
  pointer-events: auto;
}

body.menu-open *:not(.mobile-menu):not(.mobile-menu *) {
  pointer-events: none;
}
.page-hero-banner-wrap {
  position: absolute;
  z-index: 0;
}
.mobile-menu {
  z-index: 999999;
}
.mobile-menu .mob-cta {
  text-align: left;
  justify-content: flex-start;
  margin-left: 0;
}

.top-marquee {
  overflow: hidden;
  width: 100%;
  background: #0c1f3f; /* optional */
}

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

.marquee-content {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  padding: 8px 20px;

  /* 🔥 FIX DELAY */
  will-change: transform;
  transform: translateZ(0);
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Mobile tweak */
@media (max-width: 768px) {
  .marquee-track {
    animation-duration: 14s;
  }
}

.about-stats {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
  overflow: hidden; /* prevents scroll */
}

.about-stats {
  display: flex;
  width: 100%;
  gap: 8px;
}

.about-stats > div {
  flex: 1;              /* 🔥 equal width */
  min-width: 0;         /* 🔥 prevents overflow */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.about-stats h3,
.about-stats span {
  margin: 0;
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
}
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* ===== GLOBAL OVERFLOW FIX ===== */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Prevent flex/grid overflow issues */
* {
  min-width: 0;
}

/* Images never overflow */
img {
  max-width: 100%;
  height: auto;
}








.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100vw;

  /* ✅ LIGHT CLEAN BACKGROUND */
  background: rgba(255, 255, 255, 0.96);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  z-index: 1099;
  display: flex;
  flex-direction: column;

  transform: translateX(100%);
  transition: transform 0.35s ease;

  overflow-y: auto;
}
.mobile-menu::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(84,172,191,0.18), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 20px 22px;

  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
}


.mobile-menu-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;

  background: #f3f6f9;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.25s;
}

.mobile-menu-close svg {
  stroke: #011C40;
}

.mobile-menu-close:hover {
  background: #e6eef5;
  transform: rotate(90deg);
}

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;

  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;

  color: #011C40;

  padding: 18px 22px;
  margin: 4px 16px;

  border-radius: 10px;

  transition: all 0.25s ease;
}
.mobile-menu .mm-arrow {
  stroke: #94a3b8;
  transition: 0.25s;
}

.mobile-menu a:hover .mm-arrow {
  stroke: #26658C;
  transform: translateX(4px);
}

.mobile-menu .mob-cta {
  margin: 24px 18px 0;

  background: linear-gradient(135deg, #26658C, #54ACBF);
  color: #fff !important;

  border-radius: 12px;
  padding: 14px;

  font-size: 15px;
  font-weight: 700;

  text-align: center;

  box-shadow: 0 6px 20px rgba(38,101,140,0.25);

  transition: 0.25s;
}

.mobile-menu .mob-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(38,101,140,0.35);
}
.mobile-menu-overlay {
  position: fixed;
  inset: 0;

  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(4px);

  z-index: 1098;

  display: none;
}

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

.mobile-menu-body a {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.mobile-menu.open .mobile-menu-body a {
  opacity: 1;
  transform: translateY(0);
}

/* 🔥 SLOW STAGGER */
.mobile-menu.open .mobile-menu-body a:nth-child(1) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-menu-body a:nth-child(2) { transition-delay: 0.30s; }
.mobile-menu.open .mobile-menu-body a:nth-child(3) { transition-delay: 0.45s; }
.mobile-menu.open .mobile-menu-body a:nth-child(4) { transition-delay: 0.60s; }
.mobile-menu.open .mobile-menu-body a:nth-child(5) { transition-delay: 0.75s; }
.mobile-menu.open .mobile-menu-body a:nth-child(6) { transition-delay: 0.90s; }


iframe[src*="tawk"] {
  opacity: 1 !important;
  visibility: visible !important;
}



.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;

  border-bottom: 1px solid rgba(0,0,0,0.06);

  background: transparent; /* ✅ remove white */
  backdrop-filter: none;   /* ✅ remove blur */
}