/*
 * modern.css — Applash Solution Premium UI Redesign
 * Loads AFTER style.css to cleanly override and extend.
 * Preserves all existing semantic HTML, routes, and SEO structure.
 */

/* ============================================================
   1. CSS DESIGN TOKENS / VARIABLES
   ============================================================ */
:root {
  /* Brand colours */
  --as-primary:       #022d62;   /* original navy — KEEP for brand */
  --as-primary-light: #0a4a9a;
  --as-accent:        #0ea5e9;   /* sky-blue tech accent */
  --as-indigo:        #6366f1;   /* indigo for secondary CTAs */
  --as-gradient:      linear-gradient(135deg, #022d62 0%, #6366f1 100%);
  --as-gradient-rev:  linear-gradient(135deg, #6366f1 0%, #022d62 100%);
  --as-gradient-sky:  linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);

  /* Dark surfaces */
  --as-dark:          #05132b;
  --as-dark-mid:      #0d1b3e;
  --as-dark-card:     #111d3c;

  /* Light surfaces */
  --as-light:         #f0f6ff;
  --as-white:         #ffffff;
  --as-surface:       #f8faff;

  /* Text */
  --as-text:          #1a2340;
  --as-text-muted:    #64748b;
  --as-text-light:    rgba(255,255,255,0.85);

  /* Shadows */
  --as-shadow-sm:     0 2px 12px rgba(2,45,98,.08);
  --as-shadow-md:     0 8px 32px rgba(2,45,98,.12);
  --as-shadow-lg:     0 20px 60px rgba(2,45,98,.18);
  --as-shadow-glow:   0 0 40px rgba(99,102,241,.25);

  /* Border */
  --as-radius:        12px;
  --as-radius-lg:     20px;
  --as-radius-xl:     32px;

  /* Transitions */
  --as-ease:          cubic-bezier(.4, 0, .2, 1);
  --as-dur:           0.35s;
  --as-dur-fast:      0.2s;

  /* Spacing */
  --as-section-py:    96px;
  --as-section-py-sm: 60px;
}

/* ============================================================
   2. GLOBAL RESET & TYPOGRAPHY
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Archivo', sans-serif;
  font-size: 15px;
  color: var(--as-text);
  background: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Plus Jakarta Sans', 'Archivo', sans-serif;
  color: var(--as-primary);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.75rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.875rem); font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }
h5 { font-size: 1.05rem; font-weight: 600; }
h6 { font-size: 0.95rem; font-weight: 500; line-height: 1.6; }

p { line-height: 1.75; color: var(--as-text-muted); }

a {
  color: var(--as-accent);
  text-decoration: none;
  transition: color var(--as-dur-fast) var(--as-ease);
}
a:hover { color: var(--as-primary); }

/* Gradient text utility */
.text-gradient {
  background: var(--as-gradient-sky);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   3. SECTION SPACING
   ============================================================ */
.space-ptb { padding: var(--as-section-py) 0; }
.space-pt  { padding-top: var(--as-section-py); }
.space-pb  { padding-bottom: var(--as-section-py); }

@media (max-width: 768px) {
  .space-ptb { padding: var(--as-section-py-sm) 0; }
  .space-pt  { padding-top: var(--as-section-py-sm); }
  .space-pb  { padding-bottom: var(--as-section-py-sm); }
}

/* ============================================================
   4. SECTION TITLES
   ============================================================ */
.section-title { margin-bottom: 3rem; }
.section-title .as-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14,165,233,.1);
  color: var(--as-accent);
  border: 1px solid rgba(14,165,233,.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title .as-label::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--as-accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.section-title h2 { margin-bottom: .75rem; }
.section-title p  { max-width: 540px; margin: 0 auto; font-size: 1.05rem; }
.section-title.text-center p { margin: 0 auto; }

/* ============================================================
   5. TOPBAR — forced white text (overrides style.css red links)
   ============================================================ */
.topbar {
  background: #05132b;
  padding: 9px 0;
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
/* Force ALL text/links in topbar to white — overrides global a{color:#ef3139} */
.topbar,
.topbar a,
.topbar span,
.topbar p,
.topbar li,
.topbar label {
  color: #ffffff !important;
}
.topbar a:hover { color: var(--as-accent) !important; }
.topbar i { color: var(--as-accent) !important; }

/* Topbar social icons */
.topbar .list-unstyled {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .4rem;
  list-style: none;
  margin: 0; padding: 0;
}
.topbar .list-inline-item a,
.topbar .list-unstyled .list-inline-item a {
  width: 28px; height: 28px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(255,255,255,.1) !important;
  color: #ffffff !important;
  font-size: .75rem;
  transition: all 0.2s ease;
  text-decoration: none;
}
.topbar .list-inline-item a:hover,
.topbar .list-unstyled .list-inline-item a:hover {
  background: var(--as-accent) !important;
  color: #fff !important;
  transform: translateY(-2px);
}

/* ============================================================
   6. NAVBAR — STICKY GLASSMORPHISM
   ============================================================ */
.header.default {
  position: sticky;
  top: 0;
  z-index: 1050;
  /* Override style.css ".header { transition: all 0.5s ease }" —
     transitioning ALL properties on a sticky header causes every
     browser-internal scroll repaint to animate, producing the shake. */
  transition: box-shadow 0.3s ease !important;
  -webkit-transition: box-shadow 0.3s ease !important;
  /* Force own GPU compositing layer — prevents full-page repaints. */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
}

/* custom.js adds .sticky-top on scroll ≥ 300px.
   style.css then switches to position:fixed + stickySlideDown animation,
   which makes the header jump position and re-animate on every threshold
   crossing. Override to keep our sticky behaviour unchanged. */
.header.default.sticky-top {
  position: sticky !important;
  top: 0 !important;
  width: auto !important;
  -webkit-animation: none !important;
  animation: none !important;
  transition: box-shadow 0.3s ease !important;
  -webkit-transition: box-shadow 0.3s ease !important;
}

/* Prevent topbar from vanishing when sticky-top is added —
   hiding it changes the header's height mid-scroll, causing a jump. */
.header.default.sticky-top .topbar {
  display: block !important;
}

.navbar {
  background: rgba(255,255,255,.97) !important;
  /* backdrop-filter on a sticky element can flicker at scroll start.
     Removed to eliminate compositing-layer jank. */
  border-bottom: 1px solid rgba(2,45,98,.08);
  padding: 14px 0;
  /* Only transition the properties we actually change on scroll. */
  transition: box-shadow 0.3s ease, padding 0.25s ease;
}

.navbar-brand img {
  height: 44px;
  width: auto;
  transition: transform var(--as-dur-fast);
}
.navbar-brand:hover img { transform: scale(1.04); }

/* Nav links */
.navbar-nav .nav-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--as-text) !important;
  padding: 8px 16px !important;
  border-radius: 8px;
  letter-spacing: .01em;
  transition: all var(--as-dur-fast) var(--as-ease);
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 32px);
  height: 2px;
  background: var(--as-gradient-sky);
  border-radius: 2px;
  transition: transform var(--as-dur-fast) var(--as-ease);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-item.active .nav-link::after { transform: translateX(-50%) scaleX(1); }
.navbar-nav .nav-link:hover { color: var(--as-accent) !important; background: rgba(14,165,233,.06); }

/* ── Kill ALL pseudo-element carets / arrows on nav dropdown links ──
   style.css (lines 4880-4909) injects two red bars as ::before / ::after
   that form a chevron V shape. Bootstrap also adds ::after on .dropdown-toggle.
   Both are removed here. */
.navbar .navbar-nav .dropdown.nav-item .nav-link::before,
.navbar .navbar-nav .dropdown.nav-item .nav-link::after,
.navbar-nav .nav-link.dropdown-toggle::after,
.navbar-nav .nav-link.dropdown-toggle::before,
.navbar .dropdown-toggle::after,
.navbar .dropdown-toggle::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
  background: none !important;
}

/* ── Custom dropdown chevron icon (.nav-dd-caret) ── */
.nav-dd-caret {
  font-size: .6rem;
  margin-left: 5px;
  opacity: .65;
  transition: transform .25s var(--as-ease), opacity .2s;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.dropdown.show > .nav-link .nav-dd-caret {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--as-accent);
}
.navbar-nav .nav-item:hover .nav-dd-caret {
  opacity: 1;
}

/* Navbar CTA button */
.navbar-nav .nav-cta .nav-link {
  background: linear-gradient(135deg, #022d62 0%, #c8102e 100%) !important;
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 100px !important;
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow: 0 4px 16px rgba(200,16,46,.25);
  transition: transform .25s ease, box-shadow .25s ease !important;
}
.navbar-nav .nav-cta .nav-link::after { display: none; }
.navbar-nav .nav-cta .nav-link:hover {
  box-shadow: 0 8px 26px rgba(200,16,46,.42) !important;
  transform: translateY(-2px);
  background: linear-gradient(135deg, #033876 0%, #e01535 100%) !important;
}

/* Toggler */
.navbar-toggler {
  border: 2px solid rgba(2,45,98,.15);
  border-radius: 8px;
  padding: 6px 10px;
}
.navbar-toggler i { color: var(--as-primary); font-size: 1rem; }

/* ============================================================
   7. MEGA MENU — Premium rich dropdown
   ============================================================ */

/* ── Wrapper ── */
.mega-menu .dropdown-menu.megamenu {
  min-width: 680px;
  border: 1px solid rgba(2,45,98,.1);
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #0ea5e9, #6366f1) 1 0 0 0;
  border-radius: 0 0 20px 20px;
  padding: 0;
  box-shadow: 0 24px 64px rgba(2,45,98,.18), 0 4px 16px rgba(2,45,98,.08);
  background: #fff;
  top: calc(100% + 0px) !important;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0 !important;
  overflow: hidden;
  /* Bootstrap adds .show — we rely on that */
}

/* ── Inner padding area ── */
.megamenu > li > .row {
  padding: 28px 28px 8px;
}

/* ── Column group header ── */
.nav-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #94a3b8 !important;
  margin-bottom: 10px !important;
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f5f9;
  display: block;
}
.nav-title::before {
  display: none !important;  /* remove decorative dash line before dropdown headings */
}

/* ── Menu items ── */
.megamenu .list-unstyled { list-style: none; padding: 0; margin: 0 0 20px; }
.megamenu .list-unstyled li { margin-bottom: 2px; }

.megamenu .list-unstyled li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: .875rem;
  font-weight: 600;
  color: #1a2340 !important;
  text-decoration: none;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  position: relative;
  overflow: hidden;
}
.megamenu .list-unstyled li a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,165,233,.07), rgba(99,102,241,.07));
  opacity: 0;
  transition: opacity 0.2s ease;
  border-radius: 10px;
}
.megamenu .list-unstyled li a:hover::before { opacity: 1; }

.megamenu .list-unstyled li a:hover {
  color: #022d62 !important;
  border-left-color: #0ea5e9;
  transform: translateX(4px);
}

/* ── Icon box ── */
.megamenu .list-unstyled li a .mm-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
  position: relative;
  z-index: 1;
}
.megamenu .list-unstyled li a:hover .mm-icon { transform: scale(1.08); }

/* Icon box colour variants */
.mm-icon.blue   { background: linear-gradient(135deg, #dbeafe, #bfdbfe); color: #1d4ed8; }
.mm-icon.sky    { background: linear-gradient(135deg, #e0f2fe, #bae6fd); color: #0284c7; }
.mm-icon.indigo { background: linear-gradient(135deg, #e0e7ff, #c7d2fe); color: #4338ca; }
.mm-icon.violet { background: linear-gradient(135deg, #ede9fe, #ddd6fe); color: #7c3aed; }
.mm-icon.teal   { background: linear-gradient(135deg, #ccfbf1, #99f6e4); color: #0f766e; }
.mm-icon.orange { background: linear-gradient(135deg, #ffedd5, #fed7aa); color: #c2410c; }
.mm-icon.green  { background: linear-gradient(135deg, #dcfce7, #bbf7d0); color: #15803d; }
.mm-icon.pink   { background: linear-gradient(135deg, #fce7f3, #fbcfe8); color: #be185d; }

.megamenu .list-unstyled li a .mm-icon img {
  width: 18px; height: 18px;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

/* ── Link text ── */
.mm-text { display: flex; flex-direction: column; position: relative; z-index: 1; }
.mm-text strong { font-size: .875rem; font-weight: 700; color: inherit; line-height: 1.2; }
.mm-text small  { font-size: .73rem; font-weight: 400; color: #94a3b8; margin-top: 1px; }

/* ── Featured panel (rightmost col) ── */
.mm-featured {
  background: linear-gradient(135deg, #022d62 0%, #3730a3 100%);
  border-radius: 14px;
  padding: 22px 20px;
  height: 100%;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mm-featured .mm-feat-tag {
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.5);
  margin-bottom: 10px;
  display: block;
}
.mm-featured h6 {
  color: #fff !important;
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 8px;
}
.mm-featured p {
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  margin-bottom: 16px;
  line-height: 1.5;
}
.mm-featured a.mm-feat-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.25);
  transition: all 0.2s ease;
  text-decoration: none;
}
.mm-featured a.mm-feat-btn:hover {
  background: #0ea5e9;
  border-color: #0ea5e9;
  transform: translateY(-2px);
}

/* ── Bottom strip ── */
.mm-footer-strip {
  background: #f8faff;
  border-top: 1px solid #f1f5f9;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.mm-footer-strip span { font-size: .78rem; color: #64748b; }
.mm-footer-strip a {
  font-size: .78rem;
  font-weight: 700;
  color: #0ea5e9 !important;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
  text-decoration: none;
}
.mm-footer-strip a:hover { gap: 8px; color: #022d62 !important; }

/* ── Mobile: full-width stacked ── */
@media (max-width: 991px) {
  .mega-menu .dropdown-menu.megamenu {
    min-width: 100%;
    left: 0 !important;
    transform: none !important;
    border-radius: 12px;
    border-image: none;
    border-top: 3px solid #0ea5e9;
    margin-top: 8px !important;
  }
  .megamenu > li > .row { padding: 16px; }
  .mm-featured { min-height: auto; margin-top: 16px; }
  .mm-footer-strip { display: none; }
}

/* ============================================================
   8. HERO / BANNER — Modern Split Slider
   ============================================================ */
.as-hero-section { position: relative; }

/* ─ Slide backgrounds — brand palette: logo navy #022d62 + logo red #c8102e ─ */
.slide-bg-1 {
  background-image: none !important;
  background: linear-gradient(135deg, #010f24 0%, #022d62 55%, #1a0008 100%) !important;
}
.slide-bg-2 {
  background-image: none !important;
  background: linear-gradient(135deg, #020818 0%, #022d62 40%, #5a0010 100%) !important;
}
.slide-bg-3 {
  background-image: none !important;
  background: linear-gradient(135deg, #1a0005 0%, #022d62 50%, #010f24 100%) !important;
}
.slide-bg-4 {
  background-image: none !important;
  background: linear-gradient(135deg, #050118 0%, #0d1a3a 45%, #140030 100%) !important;
}

.swiper-container.mySwiper { background: #010f24; overflow: hidden; }
/* Fixed height prevents the wrapper from collapsing during Swiper's instant fixLoop reset. */
.swiper-wrapper {
  height: 780px;
}
.swiper-slide {
  position: relative;
  overflow: hidden;
  height: 100%;
  /* GPU hints on the slide, not the wrapper — Swiper controls the wrapper's transform exclusively */
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-slide::after { display: none !important; }

/* ─ Decorative: glowing orbs ─ */
.as-orb-1, .as-orb-2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(90px);
}
.as-orb-1 {
  width: 640px; height: 640px;
  /* logo red glow — top-right */
  background: radial-gradient(circle, rgba(200,16,46,.32), transparent 70%);
  top: -160px; right: -120px;
}
.as-orb-2 {
  width: 420px; height: 420px;
  /* logo navy-blue glow — bottom-left */
  background: radial-gradient(circle, rgba(2,45,98,.55), transparent 70%);
  bottom: -60px; left: 5%;
}
.slide-bg-2 .as-orb-1 {
  background: radial-gradient(circle, rgba(200,16,46,.4), transparent 70%);
}
.slide-bg-2 .as-orb-2 {
  background: radial-gradient(circle, rgba(2,45,98,.5), transparent 70%);
}
.slide-bg-3 .as-orb-1 {
  background: radial-gradient(circle, rgba(200,16,46,.28), transparent 70%);
}
.slide-bg-3 .as-orb-2 {
  background: radial-gradient(circle, rgba(2,45,98,.45), transparent 70%);
}
.slide-bg-4 .as-orb-1 {
  background: radial-gradient(circle, rgba(139,92,246,.45), transparent 70%);
}
.slide-bg-4 .as-orb-2 {
  background: radial-gradient(circle, rgba(14,165,233,.35), transparent 70%);
}

/* ─ Dot-grid pattern overlay ─ */
.as-hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}

/* ─ Inner content layout ─ */
.as-hero-content {
  position: relative; z-index: 2;
  min-height: 780px;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 100px;
}

/* ─ Entrance animations ─────────────────────────────────────────────────
   ROOT CAUSE OF BLANK: old keyframes started from opacity:0.
   When Swiper's loopFix() does an instant jump (speed=0) from clone-slide-1
   back to real slide-1, the active class is reassigned immediately.
   The old .15s/.42s animation DELAY meant real-slide content sat at opacity:0
   for 150–420ms before becoming visible → blank page flash.

   FIX: keyframes only animate transform (opacity stays 1 throughout).
        The hidden state is scoped to :not(.swiper-slide-active) only,
        so content is ALWAYS opacity:1 the moment swiper-slide-active is set.
        animation-fill-mode:both applies the `from` transform during any delay
        so there is no position-jump on activation either.
   ─────────────────────────────────────────────────────────────────────── */
@keyframes heroSlideInL {
  from { opacity: 1; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes heroSlideInR {
  from { opacity: 1; transform: translateX(28px) scale(.97); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes agentPulse {
  0%   { transform: scale(.85); opacity: .7; }
  60%  { transform: scale(1);   opacity: .15; }
  100% { transform: scale(1.1); opacity: 0; }
}
@keyframes perkBarFill {
  0%   { width: 60%; }
  100% { width: 92%; }
}

/* Hide content ONLY in non-active slides — BUT ONLY after Swiper has
   initialised (i.e. after JS adds .swiper-init to .mySwiper).
   Without this guard the rule fires on page-load before Swiper runs,
   when NO slide has .swiper-slide-active yet → ALL content hidden → blank. */
.swiper-init .swiper-slide:not(.swiper-slide-active) .hero-text-col,
.swiper-init .swiper-slide:not(.swiper-slide-active) .hero-visual-col {
  opacity: 0 !important;
  animation: none !important;
  transform: none !important;
}

/* Active slide: animate transform only — opacity stays 1 throughout,
   so there is zero chance of a blank flash on the loopFix instant-jump. */
.swiper-init .swiper-slide-active .hero-text-col {
  animation: heroSlideInL .75s cubic-bezier(.4,0,.2,1) 0s both;
}
.swiper-init .swiper-slide-active .hero-visual-col {
  animation: heroSlideInR .75s cubic-bezier(.4,0,.2,1) .1s both;
}

/* ─ Hero text ─ */
.swiper-slide h1,
.swiper-slide h2,
.swiper-slide h3 {
  color: #fff !important;
  opacity: 1 !important;
  visibility: visible !important;
  font-size: clamp(1.85rem, 3.2vw, 2.9rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.25rem;
}
.swiper-slide h6 {
  color: rgba(255,255,255,.82) !important;
  opacity: 1 !important;
  visibility: visible !important;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2rem;
  font-weight: 400;
}

/* ─ Hero badge ─ */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* logo red tint */
  background: rgba(200,16,46,.14);
  border: 1px solid rgba(200,16,46,.40);
  color: #ffb3be;
  border-radius: 100px;
  padding: 7px 18px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-badge span.dot {
  width: 6px; height: 6px;
  background: #c8102e;          /* logo red */
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 1.6s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.5); opacity: .6; }
}

/* ─ CTA buttons ─ */
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 2.5rem; }
.hero-ctas .btn-hero-primary {
  display: inline-flex; align-items: center; gap: 8px;
  /* navy-left → red-right — exact logo brand gradient */
  background: linear-gradient(135deg, #022d62 0%, #c8102e 100%);
  color: #fff; padding: 14px 32px; border-radius: 100px;
  font-weight: 700; font-size: .95rem;
  transition: all .3s ease;
  box-shadow: 0 8px 28px rgba(200,16,46,.35);
  text-decoration: none;
}
.hero-ctas .btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(200,16,46,.52);
  color: #fff;
  background: linear-gradient(135deg, #033876 0%, #e01535 100%);
}
.hero-ctas .btn-hero-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08);
  color: #fff; padding: 13px 30px; border-radius: 100px;
  font-weight: 600; font-size: .95rem;
  border: 1.5px solid rgba(200,16,46,.55);
  backdrop-filter: blur(8px);
  transition: all .3s ease;
  text-decoration: none;
}
.hero-ctas .btn-hero-outline:hover {
  background: rgba(200,16,46,.15);
  border-color: rgba(200,16,46,.85);
  color: #fff;
  transform: translateY(-2px);
}

/* ─ Trust strip ─ */
.hero-trust {
  display: flex; flex-wrap: wrap;
  align-items: center; gap: 20px;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.72);
  font-size: .82rem; font-weight: 500;
}
.hero-trust-item i { color: #c8102e; font-size: .88rem; }  /* logo red */

/* ─ Right visual panel container ─ */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 460px;
  min-height: 380px;
  margin: 0 auto;
}

/* ─ Float animations ─ */
@keyframes hv-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes hv-float2 {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ─ Glassmorphism card base ─ */
.hv-glass {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
}

/* ─ Code window (Slide 1) ─ */
.hv-window {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
  background: rgba(12,18,38,.85);
  border: 1px solid rgba(255,255,255,.1);
  animation: hv-float 4s ease-in-out infinite;
}
.hv-win-bar {
  background: rgba(255,255,255,.05);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.hv-win-bar .hv-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  margin-right: 7px;
  display: inline-block;
}
.hv-win-title {
  margin-left: auto;
  font-size: .7rem;
  color: rgba(255,255,255,.35);
  font-family: 'Courier New', monospace;
}
.hv-win-body {
  padding: 22px 24px;
  font-family: 'Courier New', monospace;
  font-size: .82rem;
  line-height: 2.1;
}
.hv-code { display: block; }
.tk-kw  { color: #c084fc; }
.tk-fn  { color: #60a5fa; }
.tk-str { color: #34d399; }
.tk-dim { color: rgba(255,255,255,.35); }

/* ─ Analytics card (Slide 2) ─ */
.hv-analytics {
  border-radius: 18px;
  overflow: hidden;
  padding: 24px;
  background: rgba(12,18,38,.85);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
  animation: hv-float 4.5s ease-in-out infinite;
}
.hv-analytics-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.hv-kpi-label { font-size: .72rem; color: rgba(255,255,255,.5); font-weight: 500; }
.hv-kpi-value { font-size: 1.8rem; font-weight: 800; color: #fff; margin-top: 3px; }
.hv-growth-pill {
  background: rgba(16,185,129,.2);
  border: 1px solid rgba(16,185,129,.35);
  color: #34d399;
  border-radius: 100px;
  padding: 5px 13px;
  font-size: .75rem;
  font-weight: 700;
}
.hv-bars {
  display: flex; align-items: flex-end; gap: 7px;
  height: 100px; margin-bottom: 8px;
}
.hv-bar {
  flex: 1;
  background: linear-gradient(to top, #022d62, #c8102e);  /* logo navy → red */
  border-radius: 5px 5px 0 0;
  height: var(--h);
}
.hv-bar-labels {
  display: flex; gap: 7px;
}
.hv-bar-labels span {
  flex: 1; text-align: center;
  font-size: .62rem; color: rgba(255,255,255,.38);
}

/* ─ Browser mockup (Slide 3) ─ */
.hv-browser {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(12,18,38,.85);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
  animation: hv-float 4.2s ease-in-out infinite;
}
.hv-browser-chrome {
  background: rgba(255,255,255,.06);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 7px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.hv-browser-chrome .hv-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.hv-url {
  flex: 1;
  background: rgba(255,255,255,.07);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: .67rem;
  color: rgba(255,255,255,.45);
  font-family: monospace;
  text-align: center;
  margin-left: 4px;
}
.hv-browser-content { padding: 16px; }
.hv-bc-nav { height: 22px; background: rgba(255,255,255,.06); border-radius: 6px; margin-bottom: 14px; }
.hv-bc-hero {
  height: 86px;
  background: linear-gradient(135deg, rgba(2,45,98,.5), rgba(200,16,46,.35));  /* logo navy → red */
  border-radius: 10px; margin-bottom: 14px;
}
.hv-bc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.hv-bc-card {
  height: 54px;
  background: rgba(255,255,255,.07);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.07);
}

/* ─ Floating stat cards ─ */
.hv-stat {
  position: absolute;
  background: rgba(255,255,255,.95);
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 14px 44px rgba(0,0,0,.28);
  min-width: 152px;
}
.hv-stat i { font-size: 1.15rem; flex-shrink: 0; }
.hv-stat b { display: block; font-size: .95rem; font-weight: 700; color: #022d62; line-height: 1.2; }
.hv-stat small { font-size: .71rem; color: #64748b; display: block; margin-top: 1px; }
.hv-s1 { top: -16px; right: -18px; animation: hv-float2 5s ease-in-out infinite; }
.hv-s2 { bottom: 40px; right: -18px; animation: hv-float2 5.5s ease-in-out infinite 1.2s; }
.hv-s3 { top: -16px; right: -18px; animation: hv-float2 5s ease-in-out infinite; }
.hv-s4 { bottom: 40px; right: -18px; animation: hv-float2 5.5s ease-in-out infinite 1s; }
.hv-s5 { top: -16px; right: -18px; animation: hv-float2 5s ease-in-out infinite; }
.hv-s6 { bottom: 30px; right: -18px; animation: hv-float2 5.5s ease-in-out infinite .8s; }

/* ─ Tech stack tags (Slide 1) ─ */
.hv-tags {
  position: absolute;
  bottom: -16px; left: 0;
  display: flex; flex-wrap: wrap; gap: 7px;
}
.hv-tags span {
  /* logo red tint */
  background: rgba(200,16,46,.18);
  border: 1px solid rgba(200,16,46,.38);
  color: #ffb3be;
  border-radius: 100px;
  padding: 4px 14px;
  font-size: .71rem;
  font-weight: 600;
  letter-spacing: .04em;
}

/* ─ Swiper nav buttons ─ */
.swiper-button-prev,
.swiper-button-next {
  width: 52px !important; height: 52px !important;
  background: rgba(255,255,255,.1) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.22) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all .25s ease;
  top: 50% !important;
}
.swiper-button-prev { left: 28px !important; }
.swiper-button-next { right: 28px !important; }
.swiper-button-prev::after,
.swiper-button-next::after { display: none !important; }
.swiper-button-prev i,
.swiper-button-next i { color: #fff; font-size: .9rem; }
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: #c8102e !important;     /* logo red on hover */
  border-color: #c8102e !important;
}

/* ─ Slide counter ─ */
.as-hero-counter {
  position: absolute;
  bottom: 30px; right: 36px;
  z-index: 10;
  display: flex; align-items: baseline; gap: 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  pointer-events: none;
}
.hs-curr { color: #fff; font-size: 1.15rem; font-weight: 700; }
.hs-sep  { color: rgba(255,255,255,.3); font-size: .85rem; margin: 0 3px; }
.hs-total{ color: rgba(255,255,255,.45); font-size: .85rem; }

/* ─ Autoplay progress bar ─ */
.as-hero-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,.1);
  z-index: 10;
}
.as-hero-progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #022d62, #c8102e);  /* navy → red (logo) */
}

/* ─ Responsive ─ */
@media (max-width: 991px) {
  .swiper-wrapper { height: 580px; }
  .as-hero-content { min-height: 580px; padding-top: 60px; padding-bottom: 80px; }
}
@media (max-width: 767px) {
  .swiper-wrapper { height: 460px; }
  .as-hero-content { min-height: 460px; padding-top: 40px; padding-bottom: 60px; }
  .swiper-slide h1,.swiper-slide h2,.swiper-slide h3 { font-size: 1.6rem !important; }
  .swiper-slide h6 { font-size: .9rem !important; }
  .hero-trust { display: none; }
  .hero-ctas .btn-hero-primary,
  .hero-ctas .btn-hero-outline { padding: 12px 22px; font-size: .88rem; }
  .as-hero-counter { bottom: 14px; right: 20px; }
}

/* ============================================================
   9. CASE STUDIES SECTION — Modern Dark Tab Panel
   ============================================================ */
.as-cases-section {
  padding: 100px 0;
  background: var(--as-dark);
  position: relative;
  overflow: hidden;
}
.as-cases-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
}
/* Gradient glow top-right */
.as-cases-section::after {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,.2), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ─ Section header ─ */
.as-cases-header {
  position: relative; z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 52px;
}
.as-cases-header .as-label {
  background: rgba(14,165,233,.15) !important;
  border-color: rgba(14,165,233,.3) !important;
  color: #7dd3fc !important;
}
.as-cases-header h2 { color: #fff !important; margin: 10px 0 8px; }
.as-cases-sub { color: rgba(255,255,255,.55); font-size: .95rem; max-width: 460px; margin: 0; }
.as-cases-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7dd3fc;
  font-size: .88rem;
  font-weight: 700;
  border: 1px solid rgba(14,165,233,.3);
  border-radius: 100px;
  padding: 10px 22px;
  transition: all .25s ease;
  white-space: nowrap;
}
.as-cases-view-all:hover {
  background: rgba(14,165,233,.12);
  color: #fff;
  gap: 12px;
}

/* ─ Body: tab list + content panel ─ */
.as-cases-body {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 28px;
  align-items: start;
}

/* ─ Left tab list ─ */
.as-cs-tabs {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.as-cs-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: all .22s ease;
  text-align: left;
  width: 100%;
}
.as-cs-num {
  font-size: .7rem;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: rgba(255,255,255,.25);
  min-width: 20px;
  transition: color .22s;
}
.as-cs-lbl {
  flex: 1;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  transition: color .22s;
}
.as-cs-arr {
  font-size: .62rem;
  color: transparent;
  transition: all .22s;
}
.as-cs-tab:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.08);
}
.as-cs-tab:hover .as-cs-lbl { color: rgba(255,255,255,.8); }
.as-cs-tab.active {
  background: rgba(14,165,233,.1);
  border-color: rgba(14,165,233,.22);
}
.as-cs-tab.active .as-cs-num {
  background: linear-gradient(135deg,#0ea5e9,#6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.as-cs-tab.active .as-cs-lbl { color: #fff; font-weight: 700; }
.as-cs-tab.active .as-cs-arr { color: #0ea5e9; }

/* Bottom trust mini-card */
.as-cs-trust {
  margin-top: 12px;
  padding: 18px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.as-cs-trust-stat b { display: block; font-size: 1.05rem; font-weight: 800; color: #fff; }
.as-cs-trust-stat small { font-size: .7rem; color: rgba(255,255,255,.4); display: block; margin-top: 2px; }

/* ─ Right content panels ─ */
.as-cases-content { position: relative; min-height: 480px; }
.as-cs-panel {
  display: none;
}
.as-cs-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  animation: csFadeIn .4s ease forwards;
}
@keyframes csFadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Image side */
.as-cs-img-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.45);
}
.as-cs-img-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.as-cs-img-wrap:hover img { transform: scale(1.04); }
.as-cs-cat-badge {
  position: absolute;
  top: 18px; left: 18px;
  background: rgba(14,165,233,.88);
  backdrop-filter: blur(8px);
  color: #fff;
  border-radius: 100px;
  padding: 5px 16px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
/* Gradient overlay at bottom of image */
.as-cs-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(5,19,43,.7), transparent);
  pointer-events: none;
}

/* Text side */
.as-cs-body { padding: 8px 0; }
.as-cs-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.as-cs-stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(14,165,233,.1);
  border: 1px solid rgba(14,165,233,.2);
  color: #7dd3fc;
  border-radius: 100px;
  padding: 5px 14px;
  font-size: .76rem;
  font-weight: 600;
}
.as-cs-stat-chip.green {
  background: rgba(16,185,129,.1);
  border-color: rgba(16,185,129,.2);
  color: #6ee7b7;
}
.as-cs-body h3 {
  color: #fff !important;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 14px;
}
.as-cs-body p {
  color: rgba(255,255,255,.6);
  font-size: .95rem;
  line-height: 1.78;
  margin-bottom: 28px;
}
.as-cs-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  color: #fff !important;
  padding: 13px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: .9rem;
  transition: all .25s ease;
  box-shadow: 0 8px 24px rgba(14,165,233,.3);
}
.as-cs-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(14,165,233,.45);
  gap: 13px;
}

/* ─ Responsive ─ */
@media (max-width: 1100px) {
  .as-cases-body { grid-template-columns: 220px 1fr; }
}

/* Tablet: stack vertically, tabs wrap in 3-column grid */
@media (max-width: 991px) {
  .as-cases-body {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .as-cs-tabs {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .as-cs-tab {
    flex: 1 1 calc(33.333% - 6px);
    min-width: 140px;
    padding: 12px 14px;
    border-radius: 10px;
  }
  .as-cs-arr { display: none; }
  .as-cs-trust { display: none; }
  .as-cs-panel.active { grid-template-columns: 1fr; }
  .as-cs-img-wrap img { height: 260px; }
}

/* Mobile: tabs wrap in 2-column grid */
@media (max-width: 575px) {
  .as-cases-section { padding: 70px 0; }
  .as-cases-header { flex-direction: column; align-items: flex-start; }
  .as-cs-tab {
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
    padding: 11px 12px;
  }
  .as-cs-num { font-size: .68rem; }
  .as-cs-lbl { font-size: .82rem; }
  .as-cs-body h3 { font-size: 1.2rem; }
  .as-cs-img-wrap img { height: 210px; }
}

/* ─────────────────────────────────────────────────────────────
   CASE STUDY CSS VISUAL PANELS — no external images
   ──────────────────────────────────────────────────────────── */

.as-cs-visual {
  width: 100%; height: 360px;
  display: flex; flex-direction: column;
  overflow: hidden; position: relative;
}

/* ── Visual 1: AI Chatbot ── */
.cs-visual-1 {
  background: linear-gradient(135deg, #010f24 0%, #0c1445 60%, #1a1060 100%);
  padding: 20px 20px 16px;
}
.csv-chat-topbar {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; padding: 8px 12px; margin-bottom: 14px; flex-shrink: 0;
}
.csv-chat-dots { display: flex; gap: 5px; }
.csv-chat-dots span { width: 8px; height: 8px; border-radius: 50%; display: block; }
.csv-chat-title { flex: 1; text-align: center; font-size: .72rem; color: #7dd3fc; font-weight: 700; }
.csv-status-dot { width: 8px; height: 8px; border-radius: 50%; background: #34d399; flex-shrink: 0; }
.csv-chat-messages { flex: 1; display: flex; flex-direction: column; gap: 8px; overflow: hidden; }
.csv-chat-row { display: flex; align-items: flex-end; gap: 7px; }
.csv-row-user { justify-content: flex-end; }
.csv-bot-ava {
  width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; color: #fff; flex-shrink: 0;
}
.csv-bubble { padding: 7px 11px; border-radius: 12px; font-size: .7rem; line-height: 1.4; max-width: 78%; }
.csv-bot-bubble { background: rgba(14,165,233,.12); color: #bae6fd; border: 1px solid rgba(14,165,233,.18); border-bottom-left-radius: 3px; }
.csv-user-bubble { background: linear-gradient(135deg, #0ea5e9, #6366f1); color: #fff; border-bottom-right-radius: 3px; }
.csv-typing-bubble { display: flex; gap: 4px; align-items: center; padding: 10px 14px; }
.csv-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #7dd3fc;
  animation: csvDotPulse 1.4s infinite ease-in-out;
}
.csv-dot:nth-child(2) { animation-delay: .22s; }
.csv-dot:nth-child(3) { animation-delay: .44s; }
@keyframes csvDotPulse {
  0%, 80%, 100% { transform: scale(.75); opacity: .45; }
  40%           { transform: scale(1);   opacity: 1;   }
}
.csv-chat-kpis { display: flex; gap: 8px; margin-top: 12px; flex-shrink: 0; }
.csv-kpi {
  flex: 1; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08); border-radius: 10px;
  padding: 8px 4px; text-align: center;
}
.csv-kpi b { display: block; font-size: .92rem; font-weight: 800; color: #0ea5e9; }
.csv-kpi small { font-size: .6rem; color: rgba(255,255,255,.4); }

/* ── Visual 2: Cloud Migration ── */
.cs-visual-2 {
  background: linear-gradient(135deg, #010a14 0%, #021830 50%, #012b1c 100%);
  padding: 22px 20px 18px;
}
.csv-cloud-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
  color: #fff; font-size: .78rem; font-weight: 700; flex-shrink: 0;
}
.csv-green-pill {
  margin-left: auto;
  background: rgba(16,185,129,.18); border: 1px solid rgba(16,185,129,.3);
  color: #34d399; font-size: .65rem; padding: 3px 10px; border-radius: 20px; white-space: nowrap;
}
.csv-cloud-diagram { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.csv-cloud-node-row { display: flex; align-items: center; gap: 8px; }
.csv-cn {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 10px 14px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.05);
  font-size: .65rem; color: rgba(255,255,255,.65); text-align: center; min-width: 72px;
}
.csv-cn i { font-size: 1.1rem; }
.csv-cn-db i { color: #94a3b8; }
.csv-cn-rds i { color: #ff9900; }
.csv-cn-app i { color: #94a3b8; }
.csv-cn-ec2 i { color: #38bdf8; }
.csv-cn-arrow { flex: 1; display: flex; align-items: center; justify-content: center; color: rgba(16,185,129,.7); font-size: .9rem; }
.csv-cloud-bars { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }
.csv-cbar-row { display: flex; align-items: center; gap: 8px; font-size: .68rem; color: rgba(255,255,255,.5); }
.csv-cbar-row > span:first-child { min-width: 52px; }
.csv-cbar-track { flex: 1; height: 7px; background: rgba(255,255,255,.08); border-radius: 10px; overflow: hidden; }
.csv-cbar-fill { height: 100%; border-radius: 10px; }
.csv-cbar-tag { min-width: 42px; text-align: right; font-weight: 700; color: #7dd3fc; font-size: .68rem; }
.csv-cbar-tag.csv-green { color: #34d399; }

/* ── Visual 3: Mobile App Optimization ── */
.cs-visual-3 {
  background: linear-gradient(135deg, #0d0120 0%, #1a0535 50%, #022d62 100%);
  flex-direction: row !important;
  align-items: center; justify-content: center; gap: 20px; padding: 20px;
}
.csv-mob-left { display: flex; align-items: center; justify-content: center; }
.csv-phone-frame {
  width: 140px; height: 300px; background: #0d1117;
  border-radius: 28px; border: 2px solid rgba(255,255,255,.15);
  box-shadow: 0 0 36px rgba(99,102,241,.22), 0 20px 50px rgba(0,0,0,.6);
  overflow: hidden; position: relative; padding: 26px 12px 14px;
  display: flex; flex-direction: column;
}
.csv-phone-notch {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 38px; height: 5px; background: rgba(255,255,255,.18); border-radius: 3px;
}
.csv-phone-screen { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.csv-perf-title { font-size: .6rem; color: #7dd3fc; font-weight: 700; display: flex; align-items: center; gap: 4px; margin-bottom: 2px; }
.csv-speed-row { display: flex; align-items: flex-end; gap: 6px; flex: 1; }
.csv-speed-block { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; }
.csv-bar-wrap { flex: 1; width: 100%; background: rgba(255,255,255,.08); border-radius: 5px; overflow: hidden; display: flex; align-items: flex-end; min-height: 70px; }
.csv-bar-fill { width: 100%; border-radius: 5px; }
.csv-bar-red  { background: linear-gradient(180deg, #f87171, #ef4444); }
.csv-bar-green { background: linear-gradient(180deg, #34d399, #10b981); }
.csv-speed-num { font-size: .85rem; font-weight: 800; }
.csv-red-text  { color: #f87171; }
.csv-green-text { color: #34d399; }
.csv-speed-vs { color: rgba(255,255,255,.25); font-size: .65rem; padding-bottom: 16px; }
.csv-speed-desc { font-size: .52rem; color: rgba(255,255,255,.35); }
.csv-rating { display: flex; justify-content: space-between; align-items: center; font-size: .58rem; color: rgba(255,255,255,.55); margin-top: 2px; }
.csv-retention { display: flex; align-items: center; gap: 4px; font-size: .57rem; color: rgba(255,255,255,.45); }
.csv-ret-bar { flex: 1; height: 4px; background: rgba(255,255,255,.08); border-radius: 3px; overflow: hidden; }
.csv-ret-fill { height: 100%; background: linear-gradient(90deg, #0ea5e9, #6366f1); border-radius: 3px; }
.csv-mob-right { display: flex; flex-direction: column; gap: 10px; }
.csv-mob-stat { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09); border-radius: 12px; padding: 10px 14px; text-align: center; min-width: 80px; }
.csv-mob-stat b { display: block; font-size: 1rem; font-weight: 800; color: #0ea5e9; }
.csv-mob-stat small { font-size: .6rem; color: rgba(255,255,255,.4); }
.csv-mob-stat-2 b { color: #34d399; }
.csv-mob-stat-3 b { color: #fbbf24; }

/* ── Visual 4: E-commerce Upgrade ── */
.cs-visual-4 {
  background: linear-gradient(135deg, #0a0f1e 0%, #0f2040 50%, #0a1a0f 100%);
  padding: 20px 20px 16px;
}
.csv-ecom-topbar { display: flex; align-items: center; gap: 8px; font-size: .76rem; color: #fff; font-weight: 700; margin-bottom: 14px; flex-shrink: 0; }
.csv-live-tag { margin-left: auto; font-size: .62rem; color: #34d399; background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.25); padding: 2px 8px; border-radius: 20px; }
.csv-ecom-cards { display: flex; gap: 8px; margin-bottom: 12px; flex-shrink: 0; }
.csv-ecard { flex: 1; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 10px; padding: 10px 6px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 3px; }
.csv-ecard i { font-size: 1rem; margin-bottom: 1px; }
.csv-ecard b { font-size: .85rem; color: #fff; font-weight: 800; }
.csv-ecard small { font-size: .58rem; color: rgba(255,255,255,.38); }
.csv-ecom-chart { display: flex; align-items: flex-end; gap: 6px; height: 90px; margin-bottom: 16px; flex-shrink: 0; }
.csv-ebar { flex: 1; border-radius: 5px 5px 0 0; background: linear-gradient(180deg, rgba(14,165,233,.75), rgba(99,102,241,.45)); height: var(--h, 50%); position: relative; min-height: 4px; }
.csv-ebar span { position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); font-size: .5rem; color: rgba(255,255,255,.3); white-space: nowrap; }
.csv-ecom-flow { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.csv-fstep { font-size: .67rem; padding: 4px 10px; border-radius: 20px; }
.csv-fdone { background: rgba(16,185,129,.15); color: #34d399; border: 1px solid rgba(16,185,129,.25); }
.csv-factive { background: rgba(14,165,233,.18); color: #7dd3fc; border: 1px solid rgba(14,165,233,.28); }
.csv-farrow { color: rgba(255,255,255,.2); font-size: .95rem; }

/* ── Visual 5: Predictive Analytics ── */
.cs-visual-5 {
  background: linear-gradient(135deg, #0d0030 0%, #160040 40%, #022d62 100%);
  padding: 22px 20px 18px;
}
.csv-anal-header { display: flex; align-items: center; gap: 8px; font-size: .78rem; color: #fff; font-weight: 700; margin-bottom: 14px; flex-shrink: 0; }
.csv-ai-badge { margin-left: auto; font-size: .62rem; color: #a78bfa; background: rgba(139,92,246,.1); border: 1px solid rgba(139,92,246,.25); padding: 2px 8px; border-radius: 20px; }
.csv-anal-chart { flex: 1; position: relative; }
.csv-anal-bars { display: flex; align-items: flex-end; gap: 8px; height: 130px; }
.csv-abar { flex: 1; border-radius: 6px 6px 0 0; background: linear-gradient(180deg, rgba(14,165,233,.65), rgba(14,165,233,.18)); height: var(--h, 50%); position: relative; min-height: 4px; }
.csv-abar span { position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%); font-size: .54rem; color: rgba(255,255,255,.38); }
.csv-predicted-bar { background: linear-gradient(180deg, rgba(167,139,250,.8), rgba(139,92,246,.2)) !important; border: 1px dashed rgba(167,139,250,.4); }
.csv-trend-svg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
.csv-anal-stats { display: flex; gap: 8px; margin-top: 20px; flex-shrink: 0; }
.csv-astat { flex: 1; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07); border-radius: 10px; padding: 8px; text-align: center; }
.csv-astat b { display: block; font-size: .92rem; font-weight: 800; color: #a78bfa; }
.csv-astat small { font-size: .6rem; color: rgba(255,255,255,.38); }

/* ── Responsive for visuals ── */
@media (max-width: 991px) {
  .as-cs-visual { height: 280px; }
  .csv-anal-bars { height: 100px; }
  .csv-phone-frame { width: 115px; height: 250px; }
  .csv-mob-stat { padding: 8px 10px; min-width: 68px; }
}
@media (max-width: 575px) {
  .as-cs-visual { height: 240px; }
  .csv-phone-frame { width: 105px; height: 220px; }
  .csv-anal-bars { height: 80px; }
  .csv-ecom-chart { height: 70px; }
}

/* ============================================================
   10. SERVICE CARDS (feature-info)
   ============================================================ */
.feature-info.feature-info-style-02 {
  background: #fff;
  border: 1px solid rgba(2,45,98,.08);
  border-radius: var(--as-radius-lg);
  padding: 32px 28px;
  transition: all var(--as-dur) var(--as-ease);
  position: relative;
  overflow: hidden;
}
.feature-info.feature-info-style-02::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--as-gradient-sky);
  border-radius: var(--as-radius-lg) var(--as-radius-lg) 0 0;
  transform: scaleX(0);
  transition: transform var(--as-dur) var(--as-ease);
}
.feature-info.feature-info-style-02:hover {
  transform: translateY(-8px);
  box-shadow: var(--as-shadow-lg);
  border-color: transparent;
}
.feature-info.feature-info-style-02:hover::before { transform: scaleX(1); }

.feature-info-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.feature-info-icon i {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(14,165,233,.12), rgba(99,102,241,.12));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--as-accent);
  flex-shrink: 0;
  transition: all var(--as-dur) var(--as-ease);
}
.feature-info:hover .feature-info-icon i {
  background: var(--as-gradient-sky);
  color: #fff;
}
.feature-info-title {
  font-size: .95rem !important;
  font-weight: 700 !important;
  color: var(--as-primary) !important;
  line-height: 1.3;
}
.feature-info-content p {
  font-size: .87rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
.feature-info-content .icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--as-accent);
  font-size: .85rem;
  font-weight: 600;
  transition: gap var(--as-dur-fast);
}
.feature-info-content .icon-btn:hover { gap: 10px; color: var(--as-primary); }

/* bg overlay images — keep but hide in new design */
.feature-info-bg-img { display: none; }

/* ============================================================
   10b. OUR EXPERTISE — Modern Colored Card Grid
   ============================================================ */
.as-expertise-section {
  padding: var(--as-section-py) 0;
  background: linear-gradient(180deg, #eef4ff 0%, #ffffff 60%);
  position: relative;
}
.as-expertise-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(2,45,98,.045) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* ─ Section sub-text ─ */
.as-sec-sub {
  color: var(--as-text-muted);
  font-size: .97rem;
  line-height: 1.75;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ─ Cards grid ─ */
.as-exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative; z-index: 1;
}

/* ─ Individual card ─ */
.as-exp-card {
  background: #fff;
  border-radius: 22px;
  padding: 34px 28px 28px;
  border: 1px solid rgba(2,45,98,.07);
  transition: transform .38s ease, box-shadow .38s ease, border-color .38s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: default;
}
/* Top gradient line — slides in on hover */
.as-exp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 22px 22px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .38s ease;
}
/* Subtle bottom glow */
.as-exp-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  border-radius: 0 0 22px 22px;
  opacity: 0;
  transition: opacity .38s ease;
  pointer-events: none;
}
.as-exp-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 64px rgba(2,45,98,.13);
  border-color: transparent;
}
.as-exp-card:hover::before { transform: scaleX(1); }
.as-exp-card:hover::after  { opacity: 1; }

/* ─ Per-service colour variants ─ */
.as-exp-card.exp-blue::before   { background: linear-gradient(90deg,#0ea5e9,#3b82f6); }
.as-exp-card.exp-blue::after    { background: linear-gradient(to top,rgba(14,165,233,.05),transparent); }
.as-exp-card.exp-green::before  { background: linear-gradient(90deg,#22c55e,#16a34a); }
.as-exp-card.exp-green::after   { background: linear-gradient(to top,rgba(34,197,94,.05),transparent); }
.as-exp-card.exp-indigo::before { background: linear-gradient(90deg,#6366f1,#4f46e5); }
.as-exp-card.exp-indigo::after  { background: linear-gradient(to top,rgba(99,102,241,.05),transparent); }
.as-exp-card.exp-purple::before { background: linear-gradient(90deg,#a855f7,#7c3aed); }
.as-exp-card.exp-purple::after  { background: linear-gradient(to top,rgba(168,85,247,.05),transparent); }
.as-exp-card.exp-teal::before   { background: linear-gradient(90deg,#14b8a6,#0ea5e9); }
.as-exp-card.exp-teal::after    { background: linear-gradient(to top,rgba(20,184,166,.05),transparent); }
.as-exp-card.exp-orange::before { background: linear-gradient(90deg,#f97316,#ef4444); }
.as-exp-card.exp-orange::after  { background: linear-gradient(to top,rgba(249,115,22,.05),transparent); }

/* ─ Icon box ─ */
.as-exp-icon {
  width: 62px; height: 62px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.55rem;
  margin-bottom: 22px;
  flex-shrink: 0;
  transition: transform .38s cubic-bezier(.34,1.56,.64,1);
}
.as-exp-card:hover .as-exp-icon { transform: scale(1.1) rotate(-5deg); }

.as-exp-icon.exp-blue   { background: linear-gradient(135deg,#dbeafe,#bfdbfe); color: #2563eb; }
.as-exp-icon.exp-green  { background: linear-gradient(135deg,#dcfce7,#bbf7d0); color: #16a34a; }
.as-exp-icon.exp-indigo { background: linear-gradient(135deg,#e0e7ff,#c7d2fe); color: #4f46e5; }
.as-exp-icon.exp-purple { background: linear-gradient(135deg,#f3e8ff,#e9d5ff); color: #7c3aed; }
.as-exp-icon.exp-teal   { background: linear-gradient(135deg,#ccfbf1,#99f6e4); color: #0f766e; }
.as-exp-icon.exp-orange { background: linear-gradient(135deg,#ffedd5,#fed7aa); color: #ea580c; }

/* ─ Card text ─ */
.as-exp-title {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: var(--as-primary) !important;
  margin-bottom: 10px;
  line-height: 1.35;
}
.as-exp-desc {
  font-size: .875rem;
  line-height: 1.72;
  color: var(--as-text-muted);
  flex: 1;
  margin-bottom: 18px;
}

/* ─ Tech tags ─ */
.as-exp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.as-exp-tags span {
  background: rgba(2,45,98,.06);
  color: var(--as-text-muted);
  border-radius: 100px;
  padding: 3px 12px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .02em;
}

/* ─ "Learn more" link ─ */
.as-exp-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--as-accent);
  transition: gap .2s ease, color .2s ease;
  text-decoration: none;
}
.as-exp-link i { font-size: .68rem; transition: transform .2s ease; }
.as-exp-link:hover { gap: 11px; color: var(--as-primary); }
.as-exp-link:hover i { transform: translateX(2px); }

/* ─ Responsive ─ */
@media (max-width: 991px) {
  .as-exp-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 40px; }
}
@media (max-width: 575px) {
  .as-exp-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
  .as-exp-card { padding: 26px 22px 22px; }
}

/* ============================================================
   11. ADDITIONAL PERKS SECTION  (redesigned)
   ============================================================ */
.as-perks-section {
  padding: var(--as-section-py) 0;
  background: #fff;
  position: relative;
  overflow: visible;
}
.as-perks-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2,45,98,.03) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Left image column ── */
.as-perks-img-wrap {
  position: relative;
  height: 580px;
}
.as-perks-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}
.as-perks-badge {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 8px 32px rgba(2,45,98,.14);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  z-index: 2;
}
.as-perks-badge .apb-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
}
.as-perks-badge .apb-text strong {
  display: block;
  font-size: .82rem;
  font-weight: 800;
  color: var(--as-primary);
  line-height: 1.2;
}
.as-perks-badge .apb-text span {
  font-size: .72rem;
  color: var(--as-text-muted);
}
.as-pb-1 { bottom: 32px; left: -24px; }
.as-pb-2 { top: 36px;    right: -24px; }
.as-pb-3 { bottom: 110px; right: -24px; }

/* ── Right content column ── */
.as-perks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.as-perk-new {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--as-surface, #f8faff);
  border: 1px solid rgba(2,45,98,.07);
  border-radius: 18px;
  padding: 20px 18px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.as-perk-new:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(2,45,98,.1);
  border-color: rgba(14,165,233,.2);
}
.as-perk-icon-box {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.as-perk-new:hover .as-perk-icon-box { transform: scale(1.12) rotate(-6deg); }
.as-perk-new h4 {
  font-size: .92rem !important;
  font-weight: 700 !important;
  color: var(--as-primary) !important;
  margin: 0 0 4px !important;
  line-height: 1.3;
}
.as-perk-new p { font-size: .8rem; color: var(--as-text-muted); margin: 0; line-height: 1.5; }

/* icon-box color variants */
.perk-blue   { background: rgba(14,165,233,.12);  color: #0ea5e9; }
.perk-green  { background: rgba(16,185,129,.12);  color: #10b981; }
.perk-indigo { background: rgba(99,102,241,.12);  color: #6366f1; }
.perk-purple { background: rgba(139,92,246,.12);  color: #8b5cf6; }
.perk-teal   { background: rgba(20,184,166,.12);  color: #14b8a6; }
.perk-orange { background: rgba(249,115,22,.12);  color: #f97316; }
.perk-amber  { background: rgba(245,158,11,.12);  color: #f59e0b; }
.perk-rose   { background: rgba(244,63,94,.12);   color: #f43f5e; }

/* ── Responsive ── */
@media (max-width: 1199px) {
  .as-pb-1 { left: -12px; }
  .as-pb-2 { right: -12px; }
  .as-pb-3 { right: -12px; }
}
@media (max-width: 991px) {
  .as-perks-img-wrap { height: 380px; margin-bottom: 48px; }
  .as-pb-1 { left: 16px; bottom: 16px; }
  .as-pb-2 { right: 16px; top: 16px; }
  .as-pb-3 { right: 16px; bottom: 80px; }
}
@media (max-width: 575px) {
  .as-perks-grid { grid-template-columns: 1fr; }
  .as-perks-img-wrap { height: 280px; }
}

/* ============================================================
   12. PROCESS STEPS  (redesigned — timeline flow)
   ============================================================ */
.as-process-section {
  padding: var(--as-section-py) 0;
  background: linear-gradient(180deg, #eef4ff 0%, #fff 60%);
  position: relative;
  overflow: hidden;
}
.as-process-section::before {
  content: '';
  position: absolute;
  top: -140px; right: -140px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(14,165,233,.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.as-process-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(99,102,241,.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ── Header row ── */
.as-process-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 68px;
  flex-wrap: wrap;
  gap: 20px;
}
.as-process-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--as-primary);
  margin: 12px 0 0;
}

/* ── Steps grid ── */
.as-process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
/* horizontal connector line */
.as-process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(10% + 32px);
  right: calc(10% + 32px);
  height: 2px;
  background: linear-gradient(90deg, var(--as-accent), var(--as-indigo));
  opacity: .35;
  z-index: 0;
}

/* ── Individual step ── */
.as-process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 10px 0;
  position: relative;
  z-index: 1;
}

/* numbered circle */
.as-ps-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(14,165,233,.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  position: relative;
  transition: all .35s ease;
  box-shadow: 0 4px 20px rgba(14,165,233,.12);
  flex-shrink: 0;
}
.as-ps-circle::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--as-gradient-sky);
  z-index: -1;
  opacity: 0;
  transition: opacity .35s ease;
}
.as-process-step:hover .as-ps-circle { border-color: transparent; box-shadow: 0 10px 36px rgba(14,165,233,.28); }
.as-process-step:hover .as-ps-circle::before { opacity: 1; }

.as-ps-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  background: var(--as-gradient-sky);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all .35s;
  line-height: 1;
}
.as-process-step:hover .as-ps-num {
  -webkit-text-fill-color: #fff;
  background: none;
}

/* icon badge */
.as-ps-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(14,165,233,.1), rgba(99,102,241,.1));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--as-accent);
  margin-bottom: 16px;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), background .35s ease, color .35s ease;
}
.as-process-step:hover .as-ps-icon {
  background: var(--as-gradient-sky);
  color: #fff;
  transform: scale(1.1) rotate(-6deg);
}

/* card body */
.as-ps-card {
  background: #fff;
  border: 1px solid rgba(2,45,98,.07);
  border-radius: 18px;
  padding: 22px 18px 20px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  width: 100%;
}
.as-process-step:hover .as-ps-card {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(2,45,98,.1);
  border-color: rgba(14,165,233,.18);
}
.as-ps-title {
  font-size: .95rem;
  font-weight: 800;
  color: var(--as-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}
.as-ps-desc {
  font-size: .8rem;
  color: var(--as-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1199px) {
  .as-process-steps::before { left: calc(10% + 20px); right: calc(10% + 20px); }
}
@media (max-width: 991px) {
  .as-process-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .as-process-steps::before { display: none; }
  .as-process-header { margin-bottom: 44px; }
}
@media (max-width: 575px) {
  .as-process-steps { grid-template-columns: 1fr 1fr; gap: 16px; }
  .as-ps-circle { width: 64px; height: 64px; margin-bottom: 20px; }
  .as-ps-card { padding: 18px 14px; }
}

/* ============================================================
   13. COUNTER / STATS SECTION
   ============================================================ */
.as-counter-section {
  background: var(--as-gradient);
  position: relative;
  overflow: hidden;
}
.as-counter-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.counter {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
}
.counter-icon i {
  font-size: 2.4rem;
  background: var(--as-gradient-sky);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(14,165,233,.4));
}
.counter-content { display: flex; flex-direction: column; }
.counter-content .timer {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.counter-content .timer::after { content: '+'; color: var(--as-accent); }
.counter-content label {
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  font-weight: 500;
  margin-top: 4px;
}

/* Override the bg-dark section that wraps the counter */
section.bg-dark.py-5 {
  background: transparent !important;
  padding: 0 !important;
}
.as-counter-section .container { padding: 72px 0; }

/* ============================================================
   14. TESTIMONIALS  (redesigned — dark glass cards)
   ============================================================ */
.as-testimonial-section {
  padding: var(--as-section-py) 0;
  background: var(--as-dark);
  position: relative;
  overflow: hidden;
}
.as-testimonial-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.as-testi-orb-1 {
  position: absolute; top: -140px; right: -100px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(14,165,233,.12) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.as-testi-orb-2 {
  position: absolute; bottom: -100px; left: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(99,102,241,.1) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}

/* ── Aggregate rating strip ── */
.as-testi-rating-strip {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  padding: 14px 36px;
  margin: 28px auto 64px;
  flex-wrap: wrap;
  justify-content: center;
}
.as-trs-stars { color: #fbbf24; font-size: .95rem; letter-spacing: 3px; }
.as-trs-divider { width: 1px; height: 28px; background: rgba(255,255,255,.15); }
.as-trs-score {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.as-trs-label {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  line-height: 1.4;
}

/* ── Cards grid ── */
.as-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Single card ── */
.as-testi-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: 36px 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .38s ease, border-color .38s ease, box-shadow .38s ease;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
}
.as-testi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0ea5e9, #6366f1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .38s ease;
}
.as-testi-card:hover {
  transform: translateY(-8px);
  border-color: rgba(14,165,233,.3);
  box-shadow: 0 28px 72px rgba(0,0,0,.35);
}
.as-testi-card:hover::before { transform: scaleX(1); }

/* quote mark */
.as-testi-quote {
  font-size: 4.5rem;
  font-family: Georgia, serif;
  line-height: .75;
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
  display: block;
  opacity: .7;
}

/* stars */
.as-testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}
.as-testi-stars i { color: #fbbf24; font-size: .88rem; }

/* review text */
.as-testi-text {
  font-size: .97rem;
  color: rgba(255,255,255,.8);
  line-height: 1.78;
  margin: 0;
  flex: 1;
  font-style: italic;
}

/* footer */
.as-testi-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 22px;
  margin-top: 26px;
}
.as-testi-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(14,165,233,.45);
  flex-shrink: 0;
}
.as-testi-name {
  font-size: .97rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
.as-testi-role {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  margin: 4px 0 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .as-testi-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .as-testi-grid { grid-template-columns: 1fr; }
  .as-testi-card { padding: 28px 22px 22px; }
  .as-testi-rating-strip { padding: 12px 22px; gap: 18px; }
  .as-trs-divider { display: none; }
}

/* ============================================================
   15. CTA / ACTION BOX  (redesigned — full-bleed split layout)
   ============================================================ */
.as-cta-section {
  padding: var(--as-section-py) 0;
  background: var(--as-gradient);
  position: relative;
  overflow: hidden;
}
.as-cta-section::before {
  content: '';
  position: absolute;
  top: -90px; right: -90px;
  width: 440px; height: 440px;
  background: rgba(99,102,241,.22);
  border-radius: 50%;
  pointer-events: none;
}
.as-cta-section::after {
  content: '';
  position: absolute;
  bottom: -110px; left: -70px;
  width: 380px; height: 380px;
  background: rgba(14,165,233,.14);
  border-radius: 50%;
  pointer-events: none;
}
.as-cta-dots {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

/* ── Left copy column ── */
.as-cta-heading {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 14px 0 20px;
}
.as-cta-sub {
  color: rgba(255,255,255,.72);
  font-size: 1rem;
  line-height: 1.72;
  max-width: 460px;
  margin-bottom: 36px;
}
.as-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}
.as-cta-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  color: var(--as-primary) !important;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 800;
  font-size: .93rem;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}
.as-cta-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,.28); color: var(--as-primary) !important; }
.as-cta-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1);
  color: #fff !important;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: .93rem;
  border: 2px solid rgba(255,255,255,.28);
  text-decoration: none;
  transition: background .25s ease, transform .25s ease;
}
.as-cta-btn-ghost:hover { background: rgba(255,255,255,.2); transform: translateY(-3px); color: #fff !important; }

/* trust strip */
.as-cta-trust { display: flex; flex-wrap: wrap; gap: 20px; }
.as-cta-trust-item { display: flex; align-items: center; gap: 10px; }
.as-cta-trust-icon {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .9rem; flex-shrink: 0;
}
.as-cta-trust-item strong { font-size: .88rem; color: #fff; font-weight: 700; display: block; line-height: 1.2; }
.as-cta-trust-item span  { font-size: .75rem; color: rgba(255,255,255,.55); }

/* ── Right: floating project card ── */
.as-cta-card {
  background: #fff;
  border-radius: 24px;
  padding: 34px 30px;
  box-shadow: 0 36px 88px rgba(0,0,0,.28);
  position: relative;
  z-index: 1;
}
.as-cta-card-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(14,165,233,.1);
  color: #0ea5e9;
  border: 1px solid rgba(14,165,233,.2);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.as-cta-card-tag span {
  width: 6px; height: 6px;
  background: #0ea5e9;
  border-radius: 50%;
  display: inline-block;
  animation: ctaPulse 1.6s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(.7); }
}
.as-cta-card h5 {
  font-size: 1.12rem !important;
  font-weight: 800 !important;
  color: var(--as-primary) !important;
  margin-bottom: 20px;
}
/* service chips */
.as-cta-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.as-cta-chip {
  padding: 7px 16px;
  border-radius: 100px;
  border: 1.5px solid rgba(2,45,98,.12);
  font-size: .78rem;
  font-weight: 600;
  color: var(--as-primary);
  background: var(--as-surface, #f8faff);
  transition: all .2s ease;
  cursor: default;
}
.as-cta-chip:first-child,
.as-cta-chip:hover {
  background: var(--as-primary);
  color: #fff;
  border-color: var(--as-primary);
}
/* kickoff row */
.as-cta-kickoff {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--as-surface, #f8faff);
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 22px;
  gap: 12px;
}
.as-cta-kickoff-left p { font-size: .72rem; color: var(--as-text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin: 0 0 3px; }
.as-cta-kickoff-left strong { font-size: .98rem; font-weight: 800; color: var(--as-primary); }
.as-cta-kickoff-badge {
  background: var(--as-gradient-sky);
  color: #fff;
  border-radius: 10px;
  padding: 6px 13px;
  font-size: .76rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
/* avatar row */
.as-cta-avatar-row { display: flex; align-items: center; gap: 12px; }
.as-cta-avatar-stack { display: flex; }
.as-cta-avatar-stack img {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin-left: -8px;
}
.as-cta-avatar-stack img:first-child { margin-left: 0; }
.as-cta-avatar-row p { font-size: .78rem; color: var(--as-text-muted); margin: 0; }
.as-cta-avatar-row p strong { color: var(--as-primary); }

/* ── Responsive ── */
@media (max-width: 991px) {
  .as-cta-card { margin-top: 44px; }
  .as-cta-heading { font-size: clamp(1.7rem, 5vw, 2.4rem); }
}
@media (max-width: 575px) {
  .as-cta-section { padding: 64px 0; }
  .as-cta-trust { gap: 14px; }
}

/* keep old dark-background selector non-breaking for any other pages */
.dark-background .bg-dark {
  background: var(--as-gradient) !important;
  border-radius: var(--as-radius-xl) !important;
  position: relative;
  overflow: hidden;
  padding: 72px 48px !important;
}

/* ============================================================
   16. SHARED PAGE HERO  (used by all service & hire-developer pages)
   ============================================================ */
.as-page-hero {
  background: linear-gradient(135deg, #022d62 0%, #05132b 50%, #0f172a 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.as-page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.as-page-hero-orb-1 {
  position: absolute; top: -120px; right: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(14,165,233,.13) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.as-page-hero-orb-2 {
  position: absolute; bottom: -100px; left: -60px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(99,102,241,.1) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.as-page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 18px 0 20px;
}
.as-page-hero p.as-hero-sub {
  color: rgba(255,255,255,.72);
  font-size: 1rem;
  line-height: 1.78;
  max-width: 520px;
  margin-bottom: 36px;
}
.as-hero-btns {
  display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px;
}
.as-hero-trust {
  display: flex; flex-wrap: wrap; gap: 20px;
}
.as-hero-trust-item {
  display: flex; align-items: center; gap: 10px;
}
.as-hero-trust-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .9rem; flex-shrink: 0;
}
.as-hero-trust-item strong { font-size: .85rem; color: #fff; font-weight: 700; display: block; line-height: 1.2; }
.as-hero-trust-item span  { font-size: .72rem; color: rgba(255,255,255,.5); }

/* ── right-side visual panel — redesigned ── */
.as-page-hero-visual {
  position: relative;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  padding: 36px 30px 32px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 0 80px rgba(14,165,233,.1), 0 40px 80px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.12);
}
/* subtle top-edge glow accent */
.as-page-hero-visual::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 55%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14,165,233,.7), transparent);
  border-radius: 0 0 2px 2px;
}
.as-page-hero-visual h6 {
  font-size: .7rem !important;
  font-weight: 700 !important;
  color: rgba(255,255,255,.45) !important;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.as-page-hero-visual h6::before {
  content: '';
  display: inline-block;
  width: 22px; height: 2px;
  background: linear-gradient(90deg, #0ea5e9, #6366f1);
  border-radius: 2px;
  flex-shrink: 0;
}

/* 3-column icon chip grid */
.as-hero-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.as-hero-tech-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 20px 10px 16px;
  color: rgba(255,255,255,.8);
  font-size: .72rem;
  font-weight: 600;
  line-height: 1.3;
  cursor: default;
  transition: background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.as-hero-tech-chip:hover {
  background: rgba(14,165,233,.16);
  border-color: rgba(14,165,233,.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(14,165,233,.18);
}
.as-hero-tech-chip i {
  font-size: 1.6rem;
  display: block;
  line-height: 1;
}
.as-hero-tech-chip span {
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
}

/* stat row at bottom of visual — auto-fit handles 2 or 3 chips */
.as-hero-stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.as-hero-stat-chip {
  background: rgba(14,165,233,.08);
  border: 1px solid rgba(14,165,233,.22);
  border-radius: 16px;
  padding: 14px 12px;
  text-align: center;
  transition: background .2s;
}
.as-hero-stat-chip:hover { background: rgba(14,165,233,.14); }
.as-hero-stat-chip strong { display: block; font-size: 1.4rem; font-weight: 800; color: #fff; line-height: 1.1; }
.as-hero-stat-chip span  { font-size: .68rem; color: rgba(255,255,255,.48); margin-top: 2px; display: block; }

/* ── Shared FAQ accordion ── */
.as-faq-section {
  padding: var(--as-section-py, 90px) 0;
  background: linear-gradient(180deg, #f0f6ff 0%, #fff 60%);
}
.as-faq-item {
  background: #fff;
  border: 1px solid rgba(2,45,98,.08);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow .25s ease;
}
.as-faq-item:hover { box-shadow: 0 8px 32px rgba(2,45,98,.08); }
.as-faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  gap: 14px;
}
.as-faq-question h5 {
  font-size: .95rem !important;
  font-weight: 700 !important;
  color: var(--as-primary) !important;
  margin: 0 !important;
  line-height: 1.4;
}
.as-faq-toggle {
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(14,165,233,.1);
  color: var(--as-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; flex-shrink: 0;
  transition: background .25s, transform .25s;
}
.as-faq-item.open .as-faq-toggle { background: var(--as-accent); color: #fff; transform: rotate(45deg); }
.as-faq-answer {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
}
.as-faq-item.open .as-faq-answer { max-height: 300px; padding-bottom: 20px; }
.as-faq-answer p { font-size: .88rem; color: var(--as-text-muted, #64748b); line-height: 1.7; margin: 0; }

@media (max-width: 991px) { .as-page-hero { padding: 100px 0 60px; min-height: auto; } }

/* ============================================================
   17. BUTTONS
   ============================================================ */
.btn-primary-round,
.btn.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--as-gradient-sky) !important;
  color: #fff !important;
  border: none !important;
  padding: 13px 30px !important;
  border-radius: 100px !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .01em;
  transition: all var(--as-dur) var(--as-ease);
  box-shadow: 0 6px 20px rgba(14,165,233,.3);
  text-decoration: none;
}
.btn-primary-round:hover,
.btn.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(14,165,233,.45);
  color: #fff !important;
}
.btn-white-round {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12) !important;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,.35) !important;
  padding: 12px 28px !important;
  border-radius: 100px !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  backdrop-filter: blur(8px);
  transition: all var(--as-dur) var(--as-ease);
}
.btn-white-round:hover {
  background: rgba(255,255,255,.22) !important;
  border-color: rgba(255,255,255,.6) !important;
  color: #fff !important;
  transform: translateY(-2px);
}
.btn-round { border-radius: 100px !important; }
.w-space { white-space: nowrap; }

/* ============================================================
   17. HEADER INNER (page banners)
   ============================================================ */
.header-inner {
  padding: 80px 0;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}
.header-inner::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--as-gradient);
  opacity: .82;
}
.header-inner .container { position: relative; z-index: 1; }
.header-inner-title h1 {
  color: #fff !important;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: .75rem;
}
.header-inner-title p {
  color: rgba(255,255,255,.82) !important;
  font-size: 1.05rem;
  margin: 0;
}
/* FAQ specific banner */
.header-inner.faq { background: var(--as-gradient); }

/* ============================================================
   18. FAQ ACCORDION
   ============================================================ */
.as-faq-section .accordion { max-width: 800px; margin: 0 auto; }

#career-opportunities .card {
  border: 1px solid rgba(2,45,98,.1) !important;
  border-radius: var(--as-radius) !important;
  overflow: hidden;
  margin-bottom: 12px !important;
  box-shadow: none;
  transition: all var(--as-dur) var(--as-ease);
}
#career-opportunities .card:hover { box-shadow: var(--as-shadow-sm); }

#career-opportunities .accordion-icon.card-header {
  background: #fff !important;
  border: none !important;
  padding: 0;
}
#career-opportunities .accordion-icon.card-header h4 { margin: 0; }
#career-opportunities .accordion-icon .btn {
  width: 100%;
  text-align: left;
  padding: 18px 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--as-primary) !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  outline: none;
  gap: 12px;
}
#career-opportunities .accordion-icon .btn::after {
  content: '\002B';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--as-accent);
  flex-shrink: 0;
  transition: transform var(--as-dur-fast);
}
#career-opportunities .accordion-icon .btn:not(.collapsed)::after {
  content: '\2212';
}
#career-opportunities .accordion-icon .btn.collapsed { color: var(--as-text) !important; }
#career-opportunities .accordion-icon .btn:not(.collapsed) {
  background: var(--as-light) !important;
  color: var(--as-primary) !important;
}

#career-opportunities .card-body {
  padding: 20px 24px 24px;
  background: var(--as-surface);
  border-top: 1px solid rgba(2,45,98,.08);
}
#career-opportunities .card-body p { font-size: .9rem; }

.ckeck-list li { margin-bottom: 8px; }
.ckeck-list li span { font-size: .88rem; }
.ckeck-list .fas.fa-check { color: var(--as-accent) !important; margin-top: 3px; }

/* ============================================================
   19. CONTACT PAGE — full premium redesign
   ============================================================ */

/* ── Hero (reuses as-page-hero but centred) ── */
.as-contact-hero {
  padding: 110px 0 72px;
  background: var(--as-gradient);
  position: relative;
  text-align: center;
}
.as-contact-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='40' cy='40' r='6'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.as-contact-hero .remoda-container { position: relative; z-index: 1; }
.as-contact-hero h2 {
  color: #fff !important;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.as-contact-hero p { color: rgba(255,255,255,.8); font-size: 1.05rem; }

/* ── Main contact section ── */
.as-contact-main {
  padding: 80px 0 0;
  background: linear-gradient(180deg, #f0f6ff 0%, #fff 55%);
}

/* split card wrapper */
.as-contact-split {
  display: grid;
  grid-template-columns: 400px 1fr;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(2,45,98,.13);
  border: 1px solid rgba(2,45,98,.06);
}

/* ── LEFT: dark info panel ── */
.as-contact-dark-panel {
  background: linear-gradient(160deg, #022d62 0%, #05132b 60%, #0f172a 100%);
  padding: 48px 38px;
  position: relative; overflow: hidden;
}
.as-contact-dark-panel::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 50 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='25' cy='25' r='3'/%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.as-contact-panel-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.as-contact-panel-orb-1 {
  width: 240px; height: 240px; top: -70px; right: -70px;
  background: radial-gradient(circle, rgba(14,165,233,.22) 0%, transparent 70%);
}
.as-contact-panel-orb-2 {
  width: 180px; height: 180px; bottom: -50px; left: -50px;
  background: radial-gradient(circle, rgba(99,102,241,.18) 0%, transparent 70%);
}
.as-contact-panel-content { position: relative; z-index: 1; }
.as-contact-panel-title {
  font-size: 1.5rem; font-weight: 800;
  color: #fff; line-height: 1.3; margin-bottom: 10px;
}
.as-contact-panel-sub {
  font-size: .88rem; color: rgba(255,255,255,.58);
  margin-bottom: 36px; line-height: 1.7;
}

/* info items */
.as-contact-info-list { list-style: none; padding: 0; margin: 0 0 32px; }
.as-contact-info-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.as-contact-info-item:last-child { border-bottom: none; }
.as-contact-info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 13px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center;
  color: #0ea5e9; font-size: 1rem;
}
.as-contact-info-label {
  font-size: .68rem; font-weight: 700; color: rgba(255,255,255,.38);
  text-transform: uppercase; letter-spacing: .09em; margin-bottom: 4px; display: block;
}
.as-contact-info-value { font-size: .88rem; color: rgba(255,255,255,.88); font-weight: 500; }
.as-contact-info-value a { color: rgba(255,255,255,.88); text-decoration: none; transition: color .2s; }
.as-contact-info-value a:hover { color: #0ea5e9; }

/* social row */
.as-contact-social-label {
  font-size: .68rem; font-weight: 700; color: rgba(255,255,255,.38);
  text-transform: uppercase; letter-spacing: .09em; margin-bottom: 10px; display: block;
}
.as-contact-social-row { display: flex; gap: 9px; }
.as-contact-social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: .85rem;
  text-decoration: none; transition: all .22s;
}
.as-contact-social-btn:hover { background: #0ea5e9; border-color: #0ea5e9; color: #fff; transform: translateY(-2px); }

/* ── RIGHT: form panel ── */
.as-contact-form-panel {
  padding: 48px 44px;
  background: #fff;
}
.as-contact-form-heading {
  font-size: 1.35rem; font-weight: 800; color: var(--as-primary); margin-bottom: 6px;
}
.as-contact-form-sub { font-size: .87rem; color: #64748b; margin-bottom: 28px; line-height: 1.65; }

.as-contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.as-contact-field { margin-bottom: 0; }
.as-contact-mb { margin-bottom: 16px; }
.as-contact-field label {
  display: block; font-size: .72rem; font-weight: 700;
  color: var(--as-primary); text-transform: uppercase;
  letter-spacing: .07em; margin-bottom: 7px;
}
.as-contact-field label .req { color: #0ea5e9; margin-left: 2px; }
.as-contact-field input,
.as-contact-field textarea,
.as-contact-field select {
  width: 100%;
  border: 1.5px solid rgba(2,45,98,.12); border-radius: 12px;
  padding: 12px 16px; font-size: .92rem;
  color: #1e293b; background: #f8faff;
  transition: border-color .2s, box-shadow .2s, background .2s;
  outline: none; font-family: inherit; appearance: none;
}
.as-contact-field input:focus,
.as-contact-field textarea:focus,
.as-contact-field select:focus {
  border-color: #0ea5e9; box-shadow: 0 0 0 4px rgba(14,165,233,.1); background: #fff;
}
.as-contact-field input::placeholder,
.as-contact-field textarea::placeholder { color: #94a3b8; }
.as-contact-field textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.as-contact-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230ea5e9' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.as-contact-field select option { background: #fff; color: #1e293b; }

/* submit button */
.as-contact-submit {
  width: 100%; margin-top: 24px;
  padding: 15px 24px;
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  color: #fff; border: none; border-radius: 100px;
  font-size: .95rem; font-weight: 700; font-family: inherit;
  cursor: pointer; letter-spacing: .03em;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 8px 24px rgba(14,165,233,.32);
  transition: transform .25s, box-shadow .25s;
}
.as-contact-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(14,165,233,.42); }

/* ── Map section ── */
.as-contact-map-section { padding: 48px 0 80px; background: #fff; }
.as-contact-map-label {
  text-align: center; font-size: .72rem; font-weight: 700;
  color: #64748b; text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 20px; display: block;
}
.as-contact-map-wrap {
  height: 400px; border-radius: 24px; overflow: hidden;
  box-shadow: 0 16px 50px rgba(2,45,98,.12);
  border: 1px solid rgba(2,45,98,.07);
}
.as-contact-map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── Trust strip ── */
.as-contact-trust-section {
  background: linear-gradient(180deg, #f0f6ff, #fff);
  padding: 60px 0; border-top: 1px solid rgba(2,45,98,.06);
}
.as-contact-trust-item {
  text-align: center; padding: 22px 16px;
  border-radius: 18px; transition: background .25s, transform .25s, box-shadow .25s;
}
.as-contact-trust-item:hover {
  background: #fff; box-shadow: 0 10px 28px rgba(2,45,98,.08); transform: translateY(-5px);
}
.as-contact-trust-icon {
  width: 58px; height: 58px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(14,165,233,.12), rgba(99,102,241,.12));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.as-contact-trust-icon i { font-size: 1.3rem; color: #0ea5e9; }
.as-contact-trust-title { font-size: .95rem; font-weight: 700; color: var(--as-primary); margin-bottom: 5px; }
.as-contact-trust-desc { font-size: .8rem; color: #64748b; line-height: 1.5; }

/* ── Contact responsive ── */
@media (max-width: 1024px) {
  .as-contact-split { grid-template-columns: 340px 1fr; }
}
@media (max-width: 900px) {
  .as-contact-split { grid-template-columns: 1fr; border-radius: 20px; }
  .as-contact-dark-panel { padding: 36px 28px; }
  .as-contact-form-panel { padding: 36px 28px; }
  .as-contact-map-section { padding: 36px 0 60px; }
}
@media (max-width: 575px) {
  .as-contact-form-row { grid-template-columns: 1fr; }
  .as-contact-dark-panel { padding: 28px 20px; }
  .as-contact-form-panel { padding: 28px 20px; }
  .as-contact-map-wrap { height: 280px; border-radius: 16px; }
}

/* ============================================================
   20. FOOTER
   ============================================================ */
.footer {
  background: var(--as-dark) !important;
  color: rgba(255,255,255,.75) !important;
  padding-top: 80px !important;
}

/* ── Force white text on everything inside footer ── */
.footer p,
.footer span,
.footer li,
.footer address,
.footer small,
.footer label,
.footer td,
.footer th { color: rgba(255,255,255,.72) !important; }

.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6 { color: #fff !important; }

.footer a { color: rgba(255,255,255,.65) !important; text-decoration: none !important; }
.footer a:hover { color: var(--as-accent) !important; }

/* overrides for Bootstrap .text-* utilities inside footer */
.footer .text-muted,
.footer .text-secondary,
.footer .text-dark,
.footer .text-body { color: rgba(255,255,255,.55) !important; }

/* Contact address blocks */
.footer .text-primary { color: #7dd3fc !important; }
.footer .contact-address-02 .contact-item { margin-bottom: 8px; }
.footer .contact-address-02 .contact-item label {
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .08em;
  display: block;
  margin-bottom: 2px;
}
.footer .contact-address-02 .contact-item p {
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  margin: 0;
  line-height: 1.5;
}
.footer .contact-address-02 a {
  color: rgba(255,255,255,.65);
  font-size: .83rem;
}
.footer .contact-address-02 a:hover { color: var(--as-accent); }

/* Footer office title */
.footer h5.text-primary {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--as-accent) !important;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer h5.text-primary::before {
  content: none;   /* removed — decorative dash line before heading */
}

/* Footer links */
.footer-link ul { list-style: none; padding: 0; margin: 0; }
.footer-link ul li { margin-bottom: 10px; }
.footer-link ul li a {
  color: rgba(255,255,255,.62);
  font-size: .875rem;
  transition: all var(--as-dur-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-link ul li a::before {
  content: '';
  width: 4px; height: 4px;
  background: rgba(14,165,233,.5);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background var(--as-dur-fast);
}
.footer-link ul li a:hover {
  color: var(--as-accent);
  transform: translateX(4px);
}
.footer-link ul li a:hover::before { background: var(--as-accent); }

/* Footer divider */
.footer-bottom {
  background: rgba(0,0,0,.25) !important;
  border-top: 1px solid rgba(255,255,255,.07) !important;
  padding: 20px 0 !important;
}
.footer-bottom p {
  color: rgba(255,255,255,.45);
  font-size: .82rem;
  margin: 0;
}
.footer-bottom a { color: rgba(255,255,255,.65); }
.footer-bottom a:hover { color: var(--as-accent); }

/* Footer section headings */
.footer .col-lg-6 > .row [class*="col-"] h5:not(.text-primary),
.footer .footer-link + * > h5 {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--as-accent) !important;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}

/* ============================================================
   21. CHATBOT BUTTON (keep existing, just polish)
   ============================================================ */
#chat-btn {
  background: var(--as-gradient) !important;
  box-shadow: 0 8px 28px rgba(2,45,98,.35) !important;
}
#chat-btn:hover { transform: scale(1.08) !important; }
#chat-header { background: var(--as-gradient) !important; }

/* ============================================================
   22. SCROLL ANIMATIONS
   ============================================================ */
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--as-ease), transform .6s var(--as-ease); }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos="fade-right"] { transform: translateX(-24px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"] { transform: translateX(24px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }
[data-aos="zoom-in"] { transform: scale(.96); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }

/* ============================================================
   23. BACK TO TOP
   ============================================================ */
.back-to-top {
  width: 44px; height: 44px;
  background: var(--as-gradient);
  color: #fff;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  box-shadow: var(--as-shadow-md);
  transition: all var(--as-dur-fast);
}
.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--as-shadow-lg);
}

/* ============================================================
   24. ABOUT PAGE
   ============================================================ */
.as-about-feature {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.as-about-feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(14,165,233,.1), rgba(99,102,241,.1));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--as-accent);
  font-size: 1.1rem;
}
.as-about-feature-body h5 { font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.as-about-feature-body p { font-size: .85rem; margin: 0; }

.as-about-img-wrapper {
  position: relative;
  border-radius: var(--as-radius-xl);
  overflow: hidden;
}
.as-about-img-wrapper img {
  width: 100%;
  border-radius: var(--as-radius-xl);
  display: block;
}
.as-about-badge {
  position: absolute;
  bottom: 28px; left: 28px;
  background: #fff;
  border-radius: var(--as-radius);
  padding: 16px 20px;
  box-shadow: var(--as-shadow-lg);
  display: flex; align-items: center; gap: 14px;
}
.as-about-badge-icon {
  width: 44px; height: 44px;
  background: var(--as-gradient);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem;
}
.as-about-badge-text strong { font-size: .95rem; color: var(--as-primary); font-weight: 700; display: block; }
.as-about-badge-text span { font-size: .78rem; color: var(--as-text-muted); }

/* ============================================================
   25. RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    border-radius: var(--as-radius-lg);
    box-shadow: var(--as-shadow-lg);
    padding: 20px;
    margin-top: 12px;
  }
  .mega-menu .dropdown-menu.megamenu {
    min-width: 100%;
    left: 0;
    transform: none;
    position: static;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none;
    border: 1px solid rgba(2,45,98,.08);
    margin-top: 8px;
  }
  .navbar-nav .nav-link::after { display: none; }
  .navbar-nav .nav-cta { margin-top: 8px; }
  .case-right { padding-left: 0; margin-top: 24px; }
  .remoda-grid { grid-template-columns: 1fr; }
  .dark-background .bg-dark, .as-cta-box { padding: 48px 28px !important; }
}

@media (max-width: 767px) {
  :root { --as-section-py: 56px; }
  .swiper-wrapper.h-700 { height: 440px !important; }
  .counter { justify-content: center; text-align: center; }
  .counter-content { align-items: center; }
  .testimonial-item { padding: 32px 24px; }
  .remoda-form-box { padding: 24px; }
  .footer { padding-top: 56px !important; }
  .case-title { font-size: 1.6rem; }
  .case-menu { display: flex; overflow-x: auto; border-left: none; border-bottom: 2px solid rgba(2,45,98,.1); }
  .case-menu li { flex: 0 0 auto; border-left: none; border-bottom: 3px solid transparent; border-radius: 0; padding: 10px 16px; }
  .case-menu li.active { border-left: none; border-bottom: 3px solid var(--as-accent); background: none; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-hero-primary,
  .hero-ctas .btn-hero-outline { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════
   BLOG — Listing & Detail pages
   ═══════════════════════════════════════════════════════════════ */

/* ── Shared hero orbs (reused on blog pages) ── */
.as-blog-listing-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.as-blog-listing-orb-1 {
  top: -100px; right: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(14,165,233,.15) 0%, transparent 70%);
}
.as-blog-listing-orb-2 {
  bottom: -80px; left: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(99,102,241,.1) 0%, transparent 70%);
}

/* ── Blog listing hero ── */
.as-blog-listing-hero {
  background: linear-gradient(135deg, #022d62 0%, #05132b 50%, #0f172a 100%);
  padding: 120px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.as-blog-listing-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

/* ── Blog grid section ── */
.as-blog-grid-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f0f6ff 0%, #fff 55%);
}

/* ── Blog card ── */
.as-blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(2,45,98,.08);
  box-shadow: 0 2px 14px rgba(2,45,98,.05);
  transition: transform .32s ease, box-shadow .32s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.as-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(2,45,98,.13);
}
.as-blog-card-img {
  position: relative;
  overflow: hidden;
  height: 228px;
  flex-shrink: 0;
}
.as-blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.as-blog-card:hover .as-blog-card-img img { transform: scale(1.07); }
.as-blog-cat-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  color: #fff;
  font-size: .68rem; font-weight: 700;
  padding: 4px 13px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .07em;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(14,165,233,.35);
}
.as-blog-card-body {
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.as-blog-meta {
  display: flex; flex-wrap: wrap;
  gap: 14px;
  font-size: .74rem;
  color: #64748b;
  margin-bottom: 14px;
}
.as-blog-meta i { color: #0ea5e9; margin-right: 4px; }
.as-blog-title {
  font-size: 1.05rem; font-weight: 700;
  line-height: 1.48;
  margin-bottom: 10px;
  color: var(--as-primary);
}
.as-blog-title a {
  color: inherit; text-decoration: none;
  transition: color .2s;
}
.as-blog-title a:hover { color: #0ea5e9; }
.as-blog-excerpt {
  font-size: .88rem; color: #64748b;
  line-height: 1.7;
  margin-bottom: 22px;
  flex: 1;
}
.as-blog-readmore {
  display: inline-flex; align-items: center;
  gap: 7px;
  font-size: .82rem; font-weight: 700;
  color: #0ea5e9;
  text-decoration: none;
  transition: gap .2s, color .2s;
  width: fit-content;
}
.as-blog-readmore:hover { gap: 12px; color: #0284c7; }
.as-blog-readmore i { transition: transform .2s; }
.as-blog-readmore:hover i { transform: translateX(3px); }

/* ── Pagination ── */
.as-blog-pagination {
  margin-top: 64px;
  display: flex; justify-content: center;
}
.as-blog-pagination .pagination { gap: 6px; }
.as-blog-pagination .page-link {
  border-radius: 10px !important;
  border-color: rgba(2,45,98,.12);
  color: var(--as-primary);
  font-weight: 600; font-size: .85rem;
  padding: 8px 15px;
  transition: all .2s;
}
.as-blog-pagination .page-link:hover,
.as-blog-pagination .page-item.active .page-link {
  background: #0ea5e9; border-color: #0ea5e9;
  color: #fff;
  box-shadow: 0 4px 14px rgba(14,165,233,.3);
}

/* ── Blog detail: dark hero ── */
.as-blog-detail-hero {
  background: linear-gradient(135deg, #022d62 0%, #05132b 50%, #0f172a 100%);
  padding: 116px 0 64px;
  position: relative; overflow: hidden;
}
.as-blog-detail-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

/* breadcrumb */
.as-blog-breadcrumb {
  display: flex; align-items: center;
  flex-wrap: wrap; gap: 8px;
  margin-bottom: 24px;
  font-size: .8rem;
}
.as-blog-breadcrumb a {
  color: rgba(255,255,255,.55);
  text-decoration: none; transition: color .2s;
}
.as-blog-breadcrumb a:hover { color: #0ea5e9; }
.as-blog-breadcrumb i { font-size: .6rem; color: rgba(255,255,255,.25); }
.as-blog-breadcrumb span { color: rgba(255,255,255,.88); }

/* hero meta row */
.as-blog-detail-meta {
  display: flex; flex-wrap: wrap;
  align-items: center; gap: 16px;
  margin-bottom: 22px;
}
.as-blog-detail-cat {
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  color: #fff; font-size: .7rem; font-weight: 700;
  padding: 5px 14px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: .07em;
}
.as-blog-detail-meta-item {
  display: flex; align-items: center; gap: 6px;
  font-size: .8rem; color: rgba(255,255,255,.55);
}
.as-blog-detail-meta-item i { color: #0ea5e9; }

/* detail title */
.as-blog-detail-title {
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  font-weight: 800; color: #fff;
  line-height: 1.28; margin-bottom: 0;
  max-width: 820px;
}

/* featured image */
.as-blog-featured-img-wrap {
  background: linear-gradient(180deg, #0f172a 0%, #f0f6ff 100%);
  padding: 0;
}
.as-blog-featured-img-wrap img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 0 0 24px 24px;
  display: block;
  box-shadow: 0 20px 60px rgba(2,45,98,.15);
}

/* article content */
.as-blog-content-section {
  padding: 72px 0 80px;
  background: #fff;
}
.as-blog-article {
  line-height: 1.85; color: #1e293b;
  font-size: 1.02rem;
}
.as-blog-article h2,
.as-blog-article h3,
.as-blog-article h4 {
  color: var(--as-primary); font-weight: 700;
  margin: 36px 0 14px; line-height: 1.35;
}
.as-blog-article h2 { font-size: 1.5rem; }
.as-blog-article h3 { font-size: 1.25rem; }
.as-blog-article h4 { font-size: 1.08rem; }
.as-blog-article p { margin-bottom: 20px; }
.as-blog-article a { color: #0ea5e9; }
.as-blog-article ul, .as-blog-article ol { padding-left: 22px; margin-bottom: 20px; }
.as-blog-article li { margin-bottom: 8px; }
.as-blog-article img { max-width: 100%; border-radius: 12px; margin: 24px 0; }
.as-blog-article code {
  background: #f1f5f9; color: #e11d48;
  padding: 2px 7px; border-radius: 6px; font-size: .9em;
}
.as-blog-article pre {
  background: #0f172a; color: #e2e8f0;
  border-radius: 14px; padding: 24px;
  overflow-x: auto; margin: 24px 0; font-size: .88rem;
}

/* quote block */
.as-blog-quote {
  background: linear-gradient(135deg, rgba(2,45,98,.04), rgba(14,165,233,.07));
  border-left: 4px solid #0ea5e9;
  border-radius: 0 16px 16px 0;
  padding: 28px 32px;
  margin: 36px 0;
  position: relative;
}
.as-blog-quote .fa-quote-left {
  font-size: 2rem; color: #0ea5e9; opacity: .25;
  position: absolute; top: 16px; left: 20px;
}
.as-blog-quote p {
  font-size: 1.08rem; font-style: italic;
  color: var(--as-primary); font-weight: 600;
  margin: 0; padding-left: 28px; line-height: 1.7;
}

/* bullet list */
.as-blog-bullets {
  list-style: none; padding: 0; margin: 24px 0 32px;
}
.as-blog-bullets li {
  display: flex; align-items: flex-start;
  gap: 12px; padding: 10px 0;
  border-bottom: 1px solid rgba(2,45,98,.06);
  font-size: .95rem; color: #334155;
}
.as-blog-bullets li:last-child { border-bottom: none; }
.as-bullet-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.as-bullet-check i { font-size: .6rem; color: #fff; }

/* back + share row */
.as-blog-back-row {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap;
  gap: 16px; padding-top: 40px; margin-top: 40px;
  border-top: 1px solid rgba(2,45,98,.08);
}

/* ── Blog responsive ── */
@media (max-width: 991px) {
  .as-blog-listing-hero { padding: 92px 0 56px; }
  .as-blog-grid-section { padding: 60px 0; }
  .as-blog-detail-hero { padding: 92px 0 52px; }
  .as-blog-content-section { padding: 52px 0 64px; }
  .as-blog-featured-img-wrap img { max-height: 360px; border-radius: 0 0 18px 18px; }
}
@media (max-width: 767px) {
  .as-blog-card-img { height: 200px; }
  .as-blog-detail-title { font-size: 1.5rem; }
  .as-blog-quote { padding: 22px 18px 22px 22px; }
  .as-blog-quote p { padding-left: 0; }
  .as-blog-featured-img-wrap img { max-height: 240px; border-radius: 0 0 12px 12px; }
  .as-blog-back-row { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .as-blog-card-body { padding: 20px 18px; }
  .as-blog-detail-meta { gap: 10px; }
  .as-blog-card-img { height: 180px; }
}

/* ═══════════════════════════════════════════════════════════════
   PORTFOLIO — listing page & detail popup
   ═══════════════════════════════════════════════════════════════ */

/* ── Portfolio hero ── */
.as-portfolio-hero {
  background: linear-gradient(135deg, #022d62 0%, #05132b 50%, #0f172a 100%);
  padding: 120px 0 72px;
  text-align: center;
  position: relative; overflow: hidden;
}
.as-portfolio-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

/* hero stats row */
.as-portfolio-hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 36px;
}
.as-portfolio-hero-stat {
  text-align: center;
}
.as-portfolio-hero-stat strong {
  display: block;
  font-size: 1.8rem; font-weight: 800; color: #fff; line-height: 1;
}
.as-portfolio-hero-stat span {
  font-size: .78rem; color: rgba(255,255,255,.5); margin-top: 4px; display: block;
}
.as-portfolio-hero-divider {
  width: 1px; background: rgba(255,255,255,.15); align-self: stretch;
}

/* ── Filter section ── */
.as-portfolio-section {
  padding: 72px 0 80px;
  background: linear-gradient(180deg, #f0f6ff 0%, #fff 45%);
}
.as-portfolio-filter-wrap {
  background: #fff;
  border: 1px solid rgba(2,45,98,.08);
  border-radius: 20px;
  padding: 24px 28px;
  margin-bottom: 48px;
  box-shadow: 0 4px 20px rgba(2,45,98,.06);
}
.as-portfolio-filter-title {
  font-size: .72rem; font-weight: 800; color: var(--as-primary);
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.as-portfolio-filter-title::before {
  content: ''; width: 18px; height: 2px;
  background: linear-gradient(90deg,#0ea5e9,#6366f1);
  border-radius: 2px; flex-shrink: 0;
}
.as-filter-group {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 14px; flex-wrap: wrap;
}
.as-filter-group:last-of-type { margin-bottom: 0; }
.as-filter-group-label {
  font-size: .72rem; font-weight: 700; color: #64748b;
  text-transform: uppercase; letter-spacing: .07em;
  min-width: 88px; padding-top: 7px; flex-shrink: 0;
}
.as-filter-pills-row {
  display: flex; flex-wrap: wrap; gap: 8px; flex: 1;
}
.as-filter-pill {
  display: inline-flex; align-items: center;
  padding: 5px 15px;
  background: #f8faff;
  border: 1.5px solid rgba(2,45,98,.14);
  border-radius: 20px;
  font-size: .78rem; font-weight: 600; color: #475569;
  cursor: pointer; transition: all .2s ease; user-select: none;
  line-height: 1.4;
}
.as-filter-pill:hover {
  border-color: #0ea5e9; color: #0ea5e9;
  background: rgba(14,165,233,.06);
}
.as-filter-pill input[type="checkbox"] { display: none; }
.as-filter-pill.active {
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  border-color: transparent; color: #fff;
  box-shadow: 0 4px 12px rgba(14,165,233,.3);
}
.as-filter-clear-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 15px;
  background: rgba(239,68,68,.07);
  border: 1.5px solid rgba(239,68,68,.18);
  border-radius: 20px;
  font-size: .78rem; font-weight: 600; color: #ef4444;
  text-decoration: none; transition: all .2s; white-space: nowrap;
  cursor: pointer;
}
.as-filter-clear-btn:hover { background: #ef4444; color: #fff; border-color: #ef4444; }
.as-filter-sep {
  border: none; border-top: 1px solid rgba(2,45,98,.07); margin: 16px 0;
}

/* ── Portfolio card grid ── */
.as-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.as-portfolio-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(2,45,98,.08);
  box-shadow: 0 2px 14px rgba(2,45,98,.05);
  transition: transform .32s ease, box-shadow .32s ease;
  cursor: pointer; display: flex; flex-direction: column;
}
.as-portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(2,45,98,.13);
}
.as-portfolio-card-img {
  position: relative; overflow: hidden; height: 220px;
}
.as-portfolio-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s ease;
}
.as-portfolio-card:hover .as-portfolio-card-img img { transform: scale(1.07); }
.as-portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(2,45,98,.78), rgba(14,165,233,.65));
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s ease;
}
.as-portfolio-card:hover .as-portfolio-overlay { opacity: 1; }
.as-portfolio-view-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--as-primary);
  border: none; border-radius: 12px;
  padding: 10px 22px;
  font-size: .85rem; font-weight: 700; cursor: pointer;
  transform: translateY(10px); transition: transform .3s ease, background .2s;
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
}
.as-portfolio-card:hover .as-portfolio-view-btn { transform: translateY(0); }
.as-portfolio-view-btn:hover { background: #0ea5e9; color: #fff; }
.as-portfolio-card-body { padding: 20px; }
.as-portfolio-ind-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(14,165,233,.1), rgba(99,102,241,.1));
  color: #0ea5e9; border: 1px solid rgba(14,165,233,.2);
  font-size: .68rem; font-weight: 700;
  padding: 3px 12px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 10px;
}
.as-portfolio-card-title {
  font-size: .98rem; font-weight: 700;
  color: var(--as-primary); line-height: 1.45; margin-bottom: 8px;
}
.as-portfolio-card-date {
  font-size: .74rem; color: #94a3b8;
  display: flex; align-items: center; gap: 5px;
}
.as-portfolio-card-date i { color: #0ea5e9; font-size: .68rem; }

/* empty state */
.as-portfolio-empty {
  grid-column: 1 / -1; text-align: center;
  padding: 80px 24px;
  color: #94a3b8;
}
.as-portfolio-empty i { font-size: 3rem; margin-bottom: 16px; display: block; }

/* pagination */
.as-portfolio-pagination {
  margin-top: 56px; display: flex; justify-content: center;
}
.as-portfolio-pagination .pagination { gap: 6px; }
.as-portfolio-pagination .page-link {
  border-radius: 10px !important;
  border-color: rgba(2,45,98,.12);
  color: var(--as-primary); font-weight: 600;
  font-size: .85rem; padding: 8px 15px; transition: all .2s;
}
.as-portfolio-pagination .page-link:hover,
.as-portfolio-pagination .page-item.active .page-link {
  background: #0ea5e9; border-color: #0ea5e9; color: #fff;
  box-shadow: 0 4px 14px rgba(14,165,233,.3);
}

/* ══════════════════════════════════════════════════
   Portfolio detail modal — contained-image design
   ══════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════════════════
   PORTFOLIO MODAL — split layout (image left / content right)
   Full-screen drawer on mobile, side-by-side panel on tablet+
   ════════════════════════════════════════════════════════════ */

/* ── Dialog shell ── */
.as-portfolio-modal-dialog {
  max-width: 960px;
  margin: 24px auto;
}

/* ── Modal content: side-by-side flex row ── */
.as-portfolio-modal-content {
  border: none;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(2,45,98,.28), 0 16px 40px rgba(0,0,0,.14);
  display: flex;
  flex-direction: row;       /* image LEFT + content RIGHT */
  max-height: 88vh;
  min-height: 500px;
}

/* ══ LEFT PANEL — image ══ */
.as-pm-left {
  position: relative;
  width: 44%;
  flex-shrink: 0;
  background: linear-gradient(160deg, #010f24 0%, #022d62 55%, #1a0005 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* subtle dot-grid overlay */
.as-pm-left::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none; z-index: 0;
}
/* red glow behind image */
.as-pm-left::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(200,16,46,.18) 0%, transparent 65%),
              radial-gradient(ellipse at 30% 80%, rgba(2,45,98,.4) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}

/* Image zone — fills the left panel */
.as-portfolio-modal-img-zone {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: 28px 20px;
}
.as-portfolio-modal-img-zone img {
  max-width: 90%; max-height: 78%;
  width: auto; height: auto;
  object-fit: contain; display: block;
  border-radius: 14px;
  box-shadow: 0 16px 52px rgba(0,0,0,.55);
  transition: transform .4s ease;
}
.as-pm-left:hover .as-portfolio-modal-img-zone img { transform: scale(1.03); }

/* Floating close button — always top-right of the left panel */
.as-portfolio-modal-x {
  position: absolute; top: 14px; right: 14px; z-index: 30;
  width: 40px; height: 40px;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,.28);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .88rem; cursor: pointer;
  transition: background .2s ease, transform .25s ease;
}
.as-portfolio-modal-x:hover {
  background: rgba(200,16,46,.6);
  border-color: rgba(200,16,46,.8);
  transform: rotate(90deg);
}

/* Small badge at bottom of image panel */
.as-pm-img-overlay-badge {
  position: absolute; bottom: 18px; left: 50%;
  transform: translateX(-50%); z-index: 10;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px; padding: 5px 16px;
  font-size: .7rem; font-weight: 600; color: rgba(255,255,255,.75);
  white-space: nowrap;
  display: flex; align-items: center; gap: 6px;
}
.as-pm-img-overlay-badge i { color: rgba(255,255,255,.55); font-size: .65rem; }

/* ══ RIGHT PANEL — content ══ */
.as-pm-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;               /* prevent flex overflow */
  background: #fff;
  overflow: hidden;
}

/* ── Meta strip: category badge + date ── */
.as-portfolio-modal-meta-strip {
  background: linear-gradient(90deg, #f0f6ff 0%, #fff 100%);
  border-bottom: 1px solid rgba(2,45,98,.08);
  padding: 14px 28px;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  flex-shrink: 0;
}
.as-portfolio-modal-cat {
  display: inline-flex; align-items: center; gap: 5px;
  background: linear-gradient(135deg, #022d62, #c8102e);
  color: #fff; font-size: .67rem; font-weight: 700;
  padding: 5px 14px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: .08em;
  box-shadow: 0 3px 10px rgba(200,16,46,.28);
  white-space: nowrap;
}
.as-portfolio-modal-date-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: .78rem; color: #64748b; font-weight: 500;
}
.as-portfolio-modal-date-badge i { color: #c8102e; font-size: .7rem; }

/* ── Title area ── */
.as-portfolio-modal-head {
  padding: 22px 28px 16px;
  border-bottom: 1px solid rgba(2,45,98,.07);
  flex-shrink: 0;
}
.as-portfolio-modal-head-accent {
  display: block; width: 40px; height: 3px;
  background: linear-gradient(90deg, #022d62, #c8102e);
  border-radius: 3px; margin-bottom: 12px;
}
.as-portfolio-modal-title {
  font-size: 1.25rem; font-weight: 800;
  color: var(--as-primary); line-height: 1.38; margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ── Scrollable description (flex: 1 so it fills remaining height) ── */
.as-portfolio-modal-body-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px 16px;
  min-height: 0;             /* critical for flex-child scroll */
}
.as-portfolio-modal-body-scroll::-webkit-scrollbar { width: 4px; }
.as-portfolio-modal-body-scroll::-webkit-scrollbar-track { background: #f0f6ff; border-radius: 4px; }
.as-portfolio-modal-body-scroll::-webkit-scrollbar-thumb { background: linear-gradient(180deg,#022d62,#c8102e); border-radius: 4px; }

/* ── Normalise admin-entered HTML ── */
.as-portfolio-modal-desc { color: #475569; line-height: 1.82; font-size: .9rem; }
.as-portfolio-modal-desc h1,
.as-portfolio-modal-desc h2 { font-size: 1rem !important; font-weight: 700; color: var(--as-primary); margin: 16px 0 7px !important; padding: 0 !important; border: none !important; background: none !important; }
.as-portfolio-modal-desc h3,
.as-portfolio-modal-desc h4,
.as-portfolio-modal-desc h5,
.as-portfolio-modal-desc h6 { font-size: .88rem !important; font-weight: 700; color: #334155; margin: 12px 0 5px !important; padding: 0 !important; }
.as-portfolio-modal-desc p { margin-bottom: 12px; }
.as-portfolio-modal-desc ul, .as-portfolio-modal-desc ol { padding-left: 18px; margin-bottom: 12px; }
.as-portfolio-modal-desc li { margin-bottom: 5px; }
.as-portfolio-modal-desc img { max-width: 100%; height: auto; border-radius: 10px; margin: 14px 0; display: block; box-shadow: 0 4px 16px rgba(2,45,98,.1); }
.as-portfolio-modal-desc strong { color: var(--as-primary); }
.as-portfolio-modal-desc a { color: #c8102e; text-decoration: underline; }
.as-portfolio-modal-desc table { width: 100%; font-size: .85rem; border-collapse: collapse; margin: 12px 0; }
.as-portfolio-modal-desc td, .as-portfolio-modal-desc th { padding: 7px 10px; border: 1px solid rgba(2,45,98,.1); }

/* ── Footer: close + CTA ── */
.as-portfolio-modal-foot {
  padding: 14px 28px 20px;
  border-top: 1px solid rgba(2,45,98,.07);
  display: flex; align-items: center;
  justify-content: space-between; gap: 10px;
  flex-shrink: 0;
  background: #fafcff;
}
.as-pm-close-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: none; border: 1.5px solid rgba(2,45,98,.2);
  border-radius: 100px; padding: 9px 20px;
  font-size: .82rem; font-weight: 600; color: var(--as-primary);
  cursor: pointer; transition: all .2s ease; white-space: nowrap;
}
.as-pm-close-btn:hover { background: #f0f6ff; border-color: #022d62; }
.as-pm-cta-btn { font-size: .82rem !important; padding: 10px 22px !important; white-space: nowrap; }

/* ════════════════════════════════════════════════════════
   RESPONSIVE — tablet (768–991px): narrower left panel
   ════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .as-portfolio-hero { padding: 92px 0 56px; }
  .as-portfolio-section { padding: 56px 0 64px; }
  .as-portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }

  .as-portfolio-modal-dialog { max-width: 700px; margin: 16px auto; }
  .as-portfolio-modal-content { min-height: 420px; max-height: 90vh; }
  .as-pm-left { width: 40%; }
  .as-portfolio-modal-title { font-size: 1.1rem; }
  .as-portfolio-modal-meta-strip { padding: 12px 20px; }
  .as-portfolio-modal-head { padding: 18px 20px 14px; }
  .as-portfolio-modal-body-scroll { padding: 16px 20px 12px; }
  .as-portfolio-modal-foot { padding: 12px 20px 16px; }
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — mobile (<768px): stacked full-screen drawer
   ════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .as-portfolio-grid { grid-template-columns: 1fr; gap: 16px; }
  .as-portfolio-card-img { height: 200px; }
  .as-portfolio-filter-wrap { padding: 18px 16px; }
  .as-filter-group { gap: 8px; }
  .as-filter-group-label { min-width: auto; width: 100%; padding-top: 0; }

  /* Modal becomes a full-screen bottom-anchored drawer */
  .as-portfolio-modal-dialog {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    /* push to bottom */
    position: fixed !important;
    bottom: 0 !important; left: 0 !important; right: 0 !important;
    transform: none !important;
  }
  .as-portfolio-modal-content {
    flex-direction: column;          /* stack: image on top, content below */
    border-radius: 20px 20px 0 0;   /* rounded only at top */
    max-height: 92vh;
    min-height: unset;
  }
  /* Handle bar at the very top (drag-to-close visual cue) */
  .as-portfolio-modal-content::before {
    content: '';
    display: block;
    width: 44px; height: 4px;
    background: rgba(2,45,98,.18);
    border-radius: 4px;
    margin: 10px auto 0;
    flex-shrink: 0;
  }

  /* Left panel becomes a compact image strip */
  .as-pm-left {
    width: 100%;
    height: 220px;
    flex-shrink: 0;
    border-radius: 0;
  }
  .as-portfolio-modal-img-zone { padding: 16px; }
  .as-portfolio-modal-img-zone img { max-width: 85%; max-height: 90%; }
  .as-pm-img-overlay-badge { bottom: 10px; font-size: .65rem; }

  /* Close button larger on mobile, top-right of whole modal */
  .as-portfolio-modal-x { top: 12px; right: 12px; width: 44px; height: 44px; font-size: .95rem; }

  /* Right panel fills remaining height */
  .as-pm-right { flex: 1; min-height: 0; overflow: hidden; display: flex; flex-direction: column; }
  .as-portfolio-modal-meta-strip { padding: 12px 18px; }
  .as-portfolio-modal-head { padding: 14px 18px 12px; }
  .as-portfolio-modal-title { font-size: 1.08rem; }
  .as-portfolio-modal-body-scroll { padding: 12px 18px 10px; }
  .as-portfolio-modal-foot {
    padding: 12px 18px 18px;
    gap: 8px;
    flex-wrap: nowrap;
  }
  .as-pm-close-btn { padding: 9px 16px; font-size: .8rem; }
  .as-pm-cta-btn { flex: 1; justify-content: center; font-size: .82rem !important; }
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — small mobile (<480px)
   ════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .as-portfolio-hero-stats { gap: 20px; }
  .as-portfolio-hero-divider { display: none; }
  .as-pm-left { height: 185px; }
  .as-portfolio-modal-title { font-size: 1rem; }
  .as-portfolio-modal-foot { gap: 8px; }
}

/* ============================================================
   26. CASE STUDY DETAIL PAGES
   ============================================================ */

/* ── Hero ── */
.csd-hero {
  padding: 130px 0 80px;
  position: relative; overflow: hidden;
}
.csd-hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
  filter: blur(90px);
}
.csd-hero-orb-1 { width: 520px; height: 520px; top: -160px; right: -100px; }
.csd-hero-orb-2 { width: 360px; height: 360px; bottom: -80px; left: 4%; }
.csd-hero-inner { position: relative; z-index: 1; }
.csd-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}
.csd-breadcrumb a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.csd-breadcrumb a:hover { color: #0ea5e9; }
.csd-breadcrumb i { font-size: .55rem; }
.csd-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(14,165,233,.15); border: 1px solid rgba(14,165,233,.3);
  color: #7dd3fc; border-radius: 100px;
  padding: 6px 18px; font-size: .75rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 18px;
}
.csd-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 16px;
}
.csd-hero-sub { color: rgba(255,255,255,.6); font-size: 1rem; max-width: 560px; margin-bottom: 30px; line-height: 1.7; }
.csd-metrics { display: flex; flex-wrap: wrap; gap: 12px; }
.csd-metric {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px); border-radius: 14px;
  padding: 14px 22px; text-align: center; min-width: 110px;
}
.csd-metric-val { display: block; font-size: 1.65rem; font-weight: 900; color: #fff; line-height: 1; font-family: 'Plus Jakarta Sans', sans-serif; }
.csd-metric-lbl { font-size: .7rem; color: rgba(255,255,255,.48); margin-top: 5px; display: block; white-space: nowrap; }

/* Hero right visual panel */
.csd-hero-visual {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px; overflow: hidden; height: 340px;
  backdrop-filter: blur(10px);
  display: flex; flex-direction: column;
}

/* ── Overview bar ── */
.csd-overview {
  background: #fff; border-bottom: 1px solid #e2e8f0; padding: 22px 0;
}
.csd-overview-grid { display: flex; flex-wrap: wrap; }
.csd-ov-item {
  flex: 1; min-width: 140px; padding: 4px 28px;
  border-right: 1px solid #e2e8f0;
}
.csd-ov-item:last-child { border-right: none; }
.csd-ov-label { font-size: .68rem; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.csd-ov-value { font-size: .9rem; font-weight: 700; color: #022d62; }

/* ── Generic section ── */
.csd-section { padding: 80px 0; }
.csd-section-alt { background: #f8faff; }
.csd-section-dark {
  background: linear-gradient(135deg, #010f24 0%, #022d62 100%);
  position: relative; overflow: hidden;
}
.csd-section-dark::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 80% 50%, rgba(14,165,233,.12), transparent 60%);
}
.csd-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(14,165,233,.1); border: 1px solid rgba(14,165,233,.2);
  color: #0ea5e9; border-radius: 100px;
  padding: 5px 15px; font-size: .7rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; margin-bottom: 12px;
}
.csd-section-dark .csd-eyebrow { background: rgba(14,165,233,.15); border-color: rgba(14,165,233,.3); color: #7dd3fc; }
.csd-h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem); font-weight: 800;
  color: #022d62; margin-bottom: 12px; line-height: 1.25;
}
.csd-section-dark .csd-h2 { color: #fff; }
.csd-sub { color: #64748b; font-size: .95rem; max-width: 580px; line-height: 1.7; }
.csd-section-dark .csd-sub { color: rgba(255,255,255,.55); }

/* ── Challenge cards ── */
.csd-challenge-card {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 18px;
  padding: 28px 22px; text-align: center;
  transition: all .25s ease; height: 100%;
}
.csd-challenge-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(2,45,98,.1); border-color: #cbd5e1; }
.csd-ch-icon {
  width: 60px; height: 60px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin: 0 auto 18px;
}
.csd-ch-icon.red    { background: #fff1f2; color: #ef4444; }
.csd-ch-icon.orange { background: #fff7ed; color: #f97316; }
.csd-ch-icon.amber  { background: #fefce8; color: #d97706; }
.csd-ch-icon.blue   { background: #eff6ff; color: #2563eb; }
.csd-ch-icon.sky    { background: #f0f9ff; color: #0284c7; }
.csd-ch-icon.indigo { background: #eef2ff; color: #4f46e5; }
.csd-ch-icon.violet { background: #f5f3ff; color: #7c3aed; }
.csd-ch-icon.green  { background: #f0fdf4; color: #16a34a; }
.csd-challenge-card h5 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: .97rem;
  font-weight: 800; color: #022d62; margin-bottom: 8px;
}
.csd-challenge-card p { color: #64748b; font-size: .85rem; line-height: 1.6; margin: 0; }

/* ── Solution bullets ── */
.csd-sol-point {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid #f1f5f9;
}
.csd-sol-point:last-child { border-bottom: none; }
.csd-sol-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.csd-sol-icon.sky    { background: #e0f2fe; color: #0284c7; }
.csd-sol-icon.indigo { background: #eef2ff; color: #4f46e5; }
.csd-sol-icon.green  { background: #dcfce7; color: #16a34a; }
.csd-sol-icon.violet { background: #f5f3ff; color: #7c3aed; }
.csd-sol-icon.amber  { background: #fef3c7; color: #d97706; }
.csd-sol-icon.red    { background: #fff1f2; color: #dc2626; }
.csd-sol-point h6 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: .93rem;
  font-weight: 700; color: #022d62; margin-bottom: 4px;
}
.csd-sol-point p { color: #64748b; font-size: .84rem; line-height: 1.55; margin: 0; }

/* ── Solution visual panel ── */
.csd-sol-visual {
  border-radius: 20px; overflow: hidden; height: 380px;
  box-shadow: 0 20px 60px rgba(2,45,98,.15);
  display: flex; flex-direction: column;
}

/* ── Approach steps ── */
.csd-step {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px; background: #fff; border-radius: 16px;
  border: 1px solid #e2e8f0; transition: all .25s; height: 100%;
}
.csd-step:hover { box-shadow: 0 8px 24px rgba(2,45,98,.08); transform: translateY(-3px); }
.csd-step-num {
  width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0;
  background: linear-gradient(135deg, #022d62, #0369a1);
  color: #fff; font-size: .82rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.csd-step h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem; font-weight: 800; color: #022d62; margin-bottom: 6px;
}
.csd-step p { color: #64748b; font-size: .84rem; line-height: 1.55; margin: 0; }

/* ── Tech pills ── */
.csd-tech-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 20px; border-radius: 100px;
  background: #fff; border: 1.5px solid #e2e8f0;
  font-size: .84rem; font-weight: 600; color: #022d62;
  transition: all .2s; cursor: default;
}
.csd-tech-pill:hover { border-color: #0ea5e9; color: #0ea5e9; transform: translateY(-2px); box-shadow: 0 4px 14px rgba(14,165,233,.12); }
.csd-tech-pill i { color: #0ea5e9; font-size: .8rem; }

/* ── Before / After ── */
.csd-ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.csd-ba-card { border-radius: 18px; padding: 30px; }
.csd-ba-before { background: #fff1f2; border: 1.5px solid #fecaca; }
.csd-ba-after  { background: #f0fdf4; border: 1.5px solid #bbf7d0; }
.csd-ba-head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.csd-ba-dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.csd-ba-before .csd-ba-dot { background: #ef4444; }
.csd-ba-after  .csd-ba-dot { background: #22c55e; }
.csd-ba-label { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.05rem; font-weight: 800; }
.csd-ba-before .csd-ba-label { color: #dc2626; }
.csd-ba-after  .csd-ba-label { color: #16a34a; }
.csd-ba-item { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,.06); }
.csd-ba-item:last-child { border-bottom: none; }
.csd-ba-item i { font-size: .78rem; margin-top: 3px; flex-shrink: 0; }
.csd-ba-before .csd-ba-item i { color: #ef4444; }
.csd-ba-after  .csd-ba-item i { color: #22c55e; }
.csd-ba-item span { font-size: .9rem; color: #374151; line-height: 1.55; }

/* ── Results strip ── */
.csd-results { display: flex; flex-wrap: wrap; position: relative; z-index: 1; }
.csd-result {
  flex: 1; min-width: 150px; text-align: center;
  padding: 44px 20px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.csd-result:last-child { border-right: none; }
.csd-result-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 900;
  color: #0ea5e9; line-height: 1;
}
.csd-result-lbl { font-size: .82rem; color: rgba(255,255,255,.5); margin-top: 8px; }

/* ── Related cards ── */
.csd-related-card {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 16px;
  padding: 22px; display: flex; flex-direction: column; gap: 8px;
  text-decoration: none; transition: all .25s; height: 100%;
}
.csd-related-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(2,45,98,.1); border-color: #0ea5e9; }
.csd-related-cat { font-size: .68rem; font-weight: 700; color: #0ea5e9; text-transform: uppercase; letter-spacing: .06em; }
.csd-related-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: .97rem; font-weight: 700; color: #022d62; }
.csd-related-arrow { margin-top: auto; color: #0ea5e9; font-size: .82rem; font-weight: 700; }

/* ── CTA ── */
.csd-cta {
  background: linear-gradient(135deg, #022d62 0%, #0369a1 60%, #0ea5e9 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.csd-cta::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 100%, rgba(14,165,233,.25), transparent 65%);
}
.csd-cta-inner { position: relative; z-index: 1; }
.csd-cta h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800;
  color: #fff; margin-bottom: 14px;
}
.csd-cta p { color: rgba(255,255,255,.72); font-size: .97rem; margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }
.csd-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: #022d62; border-radius: 100px;
  padding: 16px 40px; font-size: .95rem; font-weight: 800;
  text-decoration: none; transition: all .25s;
  box-shadow: 0 8px 30px rgba(0,0,0,.2); font-family: 'Plus Jakarta Sans', sans-serif;
}
.csd-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(0,0,0,.3); color: #022d62; }

/* Responsive */
@media (max-width: 991px) {
  .csd-hero { padding: 100px 0 60px; }
  .csd-section { padding: 60px 0; }
  .csd-hero-visual { height: 260px; margin-top: 32px; }
  .csd-sol-visual { height: 300px; }
  .csd-results { flex-direction: column; }
  .csd-result { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding: 28px 20px; }
  .csd-ov-item { padding: 10px 18px; }
}
@media (max-width: 767px) {
  .csd-ba-grid { grid-template-columns: 1fr; }
  .csd-metrics { gap: 8px; }
  .csd-metric { padding: 12px 16px; min-width: 90px; }
  .csd-metric-val { font-size: 1.35rem; }
}

/* ============================================================
   27. SAAS DEVELOPMENT PAGE
   ============================================================ */

/* ── SaaS Dashboard Mockup Visual ── */
.saas-dashboard-wrap {
  position: relative; padding: 24px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px; backdrop-filter: blur(12px);
}
.saas-db {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.45);
  font-family: 'Inter', sans-serif;
}
.saas-db-topbar {
  display: flex; align-items: center; gap: 10px;
  background: #f8faff; border-bottom: 1px solid #e9eef5;
  padding: 11px 18px;
}
.saas-db-dots { display: flex; gap: 5px; }
.saas-db-dots span { width: 10px; height: 10px; border-radius: 50%; display: block; }
.saas-db-tabs { display: flex; gap: 4px; margin-left: 12px; }
.saas-db-tab {
  font-size: .68rem; font-weight: 600; color: #94a3b8;
  padding: 4px 12px; border-radius: 6px; cursor: default;
}
.saas-db-tab.active { background: #022d62; color: #fff; }
.saas-db-search {
  margin-left: auto; display: flex; align-items: center; gap: 6px;
  background: #f1f5f9; border-radius: 8px; padding: 4px 10px;
  font-size: .68rem; color: #94a3b8;
}
.saas-db-body { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.saas-db-left { padding: 18px; border-right: 1px solid #f1f5f9; }
.saas-db-right { padding: 18px; }
.saas-db-section-title { font-size: .68rem; font-weight: 800; color: #022d62; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.saas-plan-card {
  background: linear-gradient(135deg, #022d62, #0ea5e9);
  border-radius: 12px; padding: 14px 16px; margin-bottom: 10px; color: #fff;
}
.saas-plan-name { font-size: .72rem; font-weight: 800; margin-bottom: 4px; }
.saas-plan-price { font-size: 1.4rem; font-weight: 900; font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1; }
.saas-plan-price span { font-size: .72rem; font-weight: 500; opacity: .7; }
.saas-plan-badge {
  display: inline-block; background: rgba(255,255,255,.18); font-size: .6rem;
  font-weight: 700; padding: 2px 8px; border-radius: 20px; margin-top: 6px;
}
.saas-plan-features { display: flex; flex-direction: column; gap: 6px; margin-top: 10px; }
.saas-plan-feat {
  display: flex; align-items: center; gap: 8px;
  background: #f8faff; border: 1px solid #e9eef5; border-radius: 8px;
  padding: 7px 10px; font-size: .68rem; color: #475569;
}
.saas-plan-feat i { color: #0ea5e9; font-size: .7rem; flex-shrink: 0; }
.saas-usage-bars { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.saas-usage-row { display: flex; flex-direction: column; gap: 4px; }
.saas-usage-label { display: flex; justify-content: space-between; font-size: .62rem; color: #94a3b8; }
.saas-usage-track { height: 5px; background: #f1f5f9; border-radius: 10px; overflow: hidden; }
.saas-usage-fill { height: 100%; border-radius: 10px; }
.saas-payment-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 7px 0; border-bottom: 1px solid #f1f5f9; font-size: .67rem;
}
.saas-payment-row:last-child { border-bottom: none; }
.saas-payment-id { color: #022d62; font-weight: 700; }
.saas-payment-amount { color: #022d62; font-weight: 700; }
.saas-payment-date { color: #94a3b8; }
.saas-badge-success {
  background: rgba(16,185,129,.1); color: #10b981;
  font-size: .58rem; font-weight: 700; padding: 2px 7px; border-radius: 20px;
}
.saas-badge-pending {
  background: rgba(251,191,36,.12); color: #d97706;
  font-size: .58rem; font-weight: 700; padding: 2px 7px; border-radius: 20px;
}

/* Floating icon cards around the visual */
.saas-float-card {
  position: absolute; display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid #e2e8f0; border-radius: 12px;
  padding: 8px 13px; box-shadow: 0 8px 24px rgba(2,45,98,.12);
  font-size: .72rem; font-weight: 700; color: #022d62; white-space: nowrap;
}
.saas-float-card i { font-size: 1rem; flex-shrink: 0; }
.saas-float-1 { top: -16px; left: -20px; }
.saas-float-2 { bottom: 60px; left: -28px; }
.saas-float-3 { bottom: -16px; right: 20px; }

/* ── SaaS Feature section ── */
.saas-feature-section { padding: 90px 0; background: #f8faff; }
.saas-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.saas-feat-card {
  background: #fff; border: 1px solid #e9eef5; border-radius: 18px;
  padding: 28px 24px; transition: all .25s;
}
.saas-feat-card:hover { border-color: #0ea5e9; box-shadow: 0 8px 32px rgba(14,165,233,.1); transform: translateY(-3px); }
.saas-feat-icon {
  width: 50px; height: 50px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 16px;
}
.saas-feat-card h4 { font-size: .95rem; font-weight: 800; color: #022d62; margin: 0 0 8px; font-family: 'Plus Jakarta Sans', sans-serif; }
.saas-feat-card p { font-size: .82rem; color: #64748b; line-height: 1.6; margin: 0 0 14px; }
.saas-feat-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.saas-feat-tag { font-size: .65rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; background: #f0f6ff; color: #022d62; }

/* ── Process Steps ── */
.saas-process-section { padding: 90px 0; }
.saas-process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.saas-process-grid::before {
  content: ''; position: absolute; top: 28px; left: 10%; right: 10%;
  height: 2px; background: linear-gradient(90deg, #0ea5e9, #6366f1);
  z-index: 0;
}
.saas-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.saas-step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #022d62, #0ea5e9);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 900; color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-bottom: 16px; box-shadow: 0 8px 20px rgba(14,165,233,.3);
  border: 3px solid #fff;
}
.saas-step h5 { font-size: .82rem; font-weight: 800; color: #022d62; margin: 0 0 6px; font-family: 'Plus Jakarta Sans', sans-serif; }
.saas-step p { font-size: .72rem; color: #64748b; margin: 0; line-height: 1.5; }

/* ── Tech Stack ── */
.saas-tech-section { padding: 80px 0; background: #f8faff; }
.saas-tech-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 40px; }
.saas-tech-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: #fff; border: 1px solid #e9eef5; border-radius: 16px;
  padding: 20px 24px; min-width: 100px; transition: all .22s;
}
.saas-tech-card:hover { border-color: #0ea5e9; box-shadow: 0 6px 20px rgba(14,165,233,.1); transform: translateY(-2px); }
.saas-tech-card i { font-size: 1.8rem; }
.saas-tech-card span { font-size: .72rem; font-weight: 700; color: #475569; }

/* ── Why Section (dark) ── */
.saas-why-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #010f24 0%, #022d62 55%, #0c1a40 100%);
  position: relative; overflow: hidden;
}
.saas-why-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 30%, rgba(14,165,233,.12), transparent 55%),
              radial-gradient(ellipse at 10% 80%, rgba(99,102,241,.1), transparent 55%);
}
.saas-perk {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px; padding: 18px 20px; transition: all .22s;
}
.saas-perk:hover { background: rgba(255,255,255,.08); border-color: rgba(14,165,233,.3); }
.saas-perk-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.saas-perk h5 { font-size: .9rem; font-weight: 700; color: #fff; margin: 0 0 4px; }
.saas-perk p { font-size: .78rem; color: rgba(255,255,255,.52); margin: 0; line-height: 1.55; }

/* Responsive */
@media (max-width: 991px) {
  .saas-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .saas-process-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .saas-process-grid::before { display: none; }
  .saas-float-card { display: none; }
}
@media (max-width: 767px) {
  .saas-feature-grid { grid-template-columns: 1fr; }
  .saas-process-grid { grid-template-columns: repeat(2, 1fr); }
  .saas-db-body { grid-template-columns: 1fr; }
  .saas-db-left { border-right: none; border-bottom: 1px solid #f1f5f9; }
}

/* ============================================================
   28. FAQ PAGE
   ============================================================ */
.faq-hero {
  background: linear-gradient(135deg,#010f24 0%,#022d62 55%,#0c1a40 100%);
  padding: 100px 0 80px; position: relative; overflow: hidden;
}
.faq-hero::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse at 70% 50%, rgba(14,165,233,.12), transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(99,102,241,.1), transparent 55%);
}
.faq-hero-inner { position: relative; z-index: 1; text-align: center; }
.faq-hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(14,165,233,.12); border: 1px solid rgba(14,165,233,.28);
  color: #7dd3fc; font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 6px 16px; border-radius: 50px; margin-bottom: 20px;
}
.faq-hero h1 { font-size: clamp(2rem,4vw,3rem); color:#fff; font-family:'Plus Jakarta Sans',sans-serif; font-weight:800; margin-bottom:16px; }
.faq-hero p  { color: rgba(255,255,255,.6); font-size:1rem; max-width:520px; margin:0 auto 32px; line-height:1.6; }
.faq-hero-stats { display:flex; align-items:center; justify-content:center; gap:32px; flex-wrap:wrap; }
.faq-stat { text-align:center; }
.faq-stat b { display:block; font-size:1.5rem; font-weight:900; color:#0ea5e9; font-family:'Plus Jakarta Sans',sans-serif; }
.faq-stat span { font-size:.72rem; color:rgba(255,255,255,.45); }
.faq-stat-div { width:1px; height:36px; background:rgba(255,255,255,.12); }

/* Category tabs */
.faq-cats {
  display:flex; flex-wrap:wrap; justify-content:center; gap:10px;
  padding: 48px 0 0;
}
.faq-cat-btn {
  padding: 8px 22px; border-radius: 50px; font-size:.82rem; font-weight:700;
  border: 1.5px solid #e2e8f0; background:#fff; color:#64748b;
  cursor:pointer; transition: all .22s; outline:none;
}
.faq-cat-btn:hover, .faq-cat-btn.active {
  background: #022d62; border-color: #022d62; color:#fff;
}

/* FAQ accordion */
.faq-section { padding: 60px 0 80px; background:#f8faff; }
.faq-group-label {
  display:inline-flex; align-items:center; gap:8px;
  font-size:.7rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase;
  color:#0ea5e9; background:rgba(14,165,233,.08); border:1px solid rgba(14,165,233,.2);
  padding:5px 14px; border-radius:50px; margin-bottom:20px;
}
.faq-item {
  background:#fff; border:1px solid #e9eef5; border-radius:16px;
  margin-bottom:12px; overflow:hidden;
  transition: box-shadow .22s, border-color .22s;
}
.faq-item:hover { border-color:#cbd5e1; box-shadow:0 4px 20px rgba(2,45,98,.07); }
.faq-item.open { border-color:#0ea5e9; box-shadow:0 6px 24px rgba(14,165,233,.1); }
.faq-q {
  width:100%; background:none; border:none; outline:none; cursor:pointer;
  display:flex; align-items:center; gap:16px;
  padding: 22px 24px; text-align:left;
}
.faq-q-icon {
  flex-shrink:0; width:38px; height:38px; border-radius:10px;
  background:rgba(14,165,233,.08); border:1px solid rgba(14,165,233,.15);
  display:flex; align-items:center; justify-content:center;
  color:#0ea5e9; font-size:.95rem; transition: all .22s;
}
.faq-item.open .faq-q-icon { background:#0ea5e9; color:#fff; border-color:#0ea5e9; }
.faq-q-text { flex:1; font-size:.97rem; font-weight:700; color:#022d62; font-family:'Plus Jakarta Sans',sans-serif; }
.faq-q-chevron {
  flex-shrink:0; width:28px; height:28px; border-radius:50%;
  background:#f1f5f9; display:flex; align-items:center; justify-content:center;
  color:#94a3b8; font-size:.7rem; transition: transform .25s, background .22s;
}
.faq-item.open .faq-q-chevron { transform:rotate(180deg); background:#e0f2fe; color:#0ea5e9; }
.faq-a {
  display:none; padding: 0 24px 24px 78px;
  color:#64748b; font-size:.9rem; line-height:1.7;
}
.faq-a.show { display:block; }
.faq-a p { margin:0 0 12px; }
.faq-a ul { padding-left:0; list-style:none; margin:0; }
.faq-a ul li { display:flex; align-items:flex-start; gap:8px; margin-bottom:7px; }
.faq-a ul li i { color:#0ea5e9; margin-top:3px; font-size:.75rem; flex-shrink:0; }

/* FAQ CTA strip */
.faq-cta-strip {
  background:linear-gradient(135deg,#010f24 0%,#022d62 100%);
  border-radius:20px; padding:48px 40px; text-align:center;
  margin-top:48px;
}
.faq-cta-strip h3 { color:#fff; font-family:'Plus Jakarta Sans',sans-serif; font-weight:800; font-size:1.5rem; margin-bottom:10px; }
.faq-cta-strip p { color:rgba(255,255,255,.55); margin-bottom:24px; font-size:.9rem; }
.faq-cta-btn {
  display:inline-flex; align-items:center; gap:9px;
  background:linear-gradient(135deg,#0ea5e9,#6366f1); color:#fff;
  font-weight:700; font-size:.9rem; padding:13px 30px; border-radius:50px;
  text-decoration:none; transition: transform .2s, box-shadow .2s;
  box-shadow:0 8px 24px rgba(14,165,233,.3);
}
.faq-cta-btn:hover { color:#fff; transform:translateY(-2px); box-shadow:0 12px 32px rgba(14,165,233,.4); }

@media (max-width:767px) {
  .faq-hero { padding:72px 0 56px; }
  .faq-hero-stats { gap:20px; }
  .faq-a { padding-left:24px; }
  .faq-cta-strip { padding:32px 20px; }
}

/* ============================================================
   28. TERMS & CONDITIONS PAGE
   ============================================================ */
.tc-hero {
  background: linear-gradient(135deg,#010f24 0%,#022d62 55%,#0c1a40 100%);
  padding: 100px 0 80px; position:relative; overflow:hidden;
}
.tc-hero::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse at 80% 40%, rgba(14,165,233,.1), transparent 55%),
              radial-gradient(ellipse at 15% 70%, rgba(99,102,241,.08), transparent 55%);
}
.tc-hero-inner { position:relative; z-index:1; text-align:center; }
.tc-hero-badge {
  display:inline-flex; align-items:center; gap:7px;
  background:rgba(14,165,233,.12); border:1px solid rgba(14,165,233,.28);
  color:#7dd3fc; font-size:.72rem; font-weight:700; letter-spacing:.08em;
  text-transform:uppercase; padding:6px 16px; border-radius:50px; margin-bottom:20px;
}
.tc-hero h1 { font-size:clamp(1.8rem,3.5vw,2.8rem); color:#fff; font-family:'Plus Jakarta Sans',sans-serif; font-weight:800; margin-bottom:14px; }
.tc-hero p { color:rgba(255,255,255,.55); font-size:.95rem; max-width:540px; margin:0 auto; line-height:1.6; }
.tc-updated {
  display:inline-flex; align-items:center; gap:7px;
  background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.5); font-size:.72rem; padding:5px 14px; border-radius:50px;
  margin-top:20px;
}

/* Layout */
.tc-body { padding:80px 0; background:#f8faff; }
.tc-layout { display:grid; grid-template-columns:260px 1fr; gap:40px; align-items:start; }

/* Sidebar */
.tc-sidebar {
  background:#fff; border:1px solid #e2e8f0; border-radius:18px;
  padding:24px 20px; position:sticky; top:100px;
}
.tc-sidebar-title { font-size:.7rem; font-weight:800; color:#94a3b8; text-transform:uppercase; letter-spacing:.1em; margin-bottom:14px; padding-bottom:12px; border-bottom:1px solid #f1f5f9; }
.tc-nav-link {
  display:flex; align-items:center; gap:9px;
  padding:10px 12px; border-radius:10px; text-decoration:none;
  font-size:.82rem; color:#64748b; font-weight:600; transition:all .2s; margin-bottom:2px;
}
.tc-nav-link:hover { background:#f0f6ff; color:#022d62; }
.tc-nav-link.active { background:#f0f6ff; color:#022d62; }
.tc-nav-link .tc-nav-num {
  width:22px; height:22px; border-radius:6px; background:#f1f5f9;
  display:flex; align-items:center; justify-content:center;
  font-size:.65rem; font-weight:800; color:#94a3b8; flex-shrink:0; transition:all .2s;
}
.tc-nav-link:hover .tc-nav-num, .tc-nav-link.active .tc-nav-num { background:#0ea5e9; color:#fff; }

/* Content */
.tc-content { display:flex; flex-direction:column; gap:24px; }
.tc-section {
  background:#fff; border:1px solid #e9eef5; border-radius:18px;
  padding:32px 36px; scroll-margin-top:100px;
}
.tc-section-head { display:flex; align-items:center; gap:14px; margin-bottom:20px; padding-bottom:18px; border-bottom:1px solid #f1f5f9; }
.tc-section-num {
  width:42px; height:42px; border-radius:12px; flex-shrink:0;
  background:linear-gradient(135deg,#022d62,#0ea5e9);
  display:flex; align-items:center; justify-content:center;
  font-size:.85rem; font-weight:900; color:#fff; font-family:'Plus Jakarta Sans',sans-serif;
}
.tc-section h2 { font-size:1.15rem; font-weight:800; color:#022d62; font-family:'Plus Jakarta Sans',sans-serif; margin:0; }
.tc-section p { color:#64748b; font-size:.9rem; line-height:1.75; margin:0 0 12px; }
.tc-section p:last-child { margin:0; }
.tc-section ul { padding-left:0; list-style:none; margin:0 0 12px; }
.tc-section ul li { display:flex; align-items:flex-start; gap:9px; margin-bottom:9px; color:#64748b; font-size:.9rem; line-height:1.6; }
.tc-section ul li i { color:#0ea5e9; margin-top:3px; font-size:.75rem; flex-shrink:0; }
.tc-section a { color:#0ea5e9; font-weight:600; text-decoration:none; }
.tc-section a:hover { text-decoration:underline; }
.tc-contact-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:14px; margin-top:8px; }
.tc-contact-card {
  display:flex; align-items:center; gap:12px;
  background:#f8faff; border:1px solid #e2e8f0; border-radius:12px; padding:14px 16px;
}
.tc-contact-card i { font-size:1.1rem; color:#0ea5e9; flex-shrink:0; }
.tc-contact-card span { font-size:.82rem; color:#64748b; }
.tc-contact-card a { color:#022d62; font-weight:700; font-size:.82rem; text-decoration:none; display:block; }

/* TC CTA */
.tc-cta {
  background:linear-gradient(135deg,#010f24 0%,#022d62 100%);
  border-radius:20px; padding:48px 40px; text-align:center; margin-top:0;
}
.tc-cta h3 { color:#fff; font-family:'Plus Jakarta Sans',sans-serif; font-weight:800; font-size:1.4rem; margin-bottom:10px; }
.tc-cta p { color:rgba(255,255,255,.55); margin-bottom:24px; font-size:.88rem; }
.tc-cta-btn {
  display:inline-flex; align-items:center; gap:9px;
  background:linear-gradient(135deg,#0ea5e9,#6366f1); color:#fff;
  font-weight:700; font-size:.88rem; padding:12px 28px; border-radius:50px;
  text-decoration:none; transition:transform .2s, box-shadow .2s;
  box-shadow:0 8px 24px rgba(14,165,233,.3);
}
.tc-cta-btn:hover { color:#fff; transform:translateY(-2px); box-shadow:0 12px 32px rgba(14,165,233,.4); }

@media (max-width:991px) {
  .tc-layout { grid-template-columns:1fr; }
  .tc-sidebar { position:static; }
  .tc-section { padding:24px 20px; }
}
@media (max-width:767px) {
  .tc-hero { padding:72px 0 56px; }
  .tc-body { padding:48px 0; }
  .tc-cta { padding:32px 20px; }
}
