/* ============================================================
   AB&D Software India Pvt Ltd — Main Stylesheet
   Premium 2026 IT Solutions Website
   ============================================================ */

/* ── Google Font Import ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Variables ── */
:root {
  --clr-dark:       #0f172a; /* Deep navy dark */
  --clr-navy:       #1e293b; /* Slate navy for footers */
  --clr-navy-mid:   #334155; /* Medium slate for card layouts */
  --clr-blue:       #1a56db; /* Deep Royal Blue — primary brand */
  --clr-blue-light: #2563eb; /* Hover blue */
  --clr-blue-glow:  rgba(26,86,219,0.12); /* Blue glow */
  --clr-red:        #ea580c; /* Orange accent (kept for red-dot & accents) */
  --clr-bg:         #fafafa; /* Light neutral grey/white */
  --clr-bg-alt:     #f1f5f9; /* Light slate-grey */
  --clr-txt:        #0f172a;
  --clr-muted:      #475569;
  --clr-border:     #e2e8f0;
  --clr-white:      #ffffff;

  --font-display:   'Inter', sans-serif;
  --font-body:      'Inter', sans-serif;

  --radius-sm:   12px;
  --radius-md:   20px;
  --radius-lg:   28px;
  --radius-xl:   36px;
  --radius-full: 9999px;

  --shadow-xs:  0 2px 8px rgba(0,0,0,0.05);
  --shadow-sm:  0 4px 20px rgba(0,0,0,0.07);
  --shadow-md:  0 8px 40px rgba(0,0,0,0.10);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.13);
  --shadow-blue: 0 20px 60px rgba(26,86,219,0.18);
  --shadow-blue-lg: 0 30px 80px rgba(26,86,219,0.22);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-h: 76px;
  --section-pad: clamp(3rem, 6vw, 4.5rem);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--clr-txt);
  background: var(--clr-white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.25; /* Improved from 1.18 for corporate readability */
  letter-spacing: -0.02em;
  color: var(--clr-dark);
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; } /* Premium, not oversized */
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; } /* Premium, not oversized */
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }
p  { font-size: 0.95rem; color: var(--clr-muted); line-height: 1.7; } /* 15px-16px readable range */

.red-dot {
  color: var(--clr-red);
  font-family: var(--font-display);
  font-weight: 800;
  display: inline-block;
  margin-left: 1px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-blue);
  background: rgba(37,99,235,0.06);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(37,99,235,0.15);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--clr-blue);
}

/* ── Container ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }
.container-wide { max-width: 1380px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  font-size: 0.92rem; font-weight: 700;
  border-radius: var(--radius-full);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--clr-blue);
  color: var(--clr-white);
  box-shadow: 0 4px 20px rgba(37,99,235,0.35);
}
.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,99,235,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--clr-white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--clr-blue);
  border: 1.5px solid var(--clr-blue);
}
.btn-outline-dark:hover {
  background: var(--clr-blue);
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.3);
}
.btn-ghost {
  color: var(--clr-blue);
  font-weight: 700;
  padding: 0;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.btn-ghost .arrow { transition: transform 0.25s ease; }
.btn-ghost:hover .arrow { transform: translateX(5px); }
.btn-sm { padding: 0.6rem 1.3rem; font-size: 0.85rem; }

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  border-bottom-color: var(--clr-border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}
.nav-logo:hover .nav-logo-img {
  transform: scale(1.03);
}
.nav-logo-mark {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--clr-blue), var(--clr-blue-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.1rem;
  color: var(--clr-white);
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(26,86,219,0.4);
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 800;
  color: var(--clr-dark);
  letter-spacing: -0.01em;
}
.nav-logo-sub {
  font-size: 0.65rem; font-weight: 600;
  color: var(--clr-muted); letter-spacing: 0.05em;
}
.nav-menu {
  display: flex; align-items: center; gap: 0.35rem;
}
.nav-menu a {
  padding: 0.5rem 0.6rem;
  margin: 0 0.2rem;
  font-size: 0.9rem; font-weight: 600;
  color: var(--clr-txt);
  transition: var(--transition);
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-red);
  transition: var(--transition);
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--clr-blue);
}
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.btn-nav-cta {
  background: var(--clr-blue);
  color: var(--clr-white) !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: var(--radius-full) !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(26,86,219,0.35);
  transition: var(--transition) !important;
}
.btn-nav-cta:hover {
  background: #1648c0 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,86,219,0.45) !important;
}
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid var(--clr-border);
  transition: var(--transition);
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--clr-txt); border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.nav-drawer {
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--clr-white);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  transform: translateY(-110%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  border-bottom: 1px solid var(--clr-border);
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.nav-drawer.open { transform: translateY(0); }
.nav-drawer a {
  display: block; padding: 0.85rem 1rem;
  font-size: 1rem; font-weight: 600;
  color: var(--clr-txt);
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--clr-border);
  transition: var(--transition);
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a:hover, .nav-drawer a.active {
  color: var(--clr-blue);
  background: rgba(26,86,219,0.06);
}
.nav-drawer-cta { margin-top: 1rem; }

/* Page offset for fixed nav */
.page-body { padding-top: var(--nav-h); }

/* ═══════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ═══════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--clr-dark) 0%, var(--clr-navy) 50%, #0c2454 100%);
  padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(4rem, 8vw, 6rem); /* Breathable, not huge gap */
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 85% 30%, rgba(26,86,219,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 15% 80%, rgba(26,86,219,0.10) 0%, transparent 60%);
}
.page-hero-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.page-hero-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #93c5fd;
  background: rgba(26,86,219,0.15);
  padding: 0.35rem 1rem; border-radius: var(--radius-full);
  border: 1px solid rgba(26,86,219,0.3); margin-bottom: 1.2rem;
}
.page-hero h1 {
  color: var(--clr-white);
  max-width: 720px;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem; max-width: 620px; margin-top: 0;
  line-height: 1.65;
  margin-bottom: 2rem;
}
.page-hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.page-hero-visual {
  position: relative;
  width: 100%;
  animation: fadeInRight 0.8s ease both;
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(140deg, #0f172a 0%, #1e293b 40%, #0c1f4a 70%, #091840 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 2rem 0;
}
.hero-bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: 0.3; animation: pulse-orb 8s ease-in-out infinite;
}
.hero-orb-1 { width: 500px; height: 500px; background: rgba(26,86,219,0.45); top: -15%; right: 5%; }
.hero-orb-2 { width: 350px; height: 350px; background: rgba(37,99,235,0.35); bottom: 5%; left: -5%; animation-delay: -3s; }
.hero-orb-3 { width: 250px; height: 250px; background: rgba(96,165,250,0.2); top: 50%; right: 35%; animation-delay: -6s; }

@keyframes pulse-orb {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  position: relative; z-index: 2;
}
.hero-content { animation: fadeInLeft 0.8s ease both; }

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  padding: 0.45rem 1.1rem;
  font-size: 0.78rem; font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}
.hero-badge-dot { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

.hero h1 {
  color: var(--clr-white);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, #60a5fa, #1a56db);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.07rem;
  max-width: 520px;
  margin-bottom: 2.2rem;
  line-height: 1.75;
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; }

/* Hero Visual */
.hero-visual { position: relative; animation: fadeInRight 0.9s ease 0.2s both; }

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-dashboard {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
}
.hero-dash-header {
  display: flex; align-items: center; gap: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1rem;
}
.hero-dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.hero-dash-dot:nth-child(1) { background: #ff5f57; }
.hero-dash-dot:nth-child(2) { background: #febc2e; }
.hero-dash-dot:nth-child(3) { background: #28c840; }
.hero-dash-title {
  margin-left: auto; margin-right: auto;
  font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.4);
}
.hero-float-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.hero-float-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  cursor: default;
  transition: var(--transition);
  animation: floatCard 6s ease-in-out infinite;
}
.hero-float-card:nth-child(1) { animation-delay: 0s; }
.hero-float-card:nth-child(2) { animation-delay: -1.2s; }
.hero-float-card:nth-child(3) { animation-delay: -2.4s; }
.hero-float-card:nth-child(4) { animation-delay: -3.6s; }
.hero-float-card:nth-child(5) { animation-delay: -4.8s; grid-column: span 2; }

.hero-float-card:hover {
  background: rgba(37,99,235,0.15);
  border-color: rgba(37,99,235,0.4);
  transform: translateY(-4px);
}
@keyframes floatCard {
  0%,100% { transform: translateY(0px); }
  50%     { transform: translateY(-5px); }
}

.hfc-icon {
  width: 34px; height: 34px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; margin-bottom: 0.6rem;
  background: rgba(26,86,219,0.18);
}
.hfc-title {
  font-size: 0.82rem; font-weight: 700; color: var(--clr-white);
  line-height: 1.3;
}
.hfc-sub { font-size: 0.7rem; color: rgba(255,255,255,0.45); margin-top: 0.2rem; }

/* ═══════════════════════════════════════════════════════════
   STATS STRIP
   ═══════════════════════════════════════════════════════════ */
.stats-strip {
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
  padding: 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--clr-border);
}
.stat-item {
  padding: 2.2rem 2rem;
  border-right: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.stat-item::before {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--clr-blue), var(--clr-blue-light));
  transition: width 0.4s ease;
}
.stat-item:hover::before { width: 100%; }
.stat-item:hover { background: rgba(26,86,219,0.04); }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 800;
  color: var(--clr-dark); line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-num span { color: var(--clr-blue); }
.stat-label { font-size: 0.88rem; font-weight: 600; color: var(--clr-muted); }
.stat-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, rgba(26,86,219,0.12), rgba(26,86,219,0.04));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 0.8rem;
}

/* ═══════════════════════════════════════════════════════════
   SECTIONS — Generic
   ═══════════════════════════════════════════════════════════ */
.section { padding: var(--section-pad) 0; }
.section-bg-alt { background: var(--clr-bg); }
.section-bg-dark { background: linear-gradient(135deg, var(--clr-dark), var(--clr-navy)); }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.section-header.left-align { text-align: left; margin: 0 0 3.5rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { font-size: 1.05rem; max-width: 580px; margin: 0 auto; }

/* Glow accent behind sections */
.section-glow {
  position: relative;
}
.section-glow::before {
  content: '';
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(26,86,219,0.08) 0%, transparent 70%);
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM SERVICE CARDS
   ═══════════════════════════════════════════════════════════ */
.cards-grid-3 {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: stretch;
}
.cards-grid-3 > * {
  flex: 0 0 calc((100% - 3rem) / 3);
  width: calc((100% - 3rem) / 3);
  display: flex;
  flex-direction: column;
}
.cards-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

/* Base Card */
.card {
  background: linear-gradient(135deg, var(--clr-white) 0%, #fbfcfd 100%);
  border: 1.5px solid var(--clr-border);
  border-radius: 24px;
  padding: 2.2rem 2rem 2rem;
  box-shadow: 0 10px 30px -10px rgba(7, 17, 31, 0.05), 0 1px 3px rgba(7, 17, 31, 0.02);
  transition: var(--transition);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  height: 100%;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-blue) 0%, var(--clr-red) 100%);
  z-index: 2;
}
.card::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(26,86,219,0.04) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s ease;
  pointer-events: none;
}
.card:hover::after { opacity: 1; }
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -15px rgba(26,86,219,0.18);
  border-color: var(--clr-blue);
}

/* Card Icon Box */
.card-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
  position: relative; z-index: 1;
  flex-shrink: 0;
  transition: var(--transition);
}
.card:hover .card-icon { transform: scale(1.08); }

/* Icon color variants with soft gradients */
.icon-blue   { background: linear-gradient(135deg, rgba(26,86,219,0.15), rgba(26,86,219,0.05)); color: var(--clr-blue); border: 1px solid rgba(26,86,219,0.15); }
.icon-indigo { background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(99,102,241,0.05)); color: #6366f1; border: 1px solid rgba(99,102,241,0.15); }
.icon-cyan   { background: linear-gradient(135deg, rgba(6,182,212,0.15), rgba(6,182,212,0.05)); color: #06b6d4; border: 1px solid rgba(6,182,212,0.15); }
.icon-violet { background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(139,92,246,0.05)); color: #8b5cf6; border: 1px solid rgba(139,92,246,0.15); }
.icon-emerald{ background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(16,185,129,0.05)); color: #10b981; border: 1px solid rgba(16,185,129,0.15); }
.icon-amber  { background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(245,158,11,0.05)); color: #f59e0b; border: 1px solid rgba(245,158,11,0.15); }
.icon-rose   { background: linear-gradient(135deg, rgba(244,63,94,0.15), rgba(244,63,94,0.05)); color: #f43f5e; border: 1px solid rgba(244,63,94,0.15); }
.icon-teal   { background: linear-gradient(135deg, rgba(20,184,166,0.15), rgba(20,184,166,0.05)); color: #14b8a6; border: 1px solid rgba(20,184,166,0.15); }
.icon-sky    { background: linear-gradient(135deg, rgba(14,165,233,0.15), rgba(14,165,233,0.05)); color: #0ea5e9; border: 1px solid rgba(14,165,233,0.15); }

/* Card Title & Description */
.card-title {
  font-family: var(--font-display);
  font-size: 1.32rem; font-weight: 700;
  color: var(--clr-dark); margin-bottom: 0.6rem;
  line-height: 1.35;
}
.card-desc {
  font-size: 0.98rem; color: #1e293b; /* At least 15px with improved contrast */
  line-height: 1.65; flex: 1;
}
.card-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: auto !important; /* Force push to bottom of equal-height cards */
  padding-top: 1.4rem;
  font-size: 0.88rem; font-weight: 700;
  color: var(--clr-blue);
  transition: var(--transition);
}
.card-link .arr { transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1); display: inline-block; }
.card-link:hover { color: #1d4ed8; }
.card-link:hover .arr { transform: translateX(6px); }

/* Card Number Accent - Subtle but visible */
.card-num {
  position: absolute; top: 1.5rem; right: 1.8rem;
  font-family: var(--font-display); font-size: 3.2rem; font-weight: 800;
  color: rgba(26, 86, 219, 0.06); line-height: 1; pointer-events: none;
  transition: color 0.3s ease;
}
.card:hover .card-num { color: rgba(26, 86, 219, 0.12); }

/* Card Badges */
.card-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: linear-gradient(135deg, var(--clr-blue) 0%, #1d4ed8 100%);
  color: var(--clr-white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(26, 86, 219, 0.25);
  z-index: 5;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Feature List inside cards */
.card-features { margin-top: 1rem; }
.card-features li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.94rem; color: #1e293b; /* Improved size and contrast */
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.card-features li:last-child { border-bottom: none; }
.card-features li::before {
  content: '\2713';
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 0.05rem;
  background: rgba(26,86,219,0.10); color: var(--clr-blue);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700;
}

/* Dark card variant */
.card-dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 2rem;
  transition: var(--transition);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.card-dark .card-title { color: var(--clr-white); }
.card-dark .card-desc  { color: rgba(255,255,255,0.55); }
.card-dark .card-link  { color: var(--clr-blue-light); }
.card-dark:hover {
  transform: translateY(-8px);
  background: rgba(26,86,219,0.10);
  border-color: rgba(26,86,219,0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.card-dark .icon-blue { background: rgba(26,86,219,0.22); }

/* ═══════════════════════════════════════════════════════════
   SOLUTION CARDS
   ═══════════════════════════════════════════════════════════ */
.solution-card {
  border: 1.5px solid var(--clr-border);
  border-radius: 24px;
  padding: 2.2rem 2rem 2rem;
  box-shadow: 0 10px 30px -10px rgba(7, 17, 31, 0.05), 0 1px 3px rgba(7, 17, 31, 0.02);
  transition: var(--transition);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  height: 100%;
}
.solution-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--clr-blue) 0%, var(--clr-red) 100%);
  z-index: 2;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
}
.solution-card:hover::before {
  height: 5px;
  filter: brightness(1.2);
}
.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(26,86,219,0.22);
  border-color: var(--clr-blue);
}
.solution-card .card-icon {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
}
.solution-card:hover .card-icon {
  transform: scale(1.08);
  box-shadow: 0 0 14px rgba(26,86,219,0.18);
}
.solution-card:hover .card-link .arr {
  transform: translateX(6px);
}
.solution-badge {
  display: inline-flex; flex-wrap: wrap; gap: 0.4rem;
  margin-top: auto; padding-top: 1.2rem;
}
.sol-tag {
  font-size: 0.82rem; font-weight: 700;
  padding: 0.25rem 0.75rem;
  background: rgba(26,86,219,0.08);
  color: #1e40af; border-radius: var(--radius-full);
  border: 1px solid rgba(26,86,219,0.20);
  transition: var(--transition);
}
.solution-card:hover .sol-tag {
  background: rgba(26,86,219,0.13);
  border-color: rgba(26,86,219,0.3);
}
.why-card .card-desc {
  font-size: 0.94rem !important;
  color: #1e293b !important;
}

/* ═══════════════════════════════════════════════════════════
   MOSAIC GRID & PHOTO-BASED VISUAL CARDS
   ═══════════════════════════════════════════════════════════ */
.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

/* Row 2 wide card spans 2 columns */
.mosaic-grid > .visual-wide {
  grid-column: span 2;
}

/* Visual Card Base */
.visual-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.2rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px -10px rgba(7, 17, 31, 0.12), 0 1px 3px rgba(7, 17, 31, 0.05);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1), 
              border-color 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  z-index: 1;
  text-decoration: none;
}

/* Red top accent line to preserve AB&D branding */
.visual-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-blue) 0%, var(--clr-red) 100%);
  z-index: 3;
  transition: height 0.3s ease, filter 0.3s ease;
}
.visual-card:hover::before {
  height: 5px;
  filter: brightness(1.2);
}

/* Subtle light sweep effect on hover */
.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.14), transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 2;
}
.visual-card:hover::after {
  transform: translateX(120%);
}

/* Hover micro-interactions */
.visual-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -15px rgba(26,86,219,0.25);
  border-color: rgba(26, 86, 219, 0.4);
}

/* Background image with cover sizing and transition for scaling */
.visual-card-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: var(--clr-dark);
}
.visual-card:hover .visual-card-bg {
  transform: scale(1.08);
}

/* Fallback color variations layered under images */
.visual-blue   .visual-card-bg { background-image: linear-gradient(135deg, rgba(7, 17, 31, 0.92) 0%, rgba(26, 86, 219, 0.55) 100%), var(--card-img, none); }
.visual-rose   .visual-card-bg { background-image: linear-gradient(135deg, rgba(7, 17, 31, 0.92) 0%, rgba(212, 33, 42, 0.55) 100%), var(--card-img, none); }
.visual-cyan   .visual-card-bg { background-image: linear-gradient(135deg, rgba(7, 17, 31, 0.92) 0%, rgba(6, 182, 212, 0.55) 100%), var(--card-img, none); }
.visual-emerald .visual-card-bg { background-image: linear-gradient(135deg, rgba(7, 17, 31, 0.92) 0%, rgba(16, 185, 129, 0.55) 100%), var(--card-img, none); }
.visual-violet .visual-card-bg { background-image: linear-gradient(135deg, rgba(7, 17, 31, 0.92) 0%, rgba(139, 92, 246, 0.55) 100%), var(--card-img, none); }
.visual-amber  .visual-card-bg { background-image: linear-gradient(135deg, rgba(7, 17, 31, 0.92) 0%, rgba(245, 158, 11, 0.55) 100%), var(--card-img, none); }
.visual-teal   .visual-card-bg { background-image: linear-gradient(135deg, rgba(7, 17, 31, 0.92) 0%, rgba(20, 184, 166, 0.55) 100%), var(--card-img, none); }
.visual-indigo .visual-card-bg { background-image: linear-gradient(135deg, rgba(7, 17, 31, 0.92) 0%, rgba(99, 102, 241, 0.55) 100%), var(--card-img, none); }

/* Double gradient pattern overlay (always overlaying the background image) */
.visual-card-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(37,99,235,0.25) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* Subtle tech-grid fallback watermark pattern overlay */
.visual-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: 
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 25px 25px;
  pointer-events: none;
  z-index: 1;
}

/* Make overlay slightly stronger on hover */
.visual-card:hover .visual-card-bg {
  filter: brightness(0.85) contrast(1.05);
}

/* Visual Badge (top-left) */
.visual-card-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--clr-white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 3;
  transition: background-color 0.35s ease, border-color 0.35s ease;
}
.visual-card:hover .visual-card-badge {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.35);
}

/* Visual Icon (top-right) */
.visual-card-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-size: 1.15rem;
  z-index: 3;
  transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.visual-card:hover .visual-card-icon {
  background: rgba(37, 99, 235, 0.25);
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.3);
}

/* Card Content Area */
.visual-card-content {
  position: relative;
  z-index: 3;
  margin-top: auto;
}
.visual-card-title {
  color: var(--clr-white);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.visual-card-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

/* Card Link CTA */
.visual-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--clr-white);
  transition: color 0.35s ease;
}
.visual-card-link .arr {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}
.visual-card:hover .visual-card-link {
  color: var(--clr-blue-light);
}
.visual-card:hover .visual-card-link .arr {
  transform: translateX(6px);
}

/* ═══════════════════════════════════════════════════════════
   INDUSTRY CARDS
   ═══════════════════════════════════════════════════════════ */
.industry-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.industry-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.3rem;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  text-align: center;
}
.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-blue);
  border-color: rgba(37,99,235,0.25);
}
.ind-icon {
  width: 48px; height: 48px;
  border-radius: 14px; margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.ind-title {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 700;
  color: var(--clr-dark); margin-bottom: 0.35rem;
}
.ind-desc { font-size: 0.8rem; color: var(--clr-muted); line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════
   PROCESS / TIMELINE
   ═══════════════════════════════════════════════════════════ */
.process-track {
  display: flex; gap: 0; position: relative;
}
.process-track::before {
  content: '';
  position: absolute; top: 2.2rem; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--clr-blue) 0%, rgba(37,99,235,0.1) 100%);
  z-index: 0;
}
.process-step {
  flex: 1; padding: 0 1.2rem; position: relative; z-index: 1;
  text-align: center;
}
.process-node {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--clr-blue);
  border: 4px solid var(--clr-white);
  box-shadow: 0 0 0 2px var(--clr-blue), 0 4px 14px rgba(37,99,235,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 800;
  color: var(--clr-white); margin: 0 auto 1.2rem;
  transition: var(--transition);
}
.process-step:hover .process-node {
  transform: scale(1.15);
  box-shadow: 0 0 0 3px var(--clr-blue), 0 8px 24px rgba(37,99,235,0.4);
}
.process-title {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--clr-dark); margin-bottom: 0.4rem;
}
.process-desc { font-size: 0.85rem; color: var(--clr-muted); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════
   ABOUT PREVIEW SECTION
   ═══════════════════════════════════════════════════════════ */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-wrap {
  background: linear-gradient(135deg, var(--clr-navy), var(--clr-dark));
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  min-height: 380px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.about-img-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(26,86,219,0.20) 0%, transparent 60%);
}
.about-metrics {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  position: relative; z-index: 1;
}
.about-metric {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  text-align: center;
}
.about-metric-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800; color: var(--clr-white); line-height: 1;
}
.about-metric-num span { color: var(--clr-blue-light); }
.about-metric-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 0.3rem; }

.about-floating-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--clr-blue);
  border-radius: var(--radius-md); padding: 1rem 1.3rem;
  box-shadow: var(--shadow-blue);
  color: var(--clr-white); font-size: 0.85rem; font-weight: 700;
  line-height: 1.4;
  z-index: 2;
}

.about-content .section-header { text-align: left; margin: 0 0 2rem; }
.strengths-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-top: 2rem; }
.strength-item {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.7rem 0.9rem;
  background: var(--clr-bg);
  border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 600; color: var(--clr-txt);
  border: 1px solid var(--clr-border);
  transition: var(--transition);
}
.strength-item:hover { border-color: var(--clr-blue); background: rgba(26,86,219,0.04); }
.strength-item span { font-size: 1rem; }

/* ═══════════════════════════════════════════════════════════
   PARTNER LOGOS
   ═══════════════════════════════════════════════════════════ */
.partners-section { padding: var(--section-pad) 0; }
.partner-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem;
}
.partner-logo {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.2rem 1rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
  cursor: default;
  min-height: 90px;
}
.partner-logo img {
  width: 44px; height: 44px;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.95;
}
.partner-logo:hover img { transform: scale(1.1); opacity: 1; }
.partner-logo-name {
  font-size: 0.7rem; font-weight: 600;
  color: var(--clr-muted);
  text-align: center;
  line-height: 1.2;
}
.partner-logo:hover {
  border-color: rgba(26,86,219,0.30);
  box-shadow: var(--shadow-blue);
  transform: translateY(-4px);
}
.partner-logo span {
  font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 800;
  color: var(--clr-muted);
  letter-spacing: -0.01em;
  text-align: center;
  transition: color 0.3s ease;
}
.partner-logo:hover span { color: var(--clr-blue); }

/* ═══════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--clr-dark) 0%, var(--clr-navy) 60%, #0d2a50 100%);
  padding: 5rem 0; position: relative; overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(26,86,219,0.20) 0%, transparent 70%);
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { color: var(--clr-white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.6); max-width: 560px; margin: 0 auto 2.5rem; font-size: 1.05rem; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════
   PRODUCTS PAGE — Filter & Grid
   ═══════════════════════════════════════════════════════════ */
.search-bar-wrap {
  max-width: 560px; margin: 0 auto 2rem;
  position: relative;
}
.search-bar {
  width: 100%; padding: 0.9rem 3rem 0.9rem 1.3rem;
  border: 2px solid var(--clr-border); border-radius: var(--radius-full);
  font-size: 0.95rem; font-family: inherit;
  background: var(--clr-white);
  transition: var(--transition);
  outline: none; color: var(--clr-txt);
}
.search-bar:focus {
  border-color: var(--clr-blue);
  box-shadow: 0 0 0 4px rgba(26,86,219,0.10);
}
.search-bar-icon {
  position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  color: var(--clr-muted); pointer-events: none;
}

.filter-chips {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  justify-content: center; margin-bottom: 2.5rem;
}
.filter-chip {
  padding: 0.5rem 1.2rem;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-full);
  font-size: 0.85rem; font-weight: 600;
  color: var(--clr-muted);
  background: var(--clr-white);
  cursor: pointer; transition: var(--transition);
}
.filter-chip:hover { border-color: var(--clr-blue); color: var(--clr-blue); }
.filter-chip.active {
  background: var(--clr-blue); color: var(--clr-white);
  border-color: var(--clr-blue);
  box-shadow: 0 4px 14px rgba(26,86,219,0.35);
}

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.product-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.3rem;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-blue);
  border-color: rgba(26,86,219,0.25);
}
.product-logo-wrap {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--clr-bg), var(--clr-bg-alt));
  border: 1px solid var(--clr-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin: 0 auto 0.9rem;
  transition: var(--transition);
}
.product-card:hover .product-logo-wrap {
  background: linear-gradient(135deg, rgba(26,86,219,0.08), rgba(26,86,219,0.03));
  border-color: rgba(26,86,219,0.2);
}
.product-logo-wrap img {
  width: 40px; height: 40px;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.95;
}
.product-card:hover .product-logo-wrap img {
  transform: scale(1.1);
  opacity: 1;
}
.product-name {
  font-family: var(--font-display);
  font-size: 0.93rem; font-weight: 700; color: var(--clr-dark);
  margin-bottom: 0.3rem;
}
.product-cat {
  font-size: 0.75rem; font-weight: 600;
  color: var(--clr-blue); background: rgba(26,86,219,0.08);
  padding: 0.2rem 0.6rem; border-radius: var(--radius-full);
  border: 1px solid rgba(26,86,219,0.15); margin-bottom: 1rem;
}
.product-enquire {
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 0.82rem; font-weight: 700;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-full);
  color: var(--clr-muted);
  background: transparent; cursor: pointer;
  transition: var(--transition); font-family: inherit;
}
.product-enquire:hover {
  border-color: var(--clr-blue); color: var(--clr-blue);
  background: rgba(26,86,219,0.04);
}

/* Why Choose Cards */
.why-card {
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border);
  border-radius: 24px;
  padding: 2.2rem 2rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(26, 86, 219, 0.04) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.8;
  pointer-events: none;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -15px rgba(26, 86, 219, 0.15);
  border-color: var(--clr-blue);
}
.why-icon {
  width: 56px; height: 56px;
  border-radius: 16px; margin: 0 auto 1.2rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.why-card:hover .why-icon {
  transform: scale(1.08);
}
.why-stat {
  margin-top: 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--clr-blue);
  background: rgba(26, 86, 219, 0.08);
  border: 1px solid rgba(26, 86, 219, 0.15);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════ */
.contact-layout {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3.5rem; align-items: start;
}
.contact-form-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-label {
  display: block; font-size: 0.85rem; font-weight: 700;
  color: var(--clr-txt); margin-bottom: 0.45rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem; font-family: inherit;
  color: var(--clr-txt); background: var(--clr-bg);
  transition: var(--transition); outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--clr-blue);
  background: var(--clr-white);
  box-shadow: 0 0 0 4px rgba(26,86,219,0.10);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem;
}
.form-submit {
  width: 100%;
  padding: 0.9rem;
  font-size: 1rem; font-weight: 700; font-family: inherit;
  background: var(--clr-blue); color: var(--clr-white);
  border: none; border-radius: var(--radius-full);
  cursor: pointer; transition: var(--transition);
  box-shadow: 0 4px 20px rgba(26,86,219,0.35);
}
.form-submit:hover { background: var(--clr-blue-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(26,86,219,0.45); }

.contact-info-panel > * + * { margin-top: 1.5rem; }
.contact-info-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow-blue); border-color: rgba(37,99,235,0.2); }
.contact-ic-icon {
  width: 46px; height: 46px;
  border-radius: 13px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.contact-ic-title { font-size: 0.8rem; font-weight: 700; color: var(--clr-muted); margin-bottom: 0.25rem; letter-spacing: 0.05em; text-transform: uppercase; }
.contact-ic-val   { font-size: 0.95rem; font-weight: 600; color: var(--clr-dark); }

.map-placeholder {
  height: 220px;
  background: linear-gradient(135deg, var(--clr-navy), var(--clr-dark));
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); gap: 0.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative; overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(26,86,219,0.18), transparent 50%),
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: auto, 25px 25px, 25px 25px;
}
.map-pin { font-size: 2.5rem; position: relative; z-index: 1; }
.map-text { position: relative; z-index: 1; font-size: 0.85rem; font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE SECTIONS
   ═══════════════════════════════════════════════════════════ */
.about-who-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.strength-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.strength-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-xs);
  transition: var(--transition); text-align: center;
}
.strength-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-blue); border-color: rgba(37,99,235,0.25);
}
.strength-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  color: var(--clr-blue); margin-bottom: 0.2rem;
}
.strength-label { font-size: 0.85rem; font-weight: 600; color: var(--clr-muted); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--clr-dark);
  padding: 4.5rem 0 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(194,30,37,0.4), transparent);
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-logo {
  display: flex; align-items: center; gap: 0.7rem;
}
.footer-logo-mark {
  width: 38px; height: 38px; background: var(--clr-blue); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: var(--clr-white);
}
.footer-logo-name {
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 800; color: var(--clr-white);
}
.footer-brand-desc { font-size: 0.87rem; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-display); font-size: 0.88rem; font-weight: 800;
  color: var(--clr-white); letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 1.2rem; padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.87rem; color: rgba(255,255,255,0.45); transition: color 0.25s ease;
  display: flex; align-items: center; gap: 0.5rem;
}
.footer-col ul li a:hover { color: var(--clr-white); }
.footer-col ul li a::before {
  content: '›'; font-size: 1rem; color: var(--clr-blue); flex-shrink: 0;
}
.footer-contact-row {
  display: flex; align-items: flex-start; gap: 0.7rem;
  font-size: 0.87rem; color: rgba(255,255,255,0.45);
  margin-bottom: 0.7rem;
}
.footer-contact-icon { color: var(--clr-blue); flex-shrink: 0; margin-top: 0.1rem; }
.footer-bottom {
  padding: 1.5rem 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.83rem; color: rgba(255,255,255,0.3); }
.footer-copy span { color: var(--clr-blue); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.83rem; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ═══════════════════════════════════════════════════════════
   PARTNERS PAGE
   ═══════════════════════════════════════════════════════════ */
.partner-category + .partner-category { margin-top: 3.5rem; }
.partner-cat-title {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: var(--clr-dark); margin-bottom: 1.2rem;
  padding-left: 1rem; border-left: 3px solid var(--clr-blue);
}
.partner-grid-lg { grid-template-columns: repeat(5, 1fr); }

/* ═══════════════════════════════════════════════════════════
   SOLUTION FILTER CHIPS
   ═══════════════════════════════════════════════════════════ */
.sol-filters {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  justify-content: center; margin-bottom: 3rem;
}

/* ═══════════════════════════════════════════════════════════
   INLINE REVEAL ANIMATION
   ═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
body.js-enabled .reveal {
  opacity: 0;
  transform: translateY(30px);
}
body.js-enabled .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Section view-all button row */
.section-footer { text-align: center; margin-top: 3rem; }
.section-footer-split {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 2.5rem;
}

/* Notification banner */
.info-note {
  background: rgba(37,99,235,0.06); border: 1px solid rgba(37,99,235,0.18);
  border-radius: var(--radius-md); padding: 1rem 1.4rem;
  font-size: 0.88rem; color: var(--clr-blue); font-weight: 600;
  text-align: center; margin-bottom: 2rem;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .mosaic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mosaic-grid > .visual-wide {
    grid-column: span 1;
  }

  .nav-menu, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { max-width: 500px; width: 100%; margin: 0 auto; animation: fadeIn 0.9s ease 0.2s both !important; }
  .hero-dashboard { max-width: 100%; width: 100%; box-sizing: border-box; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .page-hero h1 { margin-left: auto; margin-right: auto; }
  .page-hero p { margin-left: auto; margin-right: auto; }
  .page-hero-label { margin-left: auto; margin-right: auto; }
  .page-hero-actions { justify-content: center; }
  .page-hero-visual { max-width: 500px; width: 100%; margin: 0 auto; animation: fadeIn 0.9s ease 0.2s both !important; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-3 { display: flex; }
  .cards-grid-3 > * {
    flex: 0 0 calc((100% - 1.5rem) / 2);
    width: calc((100% - 1.5rem) / 2);
  }
  .cards-grid-4  { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .partner-grid  { grid-template-columns: repeat(4, 1fr); }
  .product-grid  { grid-template-columns: repeat(3, 1fr); }

  .about-split { grid-template-columns: 1fr; gap: 3rem; }
  .about-who-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .strength-cards { grid-template-columns: repeat(2, 1fr); }
  .process-track { flex-wrap: wrap; }
  .process-step  { min-width: 45%; margin-bottom: 2rem; }
  .process-track::before { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 640px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .mosaic-grid {
    grid-template-columns: 1fr;
  }
  .mosaic-grid > .visual-wide {
    grid-column: span 1;
  }

  :root { --section-pad: 3.5rem; }
  .hero { min-height: auto; padding: 3rem 0; }
  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-float-cards { grid-template-columns: 1fr; }
  .hero-float-card:nth-child(5) { grid-column: span 1; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item  { padding: 1.5rem 1rem; }
  .stat-num   { font-size: 1.8rem; }

  .cards-grid-3 > * {
    flex: 0 0 100%;
    width: 100%;
  }
  .cards-grid-4  { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-grid  { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .partner-grid-lg { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .partner-logo {
    padding: 0.9rem 0.5rem;
    min-height: 80px;
  }
  .partner-logo img {
    width: 38px;
    height: 38px;
  }
  .partner-logo-name {
    font-size: 0.68rem;
  }
  .product-grid  { grid-template-columns: repeat(2, 1fr); }
  /* Partners grid limit on mobile to prevent endless scrolling */
  .partner-category:not(.expanded) .partner-grid .partner-logo:nth-child(n+7) {
    display: none !important;
  }
  .partner-toggle-wrap {
    display: block !important;
  }

  /* Horizontal scrollable category filters for Products and Solutions on mobile */
  .filter-chips, .sol-filters {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    padding: 0.5rem 1.5rem !important;
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
    margin-bottom: 2rem !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
  }
  .filter-chips::-webkit-scrollbar, .sol-filters::-webkit-scrollbar {
    display: none !important;
  }
  .filter-chips .filter-chip, .sol-filters .filter-chip {
    flex: 0 0 auto !important;
  }

  /* Ultra compact portrait mobile grids styling (max-width: 480px) */
  @media (max-width: 480px) {
    
    .product-grid {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 0.8rem !important;
    }
    .product-card {
      padding: 1.1rem 0.6rem !important;
    }
    .product-name {
      font-size: 0.82rem !important;
    }
    .product-logo-wrap {
      width: 52px !important;
      height: 52px !important;
      border-radius: 12px !important;
      margin-bottom: 0.6rem !important;
    }
    .product-logo-wrap img {
      width: 32px !important;
      height: 32px !important;
    }
    .product-cat {
      font-size: 0.68rem !important;
      padding: 0.15rem 0.45rem !important;
    }
    .product-enquire {
      padding: 0.45rem 0.8rem !important;
      font-size: 0.76rem !important;
    }
  }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  .form-row { grid-template-columns: 1fr; }
  .about-metrics { grid-template-columns: 1fr 1fr; }
  .strength-cards { grid-template-columns: 1fr; }
  .process-step { min-width: 100%; }
  .section-footer-split { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; }
}

/* Utilities */
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.text-center { text-align: center; }
.text-blue { color: var(--clr-blue); }
.fw-800 { font-weight: 800; }
.hidden { display: none; }
