@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  /* Color Tokens */
  --primary-navy: #002147;
  --secondary-teal: #00d2c4;
  --primary-blue: #0056b3;
  --accent-cyan: #00b4d8;
  --dark-text: #111827;
  --light-text: #f9fafb;
  --muted-text: #6b7280;
  --bg-light: #f8fafc;
  --bg-teal-light: #e6fcfb;
  --border-light: #e2e8f0;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;

  /* Gradients */
  --gradient-logo: linear-gradient(135deg, var(--secondary-teal) 0%, var(--primary-blue) 100%);
  --gradient-dark: linear-gradient(135deg, #0a192f 0%, #001226 100%);
  --gradient-soft: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  --gradient-blue-teal: linear-gradient(135deg, rgba(0, 210, 196, 0.1) 0%, rgba(0, 86, 179, 0.1) 100%);

  /* Typography */
  --font-heading: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-body: 'Poppins', system-ui, -apple-system, sans-serif;

  /* Elevation */
  --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
  --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.05), 0 4px 6px -4px rgb(0 0 0 / 0.05);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.08), 0 8px 10px -6px rgb(0 0 0 / 0.08);
  --shadow-premium: 0 25px 50px -12px rgba(0, 33, 71, 0.15);

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
}

html {
  scroll-behavior: smooth;
}

/* Global Reset & Base Styling */
body {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--dark-text);
  background-color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 76px; /* Top spacing for all pages below the fixed header */
}

@media (max-width: 991.98px) {
  body {
    padding-top: 70px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--primary-navy);
  font-weight: 700;
}

/* Content text — paragraph weight across pages */
p,
li,
label,
.lead,
.small,
.section-desc,
.section-subtitle,
.text-muted,
.about-page-lead,
.about-page-copy p,
.about-purpose-card p,
.about-why-list li,
.about-careers-lead,
.about-careers-text,
.workflow-desc,
.workflow-card p,
.svc-block p,
.footer-about,
.site-footer p,
.site-footer .footer-links a,
.form-control,
.form-select,
.form-label,
.breadcrumb,
.nav-link {
  font-weight: 500;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Typography Helpers */
.display-title {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: var(--gradient-logo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-navy {
  background-color: var(--primary-navy);
}

.bg-navy h1,
.bg-navy h2,
.bg-navy h3,
.bg-navy h4,
.bg-navy h5,
.bg-navy h6 {
  color: #ffffff !important;
}

.text-primary-blue {
  color: var(--primary-blue) !important;
}

/* Why BALSAN feature icons (must beat section text-white inheritance) */
.why-feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  margin: 0 0.85rem 0 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--primary-blue) !important;
  font-size: 1.25rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.why-feature-icon i {
  color: inherit;
  line-height: 1;
}

.bg-dark-gradient {
  background: var(--gradient-dark);
}

.bg-light-gradient {
  background: var(--gradient-soft);
}

.testimonials-section {
  background: linear-gradient(180deg, #dce6f2 0%, #e4ebf4 45%, #d9e4f0 100%);
}

/* Header & Navigation UX */
.navbar-brand img {
  max-height: 48px;
}

.navbar {
  transition: var(--transition-smooth);
  padding: 0.65rem 0;
  border-bottom: 2px solid var(--primary-blue);
  background-color: #002147;
  /* Solid, thick Navy brand color */
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
}

.navbar.scrolled {
  padding: 0.45rem 0;
  background-color: #001732;
  /* Slightly darker shade on scroll */
  border-bottom-color: var(--primary-teal);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: #00d2c4 !important;
  /* Premium Teal hover glow */
}

.mobile-nav-toggle {
  color: #ffffff !important;
  background: transparent;
  border: none;
  font-size: 1.75rem;
  transition: var(--transition-fast);
}

.mobile-nav-toggle:hover,
.mobile-nav-toggle:focus {
  color: #00d2c4 !important;
}

/* Mega Menu Desktop */
.has-mega-menu {
  position: static;
  /* Let mega-menu position relative to the main container for center alignment */
}

.mega-menu {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translateX(-50%) translateY(15px) scale(0.97);
  width: min(1060px, calc(100vw - 2rem));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  box-shadow: 0 30px 60px -15px rgba(0, 33, 71, 0.15), 0 0 1px 1px rgba(0, 33, 71, 0.05);
  padding: 2.25rem;
  opacity: 0;
  visibility: hidden;
  filter: blur(5px);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.35s;
  z-index: 1000;
  margin-top: 0.5rem;
}

.has-mega-menu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
  filter: blur(0px);
}

/* Staggered Column Animation on Hover */
.mega-menu .col-lg-3 {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.has-mega-menu:hover .mega-menu .col-lg-3 {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for column components */
.has-mega-menu:hover .mega-menu .col-lg-3:nth-child(1) {
  transition-delay: 0.04s;
}

.has-mega-menu:hover .mega-menu .col-lg-3:nth-child(2) {
  transition-delay: 0.08s;
}

.has-mega-menu:hover .mega-menu .col-lg-3:nth-child(3) {
  transition-delay: 0.12s;
}

.has-mega-menu:hover .mega-menu .col-lg-3:nth-child(4) {
  transition-delay: 0.16s;
}

/* Category Header inside Mega Menu */
.category-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  padding: 0.55rem 0.65rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

a.category-header-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  margin: 0 0 0.75rem;
  padding: 0.55rem 0.65rem;
  border: none;
  border-radius: 0.65rem;
  border-bottom: none;
  text-decoration: none;
  color: inherit;
  background: transparent;
  transition: background-color 0.18s ease, color 0.18s ease;
}

a.category-header-link:hover,
a.category-header-link:focus,
a.category-header-link:focus-visible,
a.category-header-link:active {
  background: transparent !important;
  background-color: transparent !important;
  color: inherit !important;
  text-decoration: none;
  outline: none;
}

a.category-header-link:hover .category-info h4,
a.category-header-link:focus-visible .category-info h4 {
  color: var(--primary-navy);
}

/* All accent/hover columns: white by default, blue while hovered */
.mega-menu .col.mega-col-accent,
.mega-menu .col.mega-col-hover-blue {
  border-radius: 0.85rem;
  padding: 0.85rem 0.7rem 0.75rem;
  background: #ffffff;
  transition: background-color 0.18s ease;
}

.mega-menu .col.mega-col-accent:hover,
.mega-menu .col.mega-col-accent:focus-within,
.mega-menu .col.mega-col-hover-blue:hover,
.mega-menu .col.mega-col-hover-blue:focus-within {
  background: #cfe2ff;
}

.mega-menu .col.mega-col-accent .category-header,
.mega-menu .col.mega-col-accent a.category-header-link,
.mega-menu .col.mega-col-accent a.category-header-link:hover,
.mega-menu .col.mega-col-accent a.category-header-link:focus,
.mega-menu .col.mega-col-accent a.category-header-link:focus-visible,
.mega-menu .col.mega-col-accent a.category-header-link:active,
.mega-menu .col.mega-col-accent a.category-header-link.category-hover-blue:hover,
.mega-menu .col.mega-col-accent a.category-header-link.category-hover-blue:focus,
.mega-menu .col.mega-col-accent a.category-header-link.category-hover-blue:focus-visible,
.mega-menu .col.mega-col-accent a.category-header-link.category-hover-blue:active,
.mega-menu .col.mega-col-accent .mega-menu-item,
.mega-menu .col.mega-col-accent .mega-menu-item:hover,
.mega-menu .col.mega-col-accent .mega-menu-item:focus-visible,
.mega-menu .col.mega-col-hover-blue .category-header,
.mega-menu .col.mega-col-hover-blue a.category-header-link,
.mega-menu .col.mega-col-hover-blue a.category-header-link:hover,
.mega-menu .col.mega-col-hover-blue a.category-header-link:focus,
.mega-menu .col.mega-col-hover-blue a.category-header-link:focus-visible,
.mega-menu .col.mega-col-hover-blue a.category-header-link:active,
.mega-menu .col.mega-col-hover-blue .mega-menu-item,
.mega-menu .col.mega-col-hover-blue .mega-menu-item:hover,
.mega-menu .col.mega-col-hover-blue .mega-menu-item:focus-visible {
  background: transparent !important;
  background-color: transparent !important;
}

.mega-menu .col.mega-col-accent:hover a.category-header-link .category-icon-box,
.mega-menu .col.mega-col-accent:focus-within a.category-header-link .category-icon-box,
.mega-menu .col.mega-col-hover-blue:hover a.category-header-link .category-icon-box,
.mega-menu .col.mega-col-hover-blue:focus-within a.category-header-link .category-icon-box {
  background: #0056b3;
  color: #fff;
}

.mega-menu .col.mega-col-accent:hover a.category-header-link .category-info h4,
.mega-menu .col.mega-col-accent:focus-within a.category-header-link .category-info h4,
.mega-menu .col.mega-col-hover-blue:hover a.category-header-link .category-info h4,
.mega-menu .col.mega-col-hover-blue:focus-within a.category-header-link .category-info h4 {
  color: #0056b3;
}

.mega-menu .col.mega-col-accent .mega-menu-item:hover .mega-menu-text h5,
.mega-menu .col.mega-col-hover-blue .mega-menu-item:hover .mega-menu-text h5 {
  color: #0056b3;
}

.mega-menu-item {
  background-color: transparent;
}

.mega-menu-item:hover,
.mega-menu-item:focus-visible,
.mega-menu a.mega-menu-item:hover,
.mega-menu a.mega-menu-item:focus-visible {
  background: transparent !important;
  background-color: transparent !important;
}

.category-icon-box {
  width: 32px;
  height: 32px;
  background: rgba(0, 86, 179, 0.08);
  color: var(--primary-blue);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.category-info h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.category-info p {
  font-size: 0.72rem;
  color: var(--muted-text);
  margin-bottom: 0;
  display: none;
}

@media (min-width: 1200px) {
  .category-info p {
    display: block;
  }
}

/* Bullet-style Dropdown Items */
.mega-menu-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.4rem 0.5rem;
  border-radius: 8px;
  text-decoration: none;
  background-color: transparent;
  transition: all 0.2s ease-in-out;
  margin-bottom: 0.25rem;
}

.mega-menu-item:hover {
  background-color: transparent;
}

.mega-menu-bullet {
  width: 14px;
  height: 14px;
  background: rgba(0, 86, 179, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
  transition: all 0.2s ease-in-out;
}

.bullet-dot {
  width: 6px;
  height: 6px;
  background: var(--primary-blue);
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
}

.mega-menu-item:hover .mega-menu-bullet {
  background: var(--primary-blue);
}

.mega-menu-item:hover .bullet-dot {
  background: #ffffff;
}

.mega-menu-text h5 {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 0.08rem;
  transition: all 0.2s ease-in-out;
  line-height: 1.25;
}

.mega-menu-text p {
  font-size: 0.72rem;
  color: var(--muted-text);
  margin-bottom: 0;
  line-height: 1.3;
  transition: all 0.2s ease-in-out;
}

.mega-menu-item:hover .mega-menu-text h5 {
  color: var(--primary-blue);
}

/* Quick Registration Form CTA Card inside Mega Menu */
.mega-menu-cta-card {
  background: rgba(0, 86, 179, 0.03);
  border: 1px dashed rgba(0, 86, 179, 0.25);
  border-radius: 12px;
  padding: 1.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.02);
}

.mega-menu-cta-card p {
  line-height: 1.4;
  color: var(--muted-text);
  font-size: 0.75rem;
}

.mega-menu-cta-card .form-control-sm {
  font-size: 0.75rem;
  border-radius: 6px;
  padding: 0.4rem 0.50rem;
  border: 1px solid rgba(203, 213, 225, 0.8);
}

.mega-menu-cta-card .form-control-sm:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 2px rgba(0, 86, 179, 0.15);
}

.badge-popular {
  font-size: 0.7rem;
  background-color: var(--success);
  color: #ffffff;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  margin-left: 0.5rem;
  font-weight: 600;
}

.mega-menu-cta {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px dashed var(--border-light);
  text-align: center;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #ffffff;
  cursor: pointer;
  display: none;
  line-height: 1;
  padding: 0.25rem;
  z-index: 10;
}

.mobile-nav-toggle:focus-visible {
  outline: 2px solid var(--secondary-teal);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (max-width: 991.98px) {
  .mobile-nav-toggle {
    display: block;
    color: #ffffff;
  }

  .navbar-collapse-desktop {
    display: none !important;
  }
}

.offcanvas-body {
  padding: 2rem 1.5rem;
}

.mobile-menu-category {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05rem;
  color: var(--muted-text);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.mobile-menu-link {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-navy);
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-fast);
}

.mobile-menu-link:hover {
  color: var(--primary-blue);
  padding-left: 5px;
}

.mobile-service-links .mobile-menu-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted-text);
}

/* Premium Buttons */
.btn-primary-custom {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: #ffffff;
  background: linear-gradient(135deg, #002147 0%, #0056b3 55%, #0077cc 100%);
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(0, 33, 71, 0.28);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #003a75 0%, #0070d2 100%);
  opacity: 0;
  z-index: -1;
  transition: var(--transition-smooth);
}

.btn-primary-custom:hover::before {
  opacity: 1;
}

.btn-primary-custom:hover {
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 86, 179, 0.35);
  transform: translateY(-2px);
}

.btn-secondary-custom {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-navy);
  background: transparent;
  border: 2px solid var(--primary-navy);
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.btn-secondary-custom:hover {
  background: var(--primary-navy);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-sm-custom {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

/* Hero Section - Banner Image Background with Left Text Space */
.hero-section {
  padding: 6.5rem 0 6.5rem;
  position: relative;
  overflow: hidden;
  background-color: #f8fafc;
  background-image: url('../images/home-image.png');
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(248, 250, 252, 0.96) 0%,
    rgba(248, 250, 252, 0.78) 42%,
    rgba(248, 250, 252, 0.2) 70%,
    transparent 100%
  );
}

/* ===== Fintattva-style full-bleed hero banner ===== */
.hero-section.hero-banner {
  padding: 0;
  margin-top: -76px;
  min-height: 100vh;
  display: block;
  background: #001226;
  background-image: none;
  align-items: stretch;
}

.hero-section.hero-banner::before {
  display: none;
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: inherit;
  background: #001226;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.9s ease-in-out;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.04);
  transition: transform 6s ease-out;
  will-change: transform, opacity;
}

.hero-slide.is-active img {
  transform: scale(1);
}

.hero-overlay {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
  padding: 7.5rem 0 6.5rem;
  background: linear-gradient(
    105deg,
    rgba(0, 18, 38, 0.9) 0%,
    rgba(0, 33, 71, 0.74) 42%,
    rgba(0, 33, 71, 0.28) 72%,
    rgba(0, 33, 71, 0.12) 100%
  );
}

.hero-banner-content {
  --hero-ease: cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  isolation: isolate;
  max-width: 640px;
}

.hero-content-fx {
  position: absolute;
  inset: -18% -12% -12% -18%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-fx-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.85;
}

.hero-fx-orb-1 {
  width: 180px;
  height: 180px;
  top: -20px;
  left: -40px;
  background: radial-gradient(circle, rgba(0, 210, 196, 0.32), transparent 70%);
  animation: heroFxOrb 8s ease-in-out infinite;
}

.hero-fx-orb-2 {
  width: 140px;
  height: 140px;
  right: -20px;
  bottom: 10%;
  background: radial-gradient(circle, rgba(0, 86, 179, 0.3), transparent 70%);
  animation: heroFxOrb 9.5s ease-in-out infinite reverse;
  animation-delay: -2s;
}

.hero-fx-ring {
  position: absolute;
  width: 170px;
  height: 170px;
  top: 18%;
  right: 6%;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 255, 255, 0.22);
  border-top-color: rgba(0, 210, 196, 0.55);
  animation: heroFxRing 18s linear infinite;
}

.hero-fx-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary-teal);
  box-shadow: 0 0 12px rgba(0, 210, 196, 0.6);
  animation: heroFxDot 3.4s ease-in-out infinite;
}

.hero-fx-dot-1 { top: 12%; left: 48%; }
.hero-fx-dot-2 { top: 42%; right: 12%; background: #7dd3fc; animation-delay: 0.6s; }
.hero-fx-dot-3 { bottom: 18%; left: 18%; background: #60a5fa; animation-delay: 1.1s; }

.hero-motion-item {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
}

.hero-banner-content.is-hero-motion .hero-motion-item {
  animation: heroCopyIn 0.75s var(--hero-ease) forwards;
  animation-delay: calc(0.08s + (var(--hi, 0) * 0.12s));
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary-teal);
  background: rgba(0, 210, 196, 0.16);
  border: 1px solid rgba(0, 210, 196, 0.28);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.hero-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4.8vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 1.15rem;
  line-height: 1.15;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.hero-banner-content.is-hero-motion .hero-banner-title::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  margin-top: 0.85rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--secondary-teal), var(--primary-blue), transparent);
  animation: heroTitleLine 0.85s var(--hero-ease) 0.45s forwards;
}

.hero-banner-subtitle {
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.hero-banner-outline {
  border: 2px solid rgba(255, 255, 255, 0.85) !important;
  color: #fff !important;
  background: transparent !important;
}

.hero-banner-outline:hover,
.hero-banner-outline:focus {
  background: #fff !important;
  color: var(--primary-navy) !important;
  border-color: #fff !important;
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroTitleLine {
  from { width: 0; }
  to { width: min(220px, 55%); }
}

@keyframes heroFxOrb {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-14px) scale(1.06); }
}

@keyframes heroFxRing {
  to { transform: rotate(360deg); }
}

@keyframes heroFxDot {
  0%, 100% { transform: scale(0.85); opacity: 0.45; }
  50% { transform: scale(1.3); opacity: 1; }
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.hero-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-nav-btn:hover,
.hero-nav-btn:focus {
  background: rgba(255, 255, 255, 0.28);
  transform: scale(1.05);
}

.hero-dots {
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-dot.active {
  background: var(--secondary-teal);
  transform: scale(1.25);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide img,
  .hero-fx-orb,
  .hero-fx-ring,
  .hero-fx-dot,
  .hero-motion-item,
  .hero-banner-content.is-hero-motion .hero-banner-title::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-motion-item {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .hero-banner-content.is-hero-motion .hero-banner-title::after {
    width: min(220px, 55%);
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    padding: 3.5rem 0 3rem;
    min-height: auto;
    background-image: url('../images/home-image.png');
    background-position: center top;
    background-size: cover;
  }

  .hero-section::before {
    background: linear-gradient(
      180deg,
      rgba(248, 250, 252, 0.94) 0%,
      rgba(248, 250, 252, 0.9) 45%,
      rgba(248, 250, 252, 0.86) 100%
    );
  }

  .hero-section.hero-banner {
    margin-top: -70px;
    min-height: 78vh;
    padding: 0;
    background-image: none;
  }

  .hero-section.hero-banner::before {
    display: none;
  }

  .hero-overlay {
    padding: 5.5rem 0 5.5rem;
    background: linear-gradient(
      180deg,
      rgba(0, 18, 38, 0.86) 0%,
      rgba(0, 33, 71, 0.76) 55%,
      rgba(0, 33, 71, 0.62) 100%
    );
  }

  .hero-controls {
    bottom: 1rem;
  }
}

@media (max-width: 575.98px) {
  .hero-section.hero-banner {
    margin-top: -64px;
    min-height: 70vh;
  }

  .hero-banner-cta .btn {
    width: 100%;
  }
}

.hero-background-effects {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.badge-deal-discount-dark {
  background: rgba(0, 33, 71, 0.05);
  border: 1px solid rgba(0, 33, 71, 0.15);
  color: var(--primary-navy);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.stat-icon-outline-dark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 33, 71, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  background: rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
}

.hero-stats-row {
  margin-top: 2rem;
}

.stat-icon-outline {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Floating Form Card */
.hero-registration-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.35);
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 5;
  max-width: 380px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .hero-registration-card {
    margin-left: auto;
    margin-right: 0;
  }
}

.hero-card-icon-box {
  width: 40px;
  height: 40px;
  background: rgba(0, 86, 179, 0.08);
  color: var(--primary-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.hero-registration-card .form-control,
.hero-registration-card .form-select {
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
  border: 1px solid rgba(203, 213, 225, 0.8);
}

.hero-registration-card .form-control:focus,
.hero-registration-card .form-select:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.15);
}

.hero-registration-card textarea.form-control {
  resize: none;
  font-size: 0.85rem;
}

/* About Us Section - Original Background Banner */
/* ===== About Us — motion graphic intro ===== */
.about-intro-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background:
    radial-gradient(ellipse 70% 55% at 90% 10%, rgba(0, 210, 196, 0.14) 0%, transparent 58%),
    radial-gradient(ellipse 55% 50% at 8% 90%, rgba(0, 86, 179, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 45% 40% at 50% 45%, rgba(0, 33, 71, 0.06) 0%, transparent 70%),
    linear-gradient(160deg, #e8eef5 0%, #d9e3ef 42%, #cfdcea 100%);
  border-top: 1px solid rgba(0, 33, 71, 0.1);
  border-bottom: 1px solid rgba(0, 33, 71, 0.1);
}

.about-intro-section > .container {
  position: relative;
  z-index: 1;
}

.about-motion-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.about-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.85;
}

.about-orb-1 {
  width: 220px;
  height: 220px;
  top: 8%;
  right: 18%;
  background: radial-gradient(circle, rgba(0, 210, 196, 0.28) 0%, transparent 70%);
  animation: aboutOrbFloat 8s ease-in-out infinite;
}

.about-orb-2 {
  width: 160px;
  height: 160px;
  bottom: 12%;
  left: 8%;
  background: radial-gradient(circle, rgba(0, 52, 110, 0.22) 0%, transparent 70%);
  animation: aboutOrbFloat 9.5s ease-in-out infinite reverse;
}

.about-orb-3 {
  width: 90px;
  height: 90px;
  top: 42%;
  left: 42%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.18) 0%, transparent 70%);
  animation: aboutOrbFloat 7s ease-in-out infinite;
  animation-delay: -2s;
}

.about-ring {
  position: absolute;
  width: 280px;
  height: 280px;
  top: 50%;
  right: 22%;
  margin: -140px 0 0 -140px;
  border: 1.5px solid rgba(0, 210, 196, 0.16);
  border-top-color: rgba(0, 86, 179, 0.28);
  border-radius: 50%;
  animation: aboutRingSpin 22s linear infinite;
}

.about-copy-block.reveal,
.about-visual-block.reveal,
.about-stats-block.reveal {
  opacity: 1;
  transform: none;
}

.about-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.2vw, 2.45rem);
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
}

.about-title-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28em 0.35em;
}

.about-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
  filter: blur(5px);
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--i, 0) * 0.08s + 0.1s);
}

.about-copy-block.revealed .about-word {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.about-word-gradient {
  background: linear-gradient(115deg, #003d82 0%, #00d2c4 35%, #0056b3 70%, #00b4d8 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: servicesGradientShift 5s ease-in-out infinite;
}

.about-lead {
  font-size: 1.08rem;
  font-weight: 500;
  color: #111827 !important;
  line-height: 1.7;
  margin-bottom: 0.85rem;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease 0.35s, transform 0.6s ease 0.35s;
}

.about-text,
.about-text-strong {
  color: #111827 !important;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 1.4rem;
  max-width: 36rem;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease 0.45s, transform 0.6s ease 0.45s;
}

/* Paragraph body copy across pages */
.about-page-copy p,
.about-purpose-card p,
.section-desc,
.workflow-desc,
.workflow-card p,
.hero-lead,
.about-careers-lead,
.about-careers-text {
  font-weight: 500 !important;
  color: var(--muted-text) !important;
}

.svc-copy p,
.svc-block p {
  font-weight: 500 !important;
  color: #3d4a5c !important;
}

.about-copy-block.revealed .about-lead,
.about-copy-block.revealed .about-text {
  opacity: 1;
  transform: translateY(0);
}

.about-checklist {
  margin-bottom: 1.75rem;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #111827 !important;
  font-weight: 500;
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 0.8rem;
  opacity: 0;
  transform: translateX(-14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: calc(var(--i, 0) * 0.08s + 0.5s);
}

.about-copy-block.revealed .about-checklist li {
  opacity: 1;
  transform: translateX(0);
}

.about-checklist .check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00d2c4 0%, #0056b3 100%);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: 0 6px 14px -6px rgba(0, 86, 179, 0.55);
}

.about-cta-btn {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s ease 0.95s, transform 0.55s ease 0.95s, box-shadow 0.3s ease;
}

.about-copy-block.revealed .about-cta-btn {
  opacity: 1;
  transform: translateY(0);
}

.about-visual {
  position: relative;
  max-width: 520px;
  margin: 0 0 0 auto;
  padding: 0.5rem 0.5rem 1.5rem;
  transform: translateX(18px) translateY(28px) scale(0.97);
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s,
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

.about-visual-block.revealed .about-visual {
  opacity: 1;
  transform: translateX(18px) translateY(0) scale(1);
}

.about-photo {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  min-height: 480px;
  background: #eef3f8;
  box-shadow: 0 24px 48px -20px rgba(0, 33, 71, 0.35);
  position: relative;
}

.about-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 33, 71, 0.28) 100%);
  pointer-events: none;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-visual:hover .about-photo img {
  transform: scale(1.04);
}

.about-play {
  position: absolute;
  top: 1.25rem;
  right: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.4), 0 12px 28px rgba(0, 33, 71, 0.18);
  z-index: 3;
  text-decoration: none;
  transition: transform 0.35s ease;
}

.about-play:hover {
  transform: scale(1.06);
}

.about-play-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(0, 210, 196, 0.45);
  animation: aboutPlayPulse 2.2s ease-out infinite;
}

.about-play-inner {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00d2c4 0%, #0056b3 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  padding-left: 2px;
  position: relative;
  z-index: 1;
}

.about-experience {
  position: absolute;
  left: 0;
  bottom: 0.35rem;
  width: 118px;
  min-height: 118px;
  background: linear-gradient(145deg, #00d2c4 0%, #0056b3 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 1rem 0.85rem;
  border-radius: 12px;
  z-index: 3;
  box-shadow: 0 16px 32px -14px rgba(0, 86, 179, 0.55);
  animation: aboutBadgeFloat 4.5s ease-in-out infinite;
}

.about-exp-number {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.35rem;
  font-family: var(--font-heading);
}

.about-exp-label {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.25;
  max-width: 5.5rem;
}

.about-experience::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  margin-top: 0.65rem;
}

.about-float-badge {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 33, 71, 0.08);
  border-radius: 14px;
  padding: 0.55rem 0.75rem;
  box-shadow: 0 12px 28px -12px rgba(0, 33, 71, 0.28);
  animation: aboutBadgeFloat 5s ease-in-out infinite;
}

.about-float-badge i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #00d2c4, #0056b3);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.about-float-badge strong {
  display: block;
  font-size: 0.78rem;
  color: var(--primary-navy);
  font-family: var(--font-heading);
  line-height: 1.2;
}

.about-float-badge span {
  display: block;
  font-size: 0.68rem;
  color: var(--muted-text);
}

.about-float-1 {
  top: 18%;
  left: -8%;
  animation-delay: -1s;
}

.about-float-2 {
  bottom: 28%;
  right: -6%;
  animation-delay: -2.2s;
}

.about-float-2 i {
  background: linear-gradient(135deg, #ff9a4a, #f0592a);
}

.about-stats {
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 0.7s ease 0.25s, transform 0.7s ease 0.25s;
}

.about-stats-block.revealed .about-stats {
  opacity: 1;
  transform: translateX(0);
}

.about-stats li {
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(0, 33, 71, 0.12);
}

.about-stats li:first-child {
  padding-top: 0;
}

.about-stats li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.about-stat-value {
  font-size: clamp(2rem, 3vw, 2.55rem);
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--secondary-teal);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.about-stat-label {
  color: var(--primary-navy);
  font-weight: 600;
  font-size: 0.98rem;
}

@keyframes aboutOrbFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(12px, -16px, 0); }
}

@keyframes aboutRingSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes aboutPlayPulse {
  0% { transform: scale(0.92); opacity: 0.85; }
  70% { transform: scale(1.2); opacity: 0; }
  100% { transform: scale(1.2); opacity: 0; }
}

@keyframes aboutBadgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
  .about-orb,
  .about-ring,
  .about-play-pulse,
  .about-experience,
  .about-float-badge,
  .about-word-gradient {
    animation: none !important;
  }

  .about-word,
  .about-lead,
  .about-text,
  .about-checklist li,
  .about-cta-btn,
  .about-visual,
  .about-stats {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

@media (max-width: 991.98px) {
  .about-intro-section {
    padding: 3.5rem 0;
  }

  .about-visual {
    max-width: 440px;
    margin: 0 auto;
    transform: translateX(0) translateY(28px) scale(0.97);
  }

  .about-visual-block.revealed .about-visual {
    transform: translateX(0) translateY(0) scale(1);
  }

  .about-photo {
    min-height: 400px;
  }

  .about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: none;
    text-align: center;
    margin-top: 0.5rem;
  }

  .about-stats li {
    border-bottom: none;
    padding: 0.75rem 0.5rem;
    border-right: 1px solid #E2E8F0;
  }

  .about-stats li:last-child {
    border-right: none;
  }

  .about-float-1 {
    left: 4%;
  }

  .about-float-2 {
    right: 4%;
  }

  .about-ring {
    right: 50%;
  }
}

@media (max-width: 575.98px) {
  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-stats li {
    border-right: none;
    border-bottom: 1px solid #E2E8F0;
    text-align: left;
  }

  .about-stats li:last-child {
    border-bottom: none;
  }

  .about-float-badge {
    display: none;
  }
}

/* Motion Graphics Keyframes & Classes */
@keyframes float-slow {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes float-badge {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.85;
    filter: drop-shadow(0 0 4px rgba(0, 210, 196, 0.4));
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
    filter: drop-shadow(0 0 14px rgba(0, 210, 196, 0.85));
  }
}

@keyframes hoverLift {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
}

.floating-motion-badge {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50px;
  box-shadow: 0 15px 35px -10px rgba(0, 33, 71, 0.18);
  border: 1px solid rgba(0, 33, 71, 0.08);
  transition: transform 0.3s ease;
  animation: float-badge 4s ease-in-out infinite;
}

.floating-motion-badge:hover {
  transform: translateY(-4px) scale(1.03);
}

.motion-graphic {
  filter: drop-shadow(0 15px 30px rgba(0, 33, 71, 0.08));
  transition: transform 0.4s ease;
}

.motion-graphic:hover {
  transform: scale(1.02);
}

/* Service Card Design - Themed divisions cards matching image */
.badge-services-tag {
  background: rgba(13, 110, 253, 0.08);
  color: #0d6efd;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(13, 110, 253, 0.15);
}

.services-heading-block.reveal {
  opacity: 1;
  transform: none;
}

.services-heading-block.reveal:not(.revealed) .badge-services-tag {
  opacity: 0;
  transform: translateY(12px);
}

.services-heading-block.reveal .badge-services-tag {
  display: inline-flex;
  transition:
    opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-heading-block.revealed .badge-services-tag {
  opacity: 1;
  transform: translateY(0);
}

/* Services heading — motion graphic title */
.services-heading-block {
  position: relative;
}

.services-motion-title {
  position: relative;
  display: inline-block;
  max-width: 920px;
  padding: 1.25rem 1rem 0.5rem;
  margin: 0 auto;
}

.services-motion-orbs {
  position: absolute;
  inset: -12% -8%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.motion-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.motion-orb-1 {
  width: 160px;
  height: 160px;
  top: -14%;
  left: 6%;
  background: radial-gradient(circle, rgba(0, 210, 196, 0.35) 0%, rgba(0, 210, 196, 0) 70%);
  animation: servicesOrbFloat 7s ease-in-out infinite;
}

.motion-orb-2 {
  width: 130px;
  height: 130px;
  top: 12%;
  right: 2%;
  background: radial-gradient(circle, rgba(0, 86, 179, 0.28) 0%, rgba(0, 86, 179, 0) 70%);
  animation: servicesOrbFloat 8.5s ease-in-out infinite reverse;
  animation-delay: -1.5s;
}

.motion-orb-3 {
  width: 80px;
  height: 80px;
  bottom: 0%;
  left: 40%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.3) 0%, rgba(0, 180, 216, 0) 70%);
  animation: servicesOrbFloat 6s ease-in-out infinite;
  animation-delay: -3s;
}

.motion-ring {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
  border: 1.5px solid rgba(0, 210, 196, 0.22);
  border-top-color: rgba(0, 86, 179, 0.35);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.7) rotate(0deg);
  animation: servicesRingSpin 16s linear infinite;
}

.motion-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary-teal);
  opacity: 0;
  box-shadow: 0 0 10px rgba(0, 210, 196, 0.55);
}

.motion-dot-1 { top: 18%; left: 12%; animation: servicesDotPulse 3.2s ease-in-out infinite; }
.motion-dot-2 { top: 28%; right: 14%; background: var(--primary-blue); animation: servicesDotPulse 3.8s ease-in-out infinite 0.6s; }
.motion-dot-3 { bottom: 22%; left: 22%; animation: servicesDotPulse 4.2s ease-in-out infinite 1.1s; }
.motion-dot-4 { bottom: 30%; right: 18%; background: #00b4d8; animation: servicesDotPulse 3.5s ease-in-out infinite 0.3s; }

.services-heading-block.revealed .motion-orb,
.services-heading-block.revealed .motion-ring,
.services-heading-block.revealed .motion-dot {
  opacity: 1;
  transform: scale(1);
}

.services-motion-heading {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15em;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.services-motion-heading .motion-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.28em 0.35em;
  position: relative;
}

.services-motion-heading .motion-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px) scale(0.96);
  filter: blur(6px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--i, 0) * 0.09s + 0.12s);
}

.services-heading-block.revealed .motion-word {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.motion-word-gradient {
  background: linear-gradient(
    115deg,
    #003d82 0%,
    #00d2c4 28%,
    #0056b3 55%,
    #00b4d8 78%,
    #00d2c4 100%
  );
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: servicesGradientShift 4.8s ease-in-out infinite;
}

.motion-line-accent {
  padding-bottom: 0.55rem;
}

.motion-underline {
  position: absolute;
  left: 50%;
  bottom: 0.1rem;
  width: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, #00d2c4 20%, #0056b3 80%, transparent 100%);
  box-shadow: 0 0 12px rgba(0, 210, 196, 0.45);
  transform: translateX(-50%);
  transition: width 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.55s;
}

.services-heading-block.revealed .motion-underline {
  width: min(320px, 78%);
}

.services-motion-desc {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.55s,
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.55s;
}

.services-heading-block.revealed .services-motion-desc {
  opacity: 1;
  transform: translateY(0);
}

@keyframes servicesOrbFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(10px, -14px, 0) scale(1.08);
  }
}

@keyframes servicesRingSpin {
  from {
    transform: scale(1) rotate(0deg);
  }
  to {
    transform: scale(1) rotate(360deg);
  }
}

@keyframes servicesGradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes servicesDotPulse {
  0%, 100% {
    transform: translateY(0) scale(0.85);
    opacity: 0.35;
  }
  50% {
    transform: translateY(-8px) scale(1.15);
    opacity: 0.95;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-motion-heading .motion-word,
  .services-motion-desc,
  .motion-underline,
  .motion-orb,
  .motion-ring,
  .motion-dot {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .motion-underline {
    width: min(320px, 78%);
  }

  .motion-word-gradient {
    animation: none !important;
    background-position: 50% 50%;
  }
}

@media (max-width: 767.98px) {
  .services-motion-title {
    padding: 0.75rem 0.25rem 0.25rem;
  }

  .motion-orb-1,
  .motion-orb-2 {
    width: 90px;
    height: 90px;
  }

  .motion-ring {
    width: 120px;
    height: 120px;
    margin: -60px 0 0 -60px;
  }

  .services-motion-heading {
    font-size: clamp(1.55rem, 6.5vw, 2rem) !important;
  }
}

/* ===== Our Services — Fintattva-style offer cards (BALSAN palette) ===== */
.services-section.categories-section {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
  overflow: hidden;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 210, 196, 0.12);
  color: #0a7a72;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(0, 210, 196, 0.22);
}

.categories-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0;
  letter-spacing: -0.02em;
}

.categories-intro {
  color: #111827 !important;
  font-size: 1.02rem;
  font-weight: 500 !important;
  line-height: 1.65;
}

.service-offer-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(0, 33, 71, 0.12);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 28px 56px rgba(0, 33, 71, 0.2),
    0 14px 28px rgba(0, 33, 71, 0.12),
    0 4px 10px rgba(0, 33, 71, 0.08);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
}

.service-offer-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 36px 70px rgba(0, 33, 71, 0.26),
    0 18px 36px rgba(0, 33, 71, 0.14),
    0 6px 14px rgba(0, 33, 71, 0.1);
  border-color: rgba(0, 210, 196, 0.35);
}

.service-offer-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eef3f8;
}

.service-offer-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-offer-card:hover .service-offer-media img {
  transform: scale(1.06);
}

.service-offer-tag {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--primary-navy);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.service-offer-tag i {
  color: var(--secondary-teal);
}

.service-offer-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem 1.4rem 1.5rem;
}

.service-offer-body h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.9rem;
}

.service-offer-list {
  --offer-ease: cubic-bezier(0.22, 1, 0.36, 1);
  list-style: none;
  padding: 0;
  margin: 0 0 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.service-offer-list li {
  position: relative;
  margin: 0;
  padding: 0;
  color: #111827 !important;
  font-size: 0.92rem;
  font-weight: 500 !important;
  line-height: 1.45;
  opacity: 0;
  transform: translateX(-14px);
  transition:
    opacity 0.5s var(--offer-ease),
    transform 0.55s var(--offer-ease);
  transition-delay: calc(0.12s + (var(--i, 0) * 0.07s));
}

.reveal.revealed .service-offer-list li {
  opacity: 1;
  transform: translateX(0);
}

.service-offer-list a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  padding: 0.62rem 0.75rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(0, 33, 71, 0.06);
  background: rgba(0, 33, 71, 0.025);
  color: #111827 !important;
  font-weight: 500 !important;
  text-decoration: none;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s var(--offer-ease),
    color 0.2s ease;
}

.service-offer-list a:hover {
  color: var(--primary-navy) !important;
  background: #fff;
  border-color: rgba(0, 210, 196, 0.35);
  box-shadow: 0 10px 22px rgba(0, 33, 71, 0.08);
  transform: translateX(4px);
}

.service-offer-list .offer-check {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: #fff;
  background: linear-gradient(135deg, #0056b3, #00d2c4);
  box-shadow: 0 4px 10px rgba(0, 86, 179, 0.22);
  transform: scale(0.55);
  opacity: 0;
  transition:
    transform 0.45s var(--offer-ease),
    opacity 0.45s var(--offer-ease),
    box-shadow 0.3s ease;
  transition-delay: calc(0.22s + (var(--i, 0) * 0.07s));
}

.reveal.revealed .service-offer-list .offer-check {
  opacity: 1;
  transform: scale(1);
}

.service-offer-list a:hover .offer-check {
  transform: scale(1.1);
  box-shadow: 0 0 0 5px rgba(0, 210, 196, 0.12), 0 6px 14px rgba(0, 86, 179, 0.28);
}

.service-offer-list .offer-label {
  flex: 1 1 auto;
  min-width: 0;
}

@media (prefers-reduced-motion: reduce) {
  .service-offer-list li,
  .service-offer-list .offer-check {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.service-offer-body .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* What We Offer — 5 compact cards in one row */
#popular-services .container {
  max-width: 1400px;
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: stretch;
}

.services-card-item {
  min-width: 0;
}

.services-cards-grid .service-offer-card {
  border-radius: 14px;
  box-shadow:
    0 14px 28px rgba(0, 33, 71, 0.12),
    0 4px 10px rgba(0, 33, 71, 0.06);
}

.services-cards-grid .service-offer-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 20px 36px rgba(0, 33, 71, 0.16),
    0 6px 14px rgba(0, 33, 71, 0.08);
}

.services-cards-grid .service-offer-media {
  aspect-ratio: 16 / 9;
}

.services-cards-grid .service-offer-tag {
  left: 0.55rem;
  bottom: 0.55rem;
  gap: 0.25rem;
  padding: 0.22rem 0.55rem;
  font-size: 0.68rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.services-cards-grid .service-offer-body {
  padding: 0.85rem 0.8rem 0.95rem;
}

.services-cards-grid .service-offer-body h3 {
  font-size: 0.92rem;
  line-height: 1.3;
  margin-bottom: 0.55rem;
}

.services-cards-grid .service-offer-list {
  gap: 0.28rem;
  margin: 0 0 0.85rem;
}

.services-cards-grid .service-offer-list a {
  gap: 0.4rem;
  padding: 0.35rem 0.45rem;
  border-radius: 0.55rem;
  font-size: 0.72rem;
  line-height: 1.3;
}

.services-cards-grid .service-offer-list a:hover {
  transform: translateX(2px);
}

.services-cards-grid .service-offer-list .offer-check {
  width: 1rem;
  height: 1rem;
  font-size: 0.55rem;
}

.services-cards-grid .service-offer-body .btn {
  width: 100%;
  justify-content: center;
  padding: 0.4rem 0.55rem;
  font-size: 0.72rem;
  border-radius: 999px;
}

@media (max-width: 1199.98px) {
  .services-cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 767.98px) {
  .services-cards-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .services-cards-grid .service-offer-body h3 {
    font-size: 1.05rem;
  }

  .services-cards-grid .service-offer-list a {
    font-size: 0.85rem;
  }
}

.btn-view-all-services {
  background: var(--primary-blue);
  color: #ffffff !important;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.85rem 2.25rem;
  border: none;
  box-shadow: 0 10px 20px -10px rgba(0, 86, 179, 0.4);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-view-all-services:hover {
  background: var(--primary-navy);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 15px 25px -10px rgba(0, 33, 71, 0.4);
}

.btn-view-all-services i {
  transition: transform 0.2s ease;
}

.btn-view-all-services:hover i {
  transform: translateX(4px);
}

/* Why Section & Statistics */
.about-image-wrapper {
  position: relative;
  display: inline-block;
  border-radius: 1.25rem;
  padding: 0.5rem;
  background: #ffffff;
  box-shadow: 0 20px 45px -15px rgba(0, 33, 71, 0.15);
  border: 1px solid rgba(0, 33, 71, 0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.about-image-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -12px rgba(0, 33, 71, 0.22);
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-bottom: 0;
}

/* Section Header */
.section-subtitle {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
  display: inline-block;
  background: var(--bg-teal-light);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--muted-text);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

/* How It Works — Feature cards */
.workflow-section {
  position: relative;
  overflow: hidden;
  padding: 4.75rem 0 5rem;
  background: linear-gradient(180deg, #f3f7fc 0%, #eef4fb 45%, #f7fafc 100%);
}

.workflow-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 45% 55% at 8% 20%, rgba(96, 165, 250, 0.18), transparent 62%),
    radial-gradient(ellipse 40% 50% at 92% 70%, rgba(147, 197, 253, 0.16), transparent 60%),
    radial-gradient(ellipse 35% 40% at 50% 100%, rgba(191, 219, 254, 0.2), transparent 55%);
}

.workflow-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: var(--primary-navy);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.workflow-title-accent {
  color: var(--primary-blue);
  position: relative;
  display: inline-block;
}

.workflow-title-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.28em;
  height: 0.42em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' fill='none'%3E%3Cpath d='M2 8c28-6 58-8 116-4' stroke='%230056b3' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  pointer-events: none;
}

.workflow-desc {
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted-text);
  font-size: 1rem;
  line-height: 1.65;
}

.workflow-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: stretch;
  max-width: none;
  margin: 0;
}

.workflow-card {
  --wf-accent: #3b82f6;
  --wf-soft: rgba(59, 130, 246, 0.12);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.75rem 1.15rem 1.65rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 18px 40px rgba(96, 165, 250, 0.14),
    0 4px 12px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.workflow-card-blue {
  --wf-accent: #3b82f6;
  --wf-soft: rgba(59, 130, 246, 0.14);
}

.workflow-card-purple {
  --wf-accent: #8b5cf6;
  --wf-soft: rgba(139, 92, 246, 0.14);
}

.workflow-card-sky {
  --wf-accent: #0ea5e9;
  --wf-soft: rgba(14, 165, 233, 0.14);
}

.workflow-card-gold {
  --wf-accent: #eab308;
  --wf-soft: rgba(234, 179, 8, 0.16);
}

.workflow-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 48px rgba(96, 165, 250, 0.2),
    0 8px 18px rgba(15, 23, 42, 0.06);
}

.workflow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  margin-bottom: 1.15rem;
  border-radius: 0.9rem;
  background: var(--wf-soft);
  color: var(--wf-accent);
  font-size: 1.45rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.workflow-card h3 {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.6rem;
  letter-spacing: -0.01em;
}

.workflow-card p {
  color: #64748b !important;
  font-size: 0.86rem !important;
  font-weight: 500 !important;
  line-height: 1.65;
  margin-bottom: 0;
  max-width: 28rem;
}

.workflow-card.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--i, 0) * 0.1s);
}

.workflow-card.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .workflow-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .workflow-section {
    padding: 3.5rem 0;
  }

  .workflow-track {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .workflow-card {
    padding: 1.75rem 1.4rem 1.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .workflow-card.reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Technology and Cloud Accounting Logos */
.cloud-logo-item {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition-smooth);
}

.cloud-logo-item:hover {
  filter: grayscale(0%);
  opacity: 1;
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.cloud-logo-item svg {
  max-height: 40px;
  max-width: 100%;
}

/* Testimonials Card - Premium Tab filter & offset Quote layout */
.testimonial-tab-container {
  background: #ffffff;
  border-radius: 50px;
  padding: 0.35rem;
  display: inline-flex;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 15px rgba(0, 33, 71, 0.04);
}

.testimonial-tab {
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.6rem 1.5rem;
  border: none;
  background: transparent;
  color: var(--muted-text);
  transition: all 0.25s ease;
}

.testimonial-tab.active {
  background: var(--primary-blue);
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(0, 86, 179, 0.25);
}

.testimonial-tab:hover:not(.active) {
  color: var(--primary-blue);
  background: rgba(0, 86, 179, 0.04);
}

.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  padding: 2.25rem 2rem 2rem;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 33, 71, 0.04);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 45px rgba(0, 33, 71, 0.08);
}

.testimonial-quote-icon {
  position: absolute;
  top: -20px;
  left: 24px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--primary-blue);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 16px rgba(0, 86, 179, 0.3);
}

.testimonial-stars {
  color: #ffc107;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--primary-navy);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 2rem;
  flex: 1 1 auto;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  padding-top: 1.25rem;
  margin-top: auto;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid #ffffff;
  position: relative;
  flex-shrink: 0;
  color: #ffffff;
}

.avatar-blue {
  background: linear-gradient(135deg, #0d6efd 0%, #00d2c4 100%);
}

.avatar-indigo {
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
}

.avatar-teal {
  background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
}

.verified-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #10b981;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  border: 1.5px solid #ffffff;
}

.testimonial-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.15rem;
}

.testimonial-info p {
  font-size: 0.78rem;
  color: var(--muted-text);
  margin-bottom: 0;
}

.testimonial-company {
  color: var(--primary-blue);
  font-weight: 600;
}

/* FAQ Accordion Styling */
.accordion-custom .accordion-item {
  border: 1px solid var(--border-light) !important;
  border-radius: 8px !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: #ffffff;
  transition: var(--transition-smooth);
}

.accordion-custom .accordion-item:hover {
  box-shadow: var(--shadow-sm);
}

.accordion-custom .accordion-button {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary-navy);
  padding: 1.25rem 1.5rem;
  background: #ffffff;
  box-shadow: none;
}

.accordion-custom .accordion-button:not(.collapsed) {
  color: var(--primary-blue);
  background: var(--bg-light);
}

.accordion-custom .accordion-button::after {
  filter: sepia(1) saturate(10) hue-rotate(170deg);
  /* align arrow color with brand blue/teal */
}

.accordion-custom .accordion-body {
  padding: 1.25rem 1.5rem;
  font-size: 0.9rem;
  color: var(--muted-text);
  line-height: 1.6;
  background: var(--bg-light);
}

/* Blog / Resource Grid Cards */
.blog-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.blog-card-image {
  height: 200px;
  background: linear-gradient(135deg, #071426 0%, #170d20 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-card-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #ffffff;
  color: var(--primary-blue);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  z-index: 5;
  transition: all 0.3s ease;
}

.blog-card:hover .blog-card-category {
  background: var(--primary-blue);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 86, 179, 0.3);
}

.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  font-size: 0.8rem;
  color: var(--muted-text);
  margin-bottom: 0.75rem;
}

.blog-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-card-title a {
  color: var(--primary-navy);
  text-decoration: none;
  transition: var(--transition-fast);
}

.blog-card-title a:hover {
  color: var(--primary-blue);
}

.blog-card-text {
  font-size: 0.88rem;
  color: var(--muted-text);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.blog-card-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-blue);
  text-decoration: none;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
}

.blog-card-link i {
  margin-left: 0.25rem;
  transition: var(--transition-fast);
}

.blog-card-link:hover i {
  transform: translateX(3px);
}

/* Inline SVG Motion Graphics */
.blog-card-graphic {
  width: 100%;
  height: 100%;
  max-height: 130px;
  position: relative;
  z-index: 2;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-card-graphic {
  transform: scale(1.05);
}

/* Card 1: Comparatives Scale */
.graphic-bar-1,
.graphic-bar-2 {
  transform-origin: bottom;
  transform-box: fill-box;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .graphic-bar-1 {
  transform: scaleY(1.25);
}

.blog-card:hover .graphic-bar-2 {
  transform: scaleY(0.75);
}

.graphic-path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .graphic-path {
  stroke-dashoffset: 0;
}

/* Card 2: Checklist items */
.graphic-item-1,
.graphic-item-2,
.graphic-item-3 {
  transform-box: fill-box;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.graphic-item-2 {
  transition-delay: 0.08s;
}

.graphic-item-3 {
  transition-delay: 0.16s;
}

.blog-card:hover .graphic-item-1 {
  transform: translateY(-4px);
}

.blog-card:hover .graphic-item-2 {
  transform: translateY(-2px);
}

.blog-card:hover .graphic-item-3 {
  transform: translateY(2px);
}

/* Card 3: Alert Wave Graph */
.graphic-wave-active {
  stroke-dasharray: 250;
  stroke-dashoffset: 250;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .graphic-wave-active {
  stroke-dashoffset: 0;
}

.graphic-ping {
  transform-origin: center;
  transform-box: fill-box;
  animation: pulse-glow-graph 2s infinite;
}

@keyframes pulse-glow-graph {
  0% {
    transform: scale(0.6);
    opacity: 1;
    stroke-width: 1.5;
  }

  100% {
    transform: scale(1.7);
    opacity: 0;
    stroke-width: 0.5;
  }
}

/* Call To Action Banner */
.cta-banner {
  background: var(--gradient-dark);
  border-radius: 20px;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.cta-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(0, 210, 196, 0.15) 0%, rgba(255, 255, 255, 0) 50%);
  pointer-events: none;
}

/* Trust Badges / Clients */
.client-logo {
  height: 32px;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: var(--transition-smooth);
}

.client-logo:hover {
  opacity: 0.8;
  filter: grayscale(0%);
}

/* Reusable Templates Specific Layouts */
.breadcrumb-custom {
  background: transparent;
  padding: 1.5rem 0 0;
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: var(--primary-blue);
  text-decoration: none;
  font-size: 0.85rem;
}

.breadcrumb-item.active {
  color: var(--muted-text);
  font-size: 0.85rem;
}

/* Document Cards */
.document-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  align-items: center;
}

.document-icon {
  background: #ffffff;
  color: var(--primary-blue);
  width: 36px;
  height: 36px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-right: 0.75rem;
  box-shadow: var(--shadow-sm);
}

.document-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 0;
}

/* Sidebar Details */
.sidebar-sticky {
  position: sticky;
  top: 100px;
}

.card-cta-vertical {
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2rem;
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

/* Footer — Fintattva-style site footer (BALSAN palette) */
.site-footer {
  position: relative;
  isolation: isolate;
  background-color: #001a38;
  background-image:
    url("../icons/world-map-dots.svg"),
    linear-gradient(180deg, #002147 0%, #001226 100%);
  background-position: center 45%, center;
  background-repeat: no-repeat;
  background-size: 1100px auto, cover;
  color: rgba(255, 255, 255, 0.85);
  padding: 4.5rem 0 2rem;
  margin-top: 2rem;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 26, 56, 0.72);
  pointer-events: none;
}

.site-footer > .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 767.98px) {
  .site-footer {
    background-position: center 35%, center;
    background-size: 760px auto, cover;
    padding: 3.25rem 0 1.75rem;
  }
}

.site-footer .footer-brand-text {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.footer-about {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  max-width: 340px;
  line-height: 1.65;
}

.footer-title {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.15rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--secondary-teal);
}

.footer-contact {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-contact i {
  color: var(--secondary-teal);
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-3px);
  color: #ffffff;
}

.social-icons a[aria-label="Facebook"]:hover {
  background: #1877F2;
}

.social-icons a[aria-label="Twitter"]:hover {
  background: #000000;
}

.social-icons a[aria-label="LinkedIn"]:hover {
  background: #0A66C2;
}

.social-icons a[aria-label="YouTube"]:hover {
  background: #FF0000;
}

.social-icons a[aria-label="WhatsApp"]:hover,
.social-icons a.social-whatsapp:hover {
  background: #25D366;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}

.footer-bottom .footer-credit {
  margin-bottom: 0.15rem;
}

.footer-bottom .footer-credit a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom .footer-credit a:hover,
.footer-bottom .footer-credit a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom .disclaimer {
  font-size: 0.75rem;
  max-width: 640px;
  margin: 0.5rem auto 0;
  line-height: 1.5;
}

/* Legacy footer class aliases */
.footer {
  background-color: #001a38;
  color: #ffffff;
}

/* Motion Reveal Classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Support for prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero-floating-card,
  .btn-primary-custom,
  .service-card,
  .process-icon-container,
  .blog-card,
  .social-links a {
    animation: none !important;
    transform: none !important;
    transition: none !important;
  }

  .navbar {
    transition: none !important;
  }
}

/* Floating Vertical Social Bar */
.floating-social-bar {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 999;
}

.floating-social-bar .social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 33, 71, 0.85);
  /* Translucent navy backdrop */
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.floating-social-bar .social-btn:hover {
  transform: scale(1.1) translateX(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.floating-social-bar .social-btn[aria-label*="LinkedIn"]:hover {
  background-color: #0a66c2 !important;
}

.floating-social-bar .social-btn[aria-label*="Twitter"]:hover {
  background-color: #000000 !important;
  border-color: rgba(255, 255, 255, 0.2);
}

.floating-social-bar .social-btn[aria-label*="Facebook"]:hover {
  background-color: #1877f2 !important;
}

.floating-social-bar .social-btn[aria-label*="YouTube"]:hover {
  background-color: #ff0000 !important;
}

/* Hero Page-Load Stagger Animations */
@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-stagger {
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-stagger-1 {
  animation-delay: 0.1s;
}

.hero-stagger-2 {
  animation-delay: 0.2s;
}

.hero-stagger-3 {
  animation-delay: 0.3s;
}

.hero-stagger-4 {
  animation-delay: 0.4s;
}

.hero-stagger-5 {
  animation-delay: 0.5s;
}

.hero-stagger-6 {
  animation-delay: 0.6s;
}

.hero-stagger-7 {
  animation-delay: 0.7s;
}

.hero-motion-title {
  font-family: var(--font-heading);
  font-size: clamp(2.15rem, 5vw, 3.35rem);
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.35rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.08em;
  text-transform: uppercase;
}

.hero-title-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.22em 0.32em;
}

.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(36px) rotateX(28deg) scale(0.94);
  filter: blur(8px);
  transform-origin: bottom center;
  animation: heroWordIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(0.28s + var(--i, 0) * 0.1s);
  will-change: transform, opacity, filter;
}

.hero-word-accent {
  background: linear-gradient(
    115deg,
    #003d82 0%,
    #00d2c4 28%,
    #0056b3 52%,
    #00b4d8 76%,
    #00d2c4 100%
  );
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation:
    heroWordIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards,
    heroGradientShift 4.5s ease-in-out infinite;
  animation-delay: calc(0.28s + var(--i, 0) * 0.1s), 1.2s;
}

.hero-title-underline {
  display: block;
  width: 0;
  max-width: 11rem;
  height: 4px;
  margin-top: 0.85rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--secondary-teal), var(--primary-blue));
  box-shadow: 0 0 16px rgba(0, 210, 196, 0.35);
  animation: heroUnderlineGrow 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1.05s;
}

@keyframes heroWordIn {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg) scale(1);
    filter: blur(0);
  }
}

@keyframes heroGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes heroUnderlineGrow {
  to { width: 100%; }
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
}

.hero-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 86, 179, 0.12);
  box-shadow: 0 8px 20px rgba(0, 33, 71, 0.06);
  color: var(--primary-navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  animation: heroFadeRise 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(0.95s + var(--i, 0) * 0.1s);
}

.hero-trust-chip i {
  color: var(--secondary-teal);
  font-size: 0.9rem;
}

.hero-lead {
  max-width: 36rem;
  margin-bottom: 1.5rem;
  color: #374151;
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 500;
  opacity: 0;
  transform: translateY(22px);
  animation: heroFadeRise 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1.2s;
}

.hero-lead strong {
  color: var(--primary-navy);
  font-weight: 800;
}

.hero-cta-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.85rem;
  opacity: 0;
  transform: translateY(22px);
  animation: heroFadeRise 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1.35s;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(0, 86, 179, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 36px rgba(0, 86, 179, 0.28);
}

.hero-cta-btn-alt {
  font-weight: 700;
}

.hero-stats-modern {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 9.5rem;
  padding: 0.7rem 0.9rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 33, 71, 0.08);
  box-shadow: 0 10px 24px rgba(0, 33, 71, 0.06);
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  animation: heroFadeRise 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(1.5s + var(--i, 0) * 0.12s);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hero-stat-item:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 210, 196, 0.35);
  box-shadow: 0 14px 28px rgba(0, 86, 179, 0.1);
}

.hero-stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-blue), #003d7a);
  box-shadow: 0 8px 16px rgba(0, 86, 179, 0.25);
}

.hero-stat-icon-teal {
  background: linear-gradient(135deg, var(--secondary-teal), #0a7a72);
  box-shadow: 0 8px 16px rgba(0, 210, 196, 0.28);
}

.hero-stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.1;
}

.hero-stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted-text);
  margin-top: 0.15rem;
}

@keyframes heroFadeRise {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 575.98px) {
  .hero-cta-wrap .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stat-item {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-word,
  .hero-word-accent,
  .hero-title-underline {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    width: 100%;
  }

  .hero-trust-chip,
  .hero-lead,
  .hero-cta-wrap,
  .hero-stat-item {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Button Click Ripple Feedback */
.btn-ripple {
  position: relative;
  overflow: hidden;
}

.btn-ripple .ripple-glow {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: rippleGlowAnim 0.65s cubic-bezier(0.1, 0.8, 0.3, 1);
  pointer-events: none;
}

@keyframes rippleGlowAnim {
  to {
    transform: scale(3.5);
    opacity: 0;
  }
}

/* ========================================
   Mobile & Tablet Responsive Overrides
   ======================================== */

/* Logo scales to leave room for the hamburger */
.navbar-brand svg {
  width: auto;
  height: 48px;
  max-width: 225px;
}

.navbar .container {
  gap: 0.5rem;
}

@media (max-width: 991.98px) {
  .navbar {
    padding: 0.5rem 0;
  }

  .navbar-brand {
    max-width: calc(100% - 52px);
  }

  .navbar-brand svg {
    height: 40px;
    max-width: min(200px, calc(100vw - 96px));
  }

  /* Soften large Bootstrap display headings */
  .display-4 {
    font-size: clamp(1.75rem, 7vw, 2.35rem) !important;
  }

  .display-5 {
    font-size: clamp(1.55rem, 6vw, 2.1rem) !important;
  }

  .display-6 {
    font-size: clamp(1.4rem, 5.5vw, 1.85rem) !important;
  }

  .section-title {
    font-size: clamp(1.45rem, 5vw, 1.9rem);
  }

  .hero-section .lead {
    font-size: 0.98rem !important;
  }

  /* Let headline reflow naturally on phones */
  .hero-section h1 br {
    display: none;
  }

  .badge-deal-discount-dark {
    white-space: normal;
    text-align: left;
    line-height: 1.45;
    max-width: 100%;
    font-size: 0.78rem;
    padding: 0.5rem 0.85rem;
  }

  .hero-stats-row {
    margin-top: 1.25rem;
    row-gap: 1rem !important;
  }

  .hero-stats-row .col-auto {
    margin-right: 0.75rem !important;
  }

  .btn-primary-custom.btn-lg,
  .hero-section .btn-lg {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 0.9rem 1.25rem;
  }

  /* Prevent Bootstrap g-5 rows from causing horizontal scroll */
  .row.g-5 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.75rem;
  }

  .theme-service-card,
  .service-card {
    padding: 1.5rem 1.25rem 1.2rem;
  }

  .cta-banner {
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
  }

  .testimonial-tab-container {
    width: 100%;
    max-width: 100%;
    border-radius: 14px;
    display: flex;
  }

  .testimonial-tab {
    flex: 1;
    padding: 0.55rem 0.75rem;
    font-size: 0.8rem;
    border-radius: 12px;
  }

  .footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .floating-social-bar {
    display: none !important;
  }

  .offcanvas {
    max-width: min(320px, 86vw);
  }

  .offcanvas-body {
    padding: 1.25rem 1.25rem 2rem;
  }

  .mobile-menu-link {
    font-size: 1.05rem;
  }
}

@media (max-width: 767.98px) {
  body {
    padding-top: 64px;
  }

  .navbar-brand svg {
    height: 36px;
    max-width: min(176px, calc(100vw - 88px));
  }

  .hero-section:not(.hero-banner) {
    padding: 2.75rem 0 2.5rem;
  }

  .hero-section.hero-banner {
    margin-top: -64px;
    padding: 0;
  }

  .hero-section h1 {
    margin-bottom: 1.25rem !important;
  }

  .py-5 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }

  .section-desc {
    font-size: 0.95rem;
  }

  .theme-card-title {
    font-size: 1.15rem;
  }

  .bullet-link {
    font-size: 0.88rem;
  }

  .process-step {
    text-align: center;
  }

  .cta-banner h2,
  .cta-banner .display-6 {
    font-size: 1.45rem !important;
  }

  .cta-banner .btn {
    width: 100%;
  }

  /* Stack feature rows cleanly on phones */
  .row.align-items-center.py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  /* Contact / form cards */
  .contact-info-card,
  .form-card,
  .card {
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .container,
  .container-sm {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .navbar-brand svg {
    height: 34px;
    max-width: min(160px, calc(100vw - 80px));
  }

  .hero-stats-row {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .hero-stats-row .col-auto {
    margin-right: 0 !important;
    margin-bottom: 0.35rem;
  }

  .badge-deal-discount-dark {
    font-size: 0.72rem;
  }
}
/* =========================================================
   About Page
   ========================================================= */
.about-banner,
.svc-banner,
.contact-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: #001226;
}

.about-banner {
  min-height: clamp(260px, 36vw, 400px);
  padding: 3.75rem 0 2.75rem;
}

.svc-banner {
  min-height: clamp(240px, 32vw, 360px);
  padding: 3.25rem 0 2.5rem;
}

.contact-banner {
  min-height: clamp(280px, 38vw, 420px);
  padding: 4rem 0 3rem;
}

.about-banner-media,
.svc-banner-media,
.contact-banner-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-banner-media img,
.svc-banner-media img,
.contact-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
  transform: scale(1.02);
}

.contact-banner-media img {
  object-position: center 30%;
}

.about-banner::after,
.svc-banner::after,
.contact-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(0, 18, 38, 0.88) 0%,
    rgba(0, 33, 71, 0.72) 42%,
    rgba(0, 33, 71, 0.28) 100%
  );
}

.about-banner-inner,
.svc-banner-inner,
.contact-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.about-breadcrumb {
  --bs-breadcrumb-divider-color: rgba(148, 163, 184, 0.75);
  font-size: 0.88rem;
}

.about-breadcrumb .breadcrumb-item a {
  color: rgba(226, 232, 240, 0.8);
  text-decoration: none;
}

.about-breadcrumb .breadcrumb-item a:hover {
  color: var(--secondary-teal);
}

.about-breadcrumb .breadcrumb-item.active {
  color: #fff;
  font-weight: 600;
}

.about-banner .section-badge,
.svc-banner .section-badge,
.contact-banner .section-badge {
  display: inline-flex;
  margin-bottom: 1rem;
  background: rgba(0, 210, 196, 0.16);
  color: var(--secondary-teal);
  border-color: rgba(0, 210, 196, 0.4);
}

.about-page-title {
  font-family: var(--font-heading);
  font-size: clamp(1.95rem, 4.2vw, 2.9rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  max-width: 16em;
  margin: 0 0 1rem;
  line-height: 1.18;
}

.about-page-lead {
  max-width: 640px;
  margin: 0;
  color: #fff;
  font-size: 1.06rem;
  font-weight: 500;
  line-height: 1.7;
}

.svc-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.svc-banner .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.75);
  color: #fff;
  background: transparent;
  font-weight: 600;
  border-radius: 0.65rem;
  padding: 0.7rem 1.4rem;
}

.svc-banner .btn-outline-light:hover,
.svc-banner .btn-outline-light:focus {
  background: #fff;
  color: var(--primary-navy);
  border-color: #fff;
}

@keyframes aboutPageFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-18px) scale(1.04); }
}

.about-page-story {
  padding: 5rem 0 2.5rem;
  background: linear-gradient(180deg, #f3f7fc 0%, #ffffff 28%);
}

.about-page-copy-full {
  max-width: none;
  width: 100%;
}

.about-page-copy-full p {
  max-width: none;
  color: #1f2937 !important;
  font-size: 1.02rem !important;
  line-height: 1.8;
}

.about-page-copy-full .about-page-actions {
  justify-content: flex-start;
}

.about-page-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 1.75rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.about-page-cta-bar .about-page-tagline {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  height: auto;
  min-height: 0;
  align-self: center;
}

.about-page-cta-bar .about-page-actions {
  flex: 0 0 auto;
  margin: 0;
  justify-content: flex-end;
  align-self: center;
}

.svc-banner-cta-bar {
  margin-top: 1.5rem;
  max-width: 920px;
}

.svc-banner-cta-bar .about-page-tagline {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 4px solid var(--secondary-teal);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.svc-banner-cta-bar .about-page-tagline i {
  color: var(--secondary-teal);
}

.about-what-section {
  padding: 1.75rem 0 0;
  margin: 0 0 1.75rem;
  background: transparent;
}

.about-what-section .svc-features-motion {
  margin: 0;
  height: 100%;
}

.about-what-section .about-what-media {
  max-width: none;
}

.about-what-section .about-what-media img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.about-what-section .col-lg-6.revealed .svc-f-orb,
.about-what-section .col-lg-6.revealed .svc-f-ring,
.about-what-section .col-lg-6.revealed .svc-f-dot {
  opacity: 1;
  transform: scale(1);
}

.about-what-section .col-lg-6.revealed .svc-list-title {
  opacity: 1;
  transform: translateY(0);
  animation: svcFeatTitleShine 4.8s ease-in-out 0.7s infinite;
}

.about-what-section .col-lg-6.revealed .svc-list-title::before {
  width: 4px;
}

.about-what-section .col-lg-6.revealed .svc-list-title::after {
  width: 58%;
}

.about-what-section .col-lg-6.revealed .svc-feature-grid li {
  opacity: 1;
  transform: translateY(0);
}

.about-what-section .col-lg-6.revealed .svc-feature-grid li i {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.about-page-side-media {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(0, 33, 71, 0.14);
  background: #e8eef5;
  margin: 0;
}

.about-page-side-media::after {
  content: "";
  position: absolute;
  inset: auto -12% -18% auto;
  width: 55%;
  height: 45%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 210, 196, 0.28), transparent 70%);
  pointer-events: none;
}

.about-page-side-media img {
  display: block;
  width: 100%;
  height: clamp(320px, 48vw, 540px);
  object-fit: cover;
  object-position: center;
}

.about-page-copy-below {
  text-align: left;
}

.about-page-copy-below .about-page-actions {
  justify-content: flex-start;
}

.about-page-copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--primary-navy);
  margin: 0.85rem 0 1.15rem;
  line-height: 1.25;
}

.about-page-copy p {
  color: var(--muted-text);
  line-height: 1.75;
  margin-bottom: 0.9rem;
  font-size: 0.97rem;
}

.about-page-tagline {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 1.35rem 0 1.5rem;
  padding: 0.95rem 1.1rem;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, rgba(0, 210, 196, 0.1), rgba(0, 86, 179, 0.08));
  border-left: 4px solid var(--secondary-teal);
  color: var(--primary-navy);
  font-weight: 600;
  font-size: 0.95rem;
}

.about-what-we-do {
  margin: 1.5rem 0 0.25rem;
  padding: 1.15rem 1.1rem 1.05rem;
  border-radius: 1rem;
  background: rgba(0, 33, 71, 0.03);
  border: 1px solid rgba(0, 33, 71, 0.08);
}

.about-what-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin: 0 0 0.45rem;
}

.about-what-lead {
  color: #243447 !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  margin-bottom: 0.9rem !important;
}

.about-what-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 0.75rem;
  margin: 0;
}

.about-what-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.55rem 0.6rem;
  border-radius: 0.7rem;
  background: #fff;
  border: 1px solid rgba(0, 33, 71, 0.06);
  color: #111827 !important;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  transition-delay: calc(0.08s + (var(--i, 0) * 0.04s));
}

.about-what-we-do.revealed .about-what-list li,
.reveal.revealed .about-what-list li {
  opacity: 1;
  transform: translateY(0);
}

.about-what-list li:hover {
  border-color: rgba(0, 210, 196, 0.35);
  box-shadow: 0 8px 18px rgba(0, 33, 71, 0.07);
}

.about-what-list li i {
  flex-shrink: 0;
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.05rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  color: #fff;
  background: linear-gradient(135deg, #0056b3, #00d2c4);
}

@media (max-width: 575.98px) {
  .about-what-list {
    grid-template-columns: 1fr;
  }
}

.about-page-tagline i {
  color: var(--secondary-teal);
  font-size: 1.15rem;
}

.about-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.about-page-purpose {
  position: relative;
  padding: 0;
  background: #fff;
}

.purpose-shell {
  position: relative;
  overflow: hidden;
  padding: 2.75rem 0;
  background:
    radial-gradient(ellipse 55% 70% at 12% 20%, rgba(0, 210, 196, 0.18), transparent 58%),
    radial-gradient(ellipse 45% 55% at 90% 85%, rgba(0, 86, 179, 0.35), transparent 55%),
    linear-gradient(145deg, #001226 0%, #002147 48%, #003366 100%);
  color: #fff;
}

.purpose-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
}

.purpose-intro {
  position: sticky;
  top: 6.5rem;
}

.purpose-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.65rem;
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 210, 196, 0.35);
  background: rgba(0, 210, 196, 0.12);
  color: var(--secondary-teal);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.purpose-intro h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 0.65rem;
  max-width: 12em;
}

.purpose-intro > p {
  color: #fff !important;
  font-size: 0.95rem;
  font-weight: 500 !important;
  line-height: 1.6;
  margin: 0 0 1rem;
  max-width: 28rem;
}

.purpose-intro-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.purpose-intro-meta span {
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.purpose-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.purpose-timeline::before {
  content: "";
  position: absolute;
  left: 0.7rem;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(0, 210, 196, 0.75) 0%,
    rgba(0, 86, 179, 0.55) 55%,
    rgba(255, 255, 255, 0.12) 100%
  );
}

.purpose-item {
  display: grid;
  grid-template-columns: 1.6rem 1fr;
  gap: 1rem;
  padding: 0.85rem 0 1.05rem;
  position: relative;
}

.purpose-item + .purpose-item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.purpose-item-marker {
  position: relative;
  z-index: 1;
  padding-top: 0.35rem;
}

.purpose-dot {
  display: block;
  width: 0.95rem;
  height: 0.95rem;
  margin-left: 0.22rem;
  border-radius: 50%;
  background: var(--secondary-teal);
  box-shadow: 0 0 0 6px rgba(0, 210, 196, 0.18), 0 0 24px rgba(0, 210, 196, 0.45);
}

.purpose-item-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
  color: var(--secondary-teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.purpose-item-label i {
  font-size: 0.95rem;
}

.purpose-item-body h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  font-weight: 800;
  color: #fff !important;
  margin: 0 0 0.45rem;
  letter-spacing: -0.02em;
}

.purpose-item-body p {
  color: #fff !important;
  font-size: 0.9rem;
  font-weight: 500 !important;
  line-height: 1.55;
  margin: 0 0 0.45rem;
  max-width: 38rem;
}

.purpose-item-body p:last-child {
  margin-bottom: 0;
}

.purpose-item.reveal,
.purpose-intro.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.purpose-item.reveal {
  transition-delay: calc(var(--i, 0) * 0.12s);
}

.purpose-item.reveal.revealed,
.purpose-intro.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .purpose-shell {
    padding: 2.25rem 0;
  }

  .purpose-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .purpose-intro {
    position: static;
  }

  .purpose-intro h2 {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .purpose-item.reveal,
  .purpose-intro.reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Legacy purpose card styles kept for safety */
.about-purpose-card {
  padding: 1.85rem 1.6rem;
  border-radius: 1.15rem;
  background: #fff;
  border: 1px solid rgba(0, 33, 71, 0.08);
  box-shadow: var(--shadow-sm);
}

.about-purpose-icon {
  width: 58px;
  height: 58px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  font-size: 1.45rem;
  color: #fff;
  background: linear-gradient(135deg, var(--secondary-teal), var(--primary-blue));
}

.about-purpose-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.75rem;
}

.about-purpose-card p {
  color: var(--muted-text);
  font-size: 0.94rem;
  line-height: 1.7;
  margin-bottom: 0.7rem;
}

.about-purpose-card p:last-child {
  margin-bottom: 0;
}

/* ===== Why Choose BALSAN — dark glass strips ===== */
.about-page-why {
  --why-ease: cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 4.75rem 0 5rem;
  background-color: #001226;
  background-image: url("../images/about-us1.png");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.why-choose-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(160deg, rgba(0, 14, 32, 0.92) 0%, rgba(0, 33, 71, 0.86) 55%, rgba(0, 18, 38, 0.93) 100%);
}

.why-choose-motion {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.why-float-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  animation: whyOrbFloat 14s ease-in-out infinite;
}

.why-float-orb-1 {
  width: 280px;
  height: 280px;
  left: -90px;
  top: 18%;
  background: radial-gradient(circle, rgba(0, 210, 196, 0.22), transparent 70%);
}

.why-float-orb-2 {
  width: 240px;
  height: 240px;
  right: -70px;
  bottom: 8%;
  background: radial-gradient(circle, rgba(0, 86, 179, 0.26), transparent 70%);
  animation-delay: -5s;
}

.why-float-ring {
  position: absolute;
  width: 260px;
  height: 260px;
  right: 12%;
  top: 12%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: whyRingSpin 32s linear infinite;
}

.why-choose-inner {
  position: relative;
  z-index: 1;
}

.why-choose-header {
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

.why-choose-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.5vw, 2.55rem);
  font-weight: 800;
  color: #fff !important;
  letter-spacing: -0.02em;
  margin: 0 0 0.8rem;
}

.why-choose-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 1.05rem;
  font-weight: 500 !important;
  line-height: 1.65;
}

.why-glass-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto;
}

.why-glass-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  min-height: 98px;
  padding: 1.25rem 1.35rem 1.25rem 1.2rem;
  border-radius: 1rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 14, 32, 0.62);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  transition:
    transform 0.55s var(--why-ease),
    background 0.55s var(--why-ease),
    border-color 0.55s var(--why-ease),
    box-shadow 0.55s var(--why-ease);
}

.why-glass-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #00d2c4, rgba(0, 86, 179, 0.9));
  transform: scaleY(0.45);
  opacity: 0.55;
  transition: transform 0.55s var(--why-ease), opacity 0.55s var(--why-ease);
}

.why-glass-card:hover {
  transform: translate3d(6px, 0, 0);
  background: rgba(0, 18, 38, 0.78);
  border-color: rgba(0, 210, 196, 0.42);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(0, 210, 196, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.why-glass-card:hover::before {
  transform: scaleY(1);
  opacity: 1;
}

.why-glass-icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  line-height: 1;
  color: #fff;
  background: linear-gradient(145deg, rgba(0, 210, 196, 0.28), rgba(0, 86, 179, 0.32));
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
  transition: transform 0.55s var(--why-ease), box-shadow 0.55s var(--why-ease);
}

.why-glass-card:hover .why-glass-icon {
  transform: scale(1.06);
  box-shadow: 0 10px 22px rgba(0, 210, 196, 0.22);
}

.why-glass-copy {
  min-width: 0;
  flex: 1 1 auto;
}

.why-glass-card h3 {
  color: #fff !important;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  text-align: left;
}

.about-page-why .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s var(--why-ease),
    transform 0.7s var(--why-ease);
  transition-delay: calc(var(--i, 0) * 0.08s);
}

.about-page-why .reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes whyOrbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-14px) scale(1.04); }
}

@keyframes whyRingSpin {
  to { transform: rotate(360deg); }
}

@media (max-width: 767.98px) {
  .why-glass-grid {
    grid-template-columns: 1fr;
  }

  .why-glass-card {
    min-height: 0;
    padding: 1.1rem 1.15rem;
  }

  .why-glass-card:hover {
    transform: translate3d(0, -4px, 0);
  }
}

@media (max-width: 991.98px) {
  .about-page-why {
    padding: 3.5rem 0 4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .why-float-orb,
  .why-float-ring,
  .about-page-why .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .why-glass-card,
  .why-glass-icon {
    transition: none !important;
  }

  .why-glass-card:hover {
    transform: none;
  }
}

.about-feature-card {
  text-align: center;
  padding: 1.75rem 1.35rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 33, 71, 0.07);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.about-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.about-feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: var(--primary-blue);
  background: rgba(0, 86, 179, 0.08);
  border: 1.5px solid rgba(0, 86, 179, 0.12);
  transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}

.about-feature-icon-teal {
  color: #0d9488;
  background: rgba(0, 210, 196, 0.12);
  border-color: rgba(0, 210, 196, 0.22);
}

.about-feature-card:hover .about-feature-icon {
  transform: translateY(-3px) scale(1.05);
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 86, 179, 0.28);
}

.about-feature-card:hover .about-feature-icon-teal {
  background: var(--secondary-teal);
  border-color: var(--secondary-teal);
  color: var(--primary-navy);
  box-shadow: 0 10px 22px rgba(0, 210, 196, 0.35);
}

.about-feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.55rem;
}

.about-feature-card p {
  margin: 0;
  color: var(--muted-text);
  font-size: 0.9rem;
  line-height: 1.65;
}

.about-commitment-band {
  position: relative;
  overflow: hidden;
  padding: 4.25rem 0;
  background:
    radial-gradient(ellipse 50% 80% at 10% 50%, rgba(0, 210, 196, 0.16), transparent 55%),
    radial-gradient(ellipse 45% 70% at 95% 30%, rgba(0, 86, 179, 0.35), transparent 50%),
    linear-gradient(135deg, #001226 0%, #002147 55%, #0a192f 100%);
  color: #fff;
}

.about-commitment-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.about-commitment-label {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--secondary-teal);
  background: rgba(0, 210, 196, 0.12);
  border: 1px solid rgba(0, 210, 196, 0.25);
}

.about-commitment-inner h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
}

.about-commitment-inner p {
  color: rgba(241, 245, 249, 0.82);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 1.15rem;
}

.about-commitment-tagline {
  margin-bottom: 0 !important;
  font-size: 1.15rem !important;
  font-weight: 700;
  color: var(--secondary-teal) !important;
}

.about-page-careers {
  padding: 4.5rem 0;
  background: #fff;
}

.about-careers-lead {
  color: var(--muted-text);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0.85rem;
}

.about-careers-text {
  color: var(--muted-text);
  font-size: 0.94rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-openings {
  padding: 1.65rem 1.5rem;
  border-radius: 1.15rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border: 1px solid rgba(0, 33, 71, 0.08);
  box-shadow: var(--shadow-md);
}

.about-openings h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 1.1rem;
}

.about-openings h3 i {
  background: var(--gradient-logo);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-right: 0.35rem;
}

.about-openings-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
}

.about-openings-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.about-opening-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.about-opening-head strong {
  color: var(--primary-navy);
  font-size: 0.95rem;
}

.about-opening-badge {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  color: #047857;
  background: rgba(16, 185, 129, 0.12);
}

.about-opening-badge-alt {
  color: #b45309;
  background: rgba(245, 158, 11, 0.14);
}

.about-openings-list p {
  margin: 0;
  color: var(--muted-text);
  font-size: 0.86rem;
  line-height: 1.6;
}

@media (max-width: 991.98px) {
  .about-banner {
    min-height: 240px;
    padding: 3.25rem 0 2.25rem;
    align-items: flex-end;
  }

  .svc-banner {
    min-height: 220px;
    padding: 3rem 0 2rem;
    align-items: flex-end;
  }

  .contact-banner {
    min-height: 260px;
    padding: 3.5rem 0 2.25rem;
    align-items: flex-end;
  }

  .about-page-story,
  .about-page-careers {
    padding: 3.25rem 0;
  }

  .about-what-section {
    padding: 1rem 0 0;
    margin-bottom: 1rem;
  }

  .about-what-section .row.align-items-stretch {
    align-items: flex-start !important;
  }

  .about-what-section .about-what-media,
  .about-what-section .about-what-media.h-100,
  .about-what-section .svc-features-motion.h-100 {
    height: auto !important;
  }

  .about-what-section .about-what-media img {
    min-height: 0;
    height: clamp(180px, 42vw, 240px);
  }

  .about-what-section .svc-features-motion {
    padding: 1rem 0.85rem 0.9rem;
  }

  .about-what-section .svc-feature-grid {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .about-what-section .svc-feature-grid li {
    padding: 0.55rem 0.7rem;
    font-size: 0.84rem;
  }

  .about-page-side-media {
    max-width: 520px;
    margin-inline: auto;
  }

  .about-page-side-media img {
    height: clamp(220px, 48vw, 300px);
  }

  .about-page-copy-below {
    text-align: left;
  }

  .about-page-copy-below .about-page-tagline,
  .about-page-copy-below .about-page-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 575.98px) {
  .about-page-title {
    max-width: none;
  }

  .about-page-actions .btn {
    width: 100%;
  }

  .about-page-cta-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    margin-top: 0;
  }

  .about-page-cta-bar .about-page-tagline {
    flex: 0 0 auto !important;
    align-self: stretch !important;
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    padding: 0.65rem 0.8rem !important;
    font-size: 0.84rem !important;
    line-height: 1.3 !important;
    gap: 0.45rem;
  }

  .about-page-cta-bar .about-page-tagline i {
    font-size: 0.95rem;
    flex-shrink: 0;
  }

  .about-page-cta-bar .about-page-actions {
    flex: 0 0 auto !important;
    align-self: stretch !important;
    justify-content: stretch;
  }

  .about-page-cta-bar .about-page-actions .btn {
    width: 100%;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
  }

  .about-opening-head {
    flex-direction: column;
    align-items: flex-start;
  }

}

/* =========================================================
   Service Detail Content (modern motion blocks)
   ========================================================= */
.svc-detail-section {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 3rem;
  background: linear-gradient(180deg, #d7e2ef 0%, #dce6f2 42%, #d4e0ee 100%);
}

.svc-detail-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.svc-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  animation: svcOrbFloat 10s ease-in-out infinite;
}

.svc-orb-1 {
  width: 320px;
  height: 320px;
  top: 8%;
  left: -120px;
  background: radial-gradient(circle, rgba(0, 210, 196, 0.16), transparent 70%);
}

.svc-orb-2 {
  width: 380px;
  height: 380px;
  right: -140px;
  bottom: 12%;
  background: radial-gradient(circle, rgba(0, 86, 179, 0.14), transparent 70%);
  animation-delay: -4s;
}

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

.svc-block {
  position: relative;
  padding: 2.75rem 0;
  margin-bottom: 1.25rem;
}

/* About-style service blocks: full copy, then image | features */
.svc-block-about .svc-copy-full {
  max-width: none;
  width: 100%;
  opacity: 1;
  transform: none;
  margin-bottom: 1.5rem;
}

.svc-block-about .svc-copy-full p {
  max-width: none;
  color: #1f2937 !important;
}

.svc-block-about .svc-about-split {
  margin-bottom: 1.5rem;
}

.svc-block-about .svc-media {
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
  transform: none;
  opacity: 1;
  background: transparent;
}

.svc-block-about .svc-media.h-100 {
  height: auto;
}

.svc-block-about .svc-media img {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  object-fit: unset;
  display: block;
}

.svc-block-about .svc-media:hover img {
  transform: none;
}

.svc-block-about .svc-features-motion {
  margin: 0;
  height: auto;
}

.svc-block-about .about-page-cta-bar {
  margin-top: 0.25rem;
}

.svc-block + .svc-block {
  border-top: 1px solid rgba(0, 33, 71, 0.06);
}

.svc-block-alt {
  background: transparent;
}

.svc-media {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0, 33, 71, 0.1);
  background: #eef3f8;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  margin-inline: 0;
  transform: translateX(-28px) scale(0.96);
  opacity: 0;
  transition:
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease;
}

.svc-block-alt .svc-media {
  transform: translateX(28px) scale(0.96);
}

.svc-block.revealed .svc-media {
  transform: translateX(0) scale(1);
  opacity: 1;
}

.svc-block.revealed .svc-media:hover {
  box-shadow: 0 18px 40px rgba(0, 33, 71, 0.14);
}

.svc-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.svc-media:hover img {
  transform: scale(1.04);
}

.svc-media-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.18) 50%, transparent 65%);
  transform: translateX(-120%);
  animation: svcShine 5.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes svcShine {
  0%, 55% { transform: translateX(-120%); }
  75%, 100% { transform: translateX(120%); }
}

.svc-media-index {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #fff;
  background: rgba(0, 33, 71, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
}

.svc-float-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(0, 14, 32, 0.72);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-float-chip i {
  color: #00d2c4;
}

.svc-float-1 {
  left: 1rem;
  bottom: 1.15rem;
}

.svc-float-2 {
  right: 1rem;
  top: 1.15rem;
}

.svc-block.revealed .svc-float-1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
  animation: svcChipFloat 4.8s ease-in-out infinite 0.8s;
}

.svc-block.revealed .svc-float-2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
  animation: svcChipFloat 5.2s ease-in-out infinite 1.2s;
}

@keyframes svcChipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.svc-copy {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.12s,
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.12s;
}

.svc-block.revealed .svc-copy {
  opacity: 1;
  transform: translateY(0);
}

.svc-copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 800;
  color: var(--primary-navy);
  margin: 0.7rem 0 1rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.svc-copy p {
  color: #3d4a5c !important;
  font-size: 0.96rem;
  line-height: 1.75;
  margin-bottom: 0.85rem;
}

.svc-features-motion {
  --svc-ease: cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  isolation: isolate;
  margin: 1.35rem 0 1.7rem;
  padding: 1.25rem 1.1rem 1.15rem;
  border-radius: 1.2rem;
  overflow: hidden;
  background: rgba(0, 14, 32, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.svc-features-fx {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.svc-f-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.svc-f-orb-1 {
  display: none;
}

.svc-f-orb-2 {
  width: 120px;
  height: 120px;
  right: -24px;
  bottom: -34px;
  background: radial-gradient(circle, rgba(0, 86, 179, 0.28), transparent 70%);
  animation: svcFeatOrb 8.5s ease-in-out infinite reverse;
  animation-delay: -2s;
}

.svc-f-ring {
  position: absolute;
  width: 150px;
  height: 150px;
  top: 50%;
  right: 8%;
  margin-top: -75px;
  border-radius: 50%;
  border: 1.5px dashed rgba(0, 210, 196, 0.28);
  border-top-color: rgba(0, 86, 179, 0.4);
  opacity: 0;
  transform: scale(0.75) rotate(0deg);
  animation: svcFeatRing 14s linear infinite;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.svc-f-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary-teal);
  opacity: 0;
  box-shadow: 0 0 10px rgba(0, 210, 196, 0.55);
  transition: opacity 0.6s ease;
}

.svc-f-dot-1 { top: 18%; left: 42%; animation: svcFeatDot 3.2s ease-in-out infinite; }
.svc-f-dot-2 { top: 28%; right: 18%; background: var(--primary-blue); animation: svcFeatDot 3.8s ease-in-out infinite 0.5s; }
.svc-f-dot-3 { bottom: 22%; left: 18%; background: #00b4d8; animation: svcFeatDot 4.2s ease-in-out infinite 1s; }

.svc-block.revealed .svc-f-orb,
.svc-block.revealed .svc-f-ring,
.svc-block.revealed .svc-f-dot,
.svc-features-motion.revealed .svc-f-orb,
.svc-features-motion.revealed .svc-f-ring,
.svc-features-motion.revealed .svc-f-dot {
  opacity: 1;
  transform: scale(1);
}

.svc-list-title {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  color: transparent;
  margin: 0 0 0.95rem;
  background: linear-gradient(
    105deg,
    #93c5fd 0%,
    #60a5fa 35%,
    #bfdbfe 52%,
    #38bdf8 72%,
    #818cf8 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s var(--svc-ease) 0.08s,
    transform 0.6s var(--svc-ease) 0.08s;
}

.svc-list-title::before {
  content: "";
  flex: 0 0 auto;
  width: 0;
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(180deg, #60a5fa, #818cf8);
  transition: width 0.7s var(--svc-ease) 0.28s;
}

.svc-list-title::after {
  content: "";
  position: absolute;
  left: 1.1rem;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #60a5fa, #818cf8, transparent);
  transition: width 0.85s var(--svc-ease) 0.4s;
}

.svc-block.revealed .svc-list-title,
.svc-features-motion.revealed .svc-list-title {
  opacity: 1;
  transform: translateY(0);
  animation: svcFeatTitleShine 4.8s ease-in-out 0.7s infinite;
}

.svc-block.revealed .svc-list-title::before,
.svc-features-motion.revealed .svc-list-title::before {
  width: 4px;
}

.svc-block.revealed .svc-list-title::after,
.svc-features-motion.revealed .svc-list-title::after {
  width: 58%;
}

.svc-feature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.75rem;
  margin: 0;
  padding: 0.15rem 0 0;
  border: none;
  background: none;
}

.svc-feature-grid li {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: auto;
  max-width: 100%;
  padding: 0.72rem 0.85rem 0.72rem 0.75rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.45s var(--svc-ease),
    transform 0.5s var(--svc-ease),
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
  transition-delay: calc(0.16s + (var(--i, 0) * 0.07s));
}

.svc-feature-grid li::after {
  content: "";
  position: absolute;
  top: -30%;
  left: -130%;
  width: 55%;
  height: 160%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 40%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0.08) 60%,
    transparent 100%
  );
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
}

.svc-block.revealed .svc-feature-grid li,
.svc-features-motion.revealed .svc-feature-grid li {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

.svc-feature-grid li:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(96, 165, 250, 0.55);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  transform: translateX(4px);
}

.svc-feature-grid li:hover::after {
  opacity: 1;
  animation: svcFeatChipShine 1.1s var(--svc-ease) forwards;
}

.svc-feature-grid li i {
  flex-shrink: 0;
  width: 1.3rem;
  height: 1.3rem;
  margin-top: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #fff;
  background: linear-gradient(135deg, #60a5fa, #3b82f6 55%, #6366f1);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
  opacity: 0;
  transform: scale(0.4) rotate(-20deg);
  transition:
    transform 0.5s var(--svc-ease),
    opacity 0.5s var(--svc-ease),
    box-shadow 0.3s ease;
  transition-delay: calc(0.36s + (var(--i, 0) * 0.08s));
}

.svc-block.revealed .svc-feature-grid li i,
.svc-features-motion.revealed .svc-feature-grid li i {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  animation: none;
}

.svc-feature-grid li:hover i {
  transform: scale(1.1) rotate(0deg);
  box-shadow: 0 0 0 6px rgba(96, 165, 250, 0.2), 0 6px 14px rgba(59, 130, 246, 0.45);
  animation: none;
}

@keyframes svcFeatOrb {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.06); }
}

@keyframes svcFeatRing {
  to { transform: scale(1) rotate(360deg); }
}

@keyframes svcFeatDot {
  0%, 100% { transform: scale(0.85); opacity: 0.35; }
  50% { transform: scale(1.25); opacity: 1; }
}

@keyframes svcFeatTitleShine {
  0%, 100% { background-position: 100% 50%; }
  50% { background-position: 0% 50%; }
}

@keyframes svcFeatChipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes svcFeatChipShine {
  from { left: -130%; }
  to { left: 140%; }
}

@keyframes svcFeatIconPulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(59, 130, 246, 0.32); }
  50% { box-shadow: 0 0 0 7px rgba(96, 165, 250, 0.18), 0 6px 14px rgba(99, 102, 241, 0.4); }
}

.svc-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease 0.45s, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.45s;
}

.svc-block.revealed .svc-cta {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .svc-detail-section {
    padding: 3.25rem 0 2rem;
  }

  .svc-media {
    transform: translateY(20px) scale(0.98);
  }

  .svc-block-alt .svc-media {
    transform: translateY(20px) scale(0.98);
  }

  .svc-block.revealed .svc-media,
  .svc-block-alt.revealed .svc-media {
    transform: translateY(0) scale(1);
  }

  .svc-block-about .svc-media,
  .svc-block-about .svc-media.h-100 {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: auto;
    transform: none;
    opacity: 1;
    background: transparent;
  }

  .svc-block-about.revealed .svc-media {
    transform: none;
  }

  .svc-block-about .svc-media img {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: auto !important;
    object-fit: unset !important;
  }

  .svc-float-2 {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .svc-feature-grid {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .svc-feature-grid li {
    width: 100%;
    border-radius: 0.8rem;
  }

  .svc-media {
    border-radius: 16px;
  }

  .svc-block-about .svc-media,
  .svc-block-about .svc-media.h-100 {
    aspect-ratio: auto;
    max-height: none;
  }

  .svc-block-about .svc-copy-full h2 {
    font-size: clamp(1.25rem, 5.5vw, 1.65rem);
    line-height: 1.25;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .svc-float-chip {
    font-size: 0.7rem;
    padding: 0.4rem 0.65rem;
  }

  .svc-float-1 {
    font-size: 0.72rem;
    padding: 0.45rem 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .svc-orb,
  .svc-media-shine,
  .svc-float-chip,
  .svc-f-orb,
  .svc-f-ring,
  .svc-f-dot,
  .svc-list-title,
  .svc-feature-grid li,
  .svc-feature-grid li i,
  .svc-feature-grid li::after {
    animation: none !important;
  }

  .svc-media,
  .svc-copy,
  .svc-list-title,
  .svc-list-title::before,
  .svc-list-title::after,
  .svc-feature-grid li,
  .svc-feature-grid li i,
  .svc-cta {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .svc-list-title {
    color: #93c5fd !important;
    background: none !important;
    -webkit-text-fill-color: #93c5fd;
  }

  .svc-block.revealed .svc-list-title::before {
    width: 4px;
  }

  .svc-block.revealed .svc-list-title::after {
    width: 58%;
  }

  .svc-block.revealed .svc-f-orb,
  .svc-block.revealed .svc-f-ring,
  .svc-block.revealed .svc-f-dot {
    opacity: 0.55;
  }
}
