﻿/* ============================================================
   AL FALAK SOLUTIONS — main.css
   Merged from: styles.css + style-v2.css (.container only)
                + cloudmicrosoft2.css + stylev2.css
   cctv-v2.css removed (no classes used in any HTML page)
   style-v2.css removed (only .container was needed)
   Last updated: 2026-05-16
   ============================================================ */
/* ============================================================
   AL FALAK SOLUTIONS â€” Brand Stylesheet
   Colors: Deep Navy Â· Royal Blue Â· Silver Chrome
   Fonts: Exo 2 (headings) Â· Inter (body) Â· Rajdhani (logo)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Rajdhani:wght@500;600;700&display=swap');

:root {
  --navy-900: #f5f7fb;
  --navy-800: #ffffff;
  --navy-700: #f0f4f9;
  --navy-600: #e8eef6;
  --navy-500: #e0e8f0;

  --blue-700:  #1240a8;
  --blue-600:  #1a4fbe;
  --blue-500:  #2060d8;
  --blue-400:  #3b7ef4;
  --blue-300:  #6fa3ff;
  --blue-200:  #a0c2ff;
  --blue-glow: rgba(32,96,216,0.25);
  --blue-dim:  rgba(32,96,216,0.08);
  --blue-border: rgba(32,96,216,0.20);

  --silver-100: #eef1f8;
  --silver-200: #c8d2e8;
  --silver-300: #8c98b4;
  --silver-400: #5a647a;
  --chrome: linear-gradient(130deg, #c4cfe4 0%, #e8edf8 40%, #9baac4 70%, #d8e0f0 100%);

  --text-primary:   #1a2a47;
  --text-secondary: #5a6b8a;
  --text-muted:     #7a8aaa;

  --bg-primary:   var(--navy-900);
  --bg-secondary: var(--navy-800);
  --bg-card:      var(--navy-700);
  --bg-card2:     var(--navy-600);

  --border:     rgba(32,96,216,0.15);
  --border-sub: rgba(32,96,216,0.10);

  --shadow:      0 24px 80px rgba(0,0,0,0.08);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.06);
  --shadow-blue: 0 8px 32px rgba(32,96,216,0.20);

  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --ease:      cubic-bezier(0.4,0,0.2,1);
  --nav-h:     80px;
}

*, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color:inherit; text-decoration:none; }
ul { list-style:none; }
img { max-width:100%; display:block; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }

::-webkit-scrollbar { width:5px; }
::-webkit-scrollbar-track { background:var(--navy-600); }
::-webkit-scrollbar-thumb { background:var(--blue-400); border-radius:3px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NAVBAR
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.top-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--blue-700), var(--blue-400), var(--silver-200), var(--blue-400));
  position: fixed; top:0; left:0; right:0; z-index:1002;
}

.navbar {
  position: fixed;
  top: 3px; left:0; right:0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.nav-inner {
  max-width: 1360px; width:100%; margin:0 auto;
  padding: 0 24px;
  display: flex; align-items:center; justify-content:space-between; gap:12px;
}

/* Logo */
.nav-logo { display:flex; align-items:center; gap:10px; flex-shrink:0; }

.nav-logo .logo-img {
  height: 100px; width:auto; object-fit:contain;
  filter: drop-shadow(0 0 8px rgba(26,79,190,0.25));
}

.nav-logo .logo-text-wrap { display:flex; flex-direction:column; line-height:1.15; }

.nav-logo .logo-name {
  font-family:'Rajdhani',sans-serif;
  font-size: 24px; font-weight:800; letter-spacing:2px; text-transform:uppercase;
  background: linear-gradient(90deg, #1a3d8f 0%, #5a7bb8 50%, #2a5ab5 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}

.nav-logo .logo-tag {
  font-size: 9px; color:#5a7b9a;
  letter-spacing:0.5px; text-transform:none; font-weight:400;
}

/* Menu */
.nav-menu {
  display: flex; align-items:center; gap:2px;
  flex:1; justify-content:center;
}

.nav-item { position:relative; }



.nav-link {
  display: flex; align-items:center; gap:5px;
  padding: 8px 12px;
  font-size: 13.5px; font-weight:500; color:#3a4a67;
  border-radius:8px;
  transition: all 0.25s var(--ease);
  white-space:nowrap;
}

.nav-link:hover, .nav-item.active > .nav-link {
  color:var(--blue-500); background:rgba(32,96,216,0.12);
}

.nav-link .arrow { font-size:9px; transition:transform 0.25s; }
.nav-item:hover > .nav-link .arrow { transform:rotate(180deg); }

/* Dropdowns */
.dropdown, .sub-dropdown {
  position:absolute; top:calc(100% + 8px); left:0;
  min-width:246px;
  background: #f8fafe;
  border: 1px solid rgba(32,96,216,0.25);
  border-radius:var(--radius);
  padding:8px;
  opacity:0; visibility:hidden; transform:translateY(8px);
  transition:all 0.25s var(--ease);
  z-index:500;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.nav-item:hover > .dropdown,
.has-sub:hover > .sub-dropdown { opacity:1; visibility:visible; transform:translateY(0); }

.dropdown-item { position:relative; }

.dropdown-link {
  display:flex; align-items:center; justify-content:space-between;
  padding:9px 12px;
  font-size:13.5px; font-weight:500; color:#2a3a57;
  border-radius:8px; transition:all 0.2s; white-space:nowrap;
}

.dropdown-link:hover { color:var(--blue-500); background:rgba(32,96,216,0.12); }
.dropdown-link .arrow { font-size:10px; }
.sub-dropdown { top:-8px; left:100%; }

/* CTA */
.nav-cta { display:flex; align-items:center; gap:10px; flex-shrink:0; }

.nav-cta .btn-primary {
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 700;
  background: #3d5bd9;
  border-radius: 12px;
  letter-spacing: 0.3px;
  box-shadow: none;
  transition: background 0.25s ease, transform 0.2s ease;
}

.nav-cta .btn-primary:hover {
  background: #2f4ec4;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(61, 91, 217, 0.35);
}

.btn-primary {
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 22px;
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-400) 100%);
  color:#fff; font-family:'Inter',sans-serif; font-size:14px; font-weight:600;
  border-radius:8px; transition:all 0.3s var(--ease); border:none; cursor:pointer;
  letter-spacing:0.2px;
}

.btn-primary:hover {
  transform:translateY(-2px); box-shadow:var(--shadow-blue);
  background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-300) 100%);
}

.btn-outline {
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 22px;
  border: 1.5px solid var(--blue-border);
  color:var(--blue-300); font-size:14px; font-weight:500;
  border-radius:8px; transition:all 0.3s var(--ease); font-family:'Inter',sans-serif;
}

.btn-outline:hover {
  background:var(--blue-dim); border-color:var(--blue-400); transform:translateY(-2px);
}

.btn-lg { padding:14px 32px; font-size:15px; }

.btn-silver {
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 22px;
  background: linear-gradient(135deg, #9baac4, #e0e8f8, #8894ac);
  color:var(--navy-900); font-size:14px; font-weight:700;
  border-radius:8px; cursor:pointer; transition:all 0.3s;
}
.btn-silver:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(196,210,232,0.25); }

/* Hamburger */
.hamburger { display:none; flex-direction:column; gap:5px; padding:8px; cursor:pointer; }
.hamburger span { width:24px; height:2px; background:var(--blue-300); border-radius:2px; transition:all 0.3s; }
.hamburger.active span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity:0; }
.hamburger.active span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero {
  min-height:100vh; display:flex; flex-direction:column; align-items:center;
  padding-top:calc(var(--nav-h) + 3px);
  position:relative; overflow:hidden;
}

.hero-bg {
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse 60% 70% at 75% 35%, rgba(26,79,190,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 45% 55% at 15% 75%, rgba(26,79,190,0.08) 0%, transparent 55%),
    linear-gradient(135deg, #0f1e3a 0%, #1a2a4a 100%);
}

.hero-grid {
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(26,79,190,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,79,190,0.04) 1px, transparent 1px);
  background-size:60px 60px;
}

.hero-inner {
  position:relative;
  max-width:1320px; margin:0 auto; padding:80px 24px;
  display:grid; grid-template-columns:1.2fr 1fr; gap:60px; align-items:center; width:100%;
}

.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 16px;
  background:rgba(26,79,190,0.12); border:1px solid rgba(26,79,190,0.30);
  border-radius:100px;
  font-size:11px; font-weight:700; color:#4a7be8;
  letter-spacing:2.5px; text-transform:uppercase; margin-bottom:24px;
}

.hero-title {
  font-family:'Exo 2',sans-serif;
  font-size:clamp(38px,5vw,66px); font-weight:900;
  line-height:1.08; margin-bottom:24px; color:#f0f4f9;
}

.hero-title .blue { color:var(--blue-400); }
.hero-title .silver {
  background:var(--chrome);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}

.hero-desc {
  font-size:17px; font-weight:300; color:rgba(240,244,249,0.75);
  max-width:520px; margin-bottom:40px; line-height:1.85;
}

.hero-form-container {
  display:flex; align-items:flex-start; justify-content:flex-end;
}

.hero-form-card {
  background:#ffffff; border-radius:16px; padding:40px; width:100%; max-width:380px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.20);
  border: 1px solid #f0f4f9;
}

.hero-stats-section {
  position:relative; z-index:5; width:100%; background:linear-gradient(180deg, rgba(240,244,249,0.92) 0%, rgba(248,250,252,0.95) 100%);
  padding:48px 24px; margin-top:auto;
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(26,79,190,0.15);
}

.hero-stats { display:grid; grid-template-columns:repeat(4,1fr); gap:40px; max-width:1320px; margin:0 auto; }
.stat-item { display:flex; flex-direction:column; align-items:center; text-align:center; }
.stat-icon { font-size:40px; margin-bottom:12px; }
.stat-num {
  font-family:'Exo 2',sans-serif; font-size:36px; font-weight:800;
  color:#1a2a47; line-height:1; margin-bottom:8px;
}
.stat-label { font-size:13px; color:#4a5a7a; margin-top:4px; font-weight:600; letter-spacing:0.3px; }

/* Orbit */
.hero-visual { display:flex; justify-content:center; align-items:center; }

.orbit-wrapper { position:relative; width:400px; height:400px; }

.orbit-core {
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:110px; height:110px;
  background:radial-gradient(circle, rgba(59,126,244,0.25) 0%, transparent 70%);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}

.orbit-core img {
  width:88px; height:88px; object-fit:contain;
  filter:drop-shadow(0 0 20px rgba(59,126,244,0.7));
}

.orbit-ring {
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  border:1px solid var(--blue-border);
  border-radius:50%;
  animation:spin linear infinite;
}

.orbit-ring-1 { width:190px; height:190px; animation-duration:8s; }
.orbit-ring-2 { width:280px; height:280px; animation-duration:14s; animation-name:spin-r; border-style:dashed; border-color:rgba(196,210,232,0.2); }
.orbit-ring-3 { width:380px; height:380px; animation-duration:22s; }

.orbit-dot { position:absolute; width:10px; height:10px; background:var(--blue-400); border-radius:50%; top:-5px; left:calc(50% - 5px); box-shadow:0 0 12px var(--blue-400); }
.orbit-dot-s { position:absolute; width:8px; height:8px; background:var(--silver-200); border-radius:50%; top:-4px; left:calc(50% - 4px); box-shadow:0 0 8px rgba(200,210,232,0.5); }
.orbit-icon { position:absolute; top:-18px; left:calc(50% - 18px); width:36px; height:36px; background:var(--bg-card2); border:1px solid var(--blue-border); border-radius:8px; display:flex; align-items:center; justify-content:center; font-size:16px; }

@keyframes spin { to { transform:translate(-50%,-50%) rotate(360deg); } }
@keyframes spin-r { to { transform:translate(-50%,-50%) rotate(-360deg); } }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   COMMON SECTION STYLES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section { padding:96px 24px; }
.section-inner { max-width:1320px; margin:0 auto; }

.section-label {
  display:inline-flex; align-items:center; gap:8px;
  font-size:11px; font-weight:700; letter-spacing:2.5px;
  text-transform:uppercase; color:var(--blue-400); margin-bottom:14px;
}
.section-label::before { content:''; width:20px; height:2px; background:linear-gradient(90deg,var(--blue-400),var(--blue-300)); }

.section-title {
  font-family:'Exo 2',sans-serif;
  font-size:clamp(28px,4vw,48px); font-weight:800; line-height:1.15;
  color:var(--text-primary); margin-bottom:18px;
}

.section-desc {
  font-size:16.5px; color:var(--text-secondary);
  max-width:640px; line-height:1.85; margin-bottom:52px;
}

.text-blue { color:var(--blue-400); }
.text-silver { background:var(--chrome); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.text-center { text-align:center; }
.text-center .section-desc { margin-left:auto; margin-right:auto; }
.text-center .section-label { margin:0 auto 14px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CARDS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.card {
  background:var(--bg-card); border:1px solid var(--border-sub);
  border-radius:var(--radius-lg); padding:32px;
  transition:all 0.35s var(--ease); display:block;
}
.card:hover { border-color:var(--blue-border); transform:translateY(-6px); box-shadow:var(--shadow-card); }

.card-icon {
  width:56px; height:56px;
  background:var(--blue-dim); border:1px solid var(--blue-border);
  border-radius:14px; display:flex; align-items:center; justify-content:center;
  font-size:24px; margin-bottom:20px;
}

.card-title { font-family:'Exo 2',sans-serif; font-size:19px; font-weight:700; color:var(--text-primary); margin-bottom:12px; }
.card-desc { font-size:14.5px; color:var(--text-secondary); line-height:1.75; }
.card-link { display:inline-flex; align-items:center; gap:6px; margin-top:20px; font-size:14px; font-weight:600; color:var(--blue-400); transition:gap 0.2s; }
.card-link:hover { gap:10px; }

.grid-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:32px; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ABOUT
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.about-strip { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; }
.about-img-wrap { position:relative; }

.about-img-placeholder {
  width:100%; aspect-ratio:4/3;
  background:linear-gradient(135deg,var(--navy-700),var(--navy-600));
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:16px; border:1px solid var(--border); border-radius:var(--radius-xl); font-size:72px;
}

.exp-badge {
  position:absolute; bottom:24px; left:24px;
  background:linear-gradient(135deg,var(--blue-600),var(--blue-400));
  color:#fff; padding:16px 24px; border-radius:var(--radius);
  font-weight:700; box-shadow:var(--shadow-blue);
}
.exp-badge .num { font-family:'Exo 2',sans-serif; font-size:32px; display:block; line-height:1; }
.exp-badge .label { font-size:11px; text-transform:uppercase; letter-spacing:1.5px; margin-top:4px; opacity:.85; }

.about-checks { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin:28px 0; }
.check-item { display:flex; align-items:center; gap:10px; font-size:14px; color:var(--text-secondary); }
.check-item .check {
  width:22px; height:22px; background:var(--blue-dim); border:1px solid var(--blue-border);
  border-radius:6px; display:flex; align-items:center; justify-content:center;
  font-size:11px; color:var(--blue-400); flex-shrink:0;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   DOMAINS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.domains-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:16px; }

.domain-item {
  background:var(--bg-card); border:1px solid var(--border-sub);
  border-radius:var(--radius); padding:24px 16px; text-align:center;
  transition:all 0.3s var(--ease); cursor:default;
}
.domain-item:hover { border-color:var(--blue-border); background:var(--bg-card2); transform:translateY(-4px); }
.domain-icon { font-size:32px; margin-bottom:10px; }
.domain-name { font-size:13px; color:var(--text-secondary); font-weight:500; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TECH
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.tech-tabs { display:flex; gap:12px; margin-bottom:32px; flex-wrap:wrap; justify-content:center; }
.tech-tab { padding:10px 28px; border:1px solid var(--border-sub); border-radius:100px; font-size:14px; font-weight:600; color:var(--text-secondary); cursor:pointer; transition:all 0.25s; background:transparent; }
.tech-tab.active { border-color:var(--blue-500); color:#ffffff; background:var(--blue-500); }
.tech-tab:hover:not(.active) { border-color:var(--border); color:var(--text-secondary); background:var(--navy-700); }

.tech-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:12px; }
.tech-item { display:flex; align-items:center; gap:12px; background:var(--bg-card); border:1px solid var(--border-sub); border-radius:8px; padding:14px 16px; transition:all 0.3s; font-size:13px; color:var(--text-secondary); font-weight:500; }
.tech-item:hover { border-color:var(--blue-border); color:var(--blue-400); background:var(--navy-700); transform:translateY(-2px); }
.tech-item img { height:36px; width:36px; object-fit:contain; display:block; flex-shrink:0; }
.tech-item span { flex:1; }
.tech-item .tech-emoji { font-size:28px; margin-bottom:8px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   WHY US
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }

.why-card {
  background:var(--bg-card); border:1px solid var(--border-sub);
  border-radius:var(--radius-lg); padding:32px;
  transition:all 0.3s var(--ease); position:relative; overflow:hidden;
}
.why-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--blue-700),var(--blue-300));
  transform:scaleX(0); transform-origin:left; transition:transform 0.4s var(--ease);
}
.why-card:hover::before { transform:scaleX(1); }
.why-card:hover { border-color:var(--blue-border); transform:translateY(-4px); }
.why-icon { font-size:36px; margin-bottom:16px; }
.why-title { font-family:'Exo 2',sans-serif; font-size:18px; font-weight:700; color:var(--text-primary); margin-bottom:10px; }
.why-desc { font-size:14px; color:var(--text-secondary); line-height:1.7; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TESTIMONIALS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.testimonial-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.testimonial-card { background:var(--bg-card); border:1px solid var(--border-sub); border-radius:var(--radius-lg); padding:32px; }
.testimonial-stars { color:var(--blue-400); font-size:14px; margin-bottom:16px; }
.testimonial-text { font-size:15px; color:var(--text-secondary); line-height:1.8; font-style:italic; margin-bottom:20px; }
.testimonial-author { display:flex; align-items:center; gap:12px; }
.author-avatar { width:44px; height:44px; background:var(--blue-dim); border:1px solid var(--blue-border); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:18px; }
.author-name { font-size:15px; font-weight:600; color:var(--text-primary); }
.author-role { font-size:12px; color:var(--text-muted); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BLOG
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.blog-card { background:var(--bg-card); border:1px solid var(--border-sub); border-radius:var(--radius-lg); overflow:hidden; transition:all 0.3s var(--ease); display:block; }
.blog-card:hover { border-color:var(--blue-border); transform:translateY(-4px); }
.blog-img { width:100%; aspect-ratio:16/9; background:var(--bg-card2); display:flex; align-items:center; justify-content:center; font-size:48px; }
.blog-body { padding:24px; }
.blog-date { font-size:12px; color:var(--blue-400); font-weight:600; margin-bottom:10px; }
.blog-title { font-family:'Exo 2',sans-serif; font-size:18px; font-weight:700; color:var(--text-primary); margin-bottom:10px; line-height:1.4; }
.blog-excerpt { font-size:14px; color:var(--text-secondary); line-height:1.7; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FAQ
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.faq-list { max-width:800px; margin:0 auto; display:flex; flex-direction:column; gap:12px; }
.faq-item { background:var(--bg-card); border:1px solid var(--border-sub); border-radius:var(--radius); overflow:hidden; }
.faq-q { width:100%; display:flex; justify-content:space-between; align-items:center; padding:20px 24px; font-size:15px; font-weight:500; color:var(--text-primary); text-align:left; cursor:pointer; transition:color 0.2s; }
.faq-q:hover { color:var(--blue-300); }
.faq-q .icon { font-size:18px; color:var(--blue-400); transition:transform 0.3s; flex-shrink:0; }
.faq-item.open .faq-q .icon { transform:rotate(45deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height 0.4s var(--ease); }
.faq-item.open .faq-a { max-height:300px; }
.faq-a-inner { padding:0 24px 20px; font-size:14.5px; color:var(--text-secondary); line-height:1.75; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CTA BANNER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cta-banner {
  background:linear-gradient(135deg,var(--navy-700),var(--navy-600));
  border:1px solid var(--blue-border);
  border-radius:var(--radius-xl);
  padding:72px 48px; text-align:center; position:relative; overflow:hidden;
}
.cta-banner::before {
  content:''; position:absolute; top:-40%; left:50%; transform:translateX(-50%);
  width:600px; height:300px;
  background:radial-gradient(ellipse,rgba(32,96,216,0.08) 0%,transparent 70%);
  pointer-events:none;
}
.cta-title { font-family:'Exo 2',sans-serif; font-size:clamp(28px,4vw,48px); font-weight:800; color:var(--text-primary); margin-bottom:16px; }
.cta-desc { font-size:17px; color:var(--text-secondary); max-width:560px; margin:0 auto 40px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONTACT
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.contact-grid { display:grid; grid-template-columns:1fr 1.5fr; gap:60px; align-items:start; }
.contact-info { display:flex; flex-direction:column; gap:22px; }
.contact-card { background:var(--bg-card); border:1px solid var(--border-sub); border-radius:var(--radius); padding:22px; display:flex; gap:16px; align-items:flex-start; }
.contact-icon { width:44px; height:44px; background:var(--blue-dim); border:1px solid var(--blue-border); border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0; }
.contact-label { font-size:10.5px; color:var(--blue-400); font-weight:700; letter-spacing:1.5px; text-transform:uppercase; margin-bottom:4px; }
.contact-val { font-size:14px; color:var(--text-secondary); }
.contact-val a { color:var(--text-secondary); }
.contact-val a:hover { color:var(--blue-300); }

.form-wrap { background:var(--bg-card); border:1px solid var(--border-sub); border-radius:var(--radius-lg); padding:40px; }
.form-group { margin-bottom:20px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:20px; }

label { display:block; font-size:11.5px; font-weight:700; color:var(--text-secondary); margin-bottom:8px; text-transform:uppercase; letter-spacing:0.5px; }
input, select, textarea { width:100%; background:var(--navy-800); border:1px solid var(--border); border-radius:8px; padding:12px 16px; font-family:'Inter',sans-serif; font-size:14px; color:var(--text-primary); outline:none; transition:border-color 0.25s; }
input:focus, select:focus, textarea:focus { border-color:var(--blue-400); box-shadow:0 0 0 3px rgba(59,126,244,0.12); }
select option { background:var(--bg-card); }
textarea { resize:vertical; min-height:120px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PAGE HERO
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.page-hero {
  padding:calc(var(--nav-h) + 60px) 24px 60px;
  background:linear-gradient(135deg, #0a1e47 0%, #1a2f5a 100%);
  border-bottom:1px solid rgba(32,96,216,0.3);
  text-align:center; position:relative; overflow:hidden;
}
.page-hero::before {
  content:''; position:absolute; top:-50%; left:50%; transform:translateX(-50%);
  width:900px; height:450px;
  background:radial-gradient(ellipse,rgba(59,126,244,0.15) 0%,transparent 60%);
  pointer-events:none; z-index:0;
}
.page-hero::after {
  content:''; position:absolute; inset:0;
  background-image:linear-gradient(rgba(59,126,244,0.05) 1px,transparent 1px),linear-gradient(90deg,rgba(59,126,244,0.05) 1px,transparent 1px);
  background-size:60px 60px; pointer-events:none; z-index:0;
}
.page-hero-inner { position:relative; z-index:1; max-width:800px; margin:0 auto; }

.breadcrumb { display:flex; align-items:center; gap:8px; justify-content:center; font-size:13px; color:rgba(255,255,255,0.7); margin-bottom:16px; }
.breadcrumb a { color:rgba(255,255,255,0.7); }
.breadcrumb a:hover { color:#6fa3ff; }
.breadcrumb .sep { color:#6fa3ff; }

.page-title { font-family:'Exo 2',sans-serif; font-size:clamp(32px,5vw,58px); font-weight:800; color:#ffffff; margin-bottom:16px; }
.page-desc { font-size:17px; color:rgba(255,255,255,0.8); line-height:1.8; max-width:600px; margin:0 auto; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SERVICE DETAIL LAYOUT
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.service-layout { max-width:1320px; margin:0 auto; padding:80px 24px; display:grid; grid-template-columns:1fr 320px; gap:60px; }
.service-content h2 { font-family:'Exo 2',sans-serif; font-size:28px; font-weight:700; color:var(--text-primary); margin:40px 0 16px; }
.service-content h2:first-child { margin-top:0; }
.service-content p { color:var(--text-secondary); font-size:15.5px; line-height:1.8; margin-bottom:16px; }
.feature-list { display:flex; flex-direction:column; gap:12px; margin:24px 0; }
.feature-item { display:flex; gap:12px; align-items:flex-start; font-size:14.5px; color:var(--text-secondary); }
.feature-item::before { content:'â–¸'; color:var(--blue-400); font-size:12px; margin-top:3px; flex-shrink:0; }

.sidebar { display:flex; flex-direction:column; gap:20px; }
.sidebar-card { background:var(--bg-card); border:1px solid var(--border-sub); border-radius:var(--radius-lg); padding:24px; }
.sidebar-title { font-family:'Exo 2',sans-serif; font-size:16px; font-weight:700; color:var(--text-primary); margin-bottom:16px; padding-bottom:12px; border-bottom:1px solid var(--border-sub); }
.sidebar-links { display:flex; flex-direction:column; gap:6px; }
.sidebar-link { display:flex; align-items:center; justify-content:space-between; padding:9px 12px; border-radius:8px; font-size:13.5px; color:var(--text-secondary); transition:all 0.2s; }
.sidebar-link:hover, .sidebar-link.active { background:var(--blue-dim); color:var(--blue-300); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PORTFOLIO
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.portfolio-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.portfolio-item { background:var(--bg-card); border:1px solid var(--border-sub); border-radius:var(--radius-lg); overflow:hidden; transition:all 0.3s var(--ease); }
.portfolio-item:hover { border-color:var(--blue-border); transform:translateY(-4px); }
.portfolio-img { aspect-ratio:16/9; background:linear-gradient(135deg,var(--navy-700),var(--navy-600)); display:flex; align-items:center; justify-content:center; font-size:56px; }
.portfolio-info { padding:20px; }
.portfolio-title { font-size:15px; font-weight:600; color:var(--text-primary); margin-bottom:6px; }
.portfolio-tag { font-size:12px; color:var(--blue-400); font-weight:600; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TRAINING
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.course-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.course-card { background:var(--bg-card); border:1px solid var(--border-sub); border-radius:var(--radius); padding:24px; display:flex; gap:16px; align-items:flex-start; transition:all 0.3s; }
.course-card:hover { border-color:var(--blue-border); }
.course-icon { font-size:32px; flex-shrink:0; }
.course-title { font-size:15px; font-weight:600; color:var(--text-primary); margin-bottom:6px; }
.course-desc { font-size:13.5px; color:var(--text-secondary); line-height:1.6; }
.course-duration { font-size:12px; color:var(--blue-400); font-weight:600; margin-top:8px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CAREERS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.job-list { display:flex; flex-direction:column; gap:16px; }
.job-card { background:var(--bg-card); border:1px solid var(--border-sub); border-radius:var(--radius); padding:24px 28px; display:flex; justify-content:space-between; align-items:center; transition:all 0.3s; }
.job-card:hover { border-color:var(--blue-border); }
.job-title { font-size:17px; font-weight:600; color:var(--text-primary); margin-bottom:6px; }
.job-meta { display:flex; gap:16px; font-size:13px; color:var(--text-muted); }
.job-type { background:var(--blue-dim); color:var(--blue-300); padding:4px 12px; border-radius:100px; font-size:12px; font-weight:600; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PRODUCT
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.product-hero { background:linear-gradient(135deg,var(--navy-700),var(--navy-600)); border:1px solid var(--border); border-radius:var(--radius-xl); padding:56px; display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; margin-bottom:60px; }
.product-visual { aspect-ratio:4/3; background:var(--navy-700); border-radius:var(--radius-lg); display:flex; align-items:center; justify-content:center; font-size:80px; border:1px solid var(--border); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.footer { background:var(--navy-900); border-top:1px solid var(--border); padding:72px 24px 0; }

.footer-inner { max-width:1320px; margin:0 auto; display:grid; grid-template-columns:2fr 1fr 1fr 1.2fr; gap:48px; padding-bottom:48px; }

.footer-logo-wrap { display:flex; align-items:center; gap:10px; margin-bottom:16px; }
.footer-logo-wrap img { height:85px; width:auto; object-fit:contain; filter:drop-shadow(0 0 6px rgba(26,79,190,0.20)); }
.footer-logo-wrap .fn { font-family:'Rajdhani',sans-serif; font-size:15px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; background:linear-gradient(90deg,#1a3d8f,#5a7bb8,#2a5ab5); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.footer-logo-wrap .ft { font-size:9px; color:#6a8ab0; letter-spacing:0.5px; text-transform:none; display:block; margin-top:2px; }

.footer-desc { font-size:14px; color:var(--text-muted); line-height:1.8; margin:0 0 24px; max-width:300px; }
.footer-social { display:flex; gap:10px; }
.social-btn { width:38px; height:38px; background:var(--bg-card); border:1px solid var(--border-sub); border-radius:8px; display:flex; align-items:center; justify-content:center; font-size:14px; color:var(--text-muted); transition:all 0.25s; text-decoration:none; }
.social-btn:hover { border-color:var(--blue-border); color:var(--blue-300); background:var(--blue-dim); }

.footer-col-title { font-size:11.5px; font-weight:700; color:var(--text-primary); letter-spacing:2px; text-transform:uppercase; margin-bottom:20px; }
.footer-links { display:flex; flex-direction:column; gap:10px; }
.footer-links a { font-size:14px; color:var(--text-muted); transition:color 0.2s; }
.footer-links a:hover { color:var(--blue-300); }

.footer-contact-item { display:flex; gap:10px; align-items:flex-start; margin-bottom:14px; }
.footer-contact-item .fi { font-size:14px; color:var(--blue-400); margin-top:2px; }
.footer-contact-item span { font-size:13.5px; color:var(--text-muted); line-height:1.6; }
.footer-contact-item a { color:var(--text-muted); }
.footer-contact-item a:hover { color:var(--blue-300); }

.partner-link { display:flex; align-items:center; gap:10px; text-decoration:none; transition:all 0.2s; }
.partner-logo { height:32px; width:auto; display:block; }
.partner-link span { font-size:14px; color:var(--text-muted); transition:color 0.2s; }
.partner-link:hover span { color:var(--blue-300); }

.footer-bottom { border-top:1px solid var(--border-sub); padding:20px 0; max-width:1320px; margin:0 auto; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }
.footer-bottom p { font-size:13px; color:var(--text-muted); }
.footer-bottom-links { display:flex; gap:20px; }
.footer-bottom-links a { font-size:13px; color:var(--text-muted); }
.footer-bottom-links a:hover { color:var(--blue-300); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   UTILITIES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.divider { border:none; border-top:1px solid var(--border-sub); margin:0; }
.hidden { display:none !important; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width:1200px) {
  .nav-inner { padding:0 20px; }
  .section-inner { max-width:1200px; }
}

@media (max-width:1100px) {
  :root { --nav-h:76px; }
  .nav-logo .logo-img { height:80px; }
  .nav-logo .logo-name { font-size:20px; letter-spacing:1.2px; }
  .nav-logo .logo-tag { font-size:8px; }
  
  .grid-3,.services-grid,.why-grid { grid-template-columns:repeat(2,1fr); }
  .grid-4 { grid-template-columns:repeat(3,1fr); }
  .tech-grid { grid-template-columns:repeat(4,1fr); }
  .domains-grid { grid-template-columns:repeat(4,1fr); }
  .footer-inner { grid-template-columns:1fr 1fr; }
  
  .section { padding:48px 20px; }
  .hero-form-container { padding:20px; }
  .page-hero h1 { font-size:32px; }
}

@media (max-width:900px) {
  :root { --nav-h:72px; }
  .nav-logo .logo-img { height:64px; }
  .nav-logo .logo-name { font-size:18px; letter-spacing:1px; }
  
  .hero-inner { grid-template-columns:1fr; }
  .hero-content { text-align:center; }
  .hero-title { font-size:28px; line-height:1.4; }
  .hero-desc { font-size:15px; }
  .hero-stats { grid-template-columns:repeat(2,1fr); gap:24px; }
  .orbit-wrapper { width:280px; height:280px; }
  .orbit-ring-1 { width:140px; height:140px; }
  .orbit-ring-2 { width:200px; height:200px; }
  .orbit-ring-3 { width:270px; height:270px; }
  .orbit-core img { width:64px; height:64px; }
  
  .about-strip,.contact-grid { grid-template-columns:1fr; }
  .service-layout { grid-template-columns:1fr; }
  .portfolio-grid,.blog-grid { grid-template-columns:repeat(2,1fr); }
  .testimonial-grid { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .product-hero { grid-template-columns:1fr; }
  
  .tech-tabs { gap:8px; }
  .tech-tab { padding:9px 20px; font-size:13px; }
  .tech-grid { grid-template-columns:repeat(3,1fr); gap:10px; }
  .tech-item { padding:12px 14px; font-size:12px; gap:10px; }
  .tech-item img { height:32px; width:32px; }
  
  .section-title { font-size:32px; }
  .section-desc { font-size:15px; }
}

@media (max-width:768px) {
  :root { --nav-h:64px; }
  
  /* Navigation â€” Mobile Logo */
  .nav-logo { gap:8px; }
  .nav-logo .logo-img { height:46px; }
  .nav-logo .logo-text-wrap { display:flex; }   /* keep company name visible */
  .nav-logo .logo-name { font-size:15px; letter-spacing:1px; }
  .nav-logo .logo-tag { display:none; }          /* hide tagline only */
  
  .nav-menu { display:none; flex-direction:column; position:fixed; top:var(--nav-h); left:0; right:0; background:var(--navy-800); padding:16px; border-bottom:1px solid var(--border); max-height:calc(100vh - var(--nav-h)); overflow-y:auto; }
  .nav-menu.open { display:flex; }
  .nav-item { width:100%; }
  .nav-link { width:100%; padding:12px 16px; border-radius:8px; font-size:14px; }
  .dropdown,.sub-dropdown { position:static; opacity:1; visibility:visible; transform:none; box-shadow:none; border:none; background:transparent; padding:0 0 0 16px; display:none; }
  .nav-item.open > .dropdown,.dropdown-item.open > .sub-dropdown { display:block; }
  .nav-cta { display:none; }
  .hamburger { display:flex; }
  
  /* Layout */
  .grid-4,.tech-grid,.domains-grid { grid-template-columns:repeat(2,1fr); }
  .grid-3,.services-grid,.why-grid,.portfolio-grid,.blog-grid { grid-template-columns:1fr; }
  .about-checks { grid-template-columns:1fr; }
  .footer-inner { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; text-align:center; }
  
  /* Sections */
  .section { padding:40px 16px; }
  .section-title { font-size:26px; }
  .section-label { font-size:12px; }
  .section-desc { font-size:14px; }
  
  /* Hero */
  .page-hero { padding:80px 16px 40px; }
  .page-hero h1 { font-size:24px; }
  .page-hero p { font-size:14px; }
  .hero-form-container { padding:16px; border-radius:12px; }
  .hero-form-card { padding:20px; }
  .hero-form-card h3 { font-size:18px; }
  .hero-actions { flex-direction:column; }
  .hero-actions .btn-primary,.hero-actions .btn-outline { width:100%; justify-content:center; }
  .hero-stats { grid-template-columns:1fr; gap:16px; }
  .stat-item { flex-direction:column; gap:8px; }
  .stat-num { font-size:20px; }
  
  /* Tech */
  .tech-tabs { gap:6px; margin-bottom:24px; }
  .tech-tab { padding:8px 16px; font-size:12px; }
  .tech-grid { grid-template-columns:repeat(2,1fr); gap:8px; }
  .tech-item { padding:10px 12px; font-size:11px; gap:8px; }
  .tech-item img { height:28px; width:28px; }
  
  /* Forms */
  .form-row { grid-template-columns:1fr; }
  .course-grid { grid-template-columns:1fr; }
  .job-card { flex-direction:column; align-items:flex-start; gap:12px; }
  
  /* Cards and containers */
  .card { padding:16px; border-radius:12px; }
  .btn-primary,.btn-outline { padding:10px 18px; font-size:13px; }
  .cta-banner { padding:40px 20px; border-radius:16px; }
  
  /* Contact */
  .contact-card { padding:20px; }
  .contact-card h3 { font-size:16px; }
  
  /* Footer */
  .footer-col-title { font-size:10px; margin-bottom:16px; }
  .footer-links a { font-size:13px; }
  .footer-contact-item { margin-bottom:12px; }
  .footer-contact-item span { font-size:12px; }
  .partner-logo { height:28px; }
}

@media (max-width:600px) {
  :root { --nav-h:60px; }
  
  /* Navbar */
  .nav-logo .logo-img { height:40px; }
  .nav-inner { padding:0 12px; gap:8px; }
  
  /* Typography */
  body { font-size:15px; }
  h1 { font-size:20px; }
  h2 { font-size:20px; }
  h3 { font-size:16px; }
  
  .page-hero { padding:70px 12px 30px; }
  .page-hero h1 { font-size:20px; margin-bottom:16px; }
  .page-hero p { font-size:13px; }
  
  .section { padding:32px 12px; }
  .section-title { font-size:22px; margin-bottom:16px; }
  .section-desc { font-size:13px; }
  
  /* Hero form */
  .hero-form-card { padding:16px; }
  .hero-form-card h3 { font-size:16px; margin-bottom:16px; }
  .hero-form-card input,
  .hero-form-card select { padding:10px 12px; font-size:13px; }
  .hero-form-card button { padding:10px 16px; font-size:12px; }
  
  /* Tech section */
  .tech-tabs { flex-wrap:wrap; gap:6px; }
  .tech-tab { padding:7px 14px; font-size:11px; }
  .tech-grid { grid-template-columns:repeat(2,1fr); gap:8px; }
  .tech-item { padding:8px 10px; font-size:10px; }
  .tech-item img { height:24px; width:24px; }
  
  /* Cards */
  .card { padding:14px; }
  .btn-primary { padding:9px 16px; font-size:12px; }
  
  /* Contact form */
  .contact-card { padding:16px; }
  .contact-card h3 { font-size:14px; margin-bottom:12px; }
  
  /* Grid cleanup */
  .grid-2,.grid-3,.grid-4,.services-grid { grid-template-columns:1fr; gap:12px; }
  
  /* Footer */
  .footer-col-title { font-size:9px; margin-bottom:12px; }
  .footer-links a { font-size:12px; }
  .footer-bottom-links { gap:12px; }
  .footer-bottom-links a { font-size:12px; }
  .partner-logo { height:24px; }
}

@media (max-width:480px) {
  :root { --nav-h:56px; }
  
  /* Navbar cleanup */
  .nav-inner { padding:0 10px; }
  .nav-logo .logo-img { height:36px; }
  .nav-link { padding:10px 8px; font-size:12px; }
  .dropdown-link { padding:8px 10px; font-size:12px; }
  
  /* Full width hero */
  .hero-inner { padding:20px 12px; }
  .page-hero { padding:60px 10px 25px; }
  .page-hero h1 { font-size:18px; }
  .page-hero p { font-size:12px; }
  
  .hero-form-card { padding:14px; }
  .hero-form-card h3 { font-size:14px; margin-bottom:12px; }
  .hero-form-card input,
  .hero-form-card select { padding:8px 10px; font-size:12px; border-radius:6px; }
  .hero-form-card button { padding:8px 14px; font-size:11px; }
  
  /* Sections */
  .section { padding:28px 10px; }
  .section-title { font-size:18px; margin-bottom:12px; }
  .section-desc { font-size:12px; }
  
  /* Tech */
  .tech-tab { padding:6px 12px; font-size:10px; }
  .tech-grid { grid-template-columns:1fr; gap:6px; }
  .tech-item { padding:8px; font-size:9px; }
  .tech-item img { height:24px; width:24px; }
  
  .stat-item { gap:6px; }
  .stat-icon { font-size:24px; }
  .stat-num { font-size:18px; }
  
  /* Buttons */
  .btn-primary { width:100%; padding:10px 12px; font-size:11px; }
  
  /* Cards */
  .card { padding:12px; }
  
  /* Contact */
  .contact-card { padding:14px; }
  .contact-card h3 { font-size:13px; }
  
  /* Footer */
  .footer-col-title { font-size:8px; margin-bottom:10px; letter-spacing:1px; }
  .footer-links a { font-size:11px; }
  .footer-contact-item { margin-bottom:10px; }
  .footer-contact-item span { font-size:11px; }
  .footer-bottom p { font-size:11px; }
}

/* Animations */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
.animate-fadeup { animation:fadeUp 0.7s var(--ease) forwards; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   WHATSAPP POPUP
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  cursor: pointer;
  z-index: 999;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.wa-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
}
.wa-float svg { width: 34px; height: 34px; fill: currentColor; }

.wa-popup {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 340px;
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transform-origin: bottom right;
  transition: all 0.3s var(--ease);
  overflow: hidden;
}
.wa-popup.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.wa-popup-header {
  background: #095e54;
  color: #fff;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-popup-header img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  padding: 4px;
}
.wa-popup-header-info h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
  font-family: 'Exo 2', sans-serif;
  color: #fff;
}
.wa-popup-header-info p {
  font-size: 12px;
  opacity: 0.8;
  margin: 0;
  color: #fff;
}
.wa-popup-close {
  margin-left: auto;
  font-size: 24px;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
  padding: 4px;
}
.wa-popup-close:hover { opacity: 1; }
.wa-popup-body {
  padding: 24px 20px;
  background-color: #efeae2;
  min-height: 120px;
}
.wa-message {
  background: #fff;
  padding: 12px 16px;
  border-radius: 0 12px 12px 12px;
  font-size: 14px;
  color: #111;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  display: inline-block;
  position: relative;
  line-height: 1.5;
}
.wa-message::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  border-top: 10px solid #fff;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.wa-popup-footer {
  padding: 16px;
  background: #fff;
  text-align: center;
}
.wa-start-chat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s;
  width: 100%;
}
.wa-start-chat:hover { background: #1ebc5c; color: #fff; }
.wa-start-chat svg { width: 18px; height: 18px; fill: currentColor; }

@media (max-width: 600px) {
  .wa-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .wa-float svg { width: 28px; height: 28px; }
  .wa-popup { width: 300px; bottom: 80px; right: 16px; }
}

/* ═══════════════════════════════════
   CONTAINER (from style-v2.css)
═══════════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ═══════════════════════════════════
   CLOUD MICROSOFT 365 PAGE (cm- prefix)
═══════════════════════════════════ */
/* cloudmicrosoft2.css â€” Cloud & Microsoft 365 Solutions Page */

/* â”€â”€â”€ CSS Variables â”€â”€â”€ */
:root {
  --cm-primary:   #0A58CA;
  --cm-dark:      #020d2e;
  --cm-navy:      #031535;
  --cm-light-bg:  #F8F9FA;
  --cm-white:     #ffffff;
  --cm-text-dark: #1a2a47;
  --cm-text-gray: #5a6b8a;
  --cm-border:    #e8eef6;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cm-hero {
  position: relative;
  background-color: var(--cm-dark);
  background-image: url('images/V3/digital-hero.jpg');
  background-size: cover;
  background-position: center right;
  padding: calc(var(--nav-h) + 3px + 60px) 0 60px;
  color: var(--cm-white);
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: flex-start;
}

.cm-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2, 13, 46, 0.99) 0%,
    rgba(2, 13, 46, 0.97) 25%,
    rgba(2, 13, 46, 0.80) 40%,
    rgba(2, 13, 46, 0.30) 55%,
    rgba(2, 13, 46, 0.00) 70%
  );
  z-index: 1;
}

.cm-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.cm-hero-content {
  max-width: 520px;
}

.cm-breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.70);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.cm-breadcrumb span { color: rgba(255,255,255,0.45); }

.cm-hero-title {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 14px;
  font-family: 'Outfit', sans-serif;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.cm-hero-subtitle {
  font-size: 17px;
  font-weight: 600;
  color: #60a5fa;
  margin-bottom: 16px;
  letter-spacing: 0.2px;
}

.cm-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 0;
}

/* Hero Feature Icons Row */
.cm-hero-features {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 28px;
}

.cm-hero-feature {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex: 1;
  position: relative;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

.cm-hero-feature:first-child { padding-left: 0; }
.cm-hero-feature:last-child  { padding-right: 0; }

.cm-hero-feature:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}

.cm-hero-feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #93c5fd;
  flex-shrink: 0;
  background: rgba(10, 88, 202, 0.2);
  border: 1px solid rgba(10, 88, 202, 0.4);
  border-radius: 12px;
}

.cm-hero-feature-text {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ABOUT / CONTENT SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cm-about {
  padding: 90px 0;
  background: var(--cm-white);
}

.cm-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.cm-about-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.10);
  position: relative;
}

.cm-about-image img {
  width: 100%;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

.cm-about-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cm-primary);
  margin-bottom: 14px;
  display: block;
}

.cm-about-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--cm-text-dark);
  line-height: 1.2;
  margin-bottom: 18px;
  font-family: 'Outfit', sans-serif;
}

.cm-about-desc {
  font-size: 15px;
  color: var(--cm-text-gray);
  line-height: 1.8;
  margin-bottom: 28px;
}

.cm-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cm-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--cm-text-dark);
  line-height: 1.5;
}

.cm-checklist li .cm-check-icon {
  width: 22px;
  height: 22px;
  background: rgba(10, 88, 202, 0.10);
  border: 1px solid rgba(10, 88, 202, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cm-primary);
  flex-shrink: 0;
  margin-top: 1px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SERVICES SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cm-services {
  padding: 90px 0;
  background: var(--cm-light-bg);
  text-align: center;
}

.cm-section-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--cm-text-dark);
  margin-bottom: 14px;
  font-family: 'Outfit', sans-serif;
  position: relative;
  padding-bottom: 16px;
  display: inline-block;
}

.cm-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--cm-primary);
  border-radius: 3px;
}

.cm-section-desc {
  font-size: 16px;
  color: var(--cm-text-gray);
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.cm-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.cm-service-card {
  background: var(--cm-white);
  padding: 28px 22px;
  border-radius: 14px;
  border: 1px solid var(--cm-border);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.cm-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  border-color: rgba(10,88,202,0.25);
}

.cm-service-icon {
  width: 52px;
  height: 52px;
  background: rgba(10, 88, 202, 0.07);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cm-primary);
  flex-shrink: 0;
}

.cm-service-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--cm-text-dark);
  line-height: 1.3;
  margin: 0;
}

.cm-service-desc {
  font-size: 13px;
  color: var(--cm-text-gray);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.cm-service-link {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--cm-primary);
  text-decoration: none;
  transition: transform 0.2s;
  width: fit-content;
  margin-top: 4px;
}

.cm-service-link:hover { transform: translateX(4px); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   WHY CHOOSE SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cm-why {
  padding: 80px 0;
  background: var(--cm-navy);
  color: var(--cm-white);
  text-align: center;
}

.cm-why .cm-section-title {
  color: var(--cm-white);
}

.cm-why .cm-section-title::after {
  background: #60a5fa;
}

.cm-why-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 50px;
}

.cm-why-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 32px 20px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.cm-why-item:hover {
  background: rgba(10,88,202,0.15);
  border-color: rgba(10,88,202,0.3);
  transform: translateY(-4px);
}

.cm-why-icon {
  width: 60px;
  height: 60px;
  background: rgba(10, 88, 202, 0.2);
  border: 1px solid rgba(10, 88, 202, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #93c5fd;
}

.cm-why-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--cm-white);
  margin: 0;
}

.cm-why-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TECH PARTNERS SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cm-partners {
  padding: 70px 0;
  background: var(--cm-white);
  text-align: center;
}

.cm-partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.cm-partner-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1.5px solid var(--cm-border);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--cm-text-dark);
  transition: all 0.25s;
  background: #fff;
  min-width: 160px;
  justify-content: center;
}

.cm-partner-badge:hover {
  border-color: var(--cm-primary);
  color: var(--cm-primary);
  box-shadow: 0 8px 24px rgba(10,88,202,0.08);
  transform: translateY(-2px);
}

.cm-partner-badge svg {
  flex-shrink: 0;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CTA SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cm-cta {
  padding: 80px 0;
  background: var(--cm-light-bg);
}

.cm-cta-box {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(3, 21, 53, 0.35);
  background-image: url('images/V3/cloudmicrosoft-hero.jpg');
  background-size: cover;
  background-position: right center;
  min-height: 260px;
  display: flex;
  align-items: center;
}

.cm-cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2, 13, 46, 0.98) 0%,
    rgba(2, 13, 46, 0.92) 35%,
    rgba(2, 13, 46, 0.55) 60%,
    rgba(2, 13, 46, 0.00) 100%
  );
  z-index: 1;
  border-radius: 20px;
}

.cm-cta-content {
  padding: 50px 60px;
  position: relative;
  z-index: 2;
  color: var(--cm-white);
  max-width: 560px;
}

.cm-cta-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}

.cm-cta-icon {
  width: 64px;
  height: 64px;
  background: var(--cm-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(10, 88, 202, 0.5);
}

.cm-cta-title {
  font-size: 34px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  line-height: 1.25;
}

.cm-cta-title span { color: #60a5fa; }

.cm-cta-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.80);
  margin-bottom: 32px;
  line-height: 1.65;
}

.cm-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--cm-white);
  color: var(--cm-navy);
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cm-cta-btn:hover {
  background: #e8f0ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.2);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 1024px) {
  .cm-services-grid { grid-template-columns: repeat(2, 1fr); }
  .cm-why-grid { flex-wrap: wrap; }
  .cm-why-item { flex: 1 1 calc(33% - 24px); }
  .cm-about-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .cm-hero {
    padding: 120px 0 60px;
    background-position: right center;
  }
  .cm-hero::before {
    background: linear-gradient(
      90deg,
      rgba(2,13,46,0.99) 0%,
      rgba(2,13,46,0.95) 60%,
      rgba(2,13,46,0.82) 100%
    );
  }
  .cm-hero-content { flex: 0 0 100%; max-width: 100%; }
  .cm-hero-title { font-size: 34px; }
  .cm-hero-desc { max-width: 100%; }
  .cm-hero-features { flex-wrap: wrap; gap: 16px 0; }
  .cm-hero-feature { width: 50%; flex: none; }
  .cm-hero-feature:nth-child(2)::after,
  .cm-hero-feature:nth-child(4)::after { display: none; }

  .cm-about-grid { grid-template-columns: 1fr; gap: 32px; }
  .cm-about-title { font-size: 26px; }
  .cm-services-grid { grid-template-columns: 1fr; }
  .cm-why-grid { flex-direction: column; }
  .cm-why-item { width: 100%; }
  .cm-partners-row { gap: 20px; }
  .cm-partner-badge { min-width: 130px; font-size: 13px; }
  .cm-cta-content { padding: 36px 28px; }
  .cm-cta-title { font-size: 26px; }
  .cm-cta-header { flex-direction: column; align-items: flex-start; }
}

/* stylev2.css */
:root {
  --primary-blue: #0A58CA;
  --secondary-blue: #032b5f;
  --light-bg: #F8F9FA; /* Updated to lighter gray to match mockup */
  --white: #ffffff;
  --text-dark: #1a2a47;
  --text-gray: #5a6b8a;
  --border-color: #f0f0f0;
}

/* Hero Section */
.ac-hero {
  position: relative;
  background-color: #020d2e;
  background-size: cover;
  background-position: center right;
  padding: calc(var(--nav-h) + 3px + 60px) 0 60px;
  color: var(--white);
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: flex-start;
}

.ac-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(2, 13, 46, 0.99) 0%,
    rgba(2, 13, 46, 0.97) 25%,
    rgba(2, 13, 46, 0.80) 40%,
    rgba(2, 13, 46, 0.30) 55%,
    rgba(2, 13, 46, 0.00) 70%
  );
  z-index: 1;
}

.ac-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.ac-hero-content {
  max-width: 520px;
}

.ac-hero-image { display: none; }

.ac-breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.ac-hero-title {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  font-family: 'Outfit', sans-serif;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.ac-hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0;
  line-height: 1.7;
  max-width: 480px;
}

.ac-hero-features {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 28px;
}

.ac-hero-feature {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex: 1;
  position: relative;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

.ac-hero-feature:first-child {
  padding-left: 0;
}

.ac-hero-feature:last-child {
  padding-right: 0;
}

.ac-hero-feature:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.ac-hero-feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #93c5fd;
  background: rgba(10, 88, 202, 0.2);
  border: 1px solid rgba(10, 88, 202, 0.4);
  border-radius: 10px;
  flex-shrink: 0;
}

.ac-hero-feature-text {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

/* Common Section Styles */
.ac-section {
  padding: 100px 0;
  background-color: var(--light-bg);
  text-align: center;
}

.ac-section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-family: 'Outfit', sans-serif;
  position: relative;
  padding-bottom: 15px;
}

.ac-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--primary-blue);
  border-radius: 3px;
}

.ac-section-desc {
  max-width: 700px;
  margin: 20px auto 50px;
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.6;
}

/* Solutions Grid */
.ac-solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ac-solution-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  text-align: center;
}

.ac-solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.ac-solution-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: rgba(10, 88, 202, 0.05);
  color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ac-solution-icon svg {
  width: 36px;
  height: 36px;
}

.ac-solution-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.ac-solution-desc {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 25px;
  line-height: 1.6;
}

.ac-solution-link {
  color: var(--primary-blue);
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

/* Process Section */
.ac-process {
  background: var(--white);
  padding: 100px 0;
  text-align: center;
}

.ac-process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.ac-process-timeline::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 5%;
  right: 5%;
  height: 1px;
  border-top: 2px dashed #cbd5e1;
  z-index: 1;
}

.ac-process-step {
  position: relative;
  z-index: 2;
  width: 15%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ac-process-number {
  width: 32px;
  height: 32px;
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 25px;
  box-shadow: 0 0 0 6px var(--white);
}

.ac-process-icon {
  width: 70px;
  height: 70px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.ac-process-icon svg {
  width: 28px;
  height: 28px;
}

.ac-process-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.ac-process-desc {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.5;
}

/* Types Section */
.ac-types {
  padding: 100px 0;
  background: var(--light-bg);
  text-align: center;
}

.ac-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.ac-type-card {
  background: var(--white);
  padding: 35px 30px;
  border-radius: 12px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.02);
  text-align: left;
  border: 1px solid var(--border-color);
}

.ac-type-icon {
  width: 56px;
  height: 56px;
  background: rgba(10, 88, 202, 0.05);
  color: var(--primary-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ac-type-content {
  flex: 1;
}

.ac-type-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.ac-type-content p {
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 15px;
  line-height: 1.6;
}

.ac-type-link {
  color: var(--primary-blue);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* CTA Section */
.ac-cta {
  padding: 80px 0;
  background: var(--white);
}

.ac-cta-box {
  border-radius: 20px;
  display: flex;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(3, 21, 53, 0.4);
  background-size: cover;
  background-position: center center;
  min-height: 280px;
}

.ac-cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,18,65,0.97) 0%, rgba(3,18,65,0.90) 35%, rgba(3,18,65,0.50) 65%, rgba(3,18,65,0.0) 100%);
  z-index: 1;
  border-radius: 20px;
}

.ac-cta-content {
  padding: 50px 60px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.ac-cta-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.ac-cta-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(10, 88, 202, 0.5);
}

.ac-cta-title {
  font-size: 36px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  line-height: 1.25;
}

.ac-cta-title span {
  color: #60a5fa;
}

.ac-cta-desc {
  font-size: 16px;
  color: #d1d5db;
  margin-bottom: 40px;
  line-height: 1.6;
}

.ac-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: var(--white);
  color: #031535;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  width: fit-content;
  gap: 10px;
  transition: all 0.3s ease;
  font-size: 16px;
}

.ac-cta-btn:hover {
  background: #f0f7ff;
  transform: translateY(-2px);
}

.ac-cta-image {
  display: none;
}

@media (max-width: 1024px) {
  .ac-solutions-grid, .ac-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ac-process-timeline {
    flex-wrap: wrap;
    gap: 40px;
  }
  .ac-process-step {
    width: 30%;
  }
  .ac-process-timeline::before {
    display: none;
  }
  .ac-cta-box {
    background-position: right center;
  }
  .ac-cta-box::before {
    background: linear-gradient(90deg, rgba(3,18,65,0.97) 0%, rgba(3,18,65,0.90) 50%, rgba(3,18,65,0.60) 100%);
  }
  .ac-cta-content {
    padding: 40px;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .ac-solutions-grid, .ac-types-grid {
    grid-template-columns: 1fr;
  }
  .ac-process-step {
    width: 100%;
    flex-direction: row;
    text-align: left;
    gap: 20px;
  }
  .ac-process-icon {
    margin-bottom: 0;
  }
  .ac-process-number {
    margin-bottom: 0;
  }
  .ac-hero-features {
    flex-wrap: wrap;
    gap: 20px 0;
  }
  .ac-hero-feature {
    width: 50%;
    flex: none;
  }
  .ac-hero-feature:nth-child(2)::after {
    display: none;
  }
  .ac-hero-feature:nth-child(4)::after {
    display: none;
  }
  .ac-cta-header {
    flex-direction: column;
  }
  /* Hero mobile */
  .ac-hero {
    padding: calc(var(--nav-h) + 3px + 40px) 0 50px;
    background-position: right center;
  }
  .ac-hero::before {
    background: linear-gradient(
      90deg,
      rgba(2, 13, 46, 0.99) 0%,
      rgba(2, 13, 46, 0.95) 60%,
      rgba(2, 13, 46, 0.80) 100%
    );
  }
  .ac-hero-content {
    max-width: 100%;
  }
  .ac-hero-title {
    font-size: 36px;
  }
  .ac-hero-desc {
    font-size: 15px;
    max-width: 100%;
  }
}

/* ------------------------------------------------
   CYBERSECURITY PAGE  ï¿½  cy- prefix
------------------------------------------------ */

/* -- Hero -- */
.cy-hero {
  position: relative;
  background-color: #020d2e;
  background-size: cover;
  background-position: center right;
  padding: calc(var(--nav-h) + 3px + 60px) 0 60px;
  color: #ffffff;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: flex-start;
}

.cy-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2,13,46,0.99) 0%,
    rgba(2,13,46,0.97) 25%,
    rgba(2,13,46,0.80) 40%,
    rgba(2,13,46,0.28) 55%,
    rgba(2,13,46,0.00) 70%
  );
  z-index: 1;
}

.cy-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.cy-hero-content {
  max-width: 520px;
}

.cy-breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.70);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.cy-breadcrumb span { color: rgba(255,255,255,0.40); }

.cy-hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 18px;
  font-family: 'Outfit', sans-serif;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.cy-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 0;
}

.cy-hero-features {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 28px;
}

.cy-hero-feature {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex: 1;
  position: relative;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

.cy-hero-feature:first-child { padding-left: 0; }
.cy-hero-feature:last-child  { padding-right: 0; }

.cy-hero-feature:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 10%;
  height: 80%; width: 1px;
  background: rgba(255,255,255,0.15);
}

.cy-hero-feature-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: #93c5fd;
  background: rgba(10,88,202,0.20);
  border: 1px solid rgba(10,88,202,0.40);
  border-radius: 10px;
  flex-shrink: 0;
}

.cy-hero-feature-text {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

/* -- Shared section helpers -- */
.cy-section { padding: 90px 0; }
.cy-section--light { background: #F8F9FA; }
.cy-section--white { background: #ffffff; }
.cy-section--dark  { background: #031535; color: #ffffff; }

.cy-section-head { text-align: center; margin-bottom: 50px; }

.cy-section-title {
  font-size: 34px; font-weight: 800;
  color: #1a2a47;
  font-family: 'Outfit', sans-serif;
  position: relative; display: inline-block;
  padding-bottom: 16px; margin-bottom: 14px;
}

.cy-section-title::after {
  content: '';
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 3px;
  background: #0A58CA; border-radius: 3px;
}

.cy-section--dark .cy-section-title { color: #ffffff; }
.cy-section--dark .cy-section-title::after { background: #60a5fa; }

.cy-section-desc {
  font-size: 15.5px; color: #5a6b8a;
  max-width: 640px; margin: 0 auto;
  line-height: 1.75;
}

.cy-section--dark .cy-section-desc { color: rgba(255,255,255,0.70); }

/* -- Cards Grid -- */
.cy-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 40px;
}

.cy-card {
  background: #ffffff;
  border: 1px solid #e8eef6;
  border-radius: 14px;
  padding: 32px 26px;
  display: flex; flex-direction: column; gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.cy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.09);
  border-color: rgba(10,88,202,0.25);
}

.cy-card-icon {
  width: 56px; height: 56px;
  background: rgba(10,88,202,0.07);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #0A58CA; flex-shrink: 0;
}

.cy-card-title {
  font-size: 17px; font-weight: 700;
  color: #1a2a47; margin: 0;
}

.cy-card-desc {
  font-size: 13.5px; color: #5a6b8a;
  line-height: 1.65; margin: 0; flex: 1;
}

.cy-card-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 600;
  color: #0A58CA; text-decoration: none;
  transition: gap 0.2s;
}

.cy-card-link:hover { gap: 9px; }

/* -- Process Timeline -- */
.cy-process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 60px;
}

.cy-process-timeline::before {
  content: '';
  position: absolute;
  top: 16px; left: 5%; right: 5%;
  border-top: 2px dashed #cbd5e1;
  z-index: 1;
}

.cy-process-step {
  position: relative; z-index: 2;
  width: 15%;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}

.cy-process-number {
  width: 32px; height: 32px;
  background: #0A58CA; color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
  margin-bottom: 20px;
  box-shadow: 0 0 0 6px #F8F9FA;
}

.cy-process-icon {
  width: 68px; height: 68px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #0A58CA; margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.cy-process-title {
  font-size: 13.5px; font-weight: 700;
  color: #1a2a47; margin-bottom: 8px;
}

.cy-process-desc {
  font-size: 12px; color: #5a6b8a; line-height: 1.5;
}

/* -- CTA -- */
.cy-cta { padding: 80px 0; background: #031535; }

.cy-cta-box {
  border-radius: 20px;
  overflow: hidden; position: relative;
  box-shadow: 0 20px 60px rgba(3,21,53,0.5);
  background-size: cover;
  background-position: right center;
  min-height: 260px;
  display: flex; align-items: center;
}

.cy-cta-box::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2,13,46,0.98) 0%,
    rgba(2,13,46,0.92) 38%,
    rgba(2,13,46,0.52) 62%,
    rgba(2,13,46,0.00) 100%
  );
  z-index: 1; border-radius: 20px;
}

.cy-cta-content {
  padding: 50px 60px;
  position: relative; z-index: 2;
  color: #ffffff; max-width: 560px;
}

.cy-cta-header {
  display: flex; align-items: center;
  gap: 20px; margin-bottom: 18px;
}

.cy-cta-icon {
  width: 64px; height: 64px;
  background: #0A58CA; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(10,88,202,0.5);
}

.cy-cta-title {
  font-size: 34px; font-weight: 800;
  font-family: 'Outfit', sans-serif;
  line-height: 1.25;
}

.cy-cta-title span { color: #60a5fa; }

.cy-cta-desc {
  font-size: 15px; color: rgba(255,255,255,0.78);
  margin-bottom: 30px; line-height: 1.65;
}

.cy-cta-btn {
  display: inline-flex; align-items: center;
  justify-content: center; gap: 10px;
  padding: 14px 32px;
  background: #ffffff; color: #031535;
  font-weight: 700; font-size: 15px;
  border-radius: 8px; text-decoration: none;
  transition: all 0.3s ease;
}

.cy-cta-btn:hover {
  background: #e8f0ff; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}

/* -- Responsive -- */
@media (max-width: 1024px) {
  .cy-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .cy-process-timeline { flex-wrap: wrap; gap: 36px; }
  .cy-process-step { width: 30%; }
  .cy-process-timeline::before { display: none; }
}

@media (max-width: 768px) {
  .cy-hero { padding: calc(var(--nav-h) + 3px + 40px) 0 50px; background-position: right center; }
  .cy-hero::before {
    background: linear-gradient(90deg,rgba(2,13,46,0.99) 0%,rgba(2,13,46,0.95) 60%,rgba(2,13,46,0.82) 100%);
  }
  .cy-hero-content { max-width: 100%; }
  .cy-hero-title { font-size: 34px; }
  .cy-hero-features { flex-wrap: wrap; gap: 16px 0; }
  .cy-hero-feature { width: 50%; flex: none; }
  .cy-hero-feature:nth-child(2)::after,
  .cy-hero-feature:nth-child(4)::after { display: none; }
  .cy-grid-3 { grid-template-columns: 1fr; }
  .cy-process-step { width: 100%; flex-direction: row; text-align: left; gap: 16px; }
  .cy-process-icon, .cy-process-number { margin-bottom: 0; }
  .cy-cta-content { padding: 36px 28px; }
  .cy-cta-title { font-size: 26px; }
  .cy-cta-header { flex-direction: column; align-items: flex-start; }
}

/* ------------------------------------------------
   CLOUD SOLUTIONS PAGE  ï¿½  cs- prefix
------------------------------------------------ */

/* -- Hero -- */
.cs-hero {
  position: relative;
  background-color: #020d2e;
  background-size: cover;
  background-position: center right;
  padding: calc(var(--nav-h) + 3px + 60px) 0 60px;
  color: #ffffff;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: flex-start;
}
.cs-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2,13,46,0.99) 0%,
    rgba(2,13,46,0.97) 25%,
    rgba(2,13,46,0.80) 40%,
    rgba(2,13,46,0.28) 55%,
    rgba(2,13,46,0.00) 70%
  );
  z-index: 1;
}
.cs-hero .container { position: relative; z-index: 2; width: 100%; }
.cs-hero-content { max-width: 520px; }
.cs-breadcrumb {
  font-size: 13px; color: rgba(255,255,255,0.70);
  margin-bottom: 18px; display: flex; align-items: center;
  gap: 8px; font-weight: 500;
}
.cs-breadcrumb span { color: rgba(255,255,255,0.40); }
.cs-hero-title {
  font-size: 52px; font-weight: 800; line-height: 1.08;
  margin-bottom: 18px; font-family: 'Outfit', sans-serif;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4); color: #fff;
}
.cs-hero-desc {
  font-size: 16px; color: rgba(255,255,255,0.82);
  line-height: 1.75; margin-bottom: 0;
}
.cs-hero-features {
  display: flex; align-items: center; gap: 0;
  margin-top: 36px; border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 28px;
}
.cs-hero-feature {
  display: flex; flex-direction: row; align-items: center;
  gap: 10px; flex: 1;
  position: relative; padding: 0 16px;
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.85); line-height: 1.4;
}
.cs-hero-feature:first-child { padding-left: 0; }
.cs-hero-feature:last-child  { padding-right: 0; }
.cs-hero-feature:not(:last-child)::after {
  content: ''; position: absolute;
  right: 0; top: 10%; height: 80%; width: 1px;
  background: rgba(255,255,255,0.15);
}
.cs-hero-feature-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: #93c5fd; background: rgba(10,88,202,0.20);
  border: 1px solid rgba(10,88,202,0.40); border-radius: 10px;
  flex-shrink: 0;
}
.cs-hero-feature-text {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.85); line-height: 1.4;
}

/* -- Section helpers -- */
.cs-section { padding: 90px 0; }
.cs-section--white { background: #ffffff; }
.cs-section--light { background: #F8F9FA; }
.cs-section--dark  { background: #031535; }
.cs-section-head { text-align: center; margin-bottom: 50px; }
.cs-section-title {
  font-size: 34px; font-weight: 800; color: #1a2a47;
  font-family: 'Outfit', sans-serif;
  position: relative; display: inline-block;
  padding-bottom: 16px; margin-bottom: 14px;
}
.cs-section-title::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 3px; background: #0A58CA; border-radius: 3px;
}
.cs-section-desc {
  font-size: 15.5px; color: #5a6b8a;
  max-width: 640px; margin: 0 auto; line-height: 1.75;
}

/* -- Service Cards Grid -- */
.cs-grid-3 {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 26px; margin-top: 40px;
}
.cs-card {
  background: #ffffff; border: 1px solid #e8eef6;
  border-radius: 14px; padding: 32px 26px;
  display: flex; flex-direction: column; gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.cs-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.09);
  border-color: rgba(10,88,202,0.25);
}
.cs-card-icon {
  width: 56px; height: 56px; background: rgba(10,88,202,0.07);
  border-radius: 14px; display: flex; align-items: center;
  justify-content: center; color: #0A58CA; flex-shrink: 0;
}
.cs-card-title { font-size: 17px; font-weight: 700; color: #1a2a47; margin: 0; }
.cs-card-desc { font-size: 13.5px; color: #5a6b8a; line-height: 1.65; margin: 0; flex: 1; }
.cs-card-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 600; color: #0A58CA;
  text-decoration: none; transition: gap 0.2s;
}
.cs-card-link:hover { gap: 9px; }

/* -- Process Timeline -- */
.cs-process-timeline {
  display: flex; justify-content: space-between;
  position: relative; margin-top: 60px;
}
.cs-process-timeline::before {
  content: ''; position: absolute;
  top: 16px; left: 5%; right: 5%;
  border-top: 2px dashed #cbd5e1; z-index: 1;
}
.cs-process-step {
  position: relative; z-index: 2; width: 15%;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
}
.cs-process-number {
  width: 32px; height: 32px; background: #0A58CA; color: #fff;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: 13px;
  margin-bottom: 20px; box-shadow: 0 0 0 6px #F8F9FA;
}
.cs-process-icon {
  width: 68px; height: 68px; background: #ffffff;
  border: 1px solid #e2e8f0; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #0A58CA; margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.cs-process-title { font-size: 13.5px; font-weight: 700; color: #1a2a47; margin-bottom: 8px; }
.cs-process-desc { font-size: 12px; color: #5a6b8a; line-height: 1.5; }

/* -- Platforms Section -- */
.cs-platforms-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 28px; margin-top: 40px;
}
.cs-platform-card {
  background: #ffffff; border: 1.5px solid #e8eef6;
  border-radius: 16px; padding: 36px 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.cs-platform-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.10);
  border-color: rgba(10,88,202,0.30);
}
.cs-platform-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 4px;
}
.cs-platform-logo-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.cs-platform-name {
  font-size: 18px; font-weight: 800; color: #1a2a47;
  font-family: 'Outfit', sans-serif; line-height: 1.2;
}
.cs-platform-desc {
  font-size: 14px; color: #5a6b8a; line-height: 1.65;
  flex: 1;
}
.cs-platform-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 600; color: #0A58CA;
  text-decoration: none; transition: gap 0.2s;
}
.cs-platform-link:hover { gap: 9px; }

/* Small platform cards (2nd row) */
.cs-platforms-grid-sm {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-top: 24px;
}
.cs-platform-card-sm {
  background: #F8F9FA; border: 1px solid #e8eef6;
  border-radius: 14px; padding: 28px 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: all 0.3s ease;
}
.cs-platform-card-sm:hover {
  background: #ffffff; border-color: rgba(10,88,202,0.25);
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}
.cs-platform-card-sm .cs-card-icon { width: 52px; height: 52px; }
.cs-platform-card-sm .cs-card-title { font-size: 16px; }
.cs-platform-card-sm .cs-card-desc { font-size: 13px; }

/* -- CTA -- */
.cs-cta { padding: 80px 0; background: #020d2e; }
.cs-cta-box {
  border-radius: 20px; overflow: hidden; position: relative;
  box-shadow: 0 20px 60px rgba(3,21,53,0.5);
  background-size: cover; background-position: right center;
  min-height: 260px; display: flex; align-items: center;
}
.cs-cta-box::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2,13,46,0.98) 0%,
    rgba(2,13,46,0.92) 38%,
    rgba(2,13,46,0.52) 62%,
    rgba(2,13,46,0.00) 100%
  );
  z-index: 1; border-radius: 20px;
}
.cs-cta-content {
  padding: 50px 60px; position: relative; z-index: 2;
  color: #ffffff; max-width: 560px;
}
.cs-cta-header { display: flex; align-items: center; gap: 20px; margin-bottom: 18px; }
.cs-cta-icon {
  width: 64px; height: 64px; background: #0A58CA; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(10,88,202,0.5);
}
.cs-cta-title { font-size: 34px; font-weight: 800; font-family: 'Outfit', sans-serif; line-height: 1.25; }
.cs-cta-title span { color: #60a5fa; }
.cs-cta-desc { font-size: 15px; color: rgba(255,255,255,0.78); margin-bottom: 30px; line-height: 1.65; }
.cs-cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 32px; background: #ffffff; color: #031535;
  font-weight: 700; font-size: 15px; border-radius: 8px;
  text-decoration: none; transition: all 0.3s ease;
}
.cs-cta-btn:hover { background: #e8f0ff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,0.15); }

/* -- Responsive -- */
@media (max-width: 1024px) {
  .cs-grid-3, .cs-platforms-grid, .cs-platforms-grid-sm { grid-template-columns: repeat(2,1fr); }
  .cs-process-timeline { flex-wrap: wrap; gap: 36px; }
  .cs-process-step { width: 30%; }
  .cs-process-timeline::before { display: none; }
}

/* -- Data Protection Page Styles -- */
.page-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  padding: 160px 24px 120px;
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2, 13, 46, 0.98) 0%,
    rgba(2, 13, 46, 0.95) 25%,
    rgba(10, 32, 80, 0.92) 50%,
    rgba(26, 61, 143, 0.88) 75%,
    rgba(26, 61, 143, 0.85) 100%
  );
  z-index: 0;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.5);
}

.page-title {
  font-size: 60px;
  font-weight: 800;
  margin-bottom: 24px;
  font-family: 'Exo 2', sans-serif;
  line-height: 1.1;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
  letter-spacing: -1px;
}

.page-desc {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.section {
  padding: 80px 24px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 24px;
  font-family: 'Exo 2', sans-serif;
}

.section-desc {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a3d8f;
}

.feature-icon svg {
  width: 40px;
  height: 40px;
}

.feature-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.process-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #e2e8f0;
  position: relative;
}

.process-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: #1a3d8f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.process-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.process-desc {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

.divider {
  height: 1px;
  background: #e2e8f0;
  margin: 0 auto 80px;
  width: 100%;
  max-width: 900px;
}

.bg-light {
  background: #f8fafc;
}

.bg-dark {
  background: #020d2e;
}

.cta-banner {
  text-align: center;
  padding: 80px 40px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(2, 13, 46, 0.92) 0%,
    rgba(10, 32, 80, 0.88) 50%,
    rgba(26, 61, 143, 0.85) 100%
  );
  z-index: 0;
}

.cta-banner > * {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  font-family: 'Exo 2', sans-serif;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
}

.cta-title .text-blue {
  color: #60a5fa;
  display: block;
}

.cta-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 36px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #1a3d8f, #3d6bc0);
  color: #fff;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 12px 30px rgba(26, 61, 143, 0.35);
  border: none;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0.3px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(26, 61, 143, 0.45);
  background: linear-gradient(135deg, #0f2d6d, #2d5ab0);
}

.btn-primary:active {
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .page-hero { padding: 80px 20px; }
  .page-title { font-size: 36px; }
  .page-desc { font-size: 15px; }
  .section { padding: 60px 20px; }
  .section-title { font-size: 28px; }
  .features-grid, .process-grid { gap: 20px; }
  .cta-title { font-size: 28px; }
}

@media (max-width: 768px) {
  .cs-hero { padding: calc(var(--nav-h) + 3px + 40px) 0 50px; background-position: right center; }
  .cs-hero::before { background: linear-gradient(90deg,rgba(2,13,46,0.99) 0%,rgba(2,13,46,0.95) 60%,rgba(2,13,46,0.82) 100%); }
  .cs-hero-content { max-width: 100%; }
  .cs-hero-title { font-size: 34px; }
  .cs-hero-features { flex-wrap: wrap; gap: 16px 0; }
  .cs-hero-feature { width: 50%; flex: none; }
  .cs-hero-feature:nth-child(2)::after, .cs-hero-feature:nth-child(4)::after { display: none; }
  .cs-grid-3, .cs-platforms-grid, .cs-platforms-grid-sm { grid-template-columns: 1fr; }
  .cs-process-step { width: 100%; flex-direction: row; text-align: left; gap: 16px; }
  .cs-process-icon, .cs-process-number { margin-bottom: 0; }
  .cs-cta-content { padding: 36px 28px; }
  .cs-cta-title { font-size: 26px; }
  .cs-cta-header { flex-direction: column; align-items: flex-start; }
}


/* ------------------------------------------------
   DATA PROTECTION PAGE  ï¿½  dp- prefix
------------------------------------------------ */

/* -- Hero -- */
.dp-hero {
  position: relative;
  background-color: #020d2e;
  background-size: cover;
  background-position: center right;
  padding: calc(var(--nav-h) + 3px + 60px) 0 60px;
  color: #ffffff;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: flex-start;
}

.dp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2,13,46,0.99) 0%,
    rgba(2,13,46,0.97) 25%,
    rgba(2,13,46,0.80) 40%,
    rgba(2,13,46,0.28) 55%,
    rgba(2,13,46,0.00) 70%
  );
  z-index: 1;
}

.dp-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.dp-hero-content {
  max-width: 520px;
}

.dp-breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.70);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.dp-breadcrumb span { color: rgba(255,255,255,0.40); }

.dp-hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 18px;
  font-family: 'Outfit', sans-serif;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.dp-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 0;
}

.dp-hero-features {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 28px;
}

.dp-hero-feature {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex: 1;
  position: relative;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

.dp-hero-feature:first-child { padding-left: 0; }
.dp-hero-feature:last-child  { padding-right: 0; }

.dp-hero-feature:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 10%;
  height: 80%; width: 1px;
  background: rgba(255,255,255,0.15);
}

.dp-hero-feature-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: #93c5fd;
  background: rgba(10,88,202,0.20);
  border: 1px solid rgba(10,88,202,0.40);
  border-radius: 10px;
  flex-shrink: 0;
}

.dp-hero-feature-text {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

/* -- Shared section helpers -- */
.dp-section { padding: 90px 0; }
.dp-section--light { background: #F8F9FA; }
.dp-section--white { background: #ffffff; }

.dp-section-head { text-align: center; margin-bottom: 50px; }

.dp-section-title {
  font-size: 34px; font-weight: 800;
  color: #1a2a47;
  font-family: 'Outfit', sans-serif;
  position: relative; display: inline-block;
  padding-bottom: 16px; margin-bottom: 14px;
}

.dp-section-title::after {
  content: '';
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 3px;
  background: #0A58CA; border-radius: 3px;
}

.dp-section-desc {
  font-size: 15.5px; color: #5a6b8a;
  max-width: 680px; margin: 0 auto;
  line-height: 1.75;
}

/* -- Cards Grid -- */
.dp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 40px;
}

.dp-card {
  background: #ffffff;
  border: 1px solid #e8eef6;
  border-radius: 14px;
  padding: 32px 26px;
  display: flex; flex-direction: column; gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.dp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.09);
  border-color: rgba(10,88,202,0.25);
}

.dp-card-icon {
  width: 56px; height: 56px;
  background: rgba(10,88,202,0.07);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #0A58CA; flex-shrink: 0;
}

.dp-card-title {
  font-size: 17px; font-weight: 700;
  color: #1a2a47; margin: 0;
}

.dp-card-desc {
  font-size: 13.5px; color: #5a6b8a;
  line-height: 1.65; margin: 0; flex: 1;
}

.dp-card-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 600;
  color: #0A58CA; text-decoration: none;
  transition: gap 0.2s;
}

.dp-card-link:hover { gap: 9px; }

/* -- Process Timeline -- */
.dp-process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 60px;
}

.dp-process-timeline::before {
  content: '';
  position: absolute;
  top: 16px; left: 5%; right: 5%;
  border-top: 2px dashed #cbd5e1;
  z-index: 1;
}

.dp-process-step {
  position: relative; z-index: 2;
  width: 15%;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}

.dp-process-number {
  width: 32px; height: 32px;
  background: #0A58CA; color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
  margin-bottom: 20px;
  box-shadow: 0 0 0 6px #ffffff;
}

.dp-section--light .dp-process-number {
  box-shadow: 0 0 0 6px #F8F9FA;
}

.dp-process-icon {
  width: 68px; height: 68px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #0A58CA; margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.dp-process-title {
  font-size: 13.5px; font-weight: 700;
  color: #1a2a47; margin-bottom: 8px;
}

.dp-process-desc {
  font-size: 12px; color: #5a6b8a; line-height: 1.5;
}

/* -- CTA -- */
.dp-cta { padding: 80px 0; background: #031535; }

.dp-cta-box {
  border-radius: 20px;
  overflow: hidden; position: relative;
  box-shadow: 0 20px 60px rgba(3,21,53,0.5);
  background-size: cover;
  background-position: right center;
  min-height: 260px;
  display: flex; align-items: center;
}

.dp-cta-box::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2,13,46,0.98) 0%,
    rgba(2,13,46,0.92) 38%,
    rgba(2,13,46,0.52) 62%,
    rgba(2,13,46,0.00) 100%
  );
  z-index: 1; border-radius: 20px;
}

.dp-cta-content {
  padding: 50px 60px;
  position: relative; z-index: 2;
  color: #ffffff; max-width: 560px;
}

.dp-cta-header {
  display: flex; align-items: center;
  gap: 20px; margin-bottom: 18px;
}

.dp-cta-icon {
  width: 64px; height: 64px;
  background: #0A58CA; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(10,88,202,0.5);
}

.dp-cta-title {
  font-size: 34px; font-weight: 800;
  font-family: 'Outfit', sans-serif;
  line-height: 1.25;
}

.dp-cta-title span { color: #60a5fa; }

.dp-cta-desc {
  font-size: 15px; color: rgba(255,255,255,0.78);
  margin-bottom: 30px; line-height: 1.65;
}

.dp-cta-btn {
  display: inline-flex; align-items: center;
  justify-content: center; gap: 10px;
  padding: 14px 32px;
  background: #ffffff; color: #031535;
  font-weight: 700; font-size: 15px;
  border-radius: 8px; text-decoration: none;
  transition: all 0.3s ease;
}

.dp-cta-btn:hover {
  background: #e8f0ff; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}

/* -- Responsive -- */
@media (max-width: 1024px) {
  .dp-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .dp-process-timeline { flex-wrap: wrap; gap: 36px; }
  .dp-process-step { width: 30%; }
  .dp-process-timeline::before { display: none; }
}

@media (max-width: 768px) {
  .dp-hero { padding: calc(var(--nav-h) + 3px + 40px) 0 50px; background-position: right center; }
  .dp-hero::before {
    background: linear-gradient(90deg,rgba(2,13,46,0.99) 0%,rgba(2,13,46,0.95) 60%,rgba(2,13,46,0.82) 100%);
  }
  .dp-hero-content { max-width: 100%; }
  .dp-hero-title { font-size: 34px; }
  .dp-hero-features { flex-wrap: wrap; gap: 16px 0; }
  .dp-hero-feature { width: 50%; flex: none; }
  .dp-hero-feature:nth-child(2)::after,
  .dp-hero-feature:nth-child(4)::after { display: none; }
  .dp-grid-3 { grid-template-columns: 1fr; }
  .dp-process-step { width: 100%; flex-direction: row; text-align: left; gap: 16px; }
  .dp-process-icon, .dp-process-number { margin-bottom: 0; }
  .dp-cta-content { padding: 36px 28px; }
  .dp-cta-title { font-size: 26px; }
  .dp-cta-header { flex-direction: column; align-items: flex-start; }
}


/* ------------------------------------------------
   DIGITAL & BUSINESS TECHNOLOGY PAGE  ï¿½  db- prefix
------------------------------------------------ */

/* -- Hero -- */
.db-hero {
  position: relative;
  background-color: #020d2e;
  background-size: cover;
  background-position: center center;
  padding: 180px 0 100px;
  color: #ffffff;
  overflow: hidden;
}

.db-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2,13,46,0.99) 0%,
    rgba(2,13,46,0.97) 30%,
    rgba(2,13,46,0.82) 50%,
    rgba(2,13,46,0.40) 70%,
    rgba(2,13,46,0.00) 100%
  );
  z-index: 1;
}

.db-hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.db-hero-content {
  flex: 0 0 55%;
  max-width: 55%;
}

.db-breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.70);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.db-breadcrumb span { color: rgba(255,255,255,0.40); }

.db-hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 22px;
  font-family: 'Outfit', sans-serif;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.db-hero-title span {
  color: #60a5fa;
}

.db-hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  max-width: 500px;
}

/* -- Overview -- */
.db-overview {
  padding: 90px 0;
  background: #ffffff;
}

.db-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.db-overview-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.10);
}

.db-overview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.db-overview-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0A58CA;
  margin-bottom: 14px;
}

.db-overview-title {
  font-size: 34px;
  font-weight: 800;
  color: #1a2a47;
  font-family: 'Outfit', sans-serif;
  line-height: 1.25;
  margin-bottom: 22px;
}

.db-overview-title span {
  color: #0A58CA;
}

.db-overview-text {
  font-size: 15px;
  color: #5a6b8a;
  line-height: 1.8;
  margin-bottom: 16px;
}

.db-overview-text:last-child { margin-bottom: 0; }

/* -- Section helpers -- */
.db-section { padding: 90px 0; }
.db-section--light { background: #F8F9FA; }
.db-section--white { background: #ffffff; }

.db-section-head {
  text-align: center;
  margin-bottom: 50px;
}

.db-section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0A58CA;
  margin-bottom: 12px;
}

.db-section-title {
  font-size: 34px;
  font-weight: 800;
  color: #1a2a47;
  font-family: 'Outfit', sans-serif;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
  margin-bottom: 14px;
}

.db-section-title span { color: #0A58CA; }

.db-section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 3px;
  background: #0A58CA;
  border-radius: 3px;
}

.db-section-desc {
  font-size: 15.5px;
  color: #5a6b8a;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}

/* -- Services Grid (4-column) -- */
.db-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.db-service-card {
  background: #ffffff;
  border: 1px solid #e8eef6;
  border-radius: 14px;
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.db-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.09);
  border-color: rgba(10,88,202,0.25);
}

.db-service-icon {
  width: 52px;
  height: 52px;
  background: rgba(10,88,202,0.07);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A58CA;
  flex-shrink: 0;
}

.db-service-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a2a47;
  margin: 0;
  line-height: 1.35;
}

.db-service-desc {
  font-size: 13px;
  color: #5a6b8a;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.db-service-link {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #0A58CA;
  text-decoration: none;
  transition: transform 0.2s;
  width: fit-content;
}

.db-service-link:hover { transform: translateX(4px); }

/* -- Why Choose Us (4-column strip) -- */
.db-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 10px;
}

.db-why-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  background: #F8F9FA;
  border: 1px solid #e8eef6;
  border-radius: 14px;
  padding: 28px 22px;
  transition: all 0.3s ease;
}

.db-why-card:hover {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
  border-color: rgba(10,88,202,0.20);
  transform: translateY(-3px);
}

.db-why-icon {
  width: 52px;
  height: 52px;
  background: rgba(10,88,202,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A58CA;
  flex-shrink: 0;
}

.db-why-content { flex: 1; }

.db-why-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a2a47;
  margin-bottom: 6px;
}

.db-why-desc {
  font-size: 13px;
  color: #5a6b8a;
  line-height: 1.6;
  margin: 0;
}

/* -- CTA -- */
.db-cta {
  padding: 80px 0;
  background: #020d2e;
}

.db-cta-box {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(3,21,53,0.5);
  background-size: cover;
  background-position: center center;
  min-height: 280px;
  display: flex;
  align-items: center;
}

.db-cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2,13,46,0.98) 0%,
    rgba(2,13,46,0.92) 40%,
    rgba(2,13,46,0.55) 65%,
    rgba(2,13,46,0.00) 100%
  );
  z-index: 1;
  border-radius: 20px;
}

.db-cta-content {
  padding: 55px 65px;
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 580px;
}

.db-cta-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}

.db-cta-icon {
  width: 64px;
  height: 64px;
  background: #0A58CA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(10,88,202,0.5);
}

.db-cta-title {
  font-size: 36px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  line-height: 1.25;
}

.db-cta-title span { color: #60a5fa; }

.db-cta-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 32px;
  line-height: 1.65;
}

.db-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  background: #ffffff;
  color: #031535;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.db-cta-btn:hover {
  background: #e8f0ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}

/* -- Responsive -- */
@media (max-width: 1200px) {
  .db-services-grid { grid-template-columns: repeat(2, 1fr); }
  .db-why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .db-overview-grid { grid-template-columns: 1fr; gap: 40px; }
  .db-overview-image { max-height: 380px; }
}

@media (max-width: 768px) {
  .db-hero { padding: 130px 0 70px; background-position: right center; }
  .db-hero::before {
    background: linear-gradient(90deg,rgba(2,13,46,0.99) 0%,rgba(2,13,46,0.96) 60%,rgba(2,13,46,0.85) 100%);
  }
  .db-hero-content { flex: 0 0 100%; max-width: 100%; }
  .db-hero-title { font-size: 38px; }
  .db-hero-desc { font-size: 15px; max-width: 100%; }
  .db-overview-title { font-size: 26px; }
  .db-section-title { font-size: 26px; }
  .db-services-grid { grid-template-columns: 1fr; }
  .db-why-grid { grid-template-columns: 1fr; }
  .db-cta-content { padding: 36px 28px; }
  .db-cta-title { font-size: 26px; }
  .db-cta-header { flex-direction: column; align-items: flex-start; }
}


/* ------------------------------------------------
   HIGH-END IT SERVICES PAGE  ï¿½  hi- prefix
------------------------------------------------ */

/* -- Hero -- */
.hi-hero {
  position: relative;
  background-color: #020d2e;
  background-size: cover;
  background-position: center right;
  padding: calc(var(--nav-h) + 3px + 60px) 0 60px;
  color: #ffffff;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: flex-start;
}

.hi-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2,13,46,0.99) 0%,
    rgba(2,13,46,0.97) 30%,
    rgba(2,13,46,0.82) 52%,
    rgba(2,13,46,0.38) 72%,
    rgba(2,13,46,0.00) 100%
  );
  z-index: 1;
}

.hi-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hi-hero-content {
  max-width: 540px;
}

.hi-breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.70);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.hi-breadcrumb span { color: rgba(255,255,255,0.40); }

.hi-hero-title {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
  font-family: 'Outfit', sans-serif;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hi-hero-title span { color: #60a5fa; }

.hi-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 0;
}

/* -- Hero Badges Strip -- */
.hi-hero-badges {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 28px;
}

.hi-hero-badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex: 1;
  position: relative;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

.hi-hero-badge:first-child { padding-left: 0; }
.hi-hero-badge:last-child  { padding-right: 0; }

.hi-hero-badge:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 10%;
  height: 80%; width: 1px;
  background: rgba(255,255,255,0.15);
}

.hi-hero-badge-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: #93c5fd;
  background: rgba(10,88,202,0.20);
  border: 1px solid rgba(10,88,202,0.40);
  border-radius: 10px;
  flex-shrink: 0;
}

/* -- Overview -- */
.hi-overview {
  padding: 90px 0;
  background: #ffffff;
}

.hi-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.hi-overview-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.10);
}

.hi-overview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hi-overview-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #0A58CA;
  margin-bottom: 16px;
}

.hi-overview-title {
  font-size: 34px;
  font-weight: 800;
  color: #1a2a47;
  font-family: 'Outfit', sans-serif;
  line-height: 1.25;
  margin-bottom: 20px;
}

.hi-overview-text {
  font-size: 15px;
  color: #5a6b8a;
  line-height: 1.8;
  margin-bottom: 16px;
}

.hi-overview-text:last-of-type { margin-bottom: 28px; }

/* -- Overview Stats -- */
.hi-overview-stats {
  display: flex;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid #e8eef6;
}

.hi-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.hi-stat-icon {
  width: 44px; height: 44px;
  background: rgba(10,88,202,0.07);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #0A58CA;
  flex-shrink: 0;
}

.hi-stat-value {
  font-size: 22px;
  font-weight: 800;
  color: #1a2a47;
  font-family: 'Outfit', sans-serif;
  line-height: 1;
  margin-bottom: 3px;
}

.hi-stat-label {
  font-size: 12px;
  color: #5a6b8a;
  font-weight: 500;
}

/* -- Section helpers -- */
.hi-section { padding: 90px 0; }
.hi-section--light { background: #F8F9FA; }
.hi-section--white { background: #ffffff; }

.hi-section-head {
  text-align: center;
  margin-bottom: 50px;
}

.hi-section-title {
  font-size: 34px;
  font-weight: 800;
  color: #1a2a47;
  font-family: 'Outfit', sans-serif;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
  margin-bottom: 14px;
}

.hi-section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 3px;
  background: #0A58CA;
  border-radius: 3px;
}

.hi-section-desc {
  font-size: 15.5px;
  color: #5a6b8a;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

/* -- Services Grid (4-column, horizontal card layout) -- */
.hi-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.hi-service-card {
  background: #ffffff;
  border: 1px solid #e8eef6;
  border-radius: 14px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.hi-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.09);
  border-color: rgba(10,88,202,0.25);
}

.hi-service-icon {
  width: 50px; height: 50px;
  background: rgba(10,88,202,0.07);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #0A58CA;
  flex-shrink: 0;
}

.hi-service-body { flex: 1; display: flex; flex-direction: column; gap: 8px; }

.hi-service-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a2a47;
  margin: 0;
  line-height: 1.35;
}

.hi-service-desc {
  font-size: 13px;
  color: #5a6b8a;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.hi-service-link {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #0A58CA;
  text-decoration: none;
  transition: transform 0.2s;
  width: fit-content;
  margin-top: 4px;
}

.hi-service-link:hover { transform: translateX(4px); }

/* -- Process Timeline (5 steps) -- */
.hi-process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 60px;
}

.hi-process-timeline::before {
  content: '';
  position: absolute;
  top: 16px; left: 5%; right: 5%;
  border-top: 2px dashed #cbd5e1;
  z-index: 1;
}

.hi-process-step {
  position: relative; z-index: 2;
  width: 18%;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}

.hi-process-number {
  width: 32px; height: 32px;
  background: #0A58CA; color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
  margin-bottom: 20px;
  box-shadow: 0 0 0 6px #ffffff;
}

.hi-section--white .hi-process-number {
  box-shadow: 0 0 0 6px #ffffff;
}

.hi-process-icon {
  width: 68px; height: 68px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #0A58CA; margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.hi-process-title {
  font-size: 15px; font-weight: 700;
  color: #1a2a47; margin-bottom: 8px;
}

.hi-process-desc {
  font-size: 12.5px; color: #5a6b8a; line-height: 1.55;
}

/* -- Why Choose Us (dark navy) -- */
.hi-why {
  padding: 80px 0;
  background: #020d2e;
  color: #ffffff;
}

.hi-why-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: center;
}

.hi-why-title {
  font-size: 30px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.3;
}

.hi-why-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
}

.hi-why-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hi-why-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 24px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  transition: all 0.3s ease;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

.hi-why-badge:hover {
  background: rgba(10,88,202,0.20);
  border-color: rgba(10,88,202,0.40);
  transform: translateY(-3px);
}

.hi-why-badge-icon {
  width: 52px; height: 52px;
  background: rgba(10,88,202,0.25);
  border: 1px solid rgba(10,88,202,0.45);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #93c5fd;
}

/* -- CTA (inline banner) -- */
.hi-cta {
  padding: 50px 0;
  background: #F8F9FA;
  border-top: 1px solid #e8eef6;
}

.hi-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: linear-gradient(135deg, #020d2e 0%, #0a2060 60%, #1a3d8f 100%);
  border-radius: 18px;
  padding: 44px 56px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(2,13,46,0.25);
}

.hi-cta-inner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(10,88,202,0.35) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hi-cta-left {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
}

.hi-cta-icon {
  width: 64px; height: 64px;
  background: rgba(10,88,202,0.35);
  border: 1px solid rgba(10,88,202,0.55);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #93c5fd;
  flex-shrink: 0;
}

.hi-cta-text { flex: 1; }

.hi-cta-title {
  font-size: 28px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.25;
}

.hi-cta-title span { color: #60a5fa; }

.hi-cta-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin: 0;
}

.hi-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  background: #ffffff;
  color: #031535;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.hi-cta-btn:hover {
  background: #e8f0ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}

/* -- Responsive -- */
@media (max-width: 1200px) {
  .hi-services-grid { grid-template-columns: repeat(2, 1fr); }
  .hi-why-badges { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .hi-overview-grid { grid-template-columns: 1fr; gap: 40px; }
  .hi-overview-image { max-height: 380px; }
  .hi-why-grid { grid-template-columns: 1fr; gap: 40px; }
  .hi-why-badges { grid-template-columns: repeat(4, 1fr); }
  .hi-process-timeline { flex-wrap: wrap; gap: 36px; }
  .hi-process-step { width: 30%; }
  .hi-process-timeline::before { display: none; }
}

@media (max-width: 768px) {
  .hi-hero { padding: calc(var(--nav-h) + 3px + 40px) 0 50px; background-position: right center; }
  .hi-hero::before {
    background: linear-gradient(90deg,rgba(2,13,46,0.99) 0%,rgba(2,13,46,0.96) 60%,rgba(2,13,46,0.85) 100%);
  }
  .hi-hero-content { max-width: 100%; }
  .hi-hero-title { font-size: 34px; }
  .hi-hero-desc { font-size: 15px; max-width: 100%; }
  .hi-hero-badges { flex-wrap: wrap; gap: 16px 0; }
  .hi-hero-badge { width: 50%; flex: none; }
  .hi-hero-badge:nth-child(2)::after,
  .hi-hero-badge:nth-child(4)::after { display: none; }
  .hi-overview-title { font-size: 26px; }
  .hi-overview-stats { flex-direction: column; gap: 16px; }
  .hi-section-title { font-size: 26px; }
  .hi-services-grid { grid-template-columns: 1fr; }
  .hi-process-step { width: 100%; flex-direction: row; text-align: left; gap: 16px; }
  .hi-process-icon, .hi-process-number { margin-bottom: 0; }
  .hi-why-badges { grid-template-columns: repeat(2, 1fr); }
  .hi-why-title { font-size: 24px; }
  .hi-cta-inner { flex-direction: column; padding: 36px 28px; text-align: center; }
  .hi-cta-left { flex-direction: column; text-align: center; }
  .hi-cta-title { font-size: 22px; }
}


/* ------------------------------------------------
   MANAGED IT SERVICES PAGE  ï¿½  mi- prefix
------------------------------------------------ */

/* -- Hero -- */
.mi-hero {
  position: relative;
  background-color: #020d2e;
  background-size: cover;
  background-position: center center;
  padding: 170px 0 90px;
  color: #ffffff;
  overflow: hidden;
}

.mi-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2,13,46,0.99) 0%,
    rgba(2,13,46,0.97) 30%,
    rgba(2,13,46,0.82) 52%,
    rgba(2,13,46,0.38) 72%,
    rgba(2,13,46,0.00) 100%
  );
  z-index: 1;
}

.mi-hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.mi-hero-content {
  flex: 0 0 58%;
  max-width: 58%;
}

.mi-breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.70);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.mi-breadcrumb span { color: rgba(255,255,255,0.40); }

.mi-hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 10px;
  font-family: 'Outfit', sans-serif;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.mi-hero-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #60a5fa;
  margin-bottom: 16px;
  font-family: 'Outfit', sans-serif;
}

.mi-hero-desc {
  font-size: 15.5px;
  color: rgba(255,255,255,0.80);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 0;
}

/* -- Hero Badges Strip -- */
.mi-hero-badges {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 28px;
}

.mi-hero-badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex: 1;
  position: relative;
  padding: 0 16px 0 0;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

.mi-hero-badge:first-child { padding-left: 0; }

.mi-hero-badge:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 10%;
  height: 80%; width: 1px;
  background: rgba(255,255,255,0.15);
}

.mi-hero-badge-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: #93c5fd;
  background: rgba(10,88,202,0.20);
  border: 1px solid rgba(10,88,202,0.40);
  border-radius: 10px;
  flex-shrink: 0;
}

/* -- Overview -- */
.mi-overview {
  padding: 90px 0;
  background: #ffffff;
}

.mi-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.mi-overview-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.10);
}

.mi-overview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mi-overview-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #0A58CA;
  margin-bottom: 16px;
}

.mi-overview-title {
  font-size: 34px;
  font-weight: 800;
  color: #1a2a47;
  font-family: 'Outfit', sans-serif;
  line-height: 1.25;
  margin-bottom: 18px;
}

.mi-overview-text {
  font-size: 15px;
  color: #5a6b8a;
  line-height: 1.8;
  margin-bottom: 22px;
}

/* -- Checklist -- */
.mi-overview-checklist {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mi-overview-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: #3a4a6a;
  line-height: 1.6;
  font-weight: 500;
}

.mi-check-icon {
  width: 26px; height: 26px;
  background: rgba(10,88,202,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #0A58CA;
  flex-shrink: 0;
  margin-top: 1px;
}

/* -- Section helpers -- */
.mi-section { padding: 90px 0; }
.mi-section--light { background: #F8F9FA; }
.mi-section--white { background: #ffffff; }

.mi-section-head {
  text-align: center;
  margin-bottom: 50px;
}

.mi-section-title {
  font-size: 34px;
  font-weight: 800;
  color: #1a2a47;
  font-family: 'Outfit', sans-serif;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
  margin-bottom: 14px;
}

.mi-section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 3px;
  background: #0A58CA;
  border-radius: 3px;
}

/* -- Services Grid (3-column) -- */
.mi-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.mi-service-card {
  background: #ffffff;
  border: 1px solid #e8eef6;
  border-radius: 14px;
  padding: 26px 22px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.mi-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.09);
  border-color: rgba(10,88,202,0.25);
}

.mi-service-icon {
  width: 50px; height: 50px;
  background: rgba(10,88,202,0.07);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #0A58CA;
  flex-shrink: 0;
}

.mi-service-body { flex: 1; }

.mi-service-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a2a47;
  margin: 0 0 8px;
  line-height: 1.35;
}

.mi-service-desc {
  font-size: 13px;
  color: #5a6b8a;
  line-height: 1.65;
  margin: 0;
}

/* -- Mid CTA Banner -- */
.mi-mid-cta {
  padding: 60px 0;
  background: #020d2e;
}

.mi-mid-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  align-items: stretch;
  background: linear-gradient(135deg, #031535 0%, #0a2060 55%, #1a3d8f 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(2,13,46,0.40);
  position: relative;
}

.mi-mid-cta-inner::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(10,88,202,0.30) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.mi-mid-cta-left {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  padding: 50px 50px 50px 56px;
  position: relative;
  z-index: 2;
}

.mi-mid-cta-icon {
  width: 68px; height: 68px;
  background: rgba(10,88,202,0.30);
  border: 1px solid rgba(10,88,202,0.50);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #93c5fd;
  flex-shrink: 0;
  margin-top: 4px;
}

.mi-mid-cta-text { flex: 1; }

.mi-mid-cta-title {
  font-size: 28px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 12px;
}

.mi-mid-cta-title span { color: #60a5fa; }

.mi-mid-cta-desc {
  font-size: 14.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 480px;
}

.mi-mid-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: #ffffff;
  color: #031535;
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.mi-mid-cta-btn:hover {
  background: #e8f0ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}

.mi-mid-cta-image {
  width: 320px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.mi-mid-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
}

/* -- Why Choose Us (5-column) -- */
.mi-why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.mi-why-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 32px 20px;
  background: #F8F9FA;
  border: 1px solid #e8eef6;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.mi-why-card:hover {
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(0,0,0,0.07);
  border-color: rgba(10,88,202,0.20);
  transform: translateY(-4px);
}

.mi-why-icon {
  width: 56px; height: 56px;
  background: rgba(10,88,202,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #0A58CA;
}

.mi-why-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a2a47;
  margin: 0;
  line-height: 1.3;
}

.mi-why-desc {
  font-size: 13px;
  color: #5a6b8a;
  line-height: 1.6;
  margin: 0;
}

/* -- Responsive -- */
@media (max-width: 1200px) {
  .mi-services-grid { grid-template-columns: repeat(2, 1fr); }
  .mi-why-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .mi-overview-grid { grid-template-columns: 1fr; gap: 40px; }
  .mi-overview-image { max-height: 380px; }
  .mi-mid-cta-inner { grid-template-columns: 1fr; }
  .mi-mid-cta-image { width: 100%; height: 260px; }
}

@media (max-width: 768px) {
  .mi-hero { padding: 130px 0 70px; background-position: right center; }
  .mi-hero::before {
    background: linear-gradient(90deg,rgba(2,13,46,0.99) 0%,rgba(2,13,46,0.96) 60%,rgba(2,13,46,0.85) 100%);
  }
  .mi-hero-content { flex: 0 0 100%; max-width: 100%; }
  .mi-hero-title { font-size: 36px; }
  .mi-hero-subtitle { font-size: 16px; }
  .mi-hero-desc { font-size: 14.5px; max-width: 100%; }
  .mi-hero-badges { flex-wrap: wrap; gap: 16px 0; }
  .mi-hero-badge { width: 50%; flex: none; }
  .mi-hero-badge:nth-child(2)::after,
  .mi-hero-badge:nth-child(4)::after { display: none; }
  .mi-overview-title { font-size: 26px; }
  .mi-section-title { font-size: 26px; }
  .mi-services-grid { grid-template-columns: 1fr; }
  .mi-why-grid { grid-template-columns: repeat(2, 1fr); }
  .mi-mid-cta-left { flex-direction: column; padding: 36px 28px; }
  .mi-mid-cta-title { font-size: 22px; }
}


/* ------------------------------------------------
   SECURITY SYSTEMS PAGE  ï¿½  ss- prefix
------------------------------------------------ */

/* -- Hero -- */
.ss-hero {
  position: relative;
  background-color: #020d2e;
  background-size: cover;
  background-position: center center;
  padding: 170px 0 90px;
  color: #ffffff;
  overflow: hidden;
}

.ss-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2,13,46,0.99) 0%,
    rgba(2,13,46,0.97) 30%,
    rgba(2,13,46,0.82) 52%,
    rgba(2,13,46,0.38) 72%,
    rgba(2,13,46,0.00) 100%
  );
  z-index: 1;
}

.ss-hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.ss-hero-content {
  flex: 0 0 56%;
  max-width: 56%;
}

.ss-breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.70);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.ss-breadcrumb span { color: rgba(255,255,255,0.40); }

.ss-hero-title {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 10px;
  font-family: 'Outfit', sans-serif;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.ss-hero-subtitle {
  font-size: 20px;
  font-weight: 700;
  color: #60a5fa;
  margin-bottom: 18px;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.5px;
}

.ss-hero-desc {
  font-size: 15.5px;
  color: rgba(255,255,255,0.80);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 0;
}

/* -- Hero Stats Strip -- */
.ss-hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 28px;
}

.ss-hero-stat {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex: 1;
  position: relative;
  padding: 0 20px 0 0;
}

.ss-hero-stat:first-child { padding-left: 0; }

.ss-hero-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 10%;
  height: 80%; width: 1px;
  background: rgba(255,255,255,0.15);
}

.ss-hero-stat-icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  color: #93c5fd;
  background: rgba(10,88,202,0.20);
  border: 1px solid rgba(10,88,202,0.40);
  border-radius: 10px;
  flex-shrink: 0;
}

.ss-hero-stat-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ss-stat-value {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  line-height: 1;
}

.ss-stat-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  line-height: 1.3;
}

/* -- Overview (text left, image right) -- */
.ss-overview {
  padding: 90px 0;
  background: #ffffff;
}

.ss-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.ss-overview-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #0A58CA;
  margin-bottom: 16px;
}

.ss-overview-title {
  font-size: 36px;
  font-weight: 800;
  color: #1a2a47;
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
  margin-bottom: 20px;
}

.ss-overview-text {
  font-size: 15px;
  color: #5a6b8a;
  line-height: 1.8;
  margin: 0;
}

.ss-overview-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.10);
}

.ss-overview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* -- Section helpers -- */
.ss-section { padding: 90px 0; }
.ss-section--light { background: #F8F9FA; }
.ss-section--white { background: #ffffff; }

.ss-section-head {
  text-align: left;
  margin-bottom: 44px;
}

.ss-section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #0A58CA;
  margin-bottom: 12px;
}

.ss-section-title {
  font-size: 34px;
  font-weight: 800;
  color: #1a2a47;
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
  margin: 0;
}

/* -- Services Grid (3-column, horizontal cards) -- */
.ss-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ss-service-card {
  background: #ffffff;
  border: 1px solid #e8eef6;
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.ss-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.09);
  border-color: rgba(10,88,202,0.25);
}

.ss-service-icon {
  width: 52px; height: 52px;
  background: rgba(10,88,202,0.07);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #0A58CA;
  flex-shrink: 0;
}

.ss-service-body { flex: 1; }

.ss-service-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a2a47;
  margin: 0 0 8px;
  line-height: 1.35;
}

.ss-service-desc {
  font-size: 13px;
  color: #5a6b8a;
  line-height: 1.65;
  margin: 0;
}

/* -- Why Trust Us (dark navy) -- */
.ss-trust {
  padding: 80px 0;
  background: #020d2e;
  color: #ffffff;
}

.ss-trust-head {
  text-align: center;
  margin-bottom: 50px;
}

.ss-trust-title {
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}

.ss-trust-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 3px;
  background: #0A58CA;
  border-radius: 3px;
}

.ss-trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.ss-trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 32px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.ss-trust-card:hover {
  background: rgba(10,88,202,0.18);
  border-color: rgba(10,88,202,0.40);
  transform: translateY(-4px);
}

.ss-trust-icon {
  width: 58px; height: 58px;
  background: rgba(10,88,202,0.22);
  border: 1px solid rgba(10,88,202,0.42);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #93c5fd;
}

.ss-trust-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.ss-trust-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0;
}

/* -- Responsive -- */
@media (max-width: 1200px) {
  .ss-trust-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .ss-overview-grid { grid-template-columns: 1fr; gap: 40px; }
  .ss-overview-image { max-height: 380px; }
  .ss-services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .ss-hero { padding: 130px 0 70px; background-position: right center; }
  .ss-hero::before {
    background: linear-gradient(90deg,rgba(2,13,46,0.99) 0%,rgba(2,13,46,0.96) 60%,rgba(2,13,46,0.85) 100%);
  }
  .ss-hero-content { flex: 0 0 100%; max-width: 100%; }
  .ss-hero-title { font-size: 36px; }
  .ss-hero-subtitle { font-size: 17px; }
  .ss-hero-desc { font-size: 14.5px; max-width: 100%; }
  .ss-hero-stats { flex-wrap: wrap; gap: 20px 0; }
  .ss-hero-stat { width: 50%; flex: none; }
  .ss-hero-stat:nth-child(2)::after,
  .ss-hero-stat:nth-child(4)::after { display: none; }
  .ss-overview-title { font-size: 26px; }
  .ss-section-title { font-size: 26px; }
  .ss-services-grid { grid-template-columns: 1fr; }
  .ss-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .ss-trust-title { font-size: 26px; }
}


/* ------------------------------------------------
   IT INFRASTRUCTURE PAGE  —  it- prefix
------------------------------------------------ */

/* Hero */
.it-hero {
  position: relative;
  background-color: #020d2e;
  background-size: cover;
  background-position: center right;
  min-height: 480px;
  display: flex;
  align-items: flex-start;
  color: #fff;
  overflow: hidden;
  padding: calc(var(--nav-h) + 3px + 60px) 0 60px;
}
.it-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(2,13,46,1) 0%,rgba(2,13,46,.98) 30%,rgba(2,13,46,.88) 50%,rgba(2,13,46,.45) 70%,rgba(2,13,46,0) 100%);
  z-index: 1;
}
.it-hero .container { position: relative; z-index: 2; display: flex; align-items: flex-start; width: 100%; }
.it-hero-content { flex: 0 0 52%; max-width: 52%; }
.it-breadcrumb { font-size: 12px; color: rgba(255,255,255,.6); margin-bottom: 16px; display: flex; align-items: center; gap: 6px; font-weight: 500; }
.it-breadcrumb span { color: rgba(255,255,255,.35); }
.it-hero-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #60a5fa; margin-bottom: 16px; display: block; }
.it-hero-title { font-size: 54px; font-weight: 900; line-height: 1.08; margin-bottom: 20px; font-family: 'Outfit',sans-serif; text-shadow: 0 2px 24px rgba(0,0,0,.5); color: #fff; }
.it-hero-title span { color: #60a5fa; display: block; }
.it-hero-desc { font-size: 15.5px; color: rgba(255,255,255,.78); line-height: 1.8; max-width: 480px; margin-bottom: 0; }

/* Hero Badges */
.it-hero-badges { display: flex; align-items: center; gap: 0; margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); }
.it-hero-badge { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; flex: 1; position: relative; padding: 0 16px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,.82); line-height: 1.4; }
.it-hero-badge:first-child { padding-left: 0; }
.it-hero-badge:last-child  { padding-right: 0; }
.it-hero-badge:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 10%; height: 80%; width: 1px; background: rgba(255,255,255,.15); }
.it-hero-badge-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; color: #93c5fd; background: rgba(10,88,202,.22); border: 1px solid rgba(10,88,202,.45); border-radius: 10px; flex-shrink: 0; }

/* Section Helpers */
.it-section { padding: 90px 0; }
.it-section--light { background: #F8F9FA; }
.it-section--white { background: #fff; }
.it-section-head { text-align: center; margin-bottom: 52px; }
.it-section-head--center { text-align: center; }
.it-section-label { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: #0A58CA; margin-bottom: 10px; }
.it-section-title { font-size: 34px; font-weight: 800; color: #1a2a47; font-family: 'Outfit',sans-serif; line-height: 1.2; margin: 0; position: relative; display: inline-block; padding-bottom: 16px; }
.it-section-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 50px; height: 3px; background: #0A58CA; border-radius: 3px; }

/* Services Grid */
.it-services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.it-service-card { background: #fff; border: 1px solid #e8eef6; border-left: 3px solid transparent; border-radius: 14px; padding: 28px 24px; display: flex; flex-direction: row; align-items: flex-start; gap: 18px; transition: all .3s ease; box-shadow: 0 2px 12px rgba(0,0,0,.04); }
.it-service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.09); border-left-color: #0A58CA; }
.it-service-icon { width: 52px; height: 52px; background: rgba(10,88,202,.07); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #0A58CA; flex-shrink: 0; transition: all .3s ease; }
.it-service-card:hover .it-service-icon { background: #0A58CA; color: #fff; }
.it-service-body { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.it-service-title { font-size: 15px; font-weight: 700; color: #1a2a47; margin: 0; line-height: 1.35; }
.it-service-desc { font-size: 13px; color: #5a6b8a; line-height: 1.65; margin: 0; flex: 1; }
.it-service-link { display: inline-flex; align-items: center; font-size: 16px; font-weight: 700; color: #0A58CA; text-decoration: none; transition: transform .2s; width: fit-content; margin-top: 4px; }
.it-service-link:hover { transform: translateX(5px); }

/* Process Timeline */
.it-process-timeline { display: flex; justify-content: space-between; position: relative; margin-top: 60px; }
.it-process-timeline::before { content: ''; position: absolute; top: 20px; left: 7%; right: 7%; height: 2px; background: linear-gradient(90deg,#0A58CA,#3b7ef4,#0A58CA); z-index: 1; opacity: .25; }
.it-process-step { position: relative; z-index: 2; width: 14%; display: flex; flex-direction: column; align-items: center; text-align: center; }
.it-process-number { width: 40px; height: 40px; background: #0A58CA; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; margin-bottom: 20px; box-shadow: 0 0 0 5px #F8F9FA,0 0 0 7px rgba(10,88,202,.2); flex-shrink: 0; }
.it-process-icon { width: 72px; height: 72px; background: #fff; border: 2px solid #e2e8f0; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #0A58CA; margin-bottom: 16px; box-shadow: 0 6px 20px rgba(0,0,0,.07); transition: all .3s ease; }
.it-process-step:hover .it-process-icon { border-color: #0A58CA; background: rgba(10,88,202,.05); }
.it-process-title { font-size: 13.5px; font-weight: 700; color: #1a2a47; margin-bottom: 8px; }
.it-process-desc { font-size: 12px; color: #5a6b8a; line-height: 1.55; }

/* Why Trust Us — full-width dark with right-side image, 4-col row */
.it-why { padding: 80px 0; background: #020d2e; color: #fff; position: relative; overflow: hidden; }
.it-why-bg-img { position: absolute; inset: 0; background-size: cover; background-position: center right; opacity: 0.22; }
.it-why-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,13,46,1) 0%, rgba(2,13,46,0.97) 40%, rgba(2,13,46,0.80) 65%, rgba(2,13,46,0.55) 100%); }
.it-why-container { position: relative; z-index: 2; }
.it-why-content { position: relative; z-index: 2; }
.it-why::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle,rgba(10,88,202,.15) 0%,transparent 65%); pointer-events: none; z-index: 1; }

/* Title + 4-col row layout */
.it-why-title { font-size: 32px; font-weight: 800; font-family: 'Outfit',sans-serif; color: #fff; margin-bottom: 44px; line-height: 1.25; position: relative; padding-bottom: 18px; text-align: center; }
.it-why-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 50px; height: 3px; background: #0A58CA; border-radius: 3px; }

.it-why-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.it-why-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; padding: 32px 24px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; transition: all .3s ease; }
.it-why-card:hover { background: rgba(10,88,202,.16); border-color: rgba(10,88,202,.40); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.25); }
.it-why-icon { width: 60px; height: 60px; background: rgba(10,88,202,.25); border: 1px solid rgba(10,88,202,.45); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #93c5fd; flex-shrink: 0; }
.it-why-card-title { font-size: 15px; font-weight: 700; color: #fff; margin: 0; }
.it-why-card-desc { font-size: 13px; color: rgba(255,255,255,.62); line-height: 1.6; margin: 0; }

/* Industries */
.it-industries-grid { display: grid; grid-template-columns: repeat(8,1fr); gap: 16px; margin-top: 44px; }
.it-industry-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; padding: 22px 10px; background: #fff; border: 1px solid #e8eef6; border-radius: 12px; transition: all .3s ease; font-size: 12.5px; font-weight: 600; color: #1a2a47; cursor: default; }
.it-industry-card:hover { border-color: rgba(10,88,202,.30); box-shadow: 0 8px 28px rgba(10,88,202,.10); transform: translateY(-4px); color: #0A58CA; }
.it-industry-icon { width: 54px; height: 54px; background: rgba(10,88,202,.07); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #0A58CA; transition: all .3s ease; }
.it-industry-card:hover .it-industry-icon { background: rgba(10,88,202,.14); }

/* Technology Partners — horizontal badge row, single line */
.it-partners-row { display: flex; flex-wrap: nowrap; justify-content: center; align-items: stretch; gap: 16px; margin-top: 44px; }
.it-partner-badge { display: flex; align-items: center; gap: 10px; padding: 14px 20px; background: #fff; border: 1.5px solid #e8eef6; border-radius: 12px; transition: all .3s ease; flex: 1; min-width: 0; box-shadow: 0 2px 10px rgba(0,0,0,.04); }
.it-partner-badge:hover { border-color: rgba(10,88,202,.30); box-shadow: 0 10px 28px rgba(0,0,0,.09); transform: translateY(-3px); }
.it-partner-badge img { height: 32px; width: auto; max-width: 40px; object-fit: contain; filter: grayscale(20%) opacity(.85); transition: all .3s ease; flex-shrink: 0; }
.it-partner-badge:hover img { filter: grayscale(0%) opacity(1); }
.it-partner-badge span { font-size: 12px; font-weight: 700; color: #1a2a47; line-height: 1.3; white-space: nowrap; }
.it-partner-badge span small { display: block; font-size: 10.5px; font-weight: 500; color: #5a6b8a; }

/* CTA Banner */
.it-cta { padding: 0; background: #020d2e; }

/* Partner text-logo fallback (for brands without image assets) */
.it-partner-badge--text { gap: 14px; }
.it-partner-text-logo { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 900; color: #0A58CA; background: rgba(10,88,202,.08); border: 1px solid rgba(10,88,202,.20); border-radius: 6px; flex-shrink: 0; letter-spacing: -0.5px; text-transform: uppercase; }
.it-partner-text-logo--cisco { font-size: 12px; color: #049fd9; background: rgba(4,159,217,.08); border-color: rgba(4,159,217,.20); }
.it-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 52px 64px; background: linear-gradient(135deg,#031535 0%,#0a2060 50%,#1240a8 100%); position: relative; overflow: hidden; flex-wrap: wrap; }
.it-cta-inner::before { content: ''; position: absolute; top: -80px; right: 80px; width: 320px; height: 320px; background: radial-gradient(circle,rgba(10,88,202,.30) 0%,transparent 65%); border-radius: 50%; pointer-events: none; }
.it-cta-left { display: flex; align-items: center; gap: 24px; flex: 1; min-width: 280px; position: relative; z-index: 2; }
.it-cta-icon { width: 64px; height: 64px; background: rgba(10,88,202,.30); border: 1px solid rgba(10,88,202,.55); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #93c5fd; flex-shrink: 0; }
.it-cta-text { flex: 1; }
.it-cta-title { font-size: 26px; font-weight: 800; font-family: 'Outfit',sans-serif; color: #fff; margin-bottom: 8px; line-height: 1.3; }
.it-cta-desc { font-size: 14.5px; color: rgba(255,255,255,.68); line-height: 1.6; margin: 0; }
.it-cta-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 15px 36px; background: transparent; color: #fff; font-weight: 700; font-size: 15px; border-radius: 8px; border: 2px solid rgba(255,255,255,.55); text-decoration: none; white-space: nowrap; transition: all .3s ease; flex-shrink: 0; position: relative; z-index: 2; }
.it-cta-btn:hover { background: #fff; color: #031535; border-color: #fff; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,255,255,.18); }

/* Responsive */
@media (max-width: 1200px) {
  .it-services-grid { grid-template-columns: repeat(2,1fr); }
  .it-industries-grid { grid-template-columns: repeat(4,1fr); }
  .it-why-row { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 1024px) {
  .it-process-timeline { flex-wrap: wrap; gap: 36px; justify-content: center; }
  .it-process-step { width: 28%; }
  .it-process-timeline::before { display: none; }
}
@media (max-width: 768px) {
  .it-hero { padding: calc(var(--nav-h) + 3px + 40px) 0 50px; background-position: right center; }
  .it-hero::before { background: linear-gradient(90deg,rgba(2,13,46,1) 0%,rgba(2,13,46,.97) 60%,rgba(2,13,46,.88) 100%); }
  .it-hero-content { flex: 0 0 100%; max-width: 100%; }
  .it-hero-title { font-size: 34px; }
  .it-hero-desc { font-size: 14.5px; max-width: 100%; }
  .it-hero-badges { flex-wrap: wrap; gap: 16px 0; }
  .it-hero-badge { width: 50%; flex: none; }
  .it-hero-badge:nth-child(2)::after,.it-hero-badge:nth-child(4)::after { display: none; }
  .it-section-title { font-size: 26px; }
  .it-services-grid { grid-template-columns: 1fr; }
  .it-process-step { width: 100%; flex-direction: row; text-align: left; gap: 16px; }
  .it-process-icon,.it-process-number { margin-bottom: 0; }
  .it-why-row { grid-template-columns: repeat(2,1fr); }
  .it-why-title { font-size: 26px; }
  .it-industries-grid { grid-template-columns: repeat(4,1fr); }
  .it-partners-row { flex-wrap: wrap; gap: 12px; }
  .it-partner-badge { flex: 0 0 calc(50% - 6px); min-width: 0; padding: 12px 14px; }
  .it-cta-inner { flex-direction: column; padding: 40px 28px; }
  .it-cta-left { flex-direction: column; align-items: flex-start; }
  .it-cta-title { font-size: 22px; }
}
@media (max-width: 480px) {
  .it-hero-title { font-size: 28px; }
  .it-industries-grid { grid-template-columns: repeat(2,1fr); }
  .it-why-row { grid-template-columns: 1fr; }
}


/* ------------------------------------------------
   IT INFRASTRUCTURE (v2) PAGE  ï¿½  inf- prefix
------------------------------------------------ */

/* -- Hero -- */
.inf-hero {
  position: relative;
  background-color: #020d2e;
  background-size: cover;
  background-position: center center;
  padding: 170px 0 90px;
  color: #ffffff;
  overflow: hidden;
}

.inf-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2,13,46,0.99) 0%,
    rgba(2,13,46,0.97) 30%,
    rgba(2,13,46,0.82) 52%,
    rgba(2,13,46,0.38) 72%,
    rgba(2,13,46,0.00) 100%
  );
  z-index: 1;
}

.inf-hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.inf-hero-content {
  flex: 0 0 58%;
  max-width: 58%;
}

.inf-breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.70);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.inf-breadcrumb span { color: rgba(255,255,255,0.40); }

.inf-hero-title {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 18px;
  font-family: 'Outfit', sans-serif;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.inf-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 0;
}

/* -- Hero Badges -- */
.inf-hero-badges {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 28px;
}

.inf-hero-badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex: 1;
  position: relative;
  padding: 0 16px 0 0;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

.inf-hero-badge:first-child { padding-left: 0; }

.inf-hero-badge:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 10%;
  height: 80%; width: 1px;
  background: rgba(255,255,255,0.15);
}

.inf-hero-badge-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: #93c5fd;
  background: rgba(10,88,202,0.20);
  border: 1px solid rgba(10,88,202,0.40);
  border-radius: 10px;
  flex-shrink: 0;
}

/* -- Section helpers -- */
.inf-section { padding: 90px 0; }
.inf-section--light { background: #F8F9FA; }
.inf-section--white { background: #ffffff; }

.inf-section-head { text-align: left; margin-bottom: 44px; }
.inf-section-head--center { text-align: center; }

.inf-section-title {
  font-size: 34px;
  font-weight: 800;
  color: #1a2a47;
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
  margin: 0 0 14px;
  position: relative;
  display: inline-block;
}

.inf-section-head--center .inf-section-title {
  padding-bottom: 16px;
}

.inf-section-head--center .inf-section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 3px;
  background: #0A58CA;
  border-radius: 3px;
}

.inf-section-desc {
  font-size: 15px;
  color: #5a6b8a;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.75;
}

/* -- Cards Grid (3-column, horizontal) -- */
.inf-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.inf-card {
  background: #F8F9FA;
  border: 1px solid #e8eef6;
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}

.inf-section--white .inf-card { background: #ffffff; }
.inf-card--offer { background: #ffffff; }

.inf-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.09);
  border-color: rgba(10,88,202,0.25);
  background: #ffffff;
}

.inf-card-icon {
  width: 52px; height: 52px;
  background: rgba(10,88,202,0.07);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #0A58CA;
  flex-shrink: 0;
}

.inf-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inf-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a2a47;
  margin: 0;
  line-height: 1.35;
}

.inf-card-desc {
  font-size: 13px;
  color: #5a6b8a;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.inf-card-link {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #0A58CA;
  text-decoration: none;
  transition: transform 0.2s;
  width: fit-content;
}

.inf-card-link:hover { transform: translateX(4px); }

.inf-card-learn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: #0A58CA;
  text-decoration: none;
  transition: gap 0.2s;
  margin-top: 4px;
}

.inf-card-learn:hover { gap: 8px; }

/* -- Process Timeline (6 steps) -- */
.inf-process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 60px;
}

.inf-process-timeline::before {
  content: '';
  position: absolute;
  top: 16px; left: 3%; right: 3%;
  border-top: 2px dashed #cbd5e1;
  z-index: 1;
}

.inf-process-step {
  position: relative; z-index: 2;
  width: 14%;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}

.inf-process-number {
  width: 32px; height: 32px;
  background: #0A58CA; color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
  margin-bottom: 20px;
  box-shadow: 0 0 0 6px #F8F9FA;
}

.inf-process-icon {
  width: 68px; height: 68px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #0A58CA; margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.inf-process-title {
  font-size: 13.5px; font-weight: 700;
  color: #1a2a47; margin-bottom: 8px;
}

.inf-process-desc {
  font-size: 12px; color: #5a6b8a; line-height: 1.5;
}

/* -- CTA -- */
.inf-cta {
  padding: 80px 0;
  background: #031535;
}

.inf-cta-box {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(3,21,53,0.5);
  background-size: cover;
  background-position: right center;
  min-height: 260px;
  display: flex;
  align-items: center;
}

.inf-cta-box::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2,13,46,0.98) 0%,
    rgba(2,13,46,0.92) 40%,
    rgba(2,13,46,0.55) 65%,
    rgba(2,13,46,0.00) 100%
  );
  z-index: 1;
  border-radius: 20px;
}

.inf-cta-content {
  padding: 55px 65px;
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 580px;
}

.inf-cta-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}

.inf-cta-icon {
  width: 64px; height: 64px;
  background: #0A58CA;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(10,88,202,0.5);
}

.inf-cta-title {
  font-size: 36px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  line-height: 1.25;
}

.inf-cta-title span { color: #60a5fa; }

.inf-cta-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 30px;
  line-height: 1.65;
}

.inf-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  background: #ffffff;
  color: #031535;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.inf-cta-btn:hover {
  background: #e8f0ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}

/* -- Responsive -- */
@media (max-width: 1024px) {
  .inf-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .inf-process-timeline { flex-wrap: wrap; gap: 36px; }
  .inf-process-step { width: 30%; }
  .inf-process-timeline::before { display: none; }
}

@media (max-width: 768px) {
  .inf-hero { padding: 130px 0 70px; background-position: right center; }
  .inf-hero::before {
    background: linear-gradient(90deg,rgba(2,13,46,0.99) 0%,rgba(2,13,46,0.96) 60%,rgba(2,13,46,0.85) 100%);
  }
  .inf-hero-content { flex: 0 0 100%; max-width: 100%; }
  .inf-hero-title { font-size: 36px; }
  .inf-hero-desc { font-size: 14.5px; max-width: 100%; }
  .inf-hero-badges { flex-wrap: wrap; gap: 16px 0; }
  .inf-hero-badge { width: 50%; flex: none; }
  .inf-hero-badge:nth-child(2)::after,
  .inf-hero-badge:nth-child(4)::after { display: none; }
  .inf-section-title { font-size: 26px; }
  .inf-grid-3 { grid-template-columns: 1fr; }
  .inf-process-step { width: 100%; flex-direction: row; text-align: left; gap: 16px; }
  .inf-process-icon, .inf-process-number { margin-bottom: 0; }
  .inf-cta-content { padding: 36px 28px; }
  .inf-cta-title { font-size: 26px; }
  .inf-cta-header { flex-direction: column; align-items: flex-start; }
}


/* ------------------------------------------------
   IT PRODUCTS / SALES PAGE  ï¿½  sl- prefix
------------------------------------------------ */

/* -- Hero -- */
.sl-hero {
  position: relative;
  background-color: #020d2e;
  background-size: cover;
  background-position: center center;
  padding: 170px 0 120px;
  color: #ffffff;
  overflow: hidden;
}

.sl-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2,13,46,0.99) 0%,
    rgba(2,13,46,0.97) 32%,
    rgba(2,13,46,0.85) 52%,
    rgba(2,13,46,0.42) 72%,
    rgba(2,13,46,0.00) 100%
  );
  z-index: 1;
}

.sl-hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.sl-hero-content {
  flex: 0 0 58%;
  max-width: 58%;
}

.sl-breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.70);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.sl-breadcrumb span { color: rgba(255,255,255,0.40); }

.sl-hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 16px;
}

.sl-hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  font-family: 'Outfit', sans-serif;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.sl-hero-title span { color: #60a5fa; }

.sl-hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.80);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 0;
}

/* -- Hero badges strip (full-width, pinned to bottom of hero) -- */
.sl-hero-badges-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  border-top: 1px solid rgba(255,255,255,0.12);
  background: rgba(2,13,46,0.55);
  backdrop-filter: blur(6px);
}

.sl-hero-badges-strip .container {
  display: flex;
  align-items: stretch;
}

.sl-hero-badges {
  display: flex;
  align-items: stretch;
  width: 100%;
  gap: 0;
}

.sl-hero-badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  flex: 1;
  position: relative;
  padding: 22px 24px;
}

.sl-hero-badge:first-child { padding-left: 0; }

.sl-hero-badge:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%;
  height: 60%; width: 1px;
  background: rgba(255,255,255,0.15);
}

.sl-hero-badge-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: #93c5fd;
  background: rgba(10,88,202,0.25);
  border: 1px solid rgba(10,88,202,0.45);
  border-radius: 10px;
  flex-shrink: 0;
}

.sl-badge-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sl-badge-title {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.sl-badge-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.60);
  line-height: 1.4;
}

/* -- Section helpers -- */
.sl-section { padding: 90px 0; }
.sl-section--light { background: #F8F9FA; }
.sl-section--white { background: #ffffff; }

.sl-section-head {
  text-align: center;
  margin-bottom: 50px;
}

/* Inline label + title row (mockup style) */
.sl-section-title-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.sl-section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #0A58CA;
  white-space: nowrap;
  flex-shrink: 0;
}

.sl-section-title {
  font-size: 34px;
  font-weight: 800;
  color: #1a2a47;
  font-family: 'Outfit', sans-serif;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
  margin-bottom: 0;
  line-height: 1.2;
}

.sl-section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 50px; height: 3px;
  background: #0A58CA;
  border-radius: 3px;
}

.sl-section-desc {
  font-size: 15px;
  color: #5a6b8a;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.75;
}

/* -- Products Grid (4-column) -- */
.sl-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.sl-product-card {
  background: #ffffff;
  border: 1px solid #e8eef6;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.sl-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
  border-color: rgba(10,88,202,0.25);
}

.sl-product-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f0f4ff;
}

.sl-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.sl-product-card:hover .sl-product-img img {
  transform: scale(1.05);
}

.sl-product-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a2a47;
  margin: 18px 16px 8px;
  line-height: 1.3;
}

.sl-product-desc {
  font-size: 13px;
  color: #5a6b8a;
  line-height: 1.6;
  margin: 0 16px 20px;
}

/* -- Why Choose Us (dark navy) -- */
.sl-why {
  padding: 80px 0;
  background: #020d2e;
  color: #ffffff;
}

.sl-why-head {
  text-align: center;
  margin-bottom: 50px;
}

.sl-why-title {
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}

.sl-why-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 3px;
  background: #0A58CA;
  border-radius: 3px;
}

.sl-why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.sl-why-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 30px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.sl-why-card:hover {
  background: rgba(10,88,202,0.18);
  border-color: rgba(10,88,202,0.40);
  transform: translateY(-4px);
}

.sl-why-icon {
  width: 58px; height: 58px;
  background: rgba(10,88,202,0.22);
  border: 1px solid rgba(10,88,202,0.42);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #93c5fd;
}

.sl-why-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.sl-why-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0;
}

/* -- CTA (inline light banner) -- */
.sl-cta {
  padding: 50px 0;
  background: #F8F9FA;
  border-top: 1px solid #e8eef6;
}

.sl-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: linear-gradient(135deg, #020d2e 0%, #0a2060 55%, #1a3d8f 100%);
  border-radius: 18px;
  padding: 40px 52px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(2,13,46,0.25);
}

.sl-cta-inner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(10,88,202,0.35) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.sl-cta-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.sl-cta-icon {
  width: 60px; height: 60px;
  background: rgba(10,88,202,0.35);
  border: 1px solid rgba(10,88,202,0.55);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #93c5fd;
  flex-shrink: 0;
}

.sl-cta-text { flex: 1; }

.sl-cta-title {
  font-size: 26px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.sl-cta-title span { color: #60a5fa; }

.sl-cta-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin: 0;
}

.sl-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  background: #ffffff;
  color: #031535;
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.sl-cta-btn:hover {
  background: #e8f0ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}

/* -- Responsive -- */
@media (max-width: 1200px) {
  .sl-products-grid { grid-template-columns: repeat(2, 1fr); }
  .sl-why-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .sl-hero { padding: 130px 0 100px; background-position: right center; }
  .sl-hero::before {
    background: linear-gradient(90deg,rgba(2,13,46,0.99) 0%,rgba(2,13,46,0.96) 60%,rgba(2,13,46,0.85) 100%);
  }
  .sl-hero-content { flex: 0 0 100%; max-width: 100%; }
  .sl-hero-title { font-size: 34px; }
  .sl-hero-desc { font-size: 14.5px; max-width: 100%; }
  .sl-hero-badges { flex-wrap: wrap; }
  .sl-hero-badge { width: 50%; flex: none; padding: 16px 16px; }
  .sl-hero-badge:first-child { padding-left: 0; }
  .sl-hero-badge:nth-child(2)::after,
  .sl-hero-badge:nth-child(4)::after { display: none; }
  .sl-section-title-row { flex-direction: column; align-items: center; gap: 6px; }
  .sl-section-title { font-size: 26px; }
  .sl-section-title::after { left: 50%; transform: translateX(-50%); }
  .sl-products-grid { grid-template-columns: repeat(2, 1fr); }
  .sl-why-grid { grid-template-columns: repeat(2, 1fr); }
  .sl-why-title { font-size: 26px; }
  .sl-cta-inner { flex-direction: column; padding: 36px 28px; text-align: center; }
  .sl-cta-left { flex-direction: column; text-align: center; }
  .sl-cta-title { font-size: 20px; }
}


/* ------------------------------------------------
   WHY CHOOSE US PAGE  ï¿½  wc- prefix
------------------------------------------------ */

/* -- Hero -- */
.wc-hero {
  position: relative;
  background-color: #020d2e;
  background-size: cover;
  background-position: center center;
  padding: 170px 0 90px;
  color: #ffffff;
  overflow: hidden;
}

.wc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2,13,46,0.99) 0%,
    rgba(2,13,46,0.97) 30%,
    rgba(2,13,46,0.82) 52%,
    rgba(2,13,46,0.38) 72%,
    rgba(2,13,46,0.00) 100%
  );
  z-index: 1;
}

.wc-hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.wc-hero-content {
  flex: 0 0 56%;
  max-width: 56%;
}

.wc-breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.70);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.wc-breadcrumb span { color: rgba(255,255,255,0.40); }

.wc-hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
  font-family: 'Outfit', sans-serif;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.wc-hero-title span { color: #60a5fa; }

.wc-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 0;
}

/* -- Hero Badges -- */
.wc-hero-badges {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 28px;
}

.wc-hero-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  flex: 1;
  position: relative;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

.wc-hero-badge:first-child { padding-left: 0; }

.wc-hero-badge:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 10%;
  height: 80%; width: 1px;
  background: rgba(255,255,255,0.15);
}

.wc-hero-badge-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: #93c5fd;
  background: rgba(10,88,202,0.20);
  border: 1px solid rgba(10,88,202,0.40);
  border-radius: 12px;
}

/* -- Section helpers -- */
.wc-section { padding: 90px 0; }
.wc-section--light { background: #F8F9FA; }
.wc-section--white { background: #ffffff; }

.wc-section-head {
  text-align: center;
  margin-bottom: 50px;
}

.wc-section-title {
  font-size: 34px;
  font-weight: 800;
  color: #1a2a47;
  font-family: 'Outfit', sans-serif;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
  margin-bottom: 14px;
}

.wc-section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 3px;
  background: #0A58CA;
  border-radius: 3px;
}

.wc-section-desc {
  font-size: 15.5px;
  color: #5a6b8a;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

/* -- Commitment Section (2-column) -- */
.wc-commit-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 70px;
  align-items: start;
}

.wc-commit-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #0A58CA;
  margin-bottom: 16px;
}

.wc-commit-title {
  font-size: 34px;
  font-weight: 800;
  color: #1a2a47;
  font-family: 'Outfit', sans-serif;
  line-height: 1.25;
  margin-bottom: 22px;
}

.wc-commit-text {
  font-size: 15px;
  color: #5a6b8a;
  line-height: 1.8;
  margin-bottom: 16px;
}

.wc-commit-text:last-child { margin-bottom: 0; }

/* -- Feature Cards Grid (3ï¿½2) -- */
.wc-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.wc-feature-card {
  background: #F8F9FA;
  border: 1px solid #e8eef6;
  border-radius: 14px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.03);
}

.wc-feature-card:hover {
  background: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.09);
  border-color: rgba(10,88,202,0.25);
}

.wc-feature-icon {
  width: 50px; height: 50px;
  background: rgba(10,88,202,0.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #0A58CA;
  flex-shrink: 0;
}

.wc-feature-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a2a47;
  margin: 0;
  line-height: 1.35;
}

.wc-feature-desc {
  font-size: 12.5px;
  color: #5a6b8a;
  line-height: 1.65;
  margin: 0;
}

/* -- Stats Banner (dark navy) -- */
.wc-stats {
  padding: 70px 0;
  background: #020d2e;
  color: #ffffff;
}

.wc-stats-head {
  text-align: center;
  margin-bottom: 50px;
}

.wc-stats-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 12px;
}

.wc-stats-title {
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}

.wc-stats-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 3px;
  background: #0A58CA;
  border-radius: 3px;
}

.wc-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.wc-stat-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  padding: 28px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.wc-stat-item:hover {
  background: rgba(10,88,202,0.18);
  border-color: rgba(10,88,202,0.38);
  transform: translateY(-3px);
}

.wc-stat-icon {
  width: 56px; height: 56px;
  background: rgba(10,88,202,0.25);
  border: 1px solid rgba(10,88,202,0.45);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #93c5fd;
  flex-shrink: 0;
}

.wc-stat-content { flex: 1; }

.wc-stat-value {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  line-height: 1;
  margin-bottom: 6px;
}

.wc-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  line-height: 1.3;
}

/* -- Industries (8-column) -- */
.wc-industries-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.wc-industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 24px 10px;
  background: #ffffff;
  border: 1px solid #e8eef6;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-size: 12.5px;
  font-weight: 600;
  color: #1a2a47;
  line-height: 1.4;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.wc-industry-card:hover {
  border-color: rgba(10,88,202,0.25);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  transform: translateY(-4px);
  color: #0A58CA;
}

.wc-industry-icon {
  width: 54px; height: 54px;
  background: rgba(10,88,202,0.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #0A58CA;
  transition: all 0.3s ease;
}

.wc-industry-card:hover .wc-industry-icon {
  background: rgba(10,88,202,0.14);
}

/* -- CTA (inline dark banner) -- */
.wc-cta {
  padding: 50px 0;
  background: #F8F9FA;
  border-top: 1px solid #e8eef6;
}

.wc-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: linear-gradient(135deg, #020d2e 0%, #0a2060 55%, #1a3d8f 100%);
  border-radius: 18px;
  padding: 44px 56px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(2,13,46,0.25);
}

.wc-cta-inner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(10,88,202,0.35) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.wc-cta-left {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
}

.wc-cta-icon {
  width: 64px; height: 64px;
  background: rgba(10,88,202,0.35);
  border: 1px solid rgba(10,88,202,0.55);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #93c5fd;
  flex-shrink: 0;
}

.wc-cta-text { flex: 1; }

.wc-cta-title {
  font-size: 28px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.wc-cta-title span { color: #60a5fa; }

.wc-cta-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin: 0;
}

.wc-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  background: #ffffff;
  color: #031535;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.wc-cta-btn:hover {
  background: #e8f0ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}

/* -- Responsive -- */
@media (max-width: 1200px) {
  .wc-industries-grid { grid-template-columns: repeat(4, 1fr); }
  .wc-commit-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 1024px) {
  .wc-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .wc-feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .wc-hero { padding: 130px 0 70px; background-position: right center; }
  .wc-hero::before {
    background: linear-gradient(90deg,rgba(2,13,46,0.99) 0%,rgba(2,13,46,0.96) 60%,rgba(2,13,46,0.85) 100%);
  }
  .wc-hero-content { flex: 0 0 100%; max-width: 100%; }
  .wc-hero-title { font-size: 36px; }
  .wc-hero-desc { font-size: 15px; max-width: 100%; }
  .wc-hero-badges { flex-wrap: wrap; gap: 16px 0; }
  .wc-hero-badge { width: 50%; flex: none; }
  .wc-hero-badge:nth-child(2)::after,
  .wc-hero-badge:nth-child(4)::after { display: none; }
  .wc-commit-title { font-size: 26px; }
  .wc-section-title { font-size: 26px; }
  .wc-stats-title { font-size: 26px; }
  .wc-feature-grid { grid-template-columns: 1fr; }
  .wc-stats-grid { grid-template-columns: 1fr; }
  .wc-stat-value { font-size: 28px; }
  .wc-industries-grid { grid-template-columns: repeat(4, 1fr); }
  .wc-cta-inner { flex-direction: column; padding: 36px 28px; text-align: center; }
  .wc-cta-left { flex-direction: column; text-align: center; }
  .wc-cta-title { font-size: 22px; }
}


/* ------------------------------------------------
   CASE STUDIES PAGE  ï¿½  cs2- prefix
------------------------------------------------ */

/* -- Hero -- */
.cs2-hero {
  position: relative;
  background-color: #020d2e;
  background-size: cover;
  background-position: center center;
  padding: 170px 0 90px;
  color: #ffffff;
  overflow: hidden;
}

.cs2-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2,13,46,0.99) 0%,
    rgba(2,13,46,0.97) 30%,
    rgba(2,13,46,0.82) 52%,
    rgba(2,13,46,0.38) 72%,
    rgba(2,13,46,0.00) 100%
  );
  z-index: 1;
}

.cs2-hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.cs2-hero-content {
  flex: 0 0 62%;
  max-width: 62%;
}

.cs2-breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.70);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.cs2-breadcrumb span { color: rgba(255,255,255,0.40); }

.cs2-hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
  font-family: 'Outfit', sans-serif;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.cs2-hero-title span {
  color: #60a5fa;
  font-size: 38px;
  font-weight: 700;
  display: block;
  margin-top: 6px;
}

.cs2-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.80);
  line-height: 1.75;
  max-width: 520px;
}

/* -- Filter Tabs -- */
.cs2-filters {
  background: #ffffff;
  border-bottom: 1px solid #e8eef6;
  padding: 0;
  position: sticky;
  top: 70px;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.cs2-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 14px 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.cs2-tabs::-webkit-scrollbar { display: none; }

.cs2-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border: 1px solid #e8eef6;
  border-radius: 8px;
  background: #F8F9FA;
  color: #5a6b8a;
  font-size: 13.5px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.cs2-tab:hover {
  background: #ffffff;
  border-color: rgba(10,88,202,0.30);
  color: #0A58CA;
}

.cs2-tab.active {
  background: #0A58CA;
  border-color: #0A58CA;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(10,88,202,0.30);
}

/* -- Case Studies List -- */
.cs2-list {
  padding: 60px 0 80px;
  background: #F8F9FA;
}

.cs2-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  background: #ffffff;
  border: 1px solid #e8eef6;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.cs2-card:last-child { margin-bottom: 0; }

.cs2-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.10);
  transform: translateY(-3px);
}

/* -- Card Image -- */
.cs2-card-image {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.cs2-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.cs2-card:hover .cs2-card-image img {
  transform: scale(1.04);
}

.cs2-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 2;
}

.cs2-badge--microsoft { background: #0078d4; color: #fff; }
.cs2-badge--cctv      { background: #e65c00; color: #fff; }
.cs2-badge--networking { background: #0A58CA; color: #fff; }
.cs2-badge--security  { background: #1a6b2e; color: #fff; }
.cs2-badge--infrastructure { background: #5b21b6; color: #fff; }

/* -- Card Content -- */
.cs2-card-content {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cs2-card-title {
  font-size: 22px;
  font-weight: 800;
  color: #1a2a47;
  font-family: 'Outfit', sans-serif;
  line-height: 1.3;
  margin: 0;
}

/* -- Meta badges -- */
.cs2-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cs2-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: #5a6b8a;
  background: #F8F9FA;
  border: 1px solid #e8eef6;
  border-radius: 20px;
  padding: 5px 12px;
}

.cs2-meta-item svg { color: #0A58CA; flex-shrink: 0; }

/* -- 4-column content grid -- */
.cs2-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 4px;
  border-top: 1px solid #f0f4ff;
}

.cs2-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid currentColor;
}

.cs2-col--challenge { color: #dc2626; }
.cs2-col--solution  { color: #0A58CA; }
.cs2-col--tech      { color: #7c3aed; }
.cs2-col--outcome   { color: #059669; }

.cs2-col-text {
  font-size: 12.5px;
  color: #5a6b8a;
  line-height: 1.65;
  margin: 0;
}

.cs2-tech-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cs2-tech-list li {
  font-size: 12px;
  color: #5a6b8a;
  line-height: 1.5;
  padding-left: 12px;
  position: relative;
}

.cs2-tech-list li::before {
  content: 'ï¿½';
  position: absolute;
  left: 0;
  color: #7c3aed;
  font-weight: 700;
}

.cs2-outcome-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cs2-outcome-list li {
  font-size: 12px;
  color: #3a4a6a;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.cs2-check {
  color: #059669;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 13px;
}

.cs2-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: #0A58CA;
  text-decoration: none;
  transition: gap 0.2s;
  width: fit-content;
  margin-top: 4px;
}

.cs2-card-link:hover { gap: 10px; }

/* -- CTA -- */
.cs2-cta {
  padding: 50px 0;
  background: #ffffff;
  border-top: 1px solid #e8eef6;
}

.cs2-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: linear-gradient(135deg, #020d2e 0%, #0a2060 55%, #1a3d8f 100%);
  border-radius: 18px;
  padding: 40px 52px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(2,13,46,0.25);
}

.cs2-cta-inner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(10,88,202,0.35) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cs2-cta-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.cs2-cta-icon {
  width: 60px; height: 60px;
  background: rgba(10,88,202,0.35);
  border: 1px solid rgba(10,88,202,0.55);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #93c5fd;
  flex-shrink: 0;
}

.cs2-cta-text { flex: 1; }

.cs2-cta-title {
  font-size: 26px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.cs2-cta-title span { color: #60a5fa; }

.cs2-cta-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin: 0;
}

.cs2-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  background: #ffffff;
  color: #031535;
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.cs2-cta-btn:hover {
  background: #e8f0ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}

/* -- Responsive -- */
@media (max-width: 1024px) {
  .cs2-card { grid-template-columns: 240px 1fr; }
  .cs2-card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .cs2-hero { padding: 130px 0 70px; background-position: right center; }
  .cs2-hero::before {
    background: linear-gradient(90deg,rgba(2,13,46,0.99) 0%,rgba(2,13,46,0.96) 60%,rgba(2,13,46,0.85) 100%);
  }
  .cs2-hero-content { flex: 0 0 100%; max-width: 100%; }
  .cs2-hero-title { font-size: 34px; }
  .cs2-hero-title span { font-size: 24px; }
  .cs2-hero-desc { font-size: 14.5px; max-width: 100%; }
  .cs2-filters { position: static; }
  .cs2-card { grid-template-columns: 1fr; }
  .cs2-card-image { min-height: 220px; }
  .cs2-card-content { padding: 24px 20px; }
  .cs2-card-title { font-size: 18px; }
  .cs2-card-grid { grid-template-columns: 1fr; }
  .cs2-cta-inner { flex-direction: column; padding: 36px 28px; text-align: center; }
  .cs2-cta-left { flex-direction: column; text-align: center; }
  .cs2-cta-title { font-size: 20px; }
}


/* ------------------------------------------------
   SUPPORT & AMC SERVICES PAGE  ï¿½  am- prefix
------------------------------------------------ */

/* -- Hero -- */
.am-hero {
  position: relative;
  background-color: #020d2e;
  background-size: cover;
  background-position: center center;
  padding: 160px 0 80px;
  color: #ffffff;
  overflow: hidden;
}

.am-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2,13,46,0.99) 0%,
    rgba(2,13,46,0.97) 35%,
    rgba(2,13,46,0.70) 60%,
    rgba(2,13,46,0.20) 100%
  );
  z-index: 1;
}

.am-hero .container { position: relative; z-index: 2; }

.am-hero-content {
  max-width: 580px;
}

.am-breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.70);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.am-breadcrumb span { color: rgba(255,255,255,0.40); }

.am-hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 14px;
  font-family: 'Outfit', sans-serif;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.am-hero-title span { color: #60a5fa; }

.am-hero-subtitle {
  font-size: 17px;
  font-weight: 600;
  color: rgba(255,255,255,0.90);
  margin-bottom: 14px;
  line-height: 1.6;
}

.am-hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 0;
}

/* -- Hero badge row -- */
.am-hero-badges {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.am-hero-badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex: 1;
  position: relative;
  padding: 0 20px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  line-height: 1.4;
}

.am-hero-badge:first-child { padding-left: 0; }
.am-hero-badge:last-child  { padding-right: 0; }

.am-hero-badge:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 10%; height: 80%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}

.am-float-icon {
  width: 36px; height: 36px;
  background: rgba(10,88,202,0.25);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #93c5fd;
}

/* -- Value Strip -- */
.am-values {
  padding: 40px 0;
  background: #ffffff;
  border-bottom: 1px solid #e8eef6;
}

.am-values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.am-value-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  position: relative;
  transition: background 0.3s ease;
}

.am-value-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 15%; height: 70%;
  width: 1px;
  background: #e8eef6;
}

.am-value-card:hover { background: #F8F9FA; }

.am-value-icon {
  width: 44px; height: 44px;
  background: rgba(10,88,202,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #0A58CA;
  flex-shrink: 0;
}

.am-value-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a2a47;
  margin-bottom: 4px;
}

.am-value-desc {
  font-size: 12px;
  color: #5a6b8a;
  line-height: 1.55;
  margin: 0;
}

/* -- Section helpers -- */
.am-section { padding: 90px 0; }
.am-section--light { background: #F8F9FA; }
.am-section--white { background: #ffffff; }

.am-section-head { text-align: center; margin-bottom: 50px; }

.am-section-title {
  font-size: 34px;
  font-weight: 800;
  color: #1a2a47;
  font-family: 'Outfit', sans-serif;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
  margin-bottom: 14px;
}

.am-section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 3px;
  background: #0A58CA;
  border-radius: 3px;
}

.am-section-desc {
  font-size: 15.5px;
  color: #5a6b8a;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

/* -- AMC Plans -- */
.am-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.am-plan-card {
  background: #ffffff;
  border: 1.5px solid #e8eef6;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  height: 100%;
}

.am-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.09);
}

.am-plan-card--featured {
  background: linear-gradient(135deg, #0a2060 0%, #0A58CA 100%);
  border-color: #0A58CA;
  color: #ffffff;
  box-shadow: 0 16px 48px rgba(10,88,202,0.35);
}

.am-plan-card--featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(10,88,202,0.45);
}

.am-plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #f59e0b;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.am-plan-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.am-plan-icon {
  width: 52px; height: 52px;
  background: rgba(10,88,202,0.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #0A58CA;
  flex-shrink: 0;
}

.am-plan-icon--white {
  background: rgba(255,255,255,0.20);
  color: #ffffff;
}

.am-plan-name {
  font-size: 18px;
  font-weight: 800;
  color: #1a2a47;
  margin: 0 0 4px;
  font-family: 'Outfit', sans-serif;
}

.am-plan-card--featured .am-plan-name { color: #ffffff; }

.am-plan-sub {
  font-size: 12.5px;
  color: #5a6b8a;
  margin: 0;
}

.am-plan-card--featured .am-plan-sub { color: rgba(255,255,255,0.75); }

.am-plan-features {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.am-plan-features li {
  font-size: 13.5px;
  color: #3a4a6a;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.am-plan-card--featured .am-plan-features li { color: rgba(255,255,255,0.90); }

.am-check {
  color: #0A58CA;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 14px;
}

.am-check--white { color: #ffffff; }

.am-plan-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.am-plan-btn--outline {
  border: 2px solid #0A58CA;
  color: #0A58CA;
  background: transparent;
}

.am-plan-btn--outline:hover {
  background: #0A58CA;
  color: #ffffff;
}

.am-plan-btn--white {
  background: #ffffff;
  color: #0A58CA;
  border: 2px solid #ffffff;
}

.am-plan-btn--white:hover {
  background: #e8f0ff;
  border-color: #e8f0ff;
}

/* -- What's Covered (6-column) -- */
.am-covered-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.am-covered-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 28px 16px;
  background: #F8F9FA;
  border: 1px solid #e8eef6;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.am-covered-card:hover {
  background: #ffffff;
  border-color: rgba(10,88,202,0.25);
  box-shadow: 0 10px 28px rgba(0,0,0,0.07);
  transform: translateY(-4px);
}

.am-covered-icon {
  width: 56px; height: 56px;
  background: rgba(10,88,202,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #0A58CA;
}

.am-covered-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a2a47;
  margin: 0;
}

.am-covered-desc {
  font-size: 12px;
  color: #5a6b8a;
  line-height: 1.5;
  margin: 0;
}

/* -- Support Process -- */
.am-process-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: center;
}

.am-process-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.am-process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 360px;
}

.am-process-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(2,13,46,0.90);
  border: 1px solid rgba(10,88,202,0.40);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  backdrop-filter: blur(8px);
}

.am-process-badge-icon {
  width: 42px; height: 42px;
  background: rgba(10,88,202,0.30);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #93c5fd;
  flex-shrink: 0;
}

.am-process-badge-title {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.am-process-badge-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}

.am-process-title {
  font-size: 30px;
  font-weight: 800;
  color: #1a2a47;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 32px;
  position: relative;
  padding-bottom: 16px;
}

.am-process-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 50px; height: 3px;
  background: #0A58CA;
  border-radius: 3px;
}

.am-process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.am-process-step {
  background: #ffffff;
  border: 1px solid #e8eef6;
  border-radius: 14px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}

.am-process-step:hover {
  border-color: rgba(10,88,202,0.25);
  box-shadow: 0 12px 32px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}

.am-step-number {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 28px;
  font-weight: 800;
  color: rgba(10,88,202,0.10);
  font-family: 'Outfit', sans-serif;
  line-height: 1;
}

.am-step-icon {
  width: 48px; height: 48px;
  background: rgba(10,88,202,0.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #0A58CA;
}

.am-step-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a2a47;
  margin: 0;
}

.am-step-desc {
  font-size: 13px;
  color: #5a6b8a;
  line-height: 1.6;
  margin: 0;
}

/* -- CTA -- */
.am-cta {
  padding: 50px 0;
  background: #020d2e;
}

.am-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: linear-gradient(135deg, #031535 0%, #0a2060 55%, #1a3d8f 100%);
  border-radius: 18px;
  padding: 44px 56px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(2,13,46,0.40);
}

.am-cta-inner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(10,88,202,0.35) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.am-cta-left {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
}

.am-cta-icon {
  width: 64px; height: 64px;
  background: rgba(10,88,202,0.35);
  border: 1px solid rgba(10,88,202,0.55);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #93c5fd;
  flex-shrink: 0;
}

.am-cta-text { flex: 1; }

.am-cta-title {
  font-size: 26px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.am-cta-title span { color: #60a5fa; }

.am-cta-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin: 0;
}

.am-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  background: #ffffff;
  color: #031535;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.am-cta-btn:hover {
  background: #e8f0ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}

/* -- Responsive -- */
@media (max-width: 1200px) {
  .am-covered-grid { grid-template-columns: repeat(3, 1fr); }
  .am-values-grid { grid-template-columns: repeat(3, 1fr); }
  .am-value-card:nth-child(3)::after { display: none; }
}

@media (max-width: 1024px) {
  .am-plans-grid { grid-template-columns: 1fr; }
  .am-plan-card--featured { transform: none; }
  .am-process-layout { grid-template-columns: 1fr; }
  .am-process-image { max-height: 320px; }
}

@media (max-width: 768px) {
  .am-hero { padding: 130px 0 70px; background-position: right center; }
  .am-hero::before {
    background: linear-gradient(90deg,rgba(2,13,46,0.99) 0%,rgba(2,13,46,0.96) 60%,rgba(2,13,46,0.85) 100%);
  }
  .am-hero-title { font-size: 36px; }
  .am-hero-subtitle { font-size: 15px; }
  .am-hero-badges { flex-wrap: wrap; gap: 16px 0; }
  .am-hero-badge { width: 50%; flex: none; }
  .am-hero-badge:nth-child(2)::after,
  .am-hero-badge:nth-child(4)::after { display: none; }
  .am-values-grid { grid-template-columns: 1fr 1fr; }
  .am-value-card::after { display: none; }
  .am-section-title { font-size: 26px; }
  .am-covered-grid { grid-template-columns: repeat(2, 1fr); }
  .am-process-steps { grid-template-columns: 1fr; }
  .am-process-title { font-size: 24px; }
  .am-cta-inner { flex-direction: column; padding: 36px 28px; text-align: center; }
  .am-cta-left { flex-direction: column; text-align: center; }
  .am-cta-title { font-size: 20px; }
}


/* ------------------------------------------------
   INDEX3 HOME PAGE  ï¿½  ix- prefix
------------------------------------------------ */

/* -- Hero -- */
.ix-hero {
  position: relative;
  background-color: #020d2e;
  background-size: cover;
  background-position: center center;
  padding: 180px 0 110px;
  color: #ffffff;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
}

.ix-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2,13,46,0.99) 0%,
    rgba(2,13,46,0.97) 30%,
    rgba(2,13,46,0.80) 52%,
    rgba(2,13,46,0.35) 72%,
    rgba(2,13,46,0.00) 100%
  );
  z-index: 1;
}

.ix-hero .container {
  position: relative;
  z-index: 2;
}

.ix-hero-content {
  max-width: 600px;
}

.ix-hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 18px;
}

.ix-hero-title {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 22px;
  font-family: 'Outfit', sans-serif;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  color: #ffffff;
}

.ix-blue { color: #60a5fa; }

.ix-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.80);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 36px;
}

.ix-hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ix-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #0A58CA;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(10,88,202,0.40);
}

.ix-btn-primary:hover {
  background: #084298;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(10,88,202,0.50);
}

.ix-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.35);
  text-decoration: none;
  transition: all 0.3s ease;
}

.ix-btn-outline:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.65);
}

/* -- Stats Bar -- */
.ix-stats {
  background: #020d2e;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.ix-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.ix-stat {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  position: relative;
  transition: background 0.3s ease;
}

.ix-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.10);
}

.ix-stat:hover { background: rgba(10,88,202,0.12); }

.ix-stat-icon {
  width: 52px; height: 52px;
  background: rgba(10,88,202,0.20);
  border: 1px solid rgba(10,88,202,0.40);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #93c5fd;
  flex-shrink: 0;
}

.ix-stat-value {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  line-height: 1;
  margin-bottom: 4px;
}

.ix-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.60);
  font-weight: 500;
}

/* -- Section helpers -- */
.ix-section { padding: 90px 0; }
.ix-section--light { background: #F8F9FA; }
.ix-section--white { background: #ffffff; }

.ix-section-head { text-align: center; margin-bottom: 50px; }

.ix-section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #0A58CA;
  margin-bottom: 12px;
}

.ix-section-title {
  font-size: 36px;
  font-weight: 800;
  color: #1a2a47;
  font-family: 'Outfit', sans-serif;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
  margin-bottom: 14px;
}

.ix-section-title span { color: #0A58CA; }

.ix-section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 3px;
  background: #0A58CA;
  border-radius: 3px;
}

.ix-section-desc {
  font-size: 15.5px;
  color: #5a6b8a;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

/* -- Services Grid (4-column, 14 cards) -- */
.ix-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.ix-service-card {
  background: #F8F9FA;
  border: 1px solid #e8eef6;
  border-radius: 14px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.03);
}

.ix-service-card:hover {
  background: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.09);
  border-color: rgba(10,88,202,0.25);
}

.ix-service-icon {
  width: 52px; height: 52px;
  background: rgba(10,88,202,0.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #0A58CA;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.ix-service-card:hover .ix-service-icon {
  background: rgba(10,88,202,0.14);
}

.ix-service-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #1a2a47;
  margin: 0;
  line-height: 1.35;
}

.ix-service-desc {
  font-size: 12.5px;
  color: #5a6b8a;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

/* -- About Section -- */
.ix-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.ix-about-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.ix-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 420px;
}

.ix-about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: #0A58CA;
  color: #ffffff;
  border-radius: 12px;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 24px rgba(10,88,202,0.45);
}

.ix-about-badge-num {
  font-size: 28px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  line-height: 1;
}

.ix-about-badge-label {
  font-size: 11px;
  font-weight: 600;
  opacity: 0.85;
  margin-top: 4px;
}

.ix-about-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #0A58CA;
  margin-bottom: 16px;
}

.ix-about-title {
  font-size: 36px;
  font-weight: 800;
  color: #1a2a47;
  font-family: 'Outfit', sans-serif;
  line-height: 1.25;
  margin-bottom: 20px;
}

.ix-about-title span { color: #0A58CA; }

.ix-about-text {
  font-size: 15px;
  color: #5a6b8a;
  line-height: 1.8;
  margin-bottom: 14px;
}

.ix-about-checks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 16px;
  margin: 22px 0 28px;
}

.ix-about-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: #1a2a47;
}

.ix-check-icon {
  color: #0A58CA;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.ix-about-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: #0A58CA;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(10,88,202,0.30);
}

.ix-about-btn:hover {
  background: #084298;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(10,88,202,0.40);
}

/* -- Partners -- */
.ix-partners {
  padding: 50px 0;
  background: #020d2e;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.ix-partners-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 36px;
}

.ix-partners-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
  align-items: center;
}

.ix-partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.ix-partner-item:hover {
  background: rgba(10,88,202,0.15);
  border-color: rgba(10,88,202,0.35);
  transform: translateY(-3px);
}

.ix-partner-item img {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(2) opacity(0.6);
  transition: all 0.3s ease;
}

.ix-partner-item:hover img {
  filter: grayscale(0%) brightness(1) opacity(1);
}

.ix-partner-item span {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.50);
  text-align: center;
}

/* -- CTA -- */
.ix-cta {
  padding: 50px 0;
  background: #F8F9FA;
  border-top: 1px solid #e8eef6;
}

.ix-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: linear-gradient(135deg, #020d2e 0%, #0a2060 55%, #1a3d8f 100%);
  border-radius: 18px;
  padding: 44px 56px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(2,13,46,0.25);
}

.ix-cta-inner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(10,88,202,0.35) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.ix-cta-left {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
}

.ix-cta-icon {
  width: 64px; height: 64px;
  background: rgba(10,88,202,0.35);
  border: 1px solid rgba(10,88,202,0.55);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #93c5fd;
  flex-shrink: 0;
}

.ix-cta-text { flex: 1; }

.ix-cta-title {
  font-size: 28px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.ix-cta-title span { color: #60a5fa; }

.ix-cta-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin: 0;
}

.ix-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  background: #ffffff;
  color: #031535;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.ix-cta-btn:hover {
  background: #e8f0ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}

/* -- Responsive -- */
@media (max-width: 1200px) {
  .ix-services-grid { grid-template-columns: repeat(3, 1fr); }
  .ix-partners-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1024px) {
  .ix-about-grid { grid-template-columns: 1fr; gap: 40px; }
  .ix-about-image { max-height: 380px; }
  .ix-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ix-stat:nth-child(2)::after { display: none; }
}

@media (max-width: 768px) {
  .ix-hero { padding: 130px 0 80px; background-position: right center; }
  .ix-hero-overlay {
    background: linear-gradient(90deg,rgba(2,13,46,0.99) 0%,rgba(2,13,46,0.96) 60%,rgba(2,13,46,0.85) 100%);
  }
  .ix-hero-title { font-size: 36px; }
  .ix-hero-desc { font-size: 14.5px; }
  .ix-services-grid { grid-template-columns: repeat(2, 1fr); }
  .ix-about-title { font-size: 26px; }
  .ix-about-checks { grid-template-columns: repeat(2, 1fr); }
  .ix-section-title { font-size: 26px; }
  .ix-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ix-stat::after { display: none; }
  .ix-partners-grid { grid-template-columns: repeat(4, 1fr); }
  .ix-cta-inner { flex-direction: column; padding: 36px 28px; text-align: center; }
  .ix-cta-left { flex-direction: column; text-align: center; }
  .ix-cta-title { font-size: 22px; }
}
/* ------------------------------------------------
   INDEX4 PAGE  ï¿½  h4- prefix  (matches mockup)
------------------------------------------------ */
.h4-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.h4-center { text-align: center; }

/* -- Section typography -- */
.h4-section-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: #0A58CA;
  margin-bottom: 10px; display: block;
}
.h4-light-eye { color: #93c5fd; }
.h4-section-title {
  font-size: 34px; font-weight: 800; color: #0f1c3f;
  font-family: 'Outfit', sans-serif; line-height: 1.2;
  margin: 0 0 20px;
}
.h4-section-title span { color: #0A58CA; }
.h4-white { color: #fff !important; }
.h4-white span { color: #60a5fa !important; }

/* -- Buttons -- */
.h4-btn-blue {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; background: #1a4fc4; color: #fff;
  font-weight: 700; font-size: 14px; border-radius: 6px;
  text-decoration: none; transition: all 0.25s; white-space: nowrap;
}
.h4-btn-blue:hover { background: #1440a8; transform: translateY(-2px); }
.h4-btn-blue-sm {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px; background: #1a4fc4; color: #fff;
  font-weight: 700; font-size: 13px; border-radius: 6px;
  text-decoration: none; transition: all 0.25s;
}
.h4-btn-blue-sm:hover { background: #1440a8; }
.h4-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; background: transparent;
  border: 2px solid rgba(255,255,255,0.45); color: #fff;
  font-weight: 600; font-size: 14px; border-radius: 6px;
  text-decoration: none; transition: all 0.25s; white-space: nowrap;
}
.h4-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.h4-btn-outline-sm {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; background: transparent;
  border: 1.5px solid #0A58CA; color: #0A58CA;
  font-weight: 600; font-size: 13px; border-radius: 6px;
  text-decoration: none; transition: all 0.25s; white-space: nowrap;
}
.h4-btn-outline-sm:hover { background: #0A58CA; color: #fff; }
.h4-btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; background: #25d366; color: #fff;
  font-weight: 700; font-size: 14px; border-radius: 6px;
  text-decoration: none; transition: all 0.25s; white-space: nowrap;
}
.h4-btn-wa:hover { background: #1db954; }

/* -- HERO -- */
.h4-hero {
  position: relative;
  background: #020d2e;
  color: #fff; overflow: hidden;
  display: flex; flex-direction: column;
}
.h4-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(2,10,40,0.97) 0%,
    rgba(2,10,40,0.93) 35%,
    rgba(2,10,40,0.70) 58%,
    rgba(2,10,40,0.15) 80%,
    transparent 100%);
  z-index: 1;
}
.h4-hero-body {
  position: relative; z-index: 2;
  padding: 140px 0 60px;
}
.h4-hero-left { max-width: 560px; }
.h4-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: #7dd3fc;
  margin-bottom: 18px; display: block;
}
.h4-hero-title {
  font-size: 50px; font-weight: 800; line-height: 1.1;
  margin: 0 0 18px; font-family: 'Outfit', sans-serif;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.h4-hero-title span { color: #3b82f6; }
.h4-hero-desc {
  font-size: 15px; color: rgba(255,255,255,0.78);
  line-height: 1.75; margin-bottom: 30px; max-width: 500px;
}
.h4-hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* -- Hero Stats -- */
.h4-hero-stats {
  position: relative; z-index: 2;
  background: rgba(255,255,255,0.07);
  border-top: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
}
.h4-stats-row {
  display: flex; align-items: stretch;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.h4-stat {
  flex: 1; display: flex; align-items: center; gap: 12px;
  padding: 18px 16px; border-right: 1px solid rgba(255,255,255,0.10);
}
.h4-stat:last-child { border-right: none; }
.h4-stat-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(59,130,246,0.20); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; color: #93c5fd;
}
.h4-stat-num { font-size: 20px; font-weight: 800; color: #fff; font-family: 'Outfit', sans-serif; line-height: 1; }
.h4-stat-lbl { font-size: 10px; color: rgba(255,255,255,0.55); font-weight: 500; margin-top: 2px; }

/* -- Clients Strip -- */
.h4-clients {
  background: #fff; padding: 14px 0;
  border-bottom: 1px solid #e8eef6;
}
.h4-clients-row {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
}
.h4-clients-arrow {
  background: none; border: 1px solid #e0e0e0; border-radius: 50%;
  width: 28px; height: 28px; cursor: pointer; font-size: 16px;
  display: flex; align-items: center; justify-content: center; color: #666;
}
.h4-client-logo {
  font-size: 13px; font-weight: 800; color: #8a9ab5;
  letter-spacing: 1px; text-transform: uppercase;
}

/* -- About -- */
.h4-about { padding: 90px 0; background: #fff; }
.h4-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.h4-about-desc { font-size: 14.5px; color: #5a6b8a; line-height: 1.75; margin-bottom: 28px; }
.h4-about-pillars { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.h4-pillar { display: flex; align-items: flex-start; gap: 14px; }
.h4-pillar-icon { width: 40px; height: 40px; flex-shrink: 0; background: rgba(10,88,202,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #0A58CA; }
.h4-pillar strong { font-size: 14px; font-weight: 700; color: #1a2a47; display: block; margin-bottom: 2px; }
.h4-pillar p { font-size: 13px; color: #5a6b8a; margin: 0; }
.h4-about-img-col { position: relative; }
.h4-about-img-wrap { position: relative; border-radius: 12px; overflow: hidden; }
.h4-about-img { width: 100%; height: 420px; object-fit: cover; display: block; }
.h4-about-mission { position: absolute; bottom: 0; right: 0; width: 200px; background: rgba(10,30,80,0.95); color: #fff; padding: 20px; }
.h4-mission-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #93c5fd; margin-bottom: 8px; }
.h4-mission-text { font-size: 12px; color: rgba(255,255,255,0.85); line-height: 1.6; margin: 0; }

/* -- Services -- */
.h4-services { padding: 80px 0; background: #0d1b3e; }
.h4-services .h4-section-eyebrow { color: #93c5fd; }
.h4-services .h4-section-title { color: #fff; }
.h4-services .h4-section-title span { color: #60a5fa; }
.h4-svc-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 40px; }
.h4-svc-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10); border-radius: 10px; padding: 24px 18px; transition: all 0.3s; }
.h4-svc-card:hover { background: rgba(255,255,255,0.10); border-color: rgba(59,130,246,0.40); transform: translateY(-4px); }
.h4-svc-head { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.h4-svc-icon { width: 40px; height: 40px; flex-shrink: 0; background: rgba(59,130,246,0.20); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #93c5fd; }
.h4-svc-head h3 { font-size: 13px; font-weight: 700; color: #fff; margin: 0; line-height: 1.4; }
.h4-svc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; }
.h4-svc-list li { font-size: 12px; color: rgba(255,255,255,0.65); padding-left: 14px; position: relative; line-height: 1.4; }
.h4-svc-list li::before { content: ''; position: absolute; left: 0; top: 6px; width: 5px; height: 5px; background: #3b82f6; border-radius: 50%; }

/* -- Why Choose Us -- */
.h4-why { padding: 70px 0; background: #031535; }
.h4-why-row { display: flex; gap: 12px; margin-top: 40px; flex-wrap: wrap; justify-content: center; }
.h4-why-card { flex: 1; min-width: 130px; max-width: 160px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10); border-radius: 10px; padding: 22px 14px; text-align: center; transition: all 0.3s; }
.h4-why-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(59,130,246,0.40); transform: translateY(-4px); }
.h4-why-icon { width: 48px; height: 48px; background: rgba(59,130,246,0.20); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #93c5fd; margin: 0 auto 14px; }
.h4-why-card h4 { font-size: 12px; font-weight: 700; color: #fff; margin: 0; line-height: 1.5; }

/* -- Split: Industries + Case Studies -- */
.h4-split { padding: 80px 0; background: #fff; }
.h4-split-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }
.h4-ind-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 24px 0; }
.h4-ind-item { display: flex; align-items: center; gap: 10px; background: #f8f9fa; border: 1px solid #e8eef6; border-radius: 8px; padding: 12px 14px; transition: all 0.25s; }
.h4-ind-item:hover { background: #fff; border-color: rgba(10,88,202,0.25); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.h4-ind-icon { width: 36px; height: 36px; background: rgba(10,88,202,0.08); border-radius: 7px; display: flex; align-items: center; justify-content: center; color: #0A58CA; flex-shrink: 0; }
.h4-ind-item span { font-size: 13px; font-weight: 600; color: #1a2a47; }
.h4-cases-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.h4-cases-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.h4-case-card { background: #fff; border: 1px solid #e8eef6; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.05); transition: all 0.3s; }
.h4-case-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.10); }
.h4-case-img-wrap { position: relative; }
.h4-case-img { width: 100%; height: 140px; object-fit: cover; display: block; }
.h4-case-tag { position: absolute; top: 10px; left: 10px; font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.h4-tag-blue { background: #1a4fc4; color: #fff; }
.h4-tag-green { background: #16a34a; color: #fff; }
.h4-tag-orange { background: #ea580c; color: #fff; }
.h4-tag-red { background: #dc2626; color: #fff; }
.h4-case-body { padding: 14px; }
.h4-case-body h4 { font-size: 13px; font-weight: 700; color: #1a2a47; margin: 0 0 6px; line-height: 1.4; }
.h4-case-body p { font-size: 12px; color: #5a6b8a; line-height: 1.55; margin: 0 0 10px; }
.h4-case-stats { display: flex; gap: 10px; padding-top: 10px; border-top: 1px solid #f0f0f0; flex-wrap: wrap; }
.h4-case-stats span { display: flex; flex-direction: column; }
.h4-case-stats strong { font-size: 14px; font-weight: 800; color: #1a4fc4; font-family: 'Outfit', sans-serif; line-height: 1; }
.h4-case-stats small { font-size: 10px; color: #8a9ab5; font-weight: 600; margin-top: 2px; }

/* -- Tech Partners -- */
.h4-partners { padding: 50px 0; background: #f8f9fa; border-top: 1px solid #e8eef6; }
.h4-partners-label { text-align: center; font-size: 11px; font-weight: 700; color: #8a9ab5; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 28px; }
.h4-partners-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px 24px; }
.h4-partner { display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid #e8eef6; border-radius: 8px; padding: 10px 18px; transition: all 0.25s; }
.h4-partner:hover { border-color: rgba(10,88,202,0.25); box-shadow: 0 4px 14px rgba(0,0,0,0.07); }
.h4-partner-img { width: 28px; height: 28px; object-fit: contain; }
.h4-partner span { font-size: 12px; font-weight: 700; color: #5a6b8a; }

/* -- Process -- */
.h4-process { padding: 80px 0; background: #f8f9fa; }
.h4-process-row { display: flex; align-items: flex-start; justify-content: center; gap: 0; margin-top: 50px; flex-wrap: wrap; }
.h4-process-step { display: flex; flex-direction: column; align-items: center; text-align: center; width: 160px; }
.h4-process-num { width: 36px; height: 36px; background: #1a4fc4; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; margin-bottom: 16px; box-shadow: 0 0 0 6px #f8f9fa; }
.h4-process-icon { width: 64px; height: 64px; background: #fff; border: 1px solid #e2e8f0; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #1a4fc4; margin-bottom: 14px; box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.h4-process-step h4 { font-size: 13px; font-weight: 700; color: #1a2a47; margin: 0 0 6px; }
.h4-process-step p { font-size: 11.5px; color: #5a6b8a; line-height: 1.5; margin: 0; }
.h4-process-arrow { font-size: 20px; color: #cbd5e1; align-self: flex-start; margin-top: 52px; padding: 0 4px; }

/* -- Testimonials -- */
.h4-testimonials { padding: 80px 0; background: #fff; }
.h4-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.h4-testi-card { background: #f8f9fa; border: 1px solid #e8eef6; border-radius: 12px; padding: 28px 24px; display: flex; flex-direction: column; gap: 14px; }
.h4-testi-stars { color: #f59e0b; font-size: 16px; letter-spacing: 2px; }
.h4-testi-text { font-size: 14px; color: #5a6b8a; line-height: 1.75; font-style: italic; flex: 1; margin: 0; }
.h4-testi-author { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid #e8eef6; }
.h4-testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, #1a4fc4, #60a5fa); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 15px; flex-shrink: 0; }
.h4-testi-author strong { font-size: 13px; font-weight: 700; color: #1a2a47; display: block; }
.h4-testi-author span { font-size: 11px; color: #8a9ab5; }

/* -- CTA Banner -- */
.h4-cta { padding: 60px 0; background: #020d2e; }
.h4-cta-box { background: linear-gradient(135deg, #0d1b3e 0%, #1a3a6e 100%); border-radius: 16px; padding: 48px 52px; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.h4-cta-left { display: flex; align-items: flex-start; gap: 20px; flex: 1; }
.h4-cta-icon { width: 56px; height: 56px; background: #1a4fc4; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; box-shadow: 0 8px 24px rgba(26,79,196,0.5); }
.h4-cta-left h2 { font-size: 26px; font-weight: 800; color: #fff; font-family: 'Outfit', sans-serif; margin: 0 0 8px; line-height: 1.3; }
.h4-cta-left p { font-size: 14px; color: rgba(255,255,255,0.70); margin: 0; line-height: 1.6; }
.h4-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* -- Responsive -- */
@media (max-width: 1100px) {
  .h4-svc-grid { grid-template-columns: repeat(3, 1fr); }
  .h4-split-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .h4-about-grid { grid-template-columns: 1fr; gap: 40px; }
  .h4-svc-grid { grid-template-columns: repeat(2, 1fr); }
  .h4-why-row { gap: 10px; }
  .h4-why-card { min-width: 120px; }
  .h4-testi-grid { grid-template-columns: repeat(2, 1fr); }
  .h4-stats-row { flex-wrap: wrap; }
  .h4-stat { flex: 0 0 33.33%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.10); }
}
@media (max-width: 768px) {
  .h4-hero-body { padding: 110px 0 40px; }
  .h4-hero-title { font-size: 34px; }
  .h4-hero-btns { flex-direction: column; align-items: flex-start; }
  .h4-svc-grid { grid-template-columns: 1fr 1fr; }
  .h4-why-row { gap: 8px; }
  .h4-why-card { min-width: 100px; max-width: 140px; }
  .h4-cases-grid { grid-template-columns: 1fr; }
  .h4-ind-grid { grid-template-columns: 1fr; }
  .h4-testi-grid { grid-template-columns: 1fr; }
  .h4-process-row { flex-direction: column; align-items: center; gap: 20px; }
  .h4-process-arrow { display: none; }
  .h4-cta-box { flex-direction: column; padding: 32px 24px; }
  .h4-stat { flex: 0 0 50%; }
  .h4-cases-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .h4-hero-title { font-size: 28px; }
  .h4-section-title { font-size: 26px; }
  .h4-svc-grid { grid-template-columns: 1fr; }
  .h4-stat { flex: 0 0 100%; }
}

/* h4 hero layout fix */
.h4-hero-left { max-width: 52%; }
.h4-hero .h4-container { display: flex; align-items: center; }

/* ------------------------------------------------
   SERVICES2 PAGE  ï¿½  sv2- prefix
------------------------------------------------ */
.sv2-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Hero */
.sv2-hero {
  position: relative;
  background: #020d2e;
  color: #fff;
  padding: 130px 0 60px;
  overflow: hidden;
}
.sv2-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(2,10,40,0.97) 0%, rgba(2,10,40,0.93) 40%, rgba(2,10,40,0.70) 65%, rgba(2,10,40,0.10) 85%, transparent 100%);
  z-index: 1;
}
.sv2-hero .sv2-container { position: relative; z-index: 2; }
.sv2-breadcrumb {
  font-size: 12px; color: rgba(255,255,255,0.65);
  margin-bottom: 20px; display: flex; align-items: center; gap: 6px;
}
.sv2-breadcrumb a { color: rgba(255,255,255,0.75); text-decoration: none; }
.sv2-breadcrumb a:hover { color: #fff; }
.sv2-breadcrumb span { color: rgba(255,255,255,0.35); }
.sv2-hero-title {
  font-size: 52px; font-weight: 800; line-height: 1.1;
  margin: 0 0 16px; font-family: 'Outfit', sans-serif;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.sv2-hero-desc {
  font-size: 16px; color: rgba(255,255,255,0.80);
  line-height: 1.7; max-width: 480px; margin-bottom: 36px;
}
.sv2-hero-pills {
  display: flex; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.15); padding-top: 28px; margin-top: 8px;
}
.sv2-hero-pill {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 8px; flex: 1; position: relative; padding: 0 16px;
}
.sv2-hero-pill:first-child { padding-left: 0; }
.sv2-hero-pill:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 10%;
  height: 80%; width: 1px; background: rgba(255,255,255,0.15);
}
.sv2-pill-icon {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  color: #93c5fd; background: rgba(10,88,202,0.20);
  border: 1px solid rgba(10,88,202,0.40); border-radius: 10px;
}
.sv2-pill-text { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.85); line-height: 1.4; }

/* Intro */
.sv2-intro { padding: 70px 0 50px; background: #fff; text-align: center; }
.sv2-intro-eyebrow {
  font-size: 11px; font-weight: 700; color: #0A58CA;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; display: block;
}
.sv2-intro-title {
  font-size: 34px; font-weight: 800; color: #1a2a47;
  font-family: 'Outfit', sans-serif; margin: 0 0 16px; line-height: 1.2;
}
.sv2-intro-title span { color: #0A58CA; }
.sv2-intro-desc {
  font-size: 15px; color: #5a6b8a; line-height: 1.75;
  max-width: 680px; margin: 0 auto;
}

/* Service Category Block */
.sv2-categories { padding: 0 0 60px; background: #fff; }
.sv2-category { margin-bottom: 50px; }
.sv2-cat-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; background: #f8f9fa;
  border-left: 4px solid #0A58CA; border-radius: 0 8px 8px 0;
  margin-bottom: 24px;
}
.sv2-cat-header-left { display: flex; align-items: center; gap: 14px; }
.sv2-cat-icon {
  width: 40px; height: 40px; background: rgba(10,88,202,0.10);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; color: #0A58CA; flex-shrink: 0;
}
.sv2-cat-title { font-size: 18px; font-weight: 700; color: #1a2a47; margin: 0; }
.sv2-cat-link {
  font-size: 13px; font-weight: 600; color: #0A58CA;
  text-decoration: none; display: flex; align-items: center; gap: 4px;
  white-space: nowrap; transition: gap 0.2s;
}
.sv2-cat-link:hover { gap: 8px; }
.sv2-sub-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.sv2-sub-card {
  background: #fff; border: 1px solid #e8eef6; border-radius: 10px;
  padding: 22px 18px; display: flex; flex-direction: column; gap: 10px;
  transition: all 0.3s; box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.sv2-sub-card:hover {
  transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.09);
  border-color: rgba(10,88,202,0.25);
}
.sv2-sub-icon {
  width: 44px; height: 44px; background: rgba(10,88,202,0.07);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; color: #0A58CA; flex-shrink: 0;
}
.sv2-sub-img {
  width: 100%; height: 100px; object-fit: cover;
  border-radius: 6px; display: block; margin-bottom: 4px;
}
.sv2-sub-title { font-size: 14px; font-weight: 700; color: #1a2a47; margin: 0; line-height: 1.3; }
.sv2-sub-desc { font-size: 12.5px; color: #5a6b8a; line-height: 1.6; margin: 0; flex: 1; }

/* Why Choose Us */
.sv2-why { padding: 60px 0; background: #f8f9fa; }
.sv2-why-head { text-align: center; margin-bottom: 40px; }
.sv2-why-eyebrow {
  font-size: 11px; font-weight: 700; color: #0A58CA;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; display: block;
}
.sv2-why-title {
  font-size: 30px; font-weight: 800; color: #1a2a47;
  font-family: 'Outfit', sans-serif; margin: 0;
}
.sv2-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.sv2-why-card {
  background: #fff; border: 1px solid #e8eef6; border-radius: 12px;
  padding: 28px 22px; text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04); transition: all 0.3s;
}
.sv2-why-card:hover {
  transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.09);
  border-color: rgba(10,88,202,0.20);
}
.sv2-why-icon {
  width: 56px; height: 56px; background: rgba(10,88,202,0.08);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; color: #0A58CA; margin: 0 auto 16px;
}
.sv2-why-card-title { font-size: 15px; font-weight: 700; color: #1a2a47; margin: 0 0 8px; }
.sv2-why-card-desc { font-size: 13px; color: #5a6b8a; line-height: 1.6; margin: 0; }

/* CTA */
.sv2-cta { padding: 50px 0; background: #020d2e; }
.sv2-cta-box {
  background: linear-gradient(135deg, #0d1b3e 0%, #1a3a6e 100%);
  border-radius: 14px; padding: 40px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.sv2-cta-left { display: flex; align-items: center; gap: 18px; flex: 1; }
.sv2-cta-icon {
  width: 52px; height: 52px; background: #0A58CA; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0; box-shadow: 0 6px 20px rgba(10,88,202,0.5);
}
.sv2-cta-title { font-size: 24px; font-weight: 800; color: #fff; font-family: 'Outfit', sans-serif; margin: 0 0 6px; }
.sv2-cta-desc { font-size: 14px; color: rgba(255,255,255,0.70); margin: 0; line-height: 1.5; }
.sv2-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: #0A58CA; color: #fff;
  font-weight: 700; font-size: 14px; border-radius: 8px;
  text-decoration: none; transition: all 0.3s; white-space: nowrap; flex-shrink: 0;
}
.sv2-cta-btn:hover { background: #0847a8; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,88,202,0.4); }

/* Responsive */
@media (max-width: 1024px) {
  .sv2-sub-grid { grid-template-columns: repeat(2, 1fr); }
  .sv2-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .sv2-hero { padding: 110px 0 50px; background-position: right center; }
  .sv2-hero::before {
    background: linear-gradient(90deg, rgba(2,10,40,0.99) 0%, rgba(2,10,40,0.95) 70%, rgba(2,10,40,0.85) 100%);
  }
  .sv2-hero-title { font-size: 34px; }
  .sv2-hero-pills { flex-wrap: wrap; gap: 16px 0; }
  .sv2-hero-pill { width: 50%; flex: none; }
  .sv2-hero-pill:nth-child(2)::after, .sv2-hero-pill:nth-child(4)::after { display: none; }
  .sv2-sub-grid { grid-template-columns: 1fr 1fr; }
  .sv2-why-grid { grid-template-columns: 1fr 1fr; }
  .sv2-cta-box { flex-direction: column; padding: 28px 24px; }
  .sv2-cat-header { flex-direction: column; align-items: flex-start; gap: 10px; }
}
@media (max-width: 480px) {
  .sv2-hero-title { font-size: 28px; }
  .sv2-sub-grid { grid-template-columns: 1fr; }
  .sv2-why-grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------
   CTA BANNER  ï¿½  cta-v2- prefix  (index.html)
------------------------------------------------ */
.cta-v2-container {
  position: relative;
  overflow: hidden;
  height: 90px;
  display: flex;
  align-items: center;
}

/* Background image ï¿½ Dubai skyline on the right */
.cta-v2-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Blue gradient overlay ï¿½ strong on left, fades to transparent on right */
.cta-v2-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #1a4fc4 0%,
    #1a4fc4 45%,
    rgba(26,79,196,0.92) 58%,
    rgba(26,79,196,0.60) 72%,
    rgba(26,79,196,0.15) 88%,
    transparent 100%
  );
  z-index: 1;
}

/* Inner layout */
.cta-v2-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Text */
.cta-v2-content { flex: 1; }

.cta-v2-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  margin: 0 0 4px;
  line-height: 1.2;
}

.cta-v2-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  margin: 0;
  line-height: 1.5;
}

/* Buttons */
.cta-v2-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cta-v2-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: #fff;
  color: #1a4fc4;
  font-weight: 700;
  font-size: 13px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s;
  border: 2px solid #fff;
}

.cta-v2-btn-white:hover {
  background: #f0f5ff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.cta-v2-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid #25d366;
  transition: all 0.25s;
  box-shadow: 0 0 10px rgba(37,211,102,0.25);
}

.cta-v2-btn-wa svg {
  color: #25d366;
  flex-shrink: 0;
}

.cta-v2-btn-wa:hover {
  background: rgba(37,211,102,0.10);
  box-shadow: 0 0 18px rgba(37,211,102,0.45);
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-v2-container { height: auto; padding: 24px 0; }
  .cta-v2-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cta-v2-overlay {
    background: linear-gradient(90deg, #1a4fc4 0%, #1a4fc4 70%, rgba(26,79,196,0.85) 100%);
  }
  .cta-v2-title { font-size: 17px; }
  .cta-v2-actions { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .cta-v2-btn-white,
  .cta-v2-btn-wa { width: 100%; justify-content: center; }
}

/* ------------------------------------------------
   CCTV2 PAGE  ï¿½  cc2- prefix
------------------------------------------------ */

/* -- Hero -- */
.cc2-hero {
  position: relative;
  background: #020d2e;
  background-size: cover;
  background-position: center right;
  padding: calc(var(--nav-h) + 3px + 60px) 0 60px;
  color: #fff;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: flex-start;
}
.cc2-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(2,13,46,0.99) 0%,
    rgba(2,13,46,0.97) 25%,
    rgba(2,13,46,0.80) 40%,
    rgba(2,13,46,0.28) 55%,
    rgba(2,13,46,0.00) 70%);
  z-index: 1;
}
.cc2-hero .container { position: relative; z-index: 2; width: 100%; }
.cc2-hero-content { max-width: 520px; }
.cc2-breadcrumb {
  font-size: 13px; color: rgba(255,255,255,0.70);
  margin-bottom: 18px; display: flex; align-items: center; gap: 8px; font-weight: 500;
}
.cc2-breadcrumb a { color: rgba(255,255,255,0.75); text-decoration: none; }
.cc2-breadcrumb a:hover { color: #fff; }
.cc2-breadcrumb span { color: rgba(255,255,255,0.40); }
.cc2-hero-title {
  font-size: 52px; font-weight: 800; line-height: 1.08;
  margin-bottom: 18px; font-family: 'Outfit', sans-serif;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4); color: #fff;
}
.cc2-hero-desc {
  font-size: 16px; color: rgba(255,255,255,0.82);
  line-height: 1.75; margin-bottom: 0;
}
.cc2-hero-features {
  display: flex; align-items: center; gap: 0;
  margin-top: 36px; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 28px;
}
.cc2-hero-feature {
  display: flex; flex-direction: row; align-items: center;
  gap: 10px; flex: 1; position: relative; padding: 0 16px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.85); line-height: 1.4;
}
.cc2-hero-feature:first-child { padding-left: 0; }
.cc2-hero-feature:last-child  { padding-right: 0; }
.cc2-hero-feature:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 10%;
  height: 80%; width: 1px; background: rgba(255,255,255,0.15);
}
.cc2-hero-feature-icon {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  color: #93c5fd; background: rgba(10,88,202,0.20);
  border: 1px solid rgba(10,88,202,0.40); border-radius: 10px; flex-shrink: 0;
}
.cc2-hero-feature-text { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.85); line-height: 1.4; }

/* -- Shared section helpers -- */
.cc2-section { padding: 90px 0; }
.cc2-section--white { background: #ffffff; }
.cc2-section--light { background: #F8F9FA; }
.cc2-section--dark  { background: #031535; color: #ffffff; }
.cc2-section-head { text-align: center; margin-bottom: 50px; }
.cc2-section-title {
  font-size: 34px; font-weight: 800; color: #1a2a47;
  font-family: 'Outfit', sans-serif;
  position: relative; display: inline-block;
  padding-bottom: 16px; margin-bottom: 14px;
}
.cc2-section-title::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 3px; background: #0A58CA; border-radius: 3px;
}
.cc2-section--dark .cc2-section-title { color: #ffffff; }
.cc2-section--dark .cc2-section-title::after { background: #60a5fa; }
.cc2-section-desc {
  font-size: 15.5px; color: #5a6b8a;
  max-width: 640px; margin: 0 auto; line-height: 1.75;
}
.cc2-section--dark .cc2-section-desc { color: rgba(255,255,255,0.70); }

/* -- Solutions Grid (6 cards) -- */
.cc2-grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 26px; margin-top: 40px;
}
.cc2-card {
  background: #ffffff; border: 1px solid #e8eef6;
  border-radius: 14px; padding: 32px 26px;
  display: flex; flex-direction: column; gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.cc2-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.09);
  border-color: rgba(10,88,202,0.25);
}
.cc2-card-icon {
  width: 56px; height: 56px; background: rgba(10,88,202,0.07);
  border-radius: 14px; display: flex; align-items: center;
  justify-content: center; color: #0A58CA; flex-shrink: 0;
}
.cc2-card-title { font-size: 17px; font-weight: 700; color: #1a2a47; margin: 0; }
.cc2-card-desc { font-size: 13.5px; color: #5a6b8a; line-height: 1.65; margin: 0; flex: 1; }
.cc2-card-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 600; color: #0A58CA;
  text-decoration: none; transition: gap 0.2s;
}
.cc2-card-link:hover { gap: 9px; }

/* -- Process Timeline -- */
.cc2-process-timeline {
  display: flex; justify-content: space-between;
  position: relative; margin-top: 60px;
}
.cc2-process-timeline::before {
  content: ''; position: absolute;
  top: 16px; left: 5%; right: 5%;
  border-top: 2px dashed #cbd5e1; z-index: 1;
}
.cc2-process-step {
  position: relative; z-index: 2; width: 15%;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.cc2-process-number {
  width: 32px; height: 32px; background: #0A58CA; color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; margin-bottom: 20px;
  box-shadow: 0 0 0 6px #F8F9FA;
}
.cc2-process-icon {
  width: 68px; height: 68px; background: #ffffff;
  border: 1px solid #e2e8f0; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #0A58CA; margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.cc2-process-title { font-size: 13.5px; font-weight: 700; color: #1a2a47; margin-bottom: 8px; }
.cc2-process-desc { font-size: 12px; color: #5a6b8a; line-height: 1.5; }

/* -- Types Grid (6 cards with Learn More) -- */
.cc2-types-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 40px;
}
.cc2-type-card {
  background: #ffffff; border: 1px solid #e8eef6;
  border-radius: 12px; padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: all 0.3s; box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.cc2-type-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.09);
  border-color: rgba(10,88,202,0.25);
}
.cc2-type-icon {
  width: 48px; height: 48px; background: rgba(10,88,202,0.07);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; color: #0A58CA; flex-shrink: 0;
}
.cc2-type-title { font-size: 16px; font-weight: 700; color: #1a2a47; margin: 0; }
.cc2-type-desc { font-size: 13px; color: #5a6b8a; line-height: 1.65; margin: 0; flex: 1; }
.cc2-type-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 600; color: #0A58CA;
  text-decoration: none; transition: gap 0.2s; margin-top: 4px;
}
.cc2-type-link:hover { gap: 9px; }

/* -- CTA -- */
.cc2-cta { padding: 80px 0; background: #020d2e; }
.cc2-cta-box {
  border-radius: 20px; overflow: hidden; position: relative;
  box-shadow: 0 20px 60px rgba(3,21,53,0.5);
  background-size: cover; background-position: right center;
  min-height: 260px; display: flex; align-items: center;
}
.cc2-cta-box::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(2,13,46,0.98) 0%, rgba(2,13,46,0.92) 38%,
    rgba(2,13,46,0.52) 62%, rgba(2,13,46,0.00) 100%);
  z-index: 1; border-radius: 20px;
}
.cc2-cta-content {
  padding: 50px 60px; position: relative; z-index: 2;
  color: #ffffff; max-width: 560px;
}
.cc2-cta-header { display: flex; align-items: center; gap: 20px; margin-bottom: 18px; }
.cc2-cta-icon {
  width: 64px; height: 64px; background: #0A58CA; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0; box-shadow: 0 8px 24px rgba(10,88,202,0.5);
}
.cc2-cta-title { font-size: 34px; font-weight: 800; font-family: 'Outfit', sans-serif; line-height: 1.25; }
.cc2-cta-title span { color: #60a5fa; }
.cc2-cta-desc { font-size: 15px; color: rgba(255,255,255,0.78); margin-bottom: 30px; line-height: 1.65; }
.cc2-cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 32px; background: #ffffff; color: #031535;
  font-weight: 700; font-size: 15px; border-radius: 8px;
  text-decoration: none; transition: all 0.3s ease;
}
.cc2-cta-btn:hover { background: #e8f0ff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,0.15); }

/* -- Responsive -- */
@media (max-width: 1024px) {
  .cc2-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .cc2-types-grid { grid-template-columns: repeat(2, 1fr); }
  .cc2-process-timeline { flex-wrap: wrap; gap: 36px; }
  .cc2-process-step { width: 30%; }
  .cc2-process-timeline::before { display: none; }
  .cc2-cta-box { background-position: right center; }
  .cc2-cta-box::before {
    background: linear-gradient(90deg, rgba(2,13,46,0.98) 0%, rgba(2,13,46,0.92) 50%, rgba(2,13,46,0.65) 100%);
  }
  .cc2-cta-content { padding: 40px; max-width: 100%; }
}
@media (max-width: 768px) {
  .cc2-hero { padding: calc(var(--nav-h) + 3px + 40px) 0 50px; background-position: right center; }
  .cc2-hero::before {
    background: linear-gradient(90deg, rgba(2,13,46,0.99) 0%, rgba(2,13,46,0.95) 60%, rgba(2,13,46,0.82) 100%);
  }
  .cc2-hero-content { max-width: 100%; }
  .cc2-hero-title { font-size: 36px; }
  .cc2-hero-features { flex-wrap: wrap; gap: 16px 0; }
  .cc2-hero-feature { width: 50%; flex: none; }
  .cc2-hero-feature:nth-child(2)::after,
  .cc2-hero-feature:nth-child(4)::after { display: none; }
  .cc2-grid-3 { grid-template-columns: 1fr; }
  .cc2-types-grid { grid-template-columns: 1fr; }
  .cc2-process-step { width: 100%; flex-direction: row; text-align: left; gap: 16px; }
  .cc2-process-icon, .cc2-process-number { margin-bottom: 0; }
  .cc2-cta-content { padding: 36px 28px; }
  .cc2-cta-title { font-size: 26px; }
  .cc2-cta-header { flex-direction: column; align-items: flex-start; }
}

/* ------------------------------------------------
   BACKUP & DISASTER RECOVERY PAGE  ï¿½  bd2- prefix
------------------------------------------------ */

/* -- Hero -- */
.bd2-hero {
  position: relative;
  background: #020d2e;
  background-size: cover;
  background-position: center right;
  padding: calc(var(--nav-h) + 3px + 60px) 0 60px;
  color: #fff;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: flex-start;
}
.bd2-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(2,13,46,0.99) 0%,
    rgba(2,13,46,0.97) 30%,
    rgba(2,13,46,0.82) 52%,
    rgba(2,13,46,0.40) 72%,
    rgba(2,13,46,0.00) 100%);
  z-index: 1;
}
.bd2-hero .container { position: relative; z-index: 2; width: 100%; }
.bd2-hero-content { max-width: 520px; }
.bd2-breadcrumb {
  font-size: 12px; color: rgba(255,255,255,0.65);
  margin-bottom: 20px; display: flex; align-items: center; gap: 6px; font-weight: 500;
}
.bd2-breadcrumb a { color: rgba(255,255,255,0.75); text-decoration: none; }
.bd2-breadcrumb a:hover { color: #fff; }
.bd2-breadcrumb span { color: rgba(255,255,255,0.35); }
.bd2-hero-title {
  font-size: 52px; font-weight: 800; line-height: 1.08;
  margin: 0 0 16px; font-family: 'Outfit', sans-serif;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4); color: #fff;
}
.bd2-hero-title span { color: #60a5fa; display: block; }
.bd2-hero-subtitle {
  font-size: 16px; font-weight: 600; color: rgba(255,255,255,0.90);
  margin-bottom: 14px; line-height: 1.55;
}
.bd2-hero-desc {
  font-size: 14.5px; color: rgba(255,255,255,0.75);
  line-height: 1.75; margin-bottom: 0;
}
.bd2-hero-pills {
  display: flex; align-items: center; gap: 0;
  margin-top: 36px; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 28px;
}
.bd2-hero-pill {
  display: flex; flex-direction: row; align-items: center; gap: 12px;
  flex: 1; position: relative; padding: 0 20px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.85); line-height: 1.4;
}
.bd2-hero-pill:first-child { padding-left: 0; }
.bd2-hero-pill:last-child  { padding-right: 0; }
.bd2-hero-pill:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 10%;
  height: 80%; width: 1px; background: rgba(255,255,255,0.15);
}
.bd2-pill-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #93c5fd; background: rgba(10,88,202,0.20);
  border: 1px solid rgba(10,88,202,0.40); border-radius: 10px;
}

/* -- Overview Section -- */
.bd2-overview { padding: 90px 0; background: #fff; }
.bd2-overview-grid { display: grid; grid-template-columns: 1fr 1.8fr; gap: 70px; align-items: start; }
.bd2-overview-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: #0A58CA; margin-bottom: 16px; display: block;
}
.bd2-overview-title {
  font-size: 32px; font-weight: 800; color: #1a2a47;
  font-family: 'Outfit', sans-serif; line-height: 1.25; margin-bottom: 16px;
}
.bd2-overview-divider {
  width: 40px; height: 3px; background: #0A58CA; border-radius: 3px; margin-bottom: 20px;
}
.bd2-overview-text {
  font-size: 14.5px; color: #5a6b8a; line-height: 1.8; margin-bottom: 14px;
}
.bd2-overview-text:last-child { margin-bottom: 0; }
.bd2-features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.bd2-feature-card {
  background: #F8F9FA; border: 1px solid #e8eef6; border-radius: 12px;
  padding: 22px 18px; display: flex; flex-direction: column; gap: 10px;
  transition: all 0.3s; box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.bd2-feature-card:hover {
  background: #fff; transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.09); border-color: rgba(10,88,202,0.25);
}
.bd2-feature-icon {
  width: 44px; height: 44px; background: rgba(10,88,202,0.08);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; color: #0A58CA; flex-shrink: 0;
}
.bd2-feature-title { font-size: 13.5px; font-weight: 700; color: #1a2a47; margin: 0; line-height: 1.3; }
.bd2-feature-desc { font-size: 12px; color: #5a6b8a; line-height: 1.6; margin: 0; }

/* -- Solutions + Process (dark split) -- */
.bd2-split { padding: 80px 0; background: #031535; }
.bd2-split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

/* Solutions list */
.bd2-solutions-title {
  font-size: 18px; font-weight: 800; color: #fff;
  font-family: 'Outfit', sans-serif; margin-bottom: 24px;
  padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.10);
  line-height: 1.3;
}
.bd2-solutions-list { display: flex; flex-direction: column; gap: 16px; }
.bd2-solution-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 20px 18px; transition: all 0.3s;
}
.bd2-solution-item:hover {
  background: rgba(10,88,202,0.18); border-color: rgba(10,88,202,0.38);
  transform: translateX(4px);
}
.bd2-solution-icon {
  width: 46px; height: 46px; background: rgba(10,88,202,0.25);
  border: 1px solid rgba(10,88,202,0.45); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #93c5fd; flex-shrink: 0;
}
.bd2-solution-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.bd2-solution-desc { font-size: 12.5px; color: rgba(255,255,255,0.65); line-height: 1.6; margin: 0; }

/* Process timeline */
.bd2-process-title {
  font-size: 20px; font-weight: 800; color: #fff;
  font-family: 'Outfit', sans-serif; margin-bottom: 28px;
  padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.10);
}
.bd2-process-row {
  display: flex; align-items: flex-start; gap: 0; margin-bottom: 36px;
}
.bd2-process-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; flex: 1; position: relative;
}
.bd2-process-num {
  width: 36px; height: 36px; background: #0A58CA; color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px; margin-bottom: 14px;
  box-shadow: 0 0 0 4px rgba(10,88,202,0.25);
}
.bd2-process-icon {
  width: 60px; height: 60px; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #93c5fd; margin-bottom: 12px;
}
.bd2-process-step-title { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.bd2-process-step-desc { font-size: 11.5px; color: rgba(255,255,255,0.60); line-height: 1.5; }
.bd2-process-arrow {
  font-size: 18px; color: rgba(255,255,255,0.30);
  align-self: flex-start; margin-top: 16px; padding: 0 2px; flex-shrink: 0;
}

/* RTO/RPO cards */
.bd2-rto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bd2-rto-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px; padding: 20px 18px; display: flex; align-items: flex-start; gap: 14px;
}
.bd2-rto-icon {
  width: 44px; height: 44px; background: rgba(10,88,202,0.25);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; color: #93c5fd; flex-shrink: 0;
}
.bd2-rto-label { font-size: 13px; font-weight: 700; color: #60a5fa; margin-bottom: 6px; }
.bd2-rto-title { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.bd2-rto-desc { font-size: 12px; color: rgba(255,255,255,0.60); line-height: 1.5; margin: 0; }

/* -- Tech Partners -- */
.bd2-partners { padding: 60px 0; background: #fff; border-top: 1px solid #e8eef6; }
.bd2-partners-head { text-align: center; margin-bottom: 40px; }
.bd2-partners-title {
  font-size: 26px; font-weight: 800; color: #1a2a47;
  font-family: 'Outfit', sans-serif; position: relative;
  display: inline-block; padding-bottom: 14px;
}
.bd2-partners-title::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%); width: 40px; height: 3px;
  background: #0A58CA; border-radius: 3px;
}
.bd2-partners-row {
  display: flex; flex-wrap: nowrap; justify-content: center;
  align-items: center; gap: 16px;
}
.bd2-partner {
  display: flex; align-items: center; gap: 8px;
  background: #F8F9FA; border: 1px solid #e8eef6; border-radius: 10px;
  padding: 12px 16px; transition: all 0.3s; flex: 1; min-width: 0;
  justify-content: center; overflow: hidden;
}
.bd2-partner:hover {
  background: #fff; border-color: rgba(10,88,202,0.25);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08); transform: translateY(-2px);
}
.bd2-partner img { height: 24px; width: auto; max-width: 32px; object-fit: contain; flex-shrink: 0; }
.bd2-partner-name { font-size: 12px; font-weight: 800; color: #1a2a47; letter-spacing: 0.3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bd2-partner-name--lg { font-size: 14px; letter-spacing: 0.5px; }

/* -- CTA Banner -- */
.bd2-cta { padding: 0 0 60px; background: #fff; }
.bd2-cta-box {
  border-radius: 16px; overflow: hidden; position: relative;
  background: #020d2e;
  min-height: 140px; display: flex; align-items: center;
  box-shadow: 0 16px 48px rgba(2,13,46,0.25);
}
.bd2-cta-box::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(2,13,46,0.98) 0%, rgba(2,13,46,0.95) 45%,
    rgba(2,13,46,0.70) 70%, rgba(2,13,46,0.10) 100%);
  z-index: 1;
}
.bd2-cta-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; padding: 36px 48px; width: 100%; flex-wrap: wrap;
}
.bd2-cta-left { display: flex; align-items: center; gap: 20px; flex: 1; }
.bd2-cta-icon {
  width: 56px; height: 56px; background: rgba(10,88,202,0.30);
  border: 1px solid rgba(10,88,202,0.50); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #93c5fd; flex-shrink: 0;
}
.bd2-cta-title {
  font-size: 22px; font-weight: 800; color: #fff;
  font-family: 'Outfit', sans-serif; margin: 0 0 4px; line-height: 1.3;
}
.bd2-cta-desc { font-size: 13px; color: rgba(255,255,255,0.70); margin: 0; line-height: 1.5; }
.bd2-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: #0A58CA; color: #fff;
  font-weight: 700; font-size: 14px; border-radius: 8px;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
  transition: all 0.3s; border: 2px solid #0A58CA;
}
.bd2-cta-btn:hover { background: #0847a8; border-color: #0847a8; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,88,202,0.4); }

/* -- Responsive -- */
@media (max-width: 1024px) {
  .bd2-overview-grid { grid-template-columns: 1fr; gap: 40px; }
  .bd2-split-grid { grid-template-columns: 1fr; gap: 40px; }
  .bd2-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .bd2-hero { padding: calc(var(--nav-h) + 3px + 40px) 0 50px; background-position: right center; }
  .bd2-hero::before {
    background: linear-gradient(90deg, rgba(2,13,46,0.99) 0%, rgba(2,13,46,0.96) 65%, rgba(2,13,46,0.85) 100%);
  }
  .bd2-hero-content { max-width: 100%; }
  .bd2-hero-title { font-size: 36px; }
  .bd2-hero-pills { flex-wrap: wrap; gap: 16px 0; }
  .bd2-hero-pill { width: 50%; flex: none; }
  .bd2-hero-pill:nth-child(2)::after { display: none; }
  .bd2-features-grid { grid-template-columns: 1fr; }
  .bd2-process-row { flex-wrap: wrap; gap: 20px; }
  .bd2-process-arrow { display: none; }
  .bd2-rto-grid { grid-template-columns: 1fr; }
  .bd2-cta-inner { flex-direction: column; padding: 28px 24px; }
  .bd2-cta-left { flex-direction: column; align-items: flex-start; }
  .bd2-cta-title { font-size: 18px; }
  .bd2-partners-row { gap: 12px; }
}
@media (max-width: 480px) {
  .bd2-hero-title { font-size: 30px; }
  .bd2-overview-title { font-size: 26px; }
}

/* ------------------------------------------------
   CTA V2  ï¿½  Shared across contact / about / free-consultation
------------------------------------------------ */
.cta-v2-container {
  width: 100%;
  background: #0044cc;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  color: #fff;
  margin-bottom: 60px;
}

.cta-v2-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.cta-v2-bg img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.9;
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  mix-blend-mode: overlay;
}

.cta-v2-inner {
  max-width: 1200px;
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.cta-v2-content {
  flex: 1;
  min-width: 320px;
}

.cta-v2-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(24px, 3vw, 28px);
  font-weight: 700;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.cta-v2-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.5;
}

.cta-v2-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {

  .hero-v2-inner,
  .impact-inner {
    grid-template-columns: 1fr;
  }

  .hero-v2-image img {
    max-width: 500px;
  }

  .hero-v2 {
    text-align: center;
  }

  .hero-v2-actions {
    justify-content: center;
  }

  .services-v2-grid,
  .testimonial-v2-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industry-v2-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .process-arrow {
    transform: rotate(90deg);
    padding: 8px 0;
  }
}

@media (max-width: 600px) {

  .services-v2-grid,
  .impact-stats,
  .testimonial-v2-grid {
    grid-template-columns: 1fr;
  }

  .industry-v2-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-v2-trust {
    grid-template-columns: 1fr;
  }

  .hero-v2-title {
    font-size: 32px;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONTACT V2 STYLES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Hero Section */


/* ------------------------------------------------
   CONTACT PAGE  ï¿½  cv2- prefix
------------------------------------------------ */
.contact-v2-hero {
  position: relative;
  padding: 140px 40px 80px;
  overflow: hidden;
  color: #fff;
}

.cv2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cv2-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cv2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 15, 36, 0.95) 0%, rgba(5, 15, 36, 0.7) 30%, rgba(5, 15, 36, 0) 50%);
}

.cv2-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cv2-hero-content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cv2-hero-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-400);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.cv2-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}

.cv2-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
  padding-right: 20px;
}

.cv2-hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

/* Contact Grid */
.contact-v2-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-v2-form-card,
.contact-v2-info-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border);
}

.cv2-card-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.cv2-card-desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* Form Styles */
.cv2-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cv2-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.cv2-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cv2-form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.cv2-form-group .req {
  color: #ef4444;
}

.cv2-form-group input,
.cv2-form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-primary);
  transition: border-color 0.2s;
  background: #fff;
}

.cv2-form-group input:focus,
.cv2-form-group textarea:focus {
  border-color: var(--blue-400);
  outline: none;
}

.cv2-phone-input {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.cv2-country-code {
  padding: 0 12px;
  background: #f8fafc;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  cursor: pointer;
}

.cv2-phone-input input {
  border: none;
  border-radius: 0;
  flex: 1;
}

.cv2-phone-input input:focus {
  outline: none;
}

.cv2-form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.cv2-safe-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

/* Info Cards */
.contact-v2-info-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cv2-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cv2-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cv2-info-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 4px 0;
}

.cv2-info-text h4 span {
  color: var(--text-muted);
  font-weight: 400;
}

.cv2-info-val {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 2px 0;
}

.cv2-info-sub {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}

/* Map Section */
.contact-v2-map-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.cv2-map-embed {
  width: 100%;
  height: 100%;
}

.cv2-map-box {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  max-width: 400px;
  z-index: 10;
  border: 1px solid var(--border);
}

.cv2-map-box-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cv2-map-box-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px 0;
}

.cv2-map-box-text p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0 0 16px 0;
}

/* FAQ Grid */
.contact-v2-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.cv2-section-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.cv2-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.cv2-faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cv2-faq-item.active {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-color: var(--blue-300);
}

.cv2-faq-btn {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  background: transparent;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: background 0.2s;
}

.cv2-faq-btn:hover {
  background: #f8fafc;
}

.cv2-faq-item.active .cv2-faq-btn {
  color: var(--blue-600);
}

.cv2-faq-icon {
  margin-left: auto;
  font-size: 12px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.cv2-faq-item.active .cv2-faq-icon {
  transform: rotate(180deg);
  color: var(--blue-600);
}

.cv2-faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.cv2-faq-item.active .cv2-faq-content {
  max-height: 200px;
}

.cv2-faq-content p {
  padding: 0 20px 20px 52px;
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.cv2-faq-link {
  color: var(--blue-600);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.cv2-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.cv2-features-grid .cv2-feature-card:last-child {
  grid-column: span 2;
}

.cv2-feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cv2-fc-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cv2-feature-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.cv2-feature-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1024px) {
  .contact-v2-grid {
    grid-template-columns: 1fr;
  }

  .contact-v2-faq-grid {
    grid-template-columns: 1fr;
  }

  .cv2-map-box {
    top: auto;
    bottom: 20px;
    left: 20px;
    right: 20px;
    transform: none;
    max-width: none;
  }
}

@media (max-width: 600px) {
  .cv2-hero-title {
    font-size: 36px;
  }

  .cv2-form-row {
    grid-template-columns: 1fr;
  }

  .cv2-form-footer {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  .cv2-features-grid {
    grid-template-columns: 1fr;
  }

  .cv2-features-grid .cv2-feature-card:last-child {
    grid-column: span 1;
  }

  .contact-v2-form-card,
  .contact-v2-info-card {
    padding: 24px;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SERVICES V2 STYLES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Services Hero */
.sv2-hero {
  position: relative;
  padding: 140px 40px 100px;
  overflow: hidden;
  color: #fff;
  background: #081225;
}

.sv2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sv2-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sv2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 18, 37, 0.95) 0%, rgba(8, 18, 37, 0.85) 40%, rgba(8, 18, 37, 0.3) 100%);
}

.sv2-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.sv2-hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sv2-hero-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-400);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.sv2-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}

.sv2-hero-subtitle {
  font-family: 'Exo 2', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--blue-300);
  margin: 0;
}

.sv2-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

.sv2-hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

/* Trust Bar */
.sv2-trust-section {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 24px 20px;
}

.sv2-trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.sv2-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sv2-trust-icon {
  color: var(--blue-500);
  display: flex;
  align-items: center;
}

.sv2-trust-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.sv2-trust-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Services List */
.sv2-services-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sv2-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr 1.5fr auto auto;
  gap: 32px;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.sv2-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  border-color: var(--blue-300);
}

.sv2-card-icon-box {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sv2-card-text-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sv2-card-text-col h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.sv2-card-text-col p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0 0 8px 0;
}

.sv2-card-text-col a {
  color: var(--blue-600);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.sv2-card-text-col a:hover {
  text-decoration: underline;
}

.sv2-card-features-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 1px solid var(--border);
  padding-left: 32px;
}

.sv2-card-features-col li {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.sv2-card-features-col svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.sv2-card-img-col {
  width: 280px;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.sv2-card-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sv2-card:hover .sv2-card-img-col img {
  transform: scale(1.05);
}

.sv2-card-arrow-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f8fafc;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-500);
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.sv2-card:hover .sv2-card-arrow-btn {
  background: var(--blue-500);
  color: #fff;
  border-color: var(--blue-500);
}

@media (max-width: 1200px) {
  .sv2-card {
    grid-template-columns: auto 1fr auto auto;
  }

  .sv2-card-features-col {
    display: none;
  }
}

@media (max-width: 900px) {
  .sv2-hero-inner {
    grid-template-columns: 1fr;
  }

  .sv2-hero-empty {
    display: none;
  }

  .sv2-trust-inner {
    justify-content: flex-start;
    gap: 32px;
  }

  .sv2-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sv2-card-icon-col {
    display: none;
  }

  .sv2-card-img-col {
    width: 100%;
    height: 200px;
  }

  .sv2-card-action-col {
    display: none;
  }

  .sv2-card-text-col a {
    display: inline-block;
    padding: 10px 20px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid var(--border);
    width: fit-content;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ABOUT V2 STYLES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* About Hero */


/* ------------------------------------------------
   ABOUT PAGE  ï¿½  av2- prefix
------------------------------------------------ */
.av2-hero {
  position: relative;
  padding: 160px 40px 100px;
  overflow: hidden;
  color: #fff;
  background: #081225;
}

.av2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.av2-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.av2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 18, 37, 0.95) 0%, rgba(8, 18, 37, 0.85) 40%, rgba(8, 18, 37, 0.3) 100%);
}

.av2-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.av2-hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
}

.av2-hero-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-400);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.av2-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}

.av2-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

.av2-hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

/* Our Story Grid */
.av2-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.av2-story-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  height: 400px;
}

.av2-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Stats Bar */
.av2-stats-bar {
  background: #0b192c;
  padding: 40px 20px;
  color: #fff;
}

.av2-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
}

.av2-stat-item {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 10px;
  gap: 8px;
}

.av2-stat-icon {
  color: var(--blue-400);
  margin-bottom: 8px;
}

.av2-stat-number {
  font-family: 'Exo 2', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--blue-400);
  line-height: 1;
}

.av2-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  font-weight: 500;
}

/* Mission Vision Values */
.av2-mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.av2-mvv-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.av2-mvv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  border-color: var(--blue-300);
}

.av2-mvv-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.av2-mvv-content h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: var(--text-primary);
}

.av2-mvv-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.av2-mvv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.av2-mvv-list li {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.av2-mvv-list svg {
  width: 16px;
  height: 16px;
  color: var(--blue-500);
}

/* Leadership Team Grid */
.av2-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.av2-team-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
}

.av2-team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  border-color: var(--blue-300);
}

.av2-team-img {
  width: 100%;
  height: 240px;
  background: #e2e8f0;
  overflow: hidden;
}

.av2-team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.av2-team-card:hover .av2-team-img img {
  transform: scale(1.05);
}

.av2-team-info {
  padding: 24px;
}

.av2-team-info h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: var(--text-primary);
}

.av2-team-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-600);
  display: block;
  margin-bottom: 12px;
}

.av2-team-info p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0 0 16px 0;
}

.av2-team-socials {
  display: flex;
  gap: 12px;
}

.av2-team-socials a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.av2-team-socials a:hover {
  color: var(--blue-600);
}

/* Trust Features */
.av2-trust-features {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.av2-tf-item {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 12px;
}

.av2-tf-icon {
  color: var(--blue-500);
}

.av2-tf-content h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: var(--text-primary);
}

.av2-tf-content p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .av2-mvv-grid {
    grid-template-columns: 1fr;
  }

  .av2-mvv-card {
    flex-direction: column;
  }

  .av2-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .av2-stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
  }

  .av2-stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media (max-width: 768px) {
  .av2-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .av2-team-grid {
    grid-template-columns: 1fr;
  }

  .av2-tf-item {
    width: 100%;
    flex: none;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FREE CONSULTATION V2 STYLES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* FC Hero */


/* ------------------------------------------------
   FREE CONSULTATION PAGE  ï¿½  fcv2- prefix
------------------------------------------------ */
.fcv2-hero {
  position: relative;
  padding: 160px 40px 100px;
  overflow: hidden;
  color: #fff;
  background: #081225;
  min-height: 800px;
  display: flex;
  align-items: center;
}

.fcv2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fcv2-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fcv2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 18, 37, 0.98) 0%, rgba(8, 18, 37, 0.9) 50%, rgba(8, 18, 37, 0.4) 100%);
}

.fcv2-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 60px;
  align-items: center;
}

.fcv2-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: #fff;
}

.fcv2-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 16px 0;
}

.fcv2-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0 0 32px 0;
  max-width: 500px;
}

.fcv2-hero-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.fcv2-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fcv2-check-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--blue-500);
  color: var(--blue-400);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fcv2-check-icon svg {
  width: 16px;
  height: 16px;
}

.fcv2-check-text {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: #e2e8f0;
}

.fcv2-trusted-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 24px;
  border-radius: 8px;
  display: inline-flex;
}

.fcv2-tb-avatars {
  display: flex;
}

.fcv2-tb-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #081225;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  overflow: hidden;
}

.fcv2-tb-avatar svg {
  width: 20px;
  height: 20px;
}

.fcv2-tb-stars {
  color: #fbbf24;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 2px;
}

.fcv2-tb-text span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

/* FC Form Card */
.fcv2-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  color: var(--text-primary);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.fcv2-form-card h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px 0;
  text-align: center;
}

.fcv2-form-card p {
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
  margin: 0 0 24px 0;
  line-height: 1.5;
}

.fcv2-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fcv2-form-group {
  margin-bottom: 16px;
}

.fcv2-form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.fcv2-form-group label span {
  color: #ef4444;
}

.fcv2-form-card input,
.fcv2-form-card select,
.fcv2-form-card textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s ease;
  background: #fff;
}

.fcv2-form-card input:focus,
.fcv2-form-card select:focus,
.fcv2-form-card textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(11, 102, 195, 0.1);
}

.fcv2-form-card input::placeholder,
.fcv2-form-card textarea::placeholder {
  color: #94a3b8;
}

.fcv2-select-wrapper {
  position: relative;
}

.fcv2-select-wrapper select {
  appearance: none;
  padding-right: 36px;
}

.fcv2-select-wrapper svg {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
}

.fcv2-phone-input {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.fcv2-phone-input:focus-within {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(11, 102, 195, 0.1);
}

.fcv2-phone-prefix {
  background: #f8fafc;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  border-right: 1px solid var(--border);
  cursor: pointer;
}

.fcv2-phone-input input {
  border: none;
  border-radius: 0;
}

.fcv2-phone-input input:focus {
  box-shadow: none;
  border: none;
}

.fcv2-submit-btn {
  width: 100%;
  background: var(--blue-600);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease;
  margin-top: 8px;
}

.fcv2-submit-btn:hover {
  background: var(--blue-700);
}

.fcv2-form-footer {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-secondary);
  text-align: center;
}

/* Benefits Grid */
.fcv2-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fcv2-benefit-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.fcv2-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  border-color: var(--blue-300);
}

.fcv2-benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #eff6ff;
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.fcv2-benefit-card h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: var(--text-primary);
}

.fcv2-benefit-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Process Timeline Section */
.fcv2-process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.fcv2-process-img {
  position: relative;
}

.fcv2-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 40px;
}

.fcv2-timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 30px;
  right: 30px;
  height: 2px;
  background: repeating-linear-gradient(90deg, #cbd5e1, #cbd5e1 6px, transparent 6px, transparent 12px);
  z-index: 0;
}

.fcv2-timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  width: 25%;
}

.fcv2-step-icon {
  width: 48px;
  height: 48px;
  background: #fff;
  border: 2px solid var(--blue-100);
  color: var(--blue-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.fcv2-step-num {
  position: absolute;
  bottom: -8px;
  width: 20px;
  height: 20px;
  background: var(--blue-600);
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.fcv2-step-text h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: var(--text-primary);
}

.fcv2-step-text p {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
  padding: 0 10px;
}

/* Ideal For Grid */
.fcv2-ideal-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.fcv2-ideal-item {
  flex: 1;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 24px;
  border-right: 1px solid var(--border);
}

.fcv2-ideal-item:last-child {
  border-right: none;
}

.fcv2-ideal-icon {
  color: var(--blue-600);
}

.fcv2-ideal-item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

/* Testimonials Grid */
.fcv2-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 40px;
  align-items: center;
}

.fcv2-testimonials-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fcv2-testimonial-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  position: relative;
}

.fcv2-tc-quote {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  color: var(--blue-200);
  position: absolute;
  top: 10px;
  left: 24px;
  line-height: 1;
  pointer-events: none;
}

.fcv2-testimonial-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 16px 0;
  position: relative;
  z-index: 1;
}

.fcv2-tc-stars {
  color: #fbbf24;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.fcv2-tc-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.fcv2-tc-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  overflow: hidden;
}

.fcv2-tc-author strong {
  display: block;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.fcv2-tc-author span {
  display: block;
  font-size: 11px;
  color: var(--text-secondary);
}

@media (max-width: 1024px) {
  .fcv2-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .fcv2-hero-overlay {
    background: rgba(8, 18, 37, 0.85);
  }

  .fcv2-hero-desc,
  .fcv2-hero-checks,
  .fcv2-trusted-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .fcv2-form-card {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
  }

  .fcv2-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fcv2-process-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .fcv2-process-img {
    max-width: 600px;
    margin: 0 auto;
  }

  .fcv2-testimonials-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .fcv2-testimonials-text a {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .fcv2-hero-checks {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fcv2-check-item {
    justify-content: center;
  }

  .fcv2-form-row {
    grid-template-columns: 1fr;
  }

  .fcv2-timeline {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }

  .fcv2-timeline::before {
    display: none;
  }

  .fcv2-timeline-step {
    width: 100%;
    max-width: 300px;
  }

  .fcv2-ideal-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .fcv2-ideal-item:last-child {
    border-bottom: none;
  }

  .fcv2-testimonials-cards {
    grid-template-columns: 1fr;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   AI AUTOMATION V2 STYLES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* AI Hero */


/* ------------------------------------------------
   INDUSTRIES PAGE  ï¿½  ind2- prefix
------------------------------------------------ */
.ind2-hero {
  position: relative;
  padding: 160px 40px 100px;
  overflow: hidden;
  color: #fff;
  background: #040b16;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.ind2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ind2-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ind2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 11, 22, 0.95) 0%, rgba(4, 11, 22, 0.7) 50%, rgba(4, 11, 22, 0.2) 100%);
}

.ind2-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.ind2-hero-content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ind2-hero-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue-400);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.ind2-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}

.ind2-hero-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0 0 16px 0;
  max-width: 500px;
}

.ind2-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Quick Nav Icons */
.ind2-icon-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: thin;
}

.ind2-icon-grid::-webkit-scrollbar {
  height: 6px;
}

.ind2-icon-grid::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 4px;
}

.ind2-icon-grid::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.ind2-icon-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: all 0.2s ease;
  text-decoration: none;
  color: var(--text-primary);
  min-width: 120px;
}

.ind2-icon-card:hover {
  border-color: var(--blue-300);
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
}

.ind2-ic-icon {
  color: var(--blue-500);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ind2-icon-card span {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}

/* Detailed Cards Grid */
.ind2-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ind2-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  position: relative;
}

.ind2-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
  border-color: var(--blue-300);
}

.ind2-card-img {
  width: 100%;
  height: 160px;
  background: #f1f5f9;
  overflow: hidden;
}

.ind2-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ind2-card:hover .ind2-card-img img {
  transform: scale(1.05);
}

.ind2-card-body {
  padding: 32px 24px 24px;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ind2-card-icon {
  position: absolute;
  top: -20px;
  left: 24px;
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.ind2-card-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.ind2-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

/* Impact Banner */
.ind2-impact-banner {
  background: #081225;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  color: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ind2-ib-left {
  min-width: 250px;
  flex-shrink: 0;
}

.ind2-ib-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--blue-400);
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.ind2-ib-left h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.ind2-ib-stats {
  display: flex;
  flex: 1;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 40px;
}

.ind2-ib-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.ind2-ib-stat svg {
  color: var(--blue-500);
}

.ind2-ib-stat strong {
  font-family: 'Exo 2', sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  color: var(--blue-200);
}

.ind2-ib-stat span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}

/* Why Choose Us Row */
.ind2-features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ind2-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ind2-f-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ind2-f-text h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 6px 0;
}

.ind2-f-text p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* Bottom CTA */
.ind2-bottom-cta {
  background: #081225;
  position: relative;
  border-radius: 16px;
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  flex-wrap: wrap;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ind2-bottom-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 37, 0.85);
  z-index: 0;
}

.ind2-bc-content,
.ind2-bc-actions {
  position: relative;
  z-index: 1;
}

.ind2-bc-content {
  flex: 1;
  color: #fff;
}

.ind2-bc-content h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 12px 0;
}

.ind2-bc-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.text-blue-300 {
  color: var(--blue-300);
}

.ind2-bc-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .ind2-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ind2-features-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .ind2-impact-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 32px;
  }

  .ind2-ib-stats {
    border-left: none;
    padding-left: 0;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    justify-content: flex-start;
  }

  .ind2-ib-stat {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .ind2-cards-grid {
    grid-template-columns: 1fr;
  }

  .ind2-features-row {
    grid-template-columns: 1fr;
  }

  .ind2-bottom-cta {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
  }

  .ind2-bc-actions {
    flex-direction: column;
    width: 100%;
  }

  .ind2-bc-actions a {
    width: 100%;
    justify-content: center;
  }

  .ind2-icon-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .ind2-icon-card {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .ind2-icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ind2-ib-stats {
    flex-direction: column;
    gap: 24px;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•ï¿½


/* =====================================================
   CONTENT WRITING V2 (services-content-writing.html)
   ===================================================== */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   services-content-writing.HTML STYLES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Hero */
.cw2-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #000d2e 0%, #001a5c 50%, #001233 100%) !important;
  color: #fff;
  padding: 140px 40px 80px;
}

.cw2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cw2-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.cw2-hero-overlay {
  position: absolute;
  inset: 0;  
}

.cw2-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

.cw2-hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cw2-breadcrumb {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.3px;
}

.cw2-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  margin: 0;
}

.cw2-hero-title .text-blue {
  color: var(--blue-400);
}

.cw2-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin: 0;
  max-width: 460px;
}

.cw2-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cw2-hero-visual img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.cw2-stats-row {
  display: flex;
  gap: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.cw2-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cw2-stat svg {
  color: var(--blue-400);
  flex-shrink: 0;
}

.cw2-stat strong {
  display: block;
  font-family: 'Exo 2', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.cw2-stat span {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  white-space: nowrap;
}

/* About / Who We Are */
.cw2-about-section {
  padding: 96px 40px;
  background: #fff;
}

.cw2-about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cw2-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--blue-600);
  display: block;
  margin-bottom: 14px;
}

.cw2-about-content h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
  margin: 0 0 20px;
}

.cw2-about-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0 0 28px;
}

.cw2-about-image {
  display: flex;
  justify-content: center;
}

.cw2-about-image-card {
  background: #fff;
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 24px 64px rgba(37, 99, 235, 0.12);
  border: 2px solid var(--blue-200);
  position: relative;
  width: 100%;
}

.cw2-about-image-card::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 30px;
  border: 2px solid rgba(37, 99, 235, 0.1);
  pointer-events: none;
}

.cw2-about-image-card img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

/* Services Grid - 5 cards (3+2) */
.cw2-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cw2-svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cw2-svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.cw2-svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.09);
  border-color: var(--blue-200);
}

.cw2-svc-card:hover::before {
  transform: scaleX(1);
}

.cw2-svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cw2-svc-card h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.cw2-svc-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Why Choose Us - 5 cards */
.cw2-why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.cw2-why-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s ease;
  text-align: center;
  align-items: center;
}

.cw2-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.08);
  border-color: var(--blue-200);
  background: #fff;
}

.cw2-why-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cw2-why-card h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.cw2-why-card p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Process - 6 steps */
.cw2-process-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  position: relative;
}

.cw2-process-row::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 32px;
  right: 32px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--blue-200) 0, var(--blue-200) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}

.cw2-proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 6px;
}

.cw2-proc-icon {
  width: 64px;
  height: 64px;
  background: #fff;
  border: 2px solid var(--blue-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-500);
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.cw2-proc-num {
  position: absolute;
  top: 46px;
  width: 22px;
  height: 22px;
  background: var(--blue-600);
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #f8fafc;
}

.cw2-proc-step h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 6px;
}

.cw2-proc-step p {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.45;
  margin: 0;
}

/* CTA */
.cw2-cta-section {
  background: linear-gradient(135deg, #040e25 0%, #0d1f4a 50%, #0a1a3e 100%);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.cw2-cta-section::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cw2-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cw2-cta-content h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.25;
}

.cw2-cta-content h2 span {
  color: var(--blue-400);
}

.cw2-cta-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.cw2-cta-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cw2-cta-wa {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.cw2-cta-wa:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 1200px) {
  .cw2-why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cw2-process-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .cw2-process-row::before {
    display: none;
  }
}

@media (max-width: 1024px) {
  .cw2-hero-inner {
    grid-template-columns: 1fr;
  }

  .cw2-hero-visual {
    display: none;
  }

  .cw2-about-inner {
    grid-template-columns: 1fr;
  }

  .cw2-about-image {
    display: none;
  }
}

@media (max-width: 768px) {
  .cw2-hero {
    padding: 110px 20px 60px;
    min-height: auto;
  }

  .cw2-about-section {
    padding: 60px 20px;
  }

  .cw2-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cw2-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cw2-cta-section {
    padding: 60px 20px;
  }

  .cw2-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cw2-stats-row {
    gap: 18px;
  }

  .cw2-process-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .cw2-services-grid {
    grid-template-columns: 1fr;
  }

  .cw2-why-grid {
    grid-template-columns: 1fr;
  }

  .cw2-process-row {
    grid-template-columns: 1fr;
  }
}




/* =====================================================
   SEO V2 (services-seo.html)
   ===================================================== */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   services-seo.HTML STYLES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Hero */
.seo2-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #000d2e 0%, #001a5c 50%, #001233 100%) !important;
  color: #fff;
  padding: 140px 40px 80px;
}

.seo2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.seo2-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.seo2-hero-overlay {
  position: absolute;
  inset: 0;  
}

.seo2-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

.seo2-hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.seo2-breadcrumb {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.3px;
}

.seo2-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  margin: 0;
}

.seo2-hero-title .text-blue {
  color: var(--blue-400);
}

.seo2-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin: 0;
  max-width: 460px;
}

.seo2-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.seo2-hero-visual img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.seo2-stats-row {
  display: flex;
  gap: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.seo2-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.seo2-stat svg {
  color: var(--blue-400);
  flex-shrink: 0;
}

.seo2-stat strong {
  display: block;
  font-family: 'Exo 2', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.seo2-stat span {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  white-space: nowrap;
}

/* About */
.seo2-about-section {
  padding: 96px 40px;
  background: #fff;
}

.seo2-about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.seo2-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--blue-600);
  display: block;
  margin-bottom: 14px;
}

.seo2-about-content h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
  margin: 0 0 20px;
}

.seo2-about-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0 0 28px;
}

.seo2-about-image {
  display: flex;
  justify-content: center;
}

.seo2-about-image-card {
  background: #fff;
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 24px 64px rgba(37, 99, 235, 0.12);
  border: 2px solid var(--blue-200);
  position: relative;
  width: 100%;
}

.seo2-about-image-card::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 30px;
  border: 2px solid rgba(37, 99, 235, 0.1);
  pointer-events: none;
}

.seo2-about-image-card img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

/* Services Grid - 3x2 */
.seo2-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.seo2-svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.seo2-svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.seo2-svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.09);
  border-color: var(--blue-200);
}

.seo2-svc-card:hover::before {
  transform: scaleX(1);
}

.seo2-svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.seo2-svc-card h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.seo2-svc-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Why Choose Us - 5 cards in row */
.seo2-why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.seo2-why-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s ease;
}

.seo2-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.08);
  border-color: var(--blue-200);
  background: #fff;
}

.seo2-why-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.seo2-why-card h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.seo2-why-card p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Process - 6 steps */
.seo2-process-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  position: relative;
}

.seo2-process-row::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 32px;
  right: 32px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--blue-200) 0, var(--blue-200) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}

.seo2-proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 4px;
}

.seo2-proc-icon {
  width: 64px;
  height: 64px;
  background: #fff;
  border: 2px solid var(--blue-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-500);
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.seo2-proc-num {
  position: absolute;
  top: 46px;
  width: 22px;
  height: 22px;
  background: var(--blue-600);
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #f8fafc;
}

.seo2-proc-step h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 6px;
}

.seo2-proc-step p {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

/* CTA */
.seo2-cta-section {
  background: linear-gradient(135deg, #040e25 0%, #0d1f4a 50%, #0a1a3e 100%);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.seo2-cta-section::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.seo2-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.seo2-cta-content h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.25;
}

.seo2-cta-content h2 span {
  color: var(--blue-400);
}

.seo2-cta-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.seo2-cta-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.seo2-cta-wa {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.seo2-cta-wa:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 1200px) {
  .seo2-why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .seo2-process-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .seo2-process-row::before {
    display: none;
  }
}

@media (max-width: 1024px) {
  .seo2-hero-inner {
    grid-template-columns: 1fr;
  }

  .seo2-hero-visual {
    display: none;
  }

  .seo2-about-inner {
    grid-template-columns: 1fr;
  }

  .seo2-about-image {
    display: none;
  }
}

@media (max-width: 768px) {
  .seo2-hero {
    padding: 110px 20px 60px;
    min-height: auto;
  }

  .seo2-about-section {
    padding: 60px 20px;
  }

  .seo2-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .seo2-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .seo2-cta-section {
    padding: 60px 20px;
  }

  .seo2-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .seo2-stats-row {
    gap: 18px;
  }

  .seo2-process-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .seo2-services-grid {
    grid-template-columns: 1fr;
  }

  .seo2-why-grid {
    grid-template-columns: 1fr;
  }

  .seo2-services-grid {
    grid-template-columns: 1fr;
  }

  .seo2-why-grid {
    grid-template-columns: 1fr;
  }

  .seo2-process-row {
    grid-template-columns: 1fr;
  }
}




/* =====================================================
   SOCIAL MEDIA ADS V2 (services-socialmedia-ads.html)
   ===================================================== */

/* Hero */
.smad2-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #000d2e 0%, #001a5c 50%, #001233 100%) !important;
  color: #fff;
  padding: 140px 40px 80px;
}

.smad2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.smad2-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.smad2-hero-overlay {
  position: absolute;
  inset: 0; 
}

.smad2-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

.smad2-hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.smad2-breadcrumb {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.3px;
}

.smad2-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  margin: 0;
}

.smad2-hero-title .text-blue {
  color: var(--blue-400);
}

.smad2-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin: 0;
  max-width: 460px;
}

.smad2-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.smad2-hero-visual img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

/* Trust Row */
.smad2-trust-row {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.smad2-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  padding: 0 18px;
}

.smad2-trust-item:first-child {
  padding-left: 0;
}

.smad2-trust-item svg {
  color: var(--blue-400);
  flex-shrink: 0;
}

.smad2-trust-div {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

/* About */
.smad2-about-section {
  padding: 96px 40px;
  background: #fff;
}

.smad2-about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.smad2-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--blue-600);
  display: block;
  margin-bottom: 14px;
}

.smad2-about-content h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
  margin: 0 0 20px;
}

.smad2-about-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0 0 28px;
}

.smad2-about-image {
  display: flex;
  justify-content: center;
}

.smad2-about-image-card {
  background: #fff;
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 24px 64px rgba(37, 99, 235, 0.12);
  border: 2px solid var(--blue-200);
  position: relative;
  width: 100%;
}

.smad2-about-image-card::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 30px;
  border: 2px solid rgba(37, 99, 235, 0.1);
  pointer-events: none;
}

.smad2-about-image-card img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

/* Services Grid - 3x2 */
.smad2-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.smad2-svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.smad2-svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.smad2-svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.09);
  border-color: var(--blue-200);
}

.smad2-svc-card:hover::before {
  transform: scaleX(1);
}

.smad2-svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.smad2-svc-card h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.smad2-svc-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Why Choose Us - 5 cards */
.smad2-why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.smad2-why-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s ease;
}

.smad2-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.08);
  border-color: var(--blue-200);
  background: #fff;
}

.smad2-why-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.smad2-why-card h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.smad2-why-card p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Platforms */
.smad2-platforms-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.smad2-plat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.smad2-plat-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.smad2-plat-item:hover .smad2-plat-icon {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.smad2-plat-item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* CTA */
.smad2-cta-section {
  background: linear-gradient(135deg, #040e25 0%, #0d1f4a 50%, #0a1a3e 100%);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.smad2-cta-section::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.smad2-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.smad2-cta-content h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.25;
}

.smad2-cta-content h2 span {
  color: var(--blue-400);
}

.smad2-cta-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.smad2-cta-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.smad2-cta-wa {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.smad2-cta-wa:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 1200px) {
  .smad2-why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .smad2-hero-inner {
    grid-template-columns: 1fr;
  }

  .smad2-hero-visual {
    display: none;
  }

  .smad2-about-inner {
    grid-template-columns: 1fr;
  }

  .smad2-about-image {
    display: none;
  }

  .smad2-trust-row {
    flex-wrap: wrap;
    gap: 12px;
  }

  .smad2-trust-div {
    display: none;
  }

  .smad2-trust-item {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .smad2-hero {
    padding: 110px 20px 60px;
    min-height: auto;
  }

  .smad2-about-section {
    padding: 60px 20px;
  }

  .smad2-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .smad2-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .smad2-cta-section {
    padding: 60px 20px;
  }

  .smad2-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .smad2-platforms-row {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .smad2-services-grid {
    grid-template-columns: 1fr;
  }

  .smad2-why-grid {
    grid-template-columns: 1fr;
  }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   DIGITAL MARKETING PAGE  â€”  dm- prefix
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Hero â”€â”€ */
.dm-hero {
  position: relative;
  background-color: #020d2e;
  background-size: cover;
  background-position: center center;
  padding: 160px 0 80px;
  color: #ffffff;
  overflow: hidden;
}

.dm-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2,13,46,0.99) 0%,
    rgba(2,13,46,0.97) 25%,
    rgba(2,13,46,0.82) 42%,
    rgba(2,13,46,0.30) 58%,
    rgba(2,13,46,0.00) 72%
  );
  z-index: 1;
}

.dm-hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.dm-hero-content {
  flex: 0 0 54%;
  max-width: 54%;
}

.dm-breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.70);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.dm-breadcrumb span { color: rgba(255,255,255,0.40); }

.dm-hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 18px;
  font-family: 'Outfit', sans-serif;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.dm-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 28px;
}

.dm-hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.dm-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: #0A58CA;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dm-btn-primary:hover {
  background: #0847a8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,88,202,0.4);
}

.dm-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: transparent;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.35);
  text-decoration: none;
  transition: all 0.3s ease;
}

.dm-btn-wa:hover {
  border-color: #25d366;
  background: rgba(37,211,102,0.08);
}

.dm-hero-features {
  display: flex;
  align-items: flex-start;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 28px;
}

.dm-hero-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  flex: 1;
  position: relative;
  padding: 0 12px;
}

.dm-hero-feature:first-child { padding-left: 0; }

.dm-hero-feature:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 10%;
  height: 80%; width: 1px;
  background: rgba(255,255,255,0.15);
}

.dm-hero-feature-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: #93c5fd;
  background: rgba(10,88,202,0.20);
  border: 1px solid rgba(10,88,202,0.40);
  border-radius: 12px;
}

.dm-hero-feature-text {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

/* â”€â”€ Section Helpers â”€â”€ */
.dm-section { padding: 90px 0; }
.dm-section--white { background: #ffffff; }
.dm-section--light { background: #F8F9FA; }

.dm-section-head {
  text-align: center;
  margin-bottom: 50px;
}

.dm-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0A58CA;
  margin-bottom: 12px;
}

.dm-section-title {
  font-size: 34px;
  font-weight: 800;
  color: #1a2a47;
  font-family: 'Outfit', sans-serif;
  position: relative;
  display: block;
  padding-bottom: 16px;
  margin-bottom: 14px;
  text-align: center;
}

.dm-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 3px;
  background: #0A58CA;
  border-radius: 3px;
}

.dm-section-title.dm-left {
  text-align: left;
}

.dm-section-title.dm-left::after {
  left: 0;
  transform: none;
}

.dm-section-title span { color: #0A58CA; }

.dm-section-desc {
  font-size: 15.5px;
  color: #5a6b8a;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.75;
  text-align: center;
}

/* â”€â”€ Overview Section â”€â”€ */
.dm-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.dm-overview-text {
  display: flex;
  flex-direction: column;
}

.dm-overview-desc {
  font-size: 15.5px;
  color: #5a6b8a;
  line-height: 1.8;
  margin: 16px 0 32px;
}

.dm-overview-stats {
  display: flex;
  gap: 36px;
  padding: 24px 0;
  border-top: 1px solid #e8eef6;
}

.dm-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dm-stat-num {
  font-size: 30px;
  font-weight: 800;
  color: #0A58CA;
  font-family: 'Outfit', sans-serif;
  line-height: 1;
}

.dm-stat-lbl {
  font-size: 12px;
  color: #5a6b8a;
  font-weight: 500;
}

.dm-overview-img-col {
  position: relative;
}

.dm-overview-img-wrap {
  position: relative;
}

.dm-overview-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 24px 64px rgba(0,0,0,0.13);
}

.dm-overview-badge {
  position: absolute;
  bottom: -18px;
  left: 24px;
  background: #ffffff;
  border: 1px solid #e8eef6;
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
  font-size: 14px;
  font-weight: 700;
  color: #1a2a47;
  white-space: nowrap;
}

/* â”€â”€ Service Cards Grid â”€â”€ */
.dm-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.dm-card {
  background: #ffffff;
  border: 1px solid #e8eef6;
  border-radius: 14px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.dm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.09);
  border-color: rgba(10,88,202,0.25);
}

.dm-card-icon {
  width: 56px; height: 56px;
  background: rgba(10,88,202,0.07);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #0A58CA;
  flex-shrink: 0;
}

.dm-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #1a2a47;
  margin: 0;
}

.dm-card-desc {
  font-size: 13.5px;
  color: #5a6b8a;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.dm-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: #0A58CA;
  text-decoration: none;
  transition: gap 0.2s;
}

.dm-card-link:hover { gap: 9px; }

/* â”€â”€ Process Timeline â”€â”€ */
.dm-process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 60px;
}

.dm-process-timeline::before {
  content: '';
  position: absolute;
  top: 16px;
  left: calc(100% / 12);
  right: calc(100% / 12);
  border-top: 2px dashed #cbd5e1;
  z-index: 1;
}

.dm-process-step {
  position: relative;
  z-index: 2;
  width: 15%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.dm-process-number {
  width: 32px; height: 32px;
  background: #0A58CA;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
  margin-bottom: 20px;
  box-shadow: 0 0 0 6px #ffffff;
  flex-shrink: 0;
}

.dm-section--light .dm-process-number {
  box-shadow: 0 0 0 6px #F8F9FA;
}

.dm-process-icon {
  width: 68px; height: 68px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #0A58CA;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  flex-shrink: 0;
}

.dm-process-title {
  font-size: 13px;
  font-weight: 700;
  color: #1a2a47;
  margin-bottom: 8px;
  line-height: 1.3;
}

.dm-process-desc {
  font-size: 12px;
  color: #5a6b8a;
  line-height: 1.5;
}

/* â”€â”€ Why Choose Us â”€â”€ */
.dm-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.dm-why-img-col {
  position: relative;
}

.dm-why-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 24px 64px rgba(0,0,0,0.13);
}

.dm-why-text {
  display: flex;
  flex-direction: column;
}

.dm-why-desc {
  font-size: 15.5px;
  color: #5a6b8a;
  line-height: 1.8;
  margin: 16px 0 28px;
}

.dm-why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dm-why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.dm-why-icon {
  width: 36px; height: 36px;
  background: rgba(10,88,202,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #0A58CA;
  flex-shrink: 0;
  margin-top: 2px;
}

.dm-why-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #1a2a47;
  margin-bottom: 4px;
}

.dm-why-item p {
  font-size: 13.5px;
  color: #5a6b8a;
  line-height: 1.6;
  margin: 0;
}

/* â”€â”€ Specialized / Types Grid â”€â”€ */
.dm-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dm-type-card {
  background: #F8F9FA;
  border: 1px solid #e8eef6;
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  transition: all 0.3s ease;
}

.dm-type-card:hover {
  background: #ffffff;
  border-color: rgba(10,88,202,0.25);
  box-shadow: 0 10px 32px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}

.dm-type-icon {
  width: 52px; height: 52px;
  background: rgba(10,88,202,0.07);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #0A58CA;
  flex-shrink: 0;
}

.dm-type-content { flex: 1; }

.dm-type-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a2a47;
  margin-bottom: 8px;
}

.dm-type-content p {
  font-size: 13px;
  color: #5a6b8a;
  line-height: 1.65;
  margin-bottom: 12px;
}

/* â”€â”€ CTA Section â”€â”€ */
.dm-cta {
  padding: 80px 0;
  background: #020d2e;
}

.dm-cta-box {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(3,21,53,0.5);
  background-size: cover;
  background-position: right center;
  min-height: 280px;
  display: flex;
  align-items: center;
}

.dm-cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2,13,46,0.98) 0%,
    rgba(2,13,46,0.93) 38%,
    rgba(2,13,46,0.55) 62%,
    rgba(2,13,46,0.00) 100%
  );
  z-index: 1;
  border-radius: 20px;
}

.dm-cta-content {
  padding: 50px 60px;
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 620px;
}

.dm-cta-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}

.dm-cta-icon {
  width: 64px; height: 64px;
  background: #0A58CA;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(10,88,202,0.5);
}

.dm-cta-title {
  font-size: 34px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  line-height: 1.25;
}

.dm-cta-title span { color: #60a5fa; }

.dm-cta-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 32px;
  line-height: 1.65;
}

.dm-cta-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.dm-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: #ffffff;
  color: #031535;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dm-cta-btn:hover {
  background: #e8f0ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}

.dm-cta-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: transparent;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.35);
  text-decoration: none;
  transition: all 0.3s ease;
}

.dm-cta-btn-wa:hover {
  border-color: #25d366;
  background: rgba(37,211,102,0.08);
}

/* â”€â”€ Responsive â”€â”€ */
@media (max-width: 1024px) {
  .dm-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .dm-types-grid { grid-template-columns: repeat(2, 1fr); }
  .dm-overview-grid { grid-template-columns: 1fr; gap: 40px; }
  .dm-why-grid { grid-template-columns: 1fr; gap: 40px; }
  .dm-overview-img { height: 320px; }
  .dm-why-img { height: 340px; }
  .dm-overview-badge { bottom: -14px; left: 16px; }
  .dm-process-timeline { flex-wrap: wrap; gap: 36px; justify-content: center; }
  .dm-process-step { width: 28%; }
  .dm-process-timeline::before { display: none; }
}

@media (max-width: 768px) {
  .dm-hero { padding: 120px 0 60px; background-position: right center; }
  .dm-hero::before {
    background: linear-gradient(90deg, rgba(2,13,46,0.99) 0%, rgba(2,13,46,0.95) 60%, rgba(2,13,46,0.82) 100%);
  }
  .dm-hero-content { flex: 0 0 100%; max-width: 100%; }
  .dm-hero-title { font-size: 34px; }
  .dm-hero-desc { font-size: 15px; max-width: 100%; }
  .dm-hero-features { flex-wrap: wrap; gap: 16px 0; }
  .dm-hero-feature { width: 50%; flex: none; }
  .dm-hero-feature:nth-child(2)::after,
  .dm-hero-feature:nth-child(4)::after { display: none; }
  .dm-grid-3 { grid-template-columns: 1fr; }
  .dm-types-grid { grid-template-columns: 1fr; }
  .dm-type-card { flex-direction: column; }
  .dm-process-step { width: 100%; flex-direction: row; text-align: left; gap: 16px; }
  .dm-process-icon { margin-bottom: 0; }
  .dm-process-number { margin-bottom: 0; }
  .dm-overview-stats { flex-wrap: wrap; gap: 20px; }
  .dm-cta-content { padding: 36px 28px; }
  .dm-cta-title { font-size: 26px; }
  .dm-cta-header { flex-direction: column; align-items: flex-start; }
  .dm-section-title { font-size: 28px; }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NETWORK SOLUTIONS PAGE  â€”  ns- prefix
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Hero â”€â”€ */
.ns-hero {
  position: relative;
  background-color: #020d2e;
  background-size: cover;
  background-position: center right;
  padding: calc(var(--nav-h) + 3px + 60px) 0 60px;
  color: #ffffff;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-start;
}

.ns-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2,13,46,0.99) 0%,
    rgba(2,13,46,0.97) 30%,
    rgba(2,13,46,0.82) 52%,
    rgba(2,13,46,0.38) 72%,
    rgba(2,13,46,0.00) 100%
  );
  z-index: 1;
}

.ns-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.ns-hero-content {
  max-width: 500px;
}

.ns-breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.70);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.ns-breadcrumb span { color: rgba(255,255,255,0.40); }

.ns-hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 14px;
}

.ns-hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 18px;
  font-family: 'Outfit', sans-serif;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  color: #fff;
}

.ns-hero-title span { color: #60a5fa; display: block; }

.ns-hero-desc {
  font-size: 15.5px;
  color: rgba(255,255,255,0.80);
  line-height: 1.75;
  margin-bottom: 32px;
}

/* â”€â”€ Hero Buttons â”€â”€ */
.ns-hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.ns-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: #0A58CA;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ns-btn-primary:hover {
  background: #0847a8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,88,202,0.4);
}

.ns-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  background: transparent;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.35);
  text-decoration: none;
  transition: all 0.3s ease;
}

.ns-btn-wa:hover {
  border-color: #25d366;
  background: rgba(37,211,102,0.08);
}

/* â”€â”€ Hero Badges â”€â”€ */
.ns-hero-badges {
  display: flex;
  align-items: flex-start;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 28px;
}

.ns-hero-badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex: 1;
  position: relative;
  padding: 0 16px 0 0;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

.ns-hero-badge:first-child { padding-left: 0; }

.ns-hero-badge:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 10%;
  height: 80%; width: 1px;
  background: rgba(255,255,255,0.15);
}

.ns-hero-badge-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: #93c5fd;
  background: rgba(10,88,202,0.20);
  border: 1px solid rgba(10,88,202,0.40);
  border-radius: 10px;
  flex-shrink: 0;
}

/* â”€â”€ Section Helpers â”€â”€ */
.ns-section { padding: 90px 0; }
.ns-section--white { background: #ffffff; }
.ns-section--light { background: #F8F9FA; }

.ns-section-head { text-align: left; margin-bottom: 44px; }
.ns-section-head--center { text-align: center; }

.ns-section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #0A58CA;
  margin-bottom: 12px;
}

.ns-section-title {
  font-size: 34px;
  font-weight: 800;
  color: #1a2a47;
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
  margin: 0;
  position: relative;
  display: inline-block;
}

.ns-section-head--center .ns-section-title {
  padding-bottom: 16px;
}

.ns-section-head--center .ns-section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 3px;
  background: #0A58CA;
  border-radius: 3px;
}

/* â”€â”€ Intro Block â”€â”€ */
.ns-intro-wrap {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.ns-intro-title {
  font-size: 34px;
  font-weight: 800;
  color: #1a2a47;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}

.ns-intro-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 3px;
  background: #0A58CA;
  border-radius: 3px;
}

.ns-intro-desc {
  font-size: 16px;
  color: #5a6b8a;
  line-height: 1.8;
  margin-top: 20px;
}

/* â”€â”€ Services Grid (3-column) â”€â”€ */
.ns-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ns-service-card {
  background: #ffffff;
  border: 1px solid #e8eef6;
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}

.ns-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.09);
  border-color: rgba(10,88,202,0.25);
  background: #ffffff;
}

.ns-service-icon {
  width: 52px; height: 52px;
  background: rgba(10,88,202,0.07);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #0A58CA;
  flex-shrink: 0;
}

.ns-service-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ns-service-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a2a47;
  margin: 0;
  line-height: 1.35;
}

.ns-service-desc {
  font-size: 13px;
  color: #5a6b8a;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.ns-service-link {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: #0A58CA;
  text-decoration: none;
  transition: gap 0.2s;
  gap: 4px;
}

.ns-service-link:hover { gap: 8px; }

/* â”€â”€ Stats Bar â”€â”€ */
.ns-stats-bar {
  background: #020d2e;
  padding: 48px 0;
}

.ns-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.ns-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  justify-content: center;
  padding: 0 24px;
}

.ns-stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.ns-stat-icon {
  width: 52px; height: 52px;
  background: rgba(10,88,202,0.25);
  border: 1px solid rgba(10,88,202,0.45);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #93c5fd;
  flex-shrink: 0;
}

.ns-stat-body { display: flex; flex-direction: column; gap: 4px; }

.ns-stat-num {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  line-height: 1;
}

.ns-stat-lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* â”€â”€ Why Choose Us (dark navy) â”€â”€ */
.ns-why {
  padding: 80px 0;
  background: #020d2e;
  color: #ffffff;
}

.ns-why-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.ns-why-title {
  font-size: 30px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
  position: relative;
  padding-bottom: 16px;
}

.ns-why-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 50px; height: 3px;
  background: #0A58CA;
  border-radius: 3px;
}

.ns-why-subtitle {
  font-size: 14.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 32px;
  margin-top: 16px;
}

.ns-why-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.ns-why-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.ns-why-card:hover {
  background: rgba(10,88,202,0.18);
  border-color: rgba(10,88,202,0.38);
  transform: translateY(-3px);
}

.ns-why-icon {
  width: 46px; height: 46px;
  background: rgba(10,88,202,0.25);
  border: 1px solid rgba(10,88,202,0.45);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #93c5fd;
  flex-shrink: 0;
}

.ns-why-card-body { flex: 1; }

.ns-why-card-title {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.ns-why-card-desc {
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0;
}

.ns-why-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}

.ns-why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 380px;
}

/* â”€â”€ Process Timeline â”€â”€ */
.ns-process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 60px;
}

.ns-process-timeline::before {
  content: '';
  position: absolute;
  top: 16px; left: 3%; right: 3%;
  border-top: 2px dashed #cbd5e1;
  z-index: 1;
}

.ns-process-step {
  position: relative; z-index: 2;
  width: 14%;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}

.ns-process-number {
  width: 32px; height: 32px;
  background: #0A58CA; color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
  margin-bottom: 20px;
  box-shadow: 0 0 0 6px #F8F9FA;
  flex-shrink: 0;
}

.ns-process-icon {
  width: 68px; height: 68px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #0A58CA; margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  flex-shrink: 0;
}

.ns-process-title {
  font-size: 13.5px; font-weight: 700;
  color: #1a2a47; margin-bottom: 8px;
}

.ns-process-desc {
  font-size: 12px; color: #5a6b8a; line-height: 1.5;
}

/* â”€â”€ Technology Partners â”€â”€ */
.ns-partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.ns-partner-card {
  background: #F8F9FA;
  border: 1px solid #e8eef6;
  border-radius: 12px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.ns-partner-card:hover {
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  border-color: rgba(10,88,202,0.20);
  transform: translateY(-3px);
}

.ns-partner-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.ns-partner-card span {
  font-size: 12px;
  font-weight: 600;
  color: #5a6b8a;
  text-align: center;
}

/* â”€â”€ CTA Section â”€â”€ */
.ns-cta {
  padding: 60px 0;
  background: #fff;
}

.ns-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 52px 60px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center right;
  flex-wrap: wrap;
}

.ns-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,21,53,0.97) 0%, rgba(3,21,53,0.92) 55%, rgba(3,21,53,0.65) 100%);
  z-index: 1;
}

.ns-cta-left {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
  min-width: 280px;
  position: relative;
  z-index: 2;
}

.ns-cta-icon {
  width: 60px; height: 60px;
  background: rgba(10,88,202,0.30);
  border: 1px solid rgba(10,88,202,0.50);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #93c5fd;
  flex-shrink: 0;
}

.ns-cta-text { flex: 1; }

.ns-cta-title {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  line-height: 1.3;
  margin-bottom: 8px;
}

.ns-cta-desc {
  font-size: 14.5px;
  color: rgba(255,255,255,0.70);
  line-height: 1.65;
  margin: 0;
}

.ns-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: #ffffff;
  color: #031535;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  border: 2px solid #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.ns-cta-btn:hover {
  background: #e8f0ff;
  border-color: #e8f0ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}

/* â”€â”€ Responsive â”€â”€ */
@media (max-width: 1200px) {
  .ns-partners-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .ns-services-grid { grid-template-columns: repeat(2, 1fr); }
  .ns-why-inner { grid-template-columns: 1fr; gap: 40px; }
  .ns-why-image { order: -1; }
  .ns-why-image img { min-height: 280px; }
  .ns-process-timeline { flex-wrap: wrap; gap: 36px; justify-content: center; }
  .ns-process-step { width: 28%; }
  .ns-process-timeline::before { display: none; }
  .ns-stats-row { flex-wrap: wrap; gap: 32px; }
  .ns-stat-divider { display: none; }
  .ns-stat { flex: 0 0 40%; }
}

@media (max-width: 768px) {
  .ns-hero { padding: calc(var(--nav-h) + 3px + 40px) 0 50px; background-position: right center; }
  .ns-hero::before {
    background: linear-gradient(90deg, rgba(2,13,46,0.99) 0%, rgba(2,13,46,0.96) 60%, rgba(2,13,46,0.85) 100%);
  }
  .ns-hero-content { max-width: 100%; }
  .ns-hero-title { font-size: 34px; }
  .ns-hero-desc { font-size: 15px; max-width: 100%; }
  .ns-hero-badges { flex-wrap: wrap; gap: 16px 0; }
  .ns-hero-badge { width: 50%; flex: none; }
  .ns-hero-badge:nth-child(2)::after,
  .ns-hero-badge:nth-child(4)::after { display: none; }
  .ns-services-grid { grid-template-columns: 1fr; }
  .ns-why-cards { grid-template-columns: 1fr; }
  .ns-process-step { width: 100%; flex-direction: row; text-align: left; gap: 16px; }
  .ns-process-icon { margin-bottom: 0; }
  .ns-process-number { margin-bottom: 0; }
  .ns-partners-grid { grid-template-columns: repeat(2, 1fr); }
  .ns-cta-inner { padding: 40px 28px; flex-direction: column; align-items: flex-start; }
  .ns-cta-title { font-size: 22px; }
  .ns-stat { flex: 0 0 100%; }
  .ns-section-title { font-size: 28px; }
  .ns-intro-title { font-size: 26px; }
}



/* ═══════════════════════════════════════════════════════
   404 ERROR PAGE  -  e404- prefix
═══════════════════════════════════════════════════════ */

/* -- Hero -- */
.e404-hero {
  position: relative;
  background-color: #020d2e;
  background-size: cover;
  background-position: center right;
  padding: calc(var(--nav-h) + 3px + 60px) 0 70px;
  color: #ffffff;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: flex-start;
}

.e404-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2,13,46,0.99) 0%,
    rgba(2,13,46,0.97) 25%,
    rgba(2,13,46,0.82) 42%,
    rgba(2,13,46,0.35) 58%,
    rgba(2,13,46,0.00) 72%
  );
  z-index: 1;
}

.e404-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.e404-hero-content {
  max-width: 500px;
}

.e404-number {
  font-size: 110px;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 0 80px rgba(96,165,250,0.55), 0 4px 30px rgba(0,0,0,0.5);
  letter-spacing: -4px;
  margin-bottom: 10px;
}

.e404-title {
  font-size: 34px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.e404-divider {
  width: 60px;
  height: 4px;
  background: #0A58CA;
  border-radius: 4px;
  margin-bottom: 22px;
}

.e404-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 36px;
}

.e404-btn-home {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: #0A58CA;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.e404-btn-home:hover {
  background: #0847a8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,88,202,0.45);
}

/* -- Helpful Links Section -- */
.e404-links-section {
  background: #ffffff;
  padding: 80px 0;
}

.e404-links-head {
  text-align: center;
  margin-bottom: 52px;
}

.e404-links-title {
  font-size: 32px;
  font-weight: 800;
  color: #1a2a47;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 14px;
}

.e404-links-bar {
  width: 50px;
  height: 3px;
  background: #0A58CA;
  border-radius: 3px;
  margin: 0 auto 18px;
}

.e404-links-desc {
  font-size: 15.5px;
  color: #5a6b8a;
  line-height: 1.7;
}

/* -- Links Grid -- */
.e404-links-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.e404-link-card {
  background: #ffffff;
  border: 1px solid #e8eef6;
  border-radius: 14px;
  padding: 28px 18px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.e404-link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
  border-color: rgba(10,88,202,0.30);
}

.e404-link-icon {
  width: 64px;
  height: 64px;
  background: rgba(10,88,202,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A58CA;
  transition: all 0.3s ease;
}

.e404-link-card:hover .e404-link-icon {
  background: #0A58CA;
  color: #ffffff;
}

.e404-link-name {
  font-size: 15px;
  font-weight: 700;
  color: #1a2a47;
  margin: 0;
}

.e404-link-sub {
  font-size: 12.5px;
  color: #5a6b8a;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}

.e404-link-sub span {
  color: #0A58CA;
  font-weight: 700;
  transition: transform 0.2s;
  display: inline-block;
}

.e404-link-card:hover .e404-link-sub span {
  transform: translateX(4px);
}

/* -- Support CTA -- */
.e404-support {
  background: #f0f4fa;
  padding: 0 0 60px;
}

.e404-support-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 48px 60px;
  background: linear-gradient(135deg, #031535 0%, #0a2a6e 55%, #0d3a8a 100%);
  border-radius: 20px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.e404-support-inner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(10,88,202,0.30) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.e404-support-img {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.e404-support-img svg {
  width: 110px;
  height: 110px;
  filter: drop-shadow(0 0 20px rgba(96,165,250,0.4));
}

.e404-support-text {
  flex: 1;
  min-width: 200px;
  position: relative;
  z-index: 1;
}

.e404-support-title {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 10px;
}

.e404-support-desc {
  font-size: 14.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin: 0;
}

.e404-support-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: transparent;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.55);
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.e404-support-btn:hover {
  background: #ffffff;
  color: #031535;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}

/* -- Responsive -- */
@media (max-width: 1200px) {
  .e404-links-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .e404-hero { min-height: auto; padding: calc(var(--nav-h) + 3px + 40px) 0 50px; }
  .e404-hero-overlay {
    background: linear-gradient(90deg, rgba(2,13,46,0.99) 0%, rgba(2,13,46,0.96) 60%, rgba(2,13,46,0.85) 100%);
  }
  .e404-hero-content { max-width: 100%; }
  .e404-number { font-size: 80px; letter-spacing: -2px; }
  .e404-title { font-size: 26px; }
  .e404-desc { font-size: 14.5px; max-width: 100%; }
  .e404-links-grid { grid-template-columns: repeat(2, 1fr); }
  .e404-links-title { font-size: 26px; }
  .e404-support { padding: 0 0 40px; }
  .e404-support-inner { padding: 36px 28px; flex-direction: column; align-items: flex-start; gap: 24px; border-radius: 16px; }
  .e404-support-title { font-size: 20px; }
}

@media (max-width: 480px) {
  .e404-links-grid { grid-template-columns: repeat(2, 1fr); }
  .e404-number { font-size: 64px; }
}

