/* ============================================================
   INFINITY EGYPT — Premium Corporate Stylesheet
   Technology · Telecom · Fiber · Energy · Manufacturing
   Version: 1.0.0
   ============================================================ */

/* ──────────────────────────────────────────
   1. GOOGLE FONTS IMPORT
   ────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ──────────────────────────────────────────
   2. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ────────────────────────────────────────── */
:root {
  /* Brand Colors */
  --primary-dark:   #020b18;
  --secondary-dark: #050f1f;
  --nav-dark:       #030d1c;
  --card-dark:      #071428;
  --blue:           #1a6aff;
  --blue-light:     #2d7eff;
  --cyan:           #00d4ff;
  --cyan-light:     #4df0ff;
  --orange:         #ff6b2b;
  --orange-light:   #ff8c56;
  --purple:         #7c3aed;

  /* Text Colors */
  --text-light:     #e8f4ff;
  --text-muted:     #7a9bb5;
  --text-subtle:    #4a6a85;

  /* Glassmorphism */
  --glass-bg:       rgba(0, 212, 255, 0.04);
  --glass-bg-hover: rgba(0, 212, 255, 0.08);
  --glass-border:   rgba(0, 212, 255, 0.15);
  --border-glow:    rgba(0, 212, 255, 0.3);

  /* Gradients */
  --grad-primary:   linear-gradient(135deg, #020b18 0%, #0a1628 50%, #020b18 100%);
  --grad-blue:      linear-gradient(135deg, #1a6aff 0%, #00d4ff 100%);
  --grad-cyan:      linear-gradient(135deg, #00d4ff 0%, #4df0ff 100%);
  --grad-orange:    linear-gradient(135deg, #ff6b2b 0%, #ff8c56 100%);
  --grad-card:      linear-gradient(145deg, rgba(7,20,40,0.9) 0%, rgba(2,11,24,0.95) 100%);

  /* Shadows */
  --shadow-glow:    0 0 30px rgba(0, 212, 255, 0.15);
  --shadow-blue:    0 8px 32px rgba(26, 106, 255, 0.25);
  --shadow-card:    0 4px 24px rgba(0,0,0,0.4);
  --shadow-hover:   0 12px 40px rgba(0, 212, 255, 0.2);

  /* Typography */
  --font-primary:   'Outfit', sans-serif;
  --font-secondary: 'Inter', sans-serif;
  --font-mono:      'JetBrains Mono', monospace;

  /* Spacing */
  --section-py:     100px;
  --section-py-sm:  60px;

  /* Borders */
  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --radius-xl:      32px;

  /* Transitions */
  --transition-fast:   0.2s ease;
  --transition-base:   0.35s ease;
  --transition-slow:   0.6s ease;
}

/* ──────────────────────────────────────────
   3. RESET & BASE
   ────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--primary-dark);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: rgba(0, 212, 255, 0.3);
  color: #fff;
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--primary-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 212, 255, 0.4);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--cyan);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover {
  color: var(--cyan-light);
}

/* ──────────────────────────────────────────
   4. TYPOGRAPHY SYSTEM
   ────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-light);
}

.display-1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; }
.display-2 { font-size: clamp(2rem, 4.5vw, 4rem); font-weight: 800; }
h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }

.text-cyan    { color: var(--cyan) !important; }
.text-orange  { color: var(--orange) !important; }
.text-blue    { color: var(--blue) !important; }
.text-muted-custom { color: var(--text-muted) !important; }
.text-gradient {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-orange {
  background: var(--grad-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ──────────────────────────────────────────
   5. SECTION TITLE COMPONENT
   ────────────────────────────────────────── */
.section-header {
  margin-bottom: 60px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cyan);
  opacity: 0.6;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.15;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}
.section-header.center {
  text-align: center;
}
.section-header.center .section-label {
  justify-content: center;
}
.section-header.center .section-subtitle {
  margin: 0 auto;
}

/* ──────────────────────────────────────────
   6. BUTTON SYSTEM
   ────────────────────────────────────────── */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--grad-blue);
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-blue);
}
.btn-primary-custom::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-primary-custom:hover::before {
  transform: translateX(0);
}
.btn-primary-custom:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(26,106,255,0.45);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  background: transparent;
  color: var(--cyan);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid var(--border-glow);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  backdrop-filter: blur(8px);
}
.btn-outline-custom:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.btn-orange-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--grad-orange);
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(255,107,43,0.3);
}
.btn-orange-custom:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255,107,43,0.5);
}

/* ──────────────────────────────────────────
   7. NAVIGATION / HEADER (legacy — active header uses .site-header in site-fixes.css)
   ────────────────────────────────────────── */

.navbar-brand-logo {
  height: 44px;
  width: auto;
  transition: all var(--transition-base);
}
.navbar-brand:hover .navbar-brand-logo {
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.5));
}
.brand-text {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.3rem;
  line-height: 1;
}
.brand-text span:first-child {
  display: block;
  color: var(--text-light);
  letter-spacing: 1px;
}
.brand-text span:last-child {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 4px;
  color: var(--cyan);
  font-weight: 500;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(232,244,255,0.85) !important;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
  letter-spacing: 0.3px;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: var(--cyan);
  transition: width var(--transition-fast);
  border-radius: 2px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--cyan) !important;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 60%;
}

/* Dropdown */
.nav-dropdown .dropdown-menu {
  background: rgba(5, 15, 31, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 220px;
  margin-top: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.nav-dropdown .dropdown-item {
  font-family: var(--font-primary);
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-dropdown .dropdown-item:hover {
  background: rgba(0, 212, 255, 0.08);
  color: var(--cyan);
  padding-left: 20px;
}
.nav-dropdown .dropdown-item i {
  width: 18px;
  color: var(--cyan);
  opacity: 0.7;
}

.nav-cta-btn {
  background: var(--grad-blue);
  color: #fff !important;
  padding: 9px 22px !important;
  border-radius: var(--radius-md) !important;
  font-weight: 600 !important;
  box-shadow: var(--shadow-blue);
  transition: all var(--transition-base) !important;
}
.nav-cta-btn::after { display: none !important; }
.nav-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(26,106,255,0.5) !important;
  color: #fff !important;
}

.navbar-toggler {
  border: 1px solid rgba(0, 212, 255, 0.3) !important;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2) !important;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2300d4ff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ──────────────────────────────────────────
   8. HERO SECTION
   ────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: block;
  align-items: stretch;
  overflow-x: clip;
  background: var(--primary-dark);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/hero-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(26,106,255,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(0,212,255,0.08) 0%, transparent 50%),
              linear-gradient(to bottom, rgba(2,11,24,0.3) 0%, rgba(2,11,24,0.7) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 100px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* Legacy hero widgets — unused; active hero in site-fixes.css */
.glass-widget {
  background: rgba(5, 15, 31, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  margin-bottom: 14px;
  min-width: 200px;
  transition: all var(--transition-base);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.glass-widget::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.4), transparent);
}
.glass-widget:hover {
  transform: translateX(-8px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: var(--shadow-hover);
}
.glass-widget-icon {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.glass-widget-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.glass-widget-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1;
}
.glass-widget-sub {
  font-size: 0.72rem;
  color: var(--cyan);
  margin-top: 4px;
}
.widget-progress {
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  margin-top: 10px;
  overflow: hidden;
}
.widget-progress-bar {
  height: 100%;
  border-radius: 2px;
  background: var(--grad-blue);
  transition: width 1.5s ease;
}

/* ──────────────────────────────────────────
   9. GLASS CARD COMPONENT
   ────────────────────────────────────────── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}
.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.5), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}
.glass-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.glass-card:hover::before {
  opacity: 1;
}

/* ──────────────────────────────────────────
   10. SERVICE CARD COMPONENT
   ────────────────────────────────────────── */
.service-card {
  background: var(--card-dark);
  border: 1px solid rgba(0, 212, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: rgba(0, 212, 255, 0.25);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(0, 212, 255, 0.08);
}
.service-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img {
  transform: scale(1.08);
}
.service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,20,40,0.9) 0%, transparent 60%);
}
.service-card-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--grad-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 20px;
  flex-shrink: 0;
  box-shadow: var(--shadow-blue);
}
.service-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
}
.service-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cyan);
  text-decoration: none;
  transition: gap var(--transition-fast);
}
.service-card-link:hover {
  gap: 10px;
  color: var(--cyan-light);
}

/* ──────────────────────────────────────────
   11. PROJECT CARD COMPONENT
   ────────────────────────────────────────── */
.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 320px;
  cursor: pointer;
  transition: all var(--transition-base);
}
.project-card:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.project-card:hover img {
  transform: scale(1.12);
}
.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,11,24,0.97) 0%, rgba(2,11,24,0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: all var(--transition-base);
}
.project-card-category {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 212, 255, 0.15);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
  width: fit-content;
}
.project-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
  line-height: 1.3;
}
.project-card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transform: translateY(10px);
  opacity: 0;
  transition: all var(--transition-base);
}
.project-card:hover .project-card-desc {
  transform: translateY(0);
  opacity: 1;
}
.project-card-cta {
  margin-top: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-base) 0.05s;
}
.project-card:hover .project-card-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ──────────────────────────────────────────
   12. PARTNER LOGO CARD
   ────────────────────────────────────────── */
.partner-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(7, 20, 40, 0.5);
  border: 1px solid rgba(0, 212, 255, 0.08);
  border-radius: var(--radius-md);
  height: 100px;
  transition: all var(--transition-base);
  filter: grayscale(80%) brightness(0.7);
  cursor: pointer;
}
.partner-logo-card img {
  max-height: 45px;
  max-width: 120px;
  object-fit: contain;
}
.partner-logo-card:hover {
  filter: grayscale(0%) brightness(1);
  border-color: rgba(0, 212, 255, 0.25);
  background: rgba(0, 212, 255, 0.05);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.partner-name-text {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.2;
  transition: color var(--transition-fast);
}
.partner-logo-card:hover .partner-name-text {
  color: var(--cyan);
}

/* ──────────────────────────────────────────
   13. ANIMATED STATS CARD
   ────────────────────────────────────────── */
.stat-card {
  background: var(--card-dark);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}
.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.stat-card:hover::after {
  transform: scaleX(1);
}
.stat-card:hover {
  border-color: rgba(0, 212, 255, 0.25);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.stat-card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.stat-card-icon.blue   { background: rgba(26,106,255,0.15); color: var(--blue); }
.stat-card-icon.cyan   { background: rgba(0,212,255,0.1);  color: var(--cyan); }
.stat-card-icon.orange { background: rgba(255,107,43,0.12); color: var(--orange); }
.stat-card-icon.purple { background: rgba(124,58,237,0.12); color: var(--purple); }
.stat-number {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--text-light);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-number .suffix {
  color: var(--cyan);
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ──────────────────────────────────────────
   14. BLOG CARD COMPONENT
   ────────────────────────────────────────── */
.blog-card {
  background: var(--card-dark);
  border: 1px solid rgba(0, 212, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}
.blog-card:hover {
  border-color: rgba(0, 212, 255, 0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.blog-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.07);
}
.blog-card-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(26,106,255,0.9);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}
.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-subtle);
  margin-bottom: 14px;
}
.blog-card-meta i { color: var(--cyan); opacity: 0.7; }
.blog-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.4;
  flex: 1;
  text-decoration: none;
  display: block;
  transition: color var(--transition-fast);
}
.blog-card-title:hover {
  color: var(--cyan);
}
.blog-card-excerpt {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 20px;
}
.blog-card-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--cyan);
  text-decoration: none;
  margin-top: auto;
  transition: gap var(--transition-fast);
}
.blog-card-read-more:hover {
  gap: 10px;
  color: var(--cyan-light);
}

/* ──────────────────────────────────────────
   15. BREADCRUMB COMPONENT
   ────────────────────────────────────────── */
.breadcrumb-section {
  background: rgba(5, 15, 31, 0.8);
  border-bottom: 1px solid rgba(0, 212, 255, 0.08);
  padding: 14px 0;
}
.breadcrumb-custom {
  margin: 0;
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0;
}
.breadcrumb-custom .breadcrumb-item {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.breadcrumb-custom .breadcrumb-item a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.breadcrumb-custom .breadcrumb-item a:hover {
  color: var(--cyan);
}
.breadcrumb-custom .breadcrumb-item.active {
  color: var(--cyan);
  font-weight: 500;
}
.breadcrumb-custom .breadcrumb-item+.breadcrumb-item::before {
  content: '›';
  color: rgba(0, 212, 255, 0.4);
  font-size: 1rem;
  vertical-align: -1px;
}

/* ──────────────────────────────────────────
   16. PAGE HERO (INNER PAGES)
   ────────────────────────────────────────── */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  background: var(--secondary-dark);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(26,106,255,0.1) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(0,212,255,0.07) 0%, transparent 50%);
}
.page-hero .page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.page-hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
}

/* ──────────────────────────────────────────
   17. WHO WE ARE SECTION
   ────────────────────────────────────────── */
.about-image-collage {
  position: relative;
  height: 500px;
}
.about-img-main {
  position: absolute;
  width: 70%;
  height: 75%;
  top: 0;
  left: 0;
  border-radius: var(--radius-lg);
  object-fit: cover;
  border: 2px solid rgba(0, 212, 255, 0.1);
}
.about-img-secondary {
  position: absolute;
  width: 45%;
  height: 50%;
  bottom: 0;
  right: 0;
  border-radius: var(--radius-lg);
  object-fit: cover;
  border: 2px solid rgba(0, 212, 255, 0.15);
}
.about-img-badge {
  position: absolute;
  bottom: 60px;
  left: 40px;
  background: rgba(5, 15, 31, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
}
.about-img-badge-icon {
  width: 42px;
  height: 42px;
  background: var(--grad-blue);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}
.about-img-badge-text strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1;
}
.about-img-badge-text span {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 212, 255, 0.06);
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}
.highlight-list li:last-child { border-bottom: none; }
.highlight-list li:hover { color: var(--text-light); }
.highlight-list li .check-icon {
  width: 24px;
  height: 24px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cyan);
  font-size: 0.7rem;
  margin-top: 1px;
}

/* ──────────────────────────────────────────
   18. VISION & MISSION CARDS
   ────────────────────────────────────────── */
.vision-card {
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: all var(--transition-base);
}
.vision-card.vision {
  background: linear-gradient(135deg, rgba(26,106,255,0.1) 0%, rgba(0,212,255,0.05) 100%);
  border: 1px solid rgba(26,106,255,0.2);
}
.vision-card.mission {
  background: linear-gradient(135deg, rgba(255,107,43,0.08) 0%, rgba(255,140,86,0.04) 100%);
  border: 1px solid rgba(255,107,43,0.15);
}
.vision-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.vision-card-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 28px;
}
.vision-card.vision .vision-card-icon {
  background: rgba(26,106,255,0.15);
  color: var(--blue);
}
.vision-card.mission .vision-card-icon {
  background: rgba(255,107,43,0.12);
  color: var(--orange);
}
.vision-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.vision-card-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
}
.values-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.value-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cyan);
  transition: all var(--transition-fast);
}
.value-pill:hover {
  background: rgba(0, 212, 255, 0.12);
  border-color: var(--cyan);
}
.value-pill::before {
  content: '◆';
  font-size: 0.4rem;
  color: var(--cyan);
}

/* ──────────────────────────────────────────
   19. FILTER TABS (PROJECTS)
   ────────────────────────────────────────── */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-tab {
  padding: 9px 22px;
  background: transparent;
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-primary);
}
.filter-tab:hover,
.filter-tab.active {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--cyan);
  color: var(--cyan);
}

/* ──────────────────────────────────────────
   20. WHY CHOOSE US SECTION
   ────────────────────────────────────────── */
.feature-card {
  padding: 36px 28px;
  background: var(--card-dark);
  border: 1px solid rgba(0, 212, 255, 0.06);
  border-radius: var(--radius-lg);
  height: 100%;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.04) 0%, transparent 70%);
  transition: all 0.6s ease;
  opacity: 0;
}
.feature-card:hover::before {
  opacity: 1;
  top: -20%;
  right: -20%;
}
.feature-card:hover {
  border-color: rgba(0, 212, 255, 0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
}
.feature-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-light);
}
.feature-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.feature-card-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0, 212, 255, 0.04);
  line-height: 1;
  font-family: var(--font-primary);
}

/* ──────────────────────────────────────────
   21. CTA SECTION
   ────────────────────────────────────────── */
.cta-section {
  position: relative;
  padding: var(--section-py) 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/cta-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(26,106,255,0.15) 0%, rgba(2,11,24,0.9) 70%);
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(255,107,43,0.1);
  border: 1px solid rgba(255,107,43,0.25);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.cta-title {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.15;
}
.cta-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ──────────────────────────────────────────
   22. CONTACT SECTION
   ────────────────────────────────────────── */
.contact-card {
  background: var(--card-dark);
  border: 1px solid rgba(0, 212, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: all var(--transition-base);
}
.contact-card:hover {
  border-color: rgba(0, 212, 255, 0.2);
  transform: translateX(6px);
}
.contact-card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--grad-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: var(--shadow-blue);
}
.contact-card-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 4px;
}
.contact-card-value {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500;
}
.contact-card-value a {
  color: var(--text-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.contact-card-value a:hover { color: var(--cyan); }

/* Form Styles */
.form-group-custom {
  margin-bottom: 20px;
}
.form-label-custom {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.form-control-custom {
  width: 100%;
  padding: 14px 18px;
  background: rgba(7, 20, 40, 0.7);
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: var(--radius-md);
  color: var(--text-light);
  font-family: var(--font-primary);
  font-size: 0.92rem;
  transition: all var(--transition-fast);
  outline: none;
}
.form-control-custom::placeholder {
  color: var(--text-subtle);
}
.form-control-custom:focus {
  border-color: rgba(0, 212, 255, 0.4);
  background: rgba(0, 212, 255, 0.04);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.08);
}
.form-control-custom.is-invalid {
  border-color: rgba(255, 107, 43, 0.4);
}
textarea.form-control-custom {
  resize: vertical;
  min-height: 130px;
}

/* ──────────────────────────────────────────
   23. MAP EMBED
   ────────────────────────────────────────── */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.1);
  height: 320px;
  position: relative;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(0.9) contrast(0.9);
}

/* ──────────────────────────────────────────
   24. FOOTER
   ────────────────────────────────────────── */
.site-footer {
  background: var(--nav-dark);
  border-top: 1px solid rgba(0, 212, 255, 0.08);
  padding: 80px 0 0;
}
.footer-brand-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 16px;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  text-decoration: none;
}
.footer-social a:hover {
  background: rgba(0, 212, 255, 0.12);
  border-color: rgba(0, 212, 255, 0.3);
  color: var(--cyan);
  transform: translateY(-3px);
}
.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 212, 255, 0.08);
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 0.87rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: '›';
  color: var(--cyan);
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.footer-links a:hover {
  color: var(--text-light);
  padding-left: 6px;
}
.footer-links a:hover::before {
  opacity: 1;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.87rem;
  color: var(--text-muted);
}
.footer-contact-item i {
  color: var(--cyan);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-item a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer-contact-item a:hover { color: var(--cyan); }

/* Newsletter */
.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.newsletter-input {
  flex: 1;
  padding: 11px 16px;
  background: rgba(7, 20, 40, 0.8);
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: var(--radius-md);
  color: var(--text-light);
  font-family: var(--font-primary);
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--transition-fast);
}
.newsletter-input::placeholder { color: var(--text-subtle); }
.newsletter-input:focus { border-color: rgba(0, 212, 255, 0.35); }
.newsletter-btn {
  padding: 11px 18px;
  background: var(--grad-blue);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  font-family: var(--font-primary);
}
.newsletter-btn:hover {
  box-shadow: var(--shadow-blue);
  transform: translateY(-1px);
}

.footer-bottom {
  margin-top: 60px;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 212, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright {
  font-size: 0.82rem;
  color: var(--text-subtle);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--text-subtle);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer-bottom-links a:hover { color: var(--cyan); }

/* ──────────────────────────────────────────
   25. PAGINATION
   ────────────────────────────────────────── */
.pagination-custom {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
}
.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(7, 20, 40, 0.8);
  border: 1px solid rgba(0, 212, 255, 0.1);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  font-family: var(--font-primary);
}
.page-btn:hover,
.page-btn.active {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--cyan);
  color: var(--cyan);
}

/* ──────────────────────────────────────────
   26. SECTION BACKGROUNDS
   ────────────────────────────────────────── */
.section-dark     { background: var(--primary-dark); }
.section-darker   { background: var(--secondary-dark); }
.section-card     { background: var(--card-dark); }
.section-py       { padding: var(--section-py) 0; }
.section-py-sm    { padding: var(--section-py-sm) 0; }

/* Grid line background */
.grid-bg {
  position: relative;
}
.grid-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

/* Glow divider */
.glow-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
  margin: 0;
  border: none;
}

/* ──────────────────────────────────────────
   27. PARTNERS CAROUSEL (TICKER)
   ────────────────────────────────────────── */
/* ── Large desktop container breathing room ────────────────────── */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* partners-ticker-wrap alias — see site-fixes.css for overflow clip */
.ticker-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  flex-shrink: 0;
  min-width: 180px;
}

/* ──────────────────────────────────────────
   28. 404 PAGE
   ────────────────────────────────────────── */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}
.error-code {
  font-size: clamp(6rem, 20vw, 14rem);
  font-weight: 900;
  line-height: 0.9;
  background: linear-gradient(135deg, rgba(26,106,255,0.4), rgba(0,212,255,0.2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  display: block;
  position: relative;
}
.error-title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.error-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 450px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ──────────────────────────────────────────
   29. SINGLE SERVICE / BLOG PAGE
   ────────────────────────────────────────── */
.article-body {
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(232, 244, 255, 0.85);
}
.article-body h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-light);
  margin: 40px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}
.article-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cyan);
  margin: 28px 0 12px;
}
.article-body p { margin-bottom: 20px; }
.article-body ul, .article-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.article-body li {
  margin-bottom: 8px;
  color: var(--text-muted);
}
.article-body blockquote {
  border-left: 3px solid var(--cyan);
  padding: 16px 24px;
  margin: 24px 0;
  background: rgba(0, 212, 255, 0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text-muted);
}
.article-body img {
  border-radius: var(--radius-md);
  margin: 24px 0;
}

/* Tags */
.tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background: rgba(7, 20, 40, 0.8);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: all var(--transition-fast);
  letter-spacing: 0.5px;
}
.tag-pill:hover {
  background: rgba(0, 212, 255, 0.08);
  border-color: rgba(0, 212, 255, 0.25);
  color: var(--cyan);
}

/* Sidebar */
.sidebar-widget {
  background: var(--card-dark);
  border: 1px solid rgba(0, 212, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}
.sidebar-widget-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 212, 255, 0.08);
}
.sidebar-service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: all var(--transition-fast);
  border-bottom: 1px solid rgba(0, 212, 255, 0.04);
}
.sidebar-service-link:hover {
  background: rgba(0, 212, 255, 0.06);
  color: var(--cyan);
  padding-left: 18px;
}

/* ──────────────────────────────────────────
   30. SEARCH RESULTS
   ────────────────────────────────────────── */
.search-result-card {
  background: var(--card-dark);
  border: 1px solid rgba(0, 212, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
  transition: all var(--transition-base);
}
.search-result-card:hover {
  border-color: rgba(0, 212, 255, 0.2);
  transform: translateX(6px);
}
.search-result-type {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
}
.search-result-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
  margin-bottom: 10px;
  display: block;
  transition: color var(--transition-fast);
}
.search-result-title:hover { color: var(--cyan); }
.search-result-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.search-highlight {
  color: var(--cyan);
  font-weight: 600;
  background: rgba(0, 212, 255, 0.08);
  padding: 0 2px;
  border-radius: 2px;
}
.search-bar-wrapper {
  position: relative;
  max-width: 700px;
  margin: 0 auto 40px;
}
.search-bar-wrapper input {
  padding-left: 50px !important;
}
.search-bar-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cyan);
  pointer-events: none;
}

/* ──────────────────────────────────────────
   31. LOADING / PRELOADER
   ────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--primary-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.5s ease;
}
#preloader.hide {
  opacity: 0;
  pointer-events: none;
}
.preloader-logo {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 2rem;
  color: var(--text-light);
}
.preloader-logo span { color: var(--cyan); }
.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}
.preloader-bar-inner {
  height: 100%;
  background: var(--grad-blue);
  border-radius: 2px;
  animation: preload 1.5s ease forwards;
}
@keyframes preload {
  from { width: 0; }
  to   { width: 100%; }
}

/* ──────────────────────────────────────────
   32. SCROLL TO TOP BUTTON
   ────────────────────────────────────────── */
#scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--grad-blue);
  border: none;
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-blue);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
#scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
#scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(26,106,255,0.5);
}

/* ──────────────────────────────────────────
   33. GLANCE / OVERVIEW SECTION
   ────────────────────────────────────────── */
.glance-card {
  background: var(--card-dark);
  border: 1px solid rgba(0, 212, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  height: 100%;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.glance-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.glance-card:hover::after { transform: scaleX(1); }
.glance-card:hover {
  border-color: rgba(0, 212, 255, 0.22);
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.glance-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
}
.glance-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 10px;
}
.glance-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.glance-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
  text-decoration: none;
}
.glance-link:hover {
  gap: 10px;
  color: var(--cyan-light);
}

/* ──────────────────────────────────────────
   34. BACK TO TOP & MISC UTILITIES
   ────────────────────────────────────────── */
.hidden { display: none !important; }
.opacity-0 { opacity: 0; }
.fw-800 { font-weight: 800; }
.fw-900 { font-weight: 900; }
.lh-tight { line-height: 1.2; }
.rounded-custom { border-radius: var(--radius-lg) !important; }

/* Glowing border top */
.border-top-glow {
  border-top: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
}
.border-top-glow::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-blue);
}

/* Noise texture overlay */
.noise::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
  z-index: 0;
}

/* ──────────────────────────────────────────
   35. FOCUS / ACCESSIBILITY STATES
   ────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

/* Skip to content */
.skip-link {
  position: absolute;
  top: -50px;
  left: 16px;
  background: var(--blue);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 10000;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
  color: #fff;
}

/* ──────────────────────────────────────────
   36. RESPONSIVE BREAKPOINTS
   ────────────────────────────────────────── */
@media (max-width: 1199.98px) {
  .about-image-collage { height: 380px; }
}

@media (max-width: 991.98px) {
  :root {
    --section-py: 70px;
  }
  .section-header.center { text-align: center; }
  .about-image-collage { height: 320px; margin-bottom: 40px; }
}

@media (max-width: 767.98px) {
  :root {
    --section-py: 60px;
  }
  .vision-card { padding: 36px 26px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .about-image-collage { height: auto; }
  .about-img-main,
  .about-img-secondary { position: static; width: 100%; height: 220px; margin-bottom: 12px; }
}

@media (max-width: 575.98px) {
  .filter-tabs { gap: 6px; }
  .filter-tab { padding: 7px 14px; font-size: 0.78rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .glass-card { padding: 24px; }
  .stat-card { padding: 28px 20px; }
}

/* ──────────────────────────────────────────
   37. REDUCED MOTION SUPPORT
   ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
}

/* ──────────────────────────────────────────
   38. AOS OVERRIDES
   ────────────────────────────────────────── */
[data-aos] {
  pointer-events: none;
}
[data-aos].aos-animate {
  pointer-events: auto;
}

/* ──────────────────────────────────────────
   39. BOOTSTRAP OVERRIDES
   ────────────────────────────────────────── */
.container {
  --bs-gutter-x: 24px;
}
.row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
}
.dropdown-menu {
  --bs-dropdown-bg: transparent;
  --bs-dropdown-border-color: transparent;
}

/* ──────────────────────────────────────────
   40. PRINT STYLES
   ────────────────────────────────────────── */
@media print {
  #site-header, #preloader, #scroll-top, #hero-canvas { display: none !important; }
  body { background: white; color: black; }
}
