/* ==========================================================================
   SKYCOM INFRASTRUCTURE & SERVICES — ENTERPRISE DESIGN SYSTEM
   Modern Corporate B2B Infrastructure & Technology Theme
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Fonts */
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Enterprise Color Palette */
  --bg-darkest: #050811;
  --bg-primary: #080d1a;
  --bg-secondary: #0d1424;
  --bg-surface: #111a30;
  --bg-card: rgba(13, 20, 39, 0.72);
  --bg-card-hover: rgba(20, 30, 58, 0.9);

  /* Accents & Brand Gradients */
  --primary: #00f2fe;
  --primary-rgb: 0, 242, 254;
  --secondary: #3b82f6;
  --secondary-rgb: 59, 130, 246;
  --tertiary: #6366f1;
  --accent-gold: #f59e0b;
  --accent-emerald: #10b981;

  /* Typography Colors */
  --text-white: #ffffff;
  --text-light: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-dark: #334155;

  /* Glassmorphism & Borders */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.14);
  --border-glow: rgba(0, 242, 254, 0.35);

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #00f2fe 0%, #3b82f6 100%);
  --grad-primary-hover: linear-gradient(135deg, #38bdf8 0%, #2563eb 100%);
  --grad-accent-gold: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 25px rgba(0, 242, 254, 0.2);
  --shadow-glow-lg: 0 0 45px rgba(0, 242, 254, 0.35);

  /* Transitions */
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s var(--ease-smooth);
  --transition-base: all 0.35s var(--ease-spring);

  /* Layout Tokens */
  --nav-height: 80px;
  --nav-height-scrolled: 70px;
  --max-width: 1280px;
}

/* ==========================================================================
   RESET & GLOBAL BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-darkest);
  color-scheme: dark;
}

body {
  font-family: var(--font-body);
  color: var(--text-secondary);
  background-color: var(--bg-darkest);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Accessible Skip Link */
.skip-link {
  position: fixed;
  top: 15px;
  left: 20px;
  transform: translateY(-200%);
  opacity: 0;
  pointer-events: none;
  background: var(--primary);
  color: #050811;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 100000;
  transition: transform 0.25s var(--ease-spring), opacity 0.25s ease;
  box-shadow: 0 10px 30px rgba(0, 242, 254, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.skip-link:focus {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

main:focus {
  outline: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-white);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

p {
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, textarea, select {
  font: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darkest);
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 5px;
  border: 2px solid var(--bg-darkest);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

::selection {
  background: rgba(0, 242, 254, 0.3);
  color: var(--text-white);
}

/* ==========================================================================
   UTILITY & REUSABLE COMPONENTS
   ========================================================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.section {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.section-alt {
  background: linear-gradient(180deg, rgba(13, 20, 36, 0.5) 0%, rgba(8, 13, 26, 0.85) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.text-center {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 32px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.25);
  padding: 0 1rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  box-sizing: border-box;
  line-height: 1;
}

.section-header .badge-tag {
  margin-bottom: 1.25rem;
}

.about-actions-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-block {
  width: 100%;
}

.whatsapp-cta-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.whatsapp-cta-arrow {
  color: #25d366;
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}

.whatsapp-cta-card:hover .whatsapp-cta-arrow {
  transform: translateX(3px);
}

.section-title {
  font-size: clamp(2.1rem, 3.8vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: var(--text-white);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Glassmorphism Card System */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: 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(255, 255, 255, 0.15), transparent);
  pointer-events: none;
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.85rem;
  border-radius: 12px;
  transition: var(--transition-base);
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--grad-primary);
  color: #050811;
  box-shadow: var(--shadow-glow);
  font-weight: 700;
}

.btn-primary:hover {
  background: var(--grad-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-lg);
  color: #050811;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-white);
  border-color: var(--border-light);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(0, 242, 254, 0.08);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.15);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border-color: var(--border-subtle);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--text-white);
  color: var(--text-white);
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
  border-radius: 8px;
}

.btn-lg {
  padding: 1.05rem 2.25rem;
  font-size: 1.02rem;
  border-radius: 14px;
}

.btn i {
  transition: transform 0.3s ease;
}

.btn:hover i.fa-arrow-right,
.btn:hover i.fa-arrow-right-long {
  transform: translateX(4px);
}

/* Pulsing Status Dot & Pill */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  height: 32px;
  padding: 0 0.95rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  color: #34d399;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  white-space: nowrap;
  box-sizing: border-box;
  line-height: 1;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-emerald 2s infinite;
  flex-shrink: 0;
}

.d-none-mobile {
  display: inline-flex;
}

@keyframes pulse-emerald {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* ==========================================================================
   NAVIGATION / HEADER
   ========================================================================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: var(--transition-base);
  background: transparent;
  border-bottom: 1px solid transparent;
  display: flex;
  align-items: center;
}

#header.scrolled {
  height: var(--nav-height-scrolled);
  background: rgba(5, 8, 17, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 100%;
}

.nav-logo-img {
  height: 52px;
  width: auto;
  transition: var(--transition-fast);
}

#header.scrolled .nav-logo-img {
  height: 44px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2vw, 2.25rem);
  list-style: none;
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.925rem;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-primary);
  transition: width 0.3s var(--ease-spring);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* ==========================================================================
   SERVICES MEGA-DROPDOWN MENU
   ========================================================================== */
.nav-dropdown-item-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-link-dropdown-btn i {
  font-size: 0.72rem;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}

.nav-dropdown-item-wrapper:hover .nav-link-dropdown-btn i,
.nav-dropdown-item-wrapper:focus-within .nav-link-dropdown-btn i {
  transform: rotate(180deg);
  color: var(--primary);
}

.nav-mega-dropdown {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 680px;
  background: rgba(8, 13, 26, 0.97);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 242, 254, 0.12);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s var(--ease-spring);
  z-index: 1100;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.nav-mega-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: rgba(8, 13, 26, 0.97);
  border-left: 1px solid var(--border-light);
  border-top: 1px solid var(--border-light);
}

.nav-dropdown-item-wrapper:hover .nav-mega-dropdown,
.nav-dropdown-item-wrapper:focus-within .nav-mega-dropdown,
.nav-mega-dropdown.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-nav-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.9rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.25s ease;
  text-decoration: none;
}

.mega-nav-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.mega-nav-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.25);
  color: var(--primary);
  transition: transform 0.25s ease;
}

.mega-nav-card:hover .mega-nav-icon {
  transform: scale(1.1);
}

/* Division Color Themes in Nav */
.mega-nav-icon.solar { background: rgba(245, 158, 11, 0.1); border-color: rgba(245, 158, 11, 0.3); color: #f59e0b; }
.mega-nav-icon.civil { background: rgba(249, 115, 22, 0.1); border-color: rgba(249, 115, 22, 0.3); color: #f97316; }
.mega-nav-icon.telecom { background: rgba(0, 242, 254, 0.1); border-color: rgba(0, 242, 254, 0.3); color: #00f2fe; }
.mega-nav-icon.automation { background: rgba(139, 92, 246, 0.1); border-color: rgba(139, 92, 246, 0.3); color: #8b5cf6; }
.mega-nav-icon.integrated { background: rgba(20, 184, 166, 0.1); border-color: rgba(20, 184, 166, 0.3); color: #14b8a6; }
.mega-nav-icon.facilities { background: rgba(16, 185, 129, 0.1); border-color: rgba(16, 185, 129, 0.3); color: #10b981; }

.mega-nav-content {
  flex: 1;
  min-width: 0;
}

.mega-nav-title {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.25;
  margin-bottom: 0.2rem;
}

.mega-nav-desc {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 0.35rem;
}

.mega-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.2s ease;
}

.mega-nav-card:hover .mega-nav-cta {
  gap: 0.55rem;
}

.mega-nav-cta.solar { color: #f59e0b; }
.mega-nav-cta.civil { color: #f97316; }
.mega-nav-cta.telecom { color: #00f2fe; }
.mega-nav-cta.automation { color: #8b5cf6; }
.mega-nav-cta.integrated { color: #14b8a6; }
.mega-nav-cta.facilities { color: #10b981; }

/* Mobile Menu Accordion */
.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.mobile-dropdown-list {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 1rem;
  margin-top: 0.5rem;
}

.mobile-dropdown-list.active {
  display: flex;
}

.mobile-sub-link {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-sub-link:hover,
.mobile-sub-link.active {
  color: var(--text-white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  cursor: pointer;
  gap: 5px;
  transition: var(--transition-fast);
}

.menu-toggle:hover {
  background: rgba(0, 242, 254, 0.1);
  border-color: var(--border-glow);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   HERO SECTION & INTERACTIVE CANVAS
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 3rem) 0 5rem 0;
  background: radial-gradient(circle at 75% 25%, rgba(0, 242, 254, 0.12) 0%, rgba(59, 130, 246, 0.04) 45%, transparent 70%);
  overflow: hidden;
}

#hero-network-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
}

.hero-ambient-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.15) 0%, rgba(59, 130, 246, 0.05) 50%, transparent 75%);
  top: -150px;
  right: -100px;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 820px;
  pointer-events: auto;
}

.hero-top-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.hero-top-meta .badge-tag,
.hero-top-meta .status-pill {
  margin-bottom: 0;
}

.hero-title {
  font-size: clamp(2.6rem, 5.2vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--text-white);
}

.hero-subtitle {
  font-size: clamp(1.08rem, 1.8vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 2.75rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* Glassmorphic Stats Grid */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.hero-stat-card {
  padding: 1.5rem 1.75rem;
  background: rgba(13, 20, 39, 0.65);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  position: relative;
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 120px;
}

.hero-stat-card:hover {
  border-color: var(--border-glow);
  background: rgba(18, 28, 54, 0.8);
  transform: translateY(-3px);
}

.hero-stat-header {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
}

.hero-stat-plus {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.hero-stat-label {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.hero-stat-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* Hero Capabilities Ticker */
.capability-ticker {
  background: rgba(9, 14, 28, 0.85);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  height: 50px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: ticker 35s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ticker-item i {
  color: var(--primary);
  font-size: 0.8rem;
}

.ticker-item .dot-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-muted);
  margin-left: 1.5rem;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4.5rem;
  align-items: center;
}

.about-visual-col {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
  height: 480px;
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-spring);
}

.about-image-wrapper:hover img {
  transform: scale(1.04);
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 8, 17, 0.88) 100%);
  pointer-events: none;
}

.about-hq-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(9, 14, 28, 0.88);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}

.about-hq-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.about-hq-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
}

.about-hq-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.about-text-lead {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.pillar-card {
  padding: 1.75rem;
  background: rgba(13, 20, 39, 0.55);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pillar-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-3px);
}

.pillar-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.35rem;
  margin-bottom: 1rem;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.pillar-card:hover .pillar-icon-box {
  background: var(--grad-primary);
  color: #050811;
  box-shadow: var(--shadow-glow);
}

.pillar-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.pillar-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   SERVICES SECTION (COMPACT & SLEEK)
   ========================================================================== */
.services-section {
  padding: 4.75rem 0 5rem 0;
}

.services-section .section-header {
  margin-bottom: 2.25rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  padding: 1.6rem 1.5rem 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.service-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.35rem;
  transition: var(--transition-base);
  flex-shrink: 0;
}

.service-card:hover .service-icon-box {
  background: var(--grad-primary);
  color: #050811;
  border-color: transparent;
  transform: scale(1.06) rotate(3deg);
  box-shadow: var(--shadow-glow);
}

.service-index {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  transition: var(--transition-fast);
}

.service-card:hover .service-index {
  color: var(--primary);
}

.service-title {
  font-size: 1.18rem;
  margin-bottom: 0.45rem;
  color: var(--text-white);
  line-height: 1.3;
}

.service-desc {
  font-size: 0.865rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0.9rem;
  min-height: auto;
}

.service-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  margin-bottom: 1.1rem;
}

.service-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.815rem;
  color: var(--text-light);
  line-height: 1.35;
}

.service-features-list li i {
  color: var(--primary);
  font-size: 0.72rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.service-card-footer {
  margin-top: auto;
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-action-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.service-action-link i {
  transition: transform 0.3s ease;
}

.service-card:hover .service-action-link i {
  transform: translateX(4px);
}

/* ==========================================================================
   WHY CHOOSE SKYCOM / ENTERPRISE TRUST GRID
   ========================================================================== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-card {
  padding: 2.25rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.trust-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.45rem;
  margin-bottom: 1.25rem;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.trust-card:hover .trust-icon-box {
  background: var(--grad-primary);
  color: #050811;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.trust-title {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}

.trust-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   PROJECTS / CASE STUDIES SHOWCASE
   ========================================================================== */
.portfolio-nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.portfolio-filter-group {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.portfolio-filter-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition-fast);
  backdrop-filter: blur(10px);
}

.portfolio-filter-btn:hover {
  color: var(--text-white);
  border-color: var(--border-light);
  background: rgba(255, 255, 255, 0.08);
}

.portfolio-filter-btn.active {
  background: var(--grad-primary);
  color: #050811;
  border-color: transparent;
  box-shadow: var(--shadow-glow);
  font-weight: 700;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.project-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: var(--transition-base);
  height: 380px;
  display: block;
}

.project-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.project-image-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-spring);
}

.project-card:hover .project-img {
  transform: scale(1.08);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 8, 17, 0.1) 0%, rgba(5, 8, 17, 0.65) 50%, rgba(5, 8, 17, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: var(--transition-base);
}

.project-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.725rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: rgba(0, 242, 254, 0.12);
  border: 1px solid rgba(0, 242, 254, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  width: max-content;
  margin-bottom: 0.65rem;
  backdrop-filter: blur(8px);
}

.project-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.project-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.project-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-base);
}

.project-card:hover .project-view-btn {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   CAREERS SECTION (MINIMALIST CLEAN LIST)
   ========================================================================== */
.careers-minimal-wrapper {
  max-width: 920px;
  margin: 0 auto;
}

.career-minimal-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2.5rem;
}

.career-minimal-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.75rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--transition-base), padding-left var(--transition-base);
  border-radius: var(--radius-sm);
}

.career-minimal-item:hover {
  background: rgba(255, 255, 255, 0.025);
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.career-item-main {
  flex: 1;
}

.career-item-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.4rem;
  flex-wrap: wrap;
}

.career-item-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.3;
}

.career-item-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.775rem;
  color: var(--text-muted);
}

.career-item-meta .meta-tag {
  color: var(--primary);
  font-weight: 600;
}

.career-item-meta .meta-dot {
  color: rgba(255, 255, 255, 0.2);
}

.career-item-meta .meta-loc i {
  color: #f59e0b;
  margin-right: 0.25rem;
}

.career-item-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

.career-item-action {
  flex-shrink: 0;
}

.career-minimal-footer {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.career-minimal-footer p {
  margin-bottom: 0.75rem;
}

.career-footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  font-size: 0.925rem;
  flex-wrap: wrap;
  justify-content: center;
}

.career-email-link {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.career-email-link:hover {
  color: #fff;
}

.career-footer-note {
  font-size: 0.8rem !important;
  color: var(--text-muted) !important;
  margin-bottom: 0 !important;
}

@media (max-width: 768px) {
  .career-minimal-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 0.25rem;
  }
  .career-item-action {
    width: 100%;
  }
  .career-item-action .btn {
    width: 100%;
  }
}

/* Career Application Form Card */
.application-card {
  padding: 2.75rem;
  border-radius: 20px;
}

.form-header {
  margin-bottom: 2rem;
}

.form-title {
  font-size: 1.65rem;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  font-size: 0.925rem;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.45rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(9, 14, 28, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 0.85rem 1.15rem;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.925rem;
  transition: var(--transition-fast);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #475569;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(13, 20, 39, 0.85);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.18);
}

.form-select {
  cursor: pointer;
}

.form-select option {
  background: #0d1424;
  color: var(--text-white);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

/* File Upload Custom UI */
.file-dropzone {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  background: rgba(9, 14, 28, 0.5);
  border: 1px dashed var(--border-light);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.file-dropzone:hover {
  border-color: var(--primary);
  background: rgba(0, 242, 254, 0.04);
}

.file-dropzone-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.file-dropzone-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(0, 242, 254, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.file-dropzone-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.file-dropzone-name {
  color: var(--primary);
  font-weight: 600;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4.5rem;
  align-items: flex-start;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
}

.contact-cards-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-hub-card {
  padding: 1.6rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: var(--transition-base);
  border-radius: 16px;
}

.contact-hub-card:hover {
  border-color: var(--border-glow);
  transform: translateX(4px);
}

.contact-hub-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.35rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-hub-title {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.contact-hub-detail {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.contact-hub-action {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Quick WhatsApp Pill */
.whatsapp-cta-card {
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.12) 0%, rgba(18, 140, 126, 0.08) 100%);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: var(--transition-base);
}

.whatsapp-cta-card:hover {
  border-color: #25d366;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.2) 0%, rgba(18, 140, 126, 0.12) 100%);
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.2);
}

.whatsapp-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #25d366;
  color: #050811;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.whatsapp-cta-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
}

.whatsapp-cta-sub {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Pune Map Radar Visualizer */
.pune-map-card {
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  position: relative;
  background: #080e1e;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.25rem;
}

.map-radar-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
}

.map-radar-center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.radar-beacon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 0 rgba(0, 242, 254, 0.7);
  animation: radar-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
  margin-bottom: 0.75rem;
}

@keyframes radar-ping {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 242, 254, 0.7), 0 0 15px rgba(0, 242, 254, 0.8);
  }
  70% {
    box-shadow: 0 0 0 25px rgba(0, 242, 254, 0), 0 0 25px rgba(0, 242, 254, 0.4);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 242, 254, 0), 0 0 0 rgba(0, 242, 254, 0);
  }
}

.map-hq-label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
}

.map-hq-coordinates {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--primary);
  margin-top: 0.2rem;
}

/* Contact RFP Form Card */
.contact-rfp-card {
  padding: 2.75rem;
  border-radius: 20px;
}

/* ==========================================================================
   MEGA FOOTER (STANDARD CORPORATE & COMPACT)
   ========================================================================== */
footer {
  background: #02040a;
  border-top: 1px solid var(--border-subtle);
  padding: 3.25rem 0 1.5rem 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.1fr 1.3fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 2rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-brand-col .footer-logo-img {
  height: 82px;
  width: auto;
  max-width: 100%;
  margin-bottom: 0.95rem;
  display: block;
}

.footer-bio {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0.85rem;
  max-width: 330px;
}

.footer-status-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--emerald);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
  width: fit-content;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.footer-social-btn:hover {
  background: var(--grad-primary);
  color: #050811;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.9rem;
  position: relative;
  display: inline-block;
  letter-spacing: 0.02em;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
}

.footer-links-list a {
  font-size: 0.835rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links-list a i {
  font-size: 0.68rem;
  color: var(--primary);
  opacity: 0.75;
  transition: transform 0.2s ease;
}

.footer-links-list a:hover {
  color: var(--primary);
  transform: translateX(3px);
}

.footer-links-list a:hover i {
  opacity: 1;
  transform: translateX(2px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.835rem;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
  line-height: 1.45;
}

.footer-contact-item i {
  color: var(--primary);
  margin-top: 3px;
  font-size: 0.82rem;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.footer-contact-item a:hover {
  color: var(--primary);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.81rem;
  color: var(--text-muted);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.81rem;
}

.footer-legal-links a {
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-legal-links a:hover {
  color: var(--primary);
}

/* ==========================================================================
   MODAL & LIGHTBOX SYSTEM
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 5, 12, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), var(--shadow-glow);
  transform: scale(0.94) translateY(15px);
  transition: transform 0.4s var(--ease-spring);
}

.modal-backdrop.active .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 10;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.modal-img-holder {
  width: 100%;
  height: 320px;
  overflow: hidden;
  position: relative;
}

.modal-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-body {
  padding: 2.25rem;
}

.modal-service-body {
  padding: 3.5rem 2.25rem 2.25rem 2.25rem;
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--primary);
  background: rgba(0, 242, 254, 0.1);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.modal-title {
  font-size: 1.75rem;
  margin-bottom: 0.85rem;
}

.modal-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  background: #090e1c;
  border: 1px solid var(--border-glow);
  color: var(--text-white);
  padding: 1.1rem 1.75rem;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), var(--shadow-glow);
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: translateX(120%);
  transition: transform 0.4s var(--ease-spring);
  max-width: 420px;
}

.toast.show {
  transform: translateX(0);
}

.toast-icon {
  font-size: 1.4rem;
  color: var(--primary);
  flex-shrink: 0;
}

.toast-message {
  font-size: 0.9rem;
  line-height: 1.4;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.75s var(--ease-spring), transform 0.75s var(--ease-spring);
  will-change: opacity, transform;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   SOLAR & CLEAN ENERGY DIVISION
   ========================================================================== */
.solar-section {
  position: relative;
  background: radial-gradient(circle at 85% 15%, rgba(245, 158, 11, 0.08) 0%, rgba(0, 242, 254, 0.04) 35%, transparent 70%),
              radial-gradient(circle at 15% 85%, rgba(16, 185, 129, 0.06) 0%, transparent 60%),
              var(--bg-primary);
  border-top: 1px solid rgba(245, 158, 11, 0.15);
  border-bottom: 1px solid var(--border-subtle);
}

.solar-badge {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.3);
}

.solar-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4.5rem;
  align-items: center;
  margin-bottom: 5.5rem;
}

.solar-hero-visual {
  position: relative;
}

.solar-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(245, 158, 11, 0.15);
  height: 440px;
}

.solar-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-spring);
}

.solar-image-wrapper:hover img {
  transform: scale(1.04);
}

.solar-floating-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  padding: 1rem 1.4rem;
  background: rgba(9, 14, 28, 0.9);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 14px;
  backdrop-filter: blur(16px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.solar-floating-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
}

.solar-floating-item i {
  color: #f59e0b;
}

.solar-floating-item.emerald i {
  color: #10b981;
}

/* Solar Solutions Matrix */
.solar-solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 5.5rem;
}

.solar-solution-card {
  padding: 2.25rem 1.75rem;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  border-color: rgba(255, 255, 255, 0.08);
}

.solar-solution-card:hover {
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: var(--shadow-md), 0 0 25px rgba(245, 158, 11, 0.15);
}

.solar-solution-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f59e0b;
  font-size: 1.45rem;
  margin-bottom: 1.35rem;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.solar-solution-card:hover .solar-solution-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #00f2fe 100%);
  color: #050811;
  border-color: transparent;
  transform: scale(1.06);
}

.solar-solution-title {
  font-size: 1.22rem;
  margin-bottom: 0.65rem;
  color: var(--text-white);
}

.solar-solution-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.solar-solution-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.solar-solution-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.4;
}

.solar-solution-bullets li i {
  color: #f59e0b;
  font-size: 0.72rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ==========================================================================
   INTERACTIVE SOLAR ENERGY FLOW VISUALIZER
   ========================================================================== */
.solar-flow-wrapper {
  padding: 3rem;
  border-radius: 24px;
  background: rgba(11, 17, 34, 0.85);
  border: 1px solid rgba(245, 158, 11, 0.2);
  margin-bottom: 5.5rem;
  position: relative;
  overflow: hidden;
}

.solar-flow-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1.75rem;
}

.solar-mode-tabs {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.solar-mode-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.solar-mode-btn:hover {
  color: var(--text-white);
  border-color: rgba(245, 158, 11, 0.4);
}

.solar-mode-btn.active {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #050811;
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

.solar-flow-nodes-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  position: relative;
}

.solar-flow-node {
  padding: 1.5rem 1rem;
  background: rgba(17, 26, 48, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.solar-flow-node::after {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: -0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.75rem;
  z-index: 2;
}

.solar-flow-node:last-child::after,
.solar-flow-node.no-arrow::after {
  display: none;
}

.solar-flow-node:hover,
.solar-flow-node.active {
  background: rgba(26, 38, 70, 0.9);
  border-color: #f59e0b;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(245, 158, 11, 0.2);
}

.solar-node-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f59e0b;
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
  transition: var(--transition-fast);
}

.solar-flow-node.active .solar-node-icon {
  background: #f59e0b;
  color: #050811;
}

.solar-node-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.3;
  margin-bottom: 0.35rem;
}

.solar-node-role {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Flow Node Live Technical Insight Box */
.solar-node-detail-panel {
  padding: 1.75rem 2rem;
  background: rgba(13, 20, 39, 0.8);
  border: 1px solid rgba(0, 242, 254, 0.25);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.solar-node-detail-title {
  font-size: 1.25rem;
  margin-bottom: 0.45rem;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.solar-node-detail-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.solar-node-specs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  background: rgba(5, 8, 17, 0.6);
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
}

.solar-node-specs-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.825rem;
}

.solar-node-specs-list .spec-label {
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.solar-node-specs-list .spec-val {
  color: var(--primary);
  font-weight: 600;
  font-family: var(--font-mono);
}

/* ==========================================================================
   SOLAR SYSTEM COMPONENTS EXPLORER
   ========================================================================== */
.solar-components-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 5.5rem;
}

.solar-component-card {
  padding: 2.25rem 2rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.solar-comp-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.solar-comp-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.35rem;
  flex-shrink: 0;
}

.solar-component-card:hover .solar-comp-icon {
  background: var(--grad-primary);
  color: #050811;
  box-shadow: var(--shadow-glow);
}

.solar-comp-title {
  font-size: 1.18rem;
  color: var(--text-white);
}

.solar-comp-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.solar-comp-specs {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.solar-comp-spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  font-family: var(--font-mono);
}

.solar-comp-spec-row .lbl {
  color: var(--text-muted);
}

.solar-comp-spec-row .val {
  color: var(--text-light);
  font-weight: 600;
}

/* ==========================================================================
   SOLAR EPC CUSTOMER JOURNEY TIMELINE
   ========================================================================== */
.solar-journey-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-bottom: 5.5rem;
  position: relative;
}

.solar-journey-step {
  padding: 2rem 1.5rem;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}

.solar-step-num {
  font-family: var(--font-mono);
  font-size: 1.75rem;
  font-weight: 800;
  color: rgba(245, 158, 11, 0.4);
  line-height: 1;
  margin-bottom: 1rem;
}

.solar-journey-step:hover .solar-step-num {
  color: #f59e0b;
}

.solar-step-title {
  font-size: 1.1rem;
  margin-bottom: 0.65rem;
  color: var(--text-white);
}

.solar-step-desc {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ==========================================================================
   SOLAR ESTIMATOR & CALCULATOR
   ========================================================================== */
.solar-calc-wrapper {
  padding: 3.5rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(13, 20, 39, 0.95) 0%, rgba(8, 13, 26, 0.98) 100%);
  border: 1px solid rgba(245, 158, 11, 0.3);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(245, 158, 11, 0.1);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5.5rem;
}

.solar-calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.calc-group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.65rem;
}

.calc-label {
  font-family: var(--font-display);
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--text-light);
}

.calc-val-badge {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
}

.calc-range-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #1e293b;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.calc-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.6);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.calc-range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.solar-calc-results {
  background: rgba(6, 10, 22, 0.75);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.calc-results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.calc-result-box {
  padding: 1.35rem 1.2rem;
  background: rgba(13, 20, 39, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  text-align: center;
}

.calc-result-num {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.calc-result-num.gold {
  color: #f59e0b;
}

.calc-result-num.cyan {
  color: var(--primary);
}

.calc-result-num.emerald {
  color: #10b981;
}

.calc-result-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.calc-disclaimer {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.5;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
}

/* Solar Operations & Maintenance Section */
.solar-om-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.solar-om-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

.solar-om-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.solar-om-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f59e0b;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.solar-om-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.solar-om-desc {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ==========================================================================
   UNIVERSAL DIVISION STYLING & ACCENT COLORS
   ========================================================================== */

/* Badges */
.civil-badge {
  color: #f97316;
  background: rgba(249, 115, 22, 0.1);
  border-color: rgba(249, 115, 22, 0.3);
}

.telecom-badge {
  color: #00f2fe;
  background: rgba(0, 242, 254, 0.1);
  border-color: rgba(0, 242, 254, 0.3);
}

.automation-badge {
  color: #8b5cf6;
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
}

.integrated-badge {
  color: #14b8a6;
  background: rgba(20, 184, 166, 0.1);
  border-color: rgba(20, 184, 166, 0.3);
}

.facilities-badge {
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
}

/* Accent Numbers */
.calc-result-num.orange { color: #f97316; }
.calc-result-num.purple { color: #8b5cf6; }
.calc-result-num.teal { color: #14b8a6; }
.calc-result-num.emerald { color: #10b981; }

/* Division Hero & Visuals */
.division-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4.5rem;
  align-items: center;
  margin-bottom: 0;
}

.division-hero-visual {
  position: relative;
}

.division-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(0, 242, 254, 0.1);
  height: 440px;
}

.division-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-spring);
}

.division-image-wrapper:hover img {
  transform: scale(1.04);
}

.division-floating-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  padding: 1rem 1.4rem;
  background: rgba(9, 14, 28, 0.92);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  backdrop-filter: blur(16px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.division-floating-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
}

.division-floating-item i {
  font-size: 0.95rem;
}

.division-floating-item.orange i { color: #f97316; }
.division-floating-item.cyan i { color: #00f2fe; }
.division-floating-item.purple i { color: #8b5cf6; }
.division-floating-item.teal i { color: #14b8a6; }
.division-floating-item.emerald i { color: #10b981; }

/* Interactive Architecture Visualizer Wrapper */
.division-flow-wrapper {
  padding: 3.5rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(13, 20, 39, 0.95) 0%, rgba(8, 13, 26, 0.98) 100%);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 242, 254, 0.08);
}

.division-flow-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.75rem;
  gap: 2rem;
}

.division-mode-tabs {
  display: flex;
  gap: 0.6rem;
  background: rgba(6, 10, 22, 0.8);
  padding: 0.35rem;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}

.division-mode-btn {
  background: transparent;
  border: none;
  padding: 0.6rem 1.1rem;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.division-mode-btn:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.05);
}

.division-mode-btn.active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.division-flow-nodes-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.division-flow-node {
  background: rgba(13, 20, 39, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 1.4rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s var(--ease-spring);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.division-flow-node::after {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: -0.65rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.75rem;
  z-index: 2;
}

.division-flow-node:last-child::after,
.division-flow-node.no-arrow::after {
  display: none;
}

.division-flow-node:hover,
.division-flow-node.active {
  background: rgba(20, 30, 58, 0.95);
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.division-flow-node.civil-active:hover,
.division-flow-node.civil-active.active {
  border-color: #f97316;
  box-shadow: var(--shadow-md), 0 0 20px rgba(249, 115, 22, 0.3);
}

.division-flow-node.auto-active:hover,
.division-flow-node.auto-active.active {
  border-color: #8b5cf6;
  box-shadow: var(--shadow-md), 0 0 20px rgba(139, 92, 246, 0.3);
}

.division-flow-node.infra-active:hover,
.division-flow-node.infra-active.active {
  border-color: #14b8a6;
  box-shadow: var(--shadow-md), 0 0 20px rgba(20, 184, 166, 0.3);
}

.division-flow-node.fac-active:hover,
.division-flow-node.fac-active.active {
  border-color: #10b981;
  box-shadow: var(--shadow-md), 0 0 20px rgba(16, 185, 129, 0.3);
}

.division-node-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary);
  transition: all 0.25s ease;
}

.division-flow-node:hover .division-node-icon,
.division-flow-node.active .division-node-icon {
  transform: scale(1.1);
  background: var(--primary);
  color: #050811;
  box-shadow: var(--shadow-glow);
}

.division-node-name {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
}

.division-node-role {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.division-node-detail-panel {
  background: rgba(6, 10, 22, 0.85);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 2rem 2.25rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}

.division-node-detail-title {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.division-node-detail-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.division-node-specs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.division-node-specs-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  font-family: var(--font-mono);
  border-bottom: 1px dashed var(--border-subtle);
  padding-bottom: 0.4rem;
}

.division-node-specs-list .spec-label {
  color: var(--text-muted);
}

.division-node-specs-list .spec-val {
  color: var(--text-light);
  font-weight: 600;
}

/* ==========================================================================
   FLAGSHIP 7-LAYER INTEGRATED INFRASTRUCTURE STACK
   ========================================================================== */
.infra-stack-container {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.infra-stack-layer {
  display: grid;
  grid-template-columns: 80px 220px 1fr 140px;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.75rem;
  border-radius: 16px;
  background: rgba(13, 20, 39, 0.6);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all 0.25s var(--ease-spring);
}

.infra-stack-layer:hover,
.infra-stack-layer.active {
  background: rgba(20, 30, 58, 0.95);
  border-color: #14b8a6;
  transform: translateX(6px);
  box-shadow: var(--shadow-md), 0 0 25px rgba(20, 184, 166, 0.25);
}

.infra-layer-tag {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: #14b8a6;
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.3);
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  text-align: center;
}

.infra-layer-title-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.infra-layer-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #14b8a6;
  font-size: 1rem;
  flex-shrink: 0;
}

.infra-layer-name {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-white);
}

.infra-layer-summary {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.infra-layer-status {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--text-muted);
  text-align: right;
}

.infra-layer-status i {
  color: #10b981;
  margin-right: 0.3rem;
}

/* ==========================================================================
   SMART AUTOMATION BUILDING ZONES GRID
   ========================================================================== */
.auto-zones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.auto-zone-card {
  padding: 1.5rem 1.35rem;
  background: rgba(13, 20, 39, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.25s var(--ease-spring);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.auto-zone-card:hover,
.auto-zone-card.active {
  background: rgba(20, 30, 58, 0.95);
  border-color: #8b5cf6;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 0 25px rgba(139, 92, 246, 0.25);
}

.auto-zone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.auto-zone-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b5cf6;
  font-size: 1.2rem;
}

.auto-zone-status {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
}

.auto-zone-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
}

.auto-zone-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   FACILITIES MAINTENANCE LIFECYCLE GRID
   ========================================================================== */
.fac-lifecycle-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.fac-lifecycle-step {
  padding: 1.5rem 1rem;
  background: rgba(13, 20, 39, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s var(--ease-spring);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  position: relative;
}

.fac-lifecycle-step::after {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: -0.65rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.75rem;
  z-index: 2;
}

.fac-lifecycle-step:last-child::after {
  display: none;
}

.fac-lifecycle-step:hover,
.fac-lifecycle-step.active {
  background: rgba(20, 30, 58, 0.95);
  border-color: #10b981;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 0 25px rgba(16, 185, 129, 0.25);
}

.fac-step-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  font-size: 1.15rem;
}

.fac-step-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #10b981;
  font-weight: 700;
}

.fac-step-title {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-white);
}

.fac-step-role {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ==========================================================================
   UNIVERSAL SCOPE ESTIMATOR & CALCULATOR
   ========================================================================== */
.division-calc-wrapper {
  padding: 3.5rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(13, 20, 39, 0.95) 0%, rgba(8, 13, 26, 0.98) 100%);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 242, 254, 0.08);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 0;
}

.division-calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.division-calc-results {
  background: rgba(6, 10, 22, 0.8);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Range Slider Variant Thumbs */
.calc-range-slider.orange::-webkit-slider-thumb { background: #f97316; box-shadow: 0 0 12px rgba(249, 115, 22, 0.6); }
.calc-range-slider.cyan::-webkit-slider-thumb { background: #00f2fe; box-shadow: 0 0 12px rgba(0, 242, 254, 0.6); }
.calc-range-slider.purple::-webkit-slider-thumb { background: #8b5cf6; box-shadow: 0 0 12px rgba(139, 92, 246, 0.6); }
.calc-range-slider.teal::-webkit-slider-thumb { background: #14b8a6; box-shadow: 0 0 12px rgba(20, 184, 166, 0.6); }
.calc-range-slider.emerald::-webkit-slider-thumb { background: #10b981; box-shadow: 0 0 12px rgba(16, 185, 129, 0.6); }

/* Value Badge Colors */
.calc-val-badge.orange { color: #f97316; background: rgba(249, 115, 22, 0.1); border-color: rgba(249, 115, 22, 0.3); }
.calc-val-badge.cyan { color: #00f2fe; background: rgba(0, 242, 254, 0.1); border-color: rgba(0, 242, 254, 0.3); }
.calc-val-badge.purple { color: #8b5cf6; background: rgba(139, 92, 246, 0.1); border-color: rgba(139, 92, 246, 0.3); }
.calc-val-badge.teal { color: #14b8a6; background: rgba(20, 184, 166, 0.1); border-color: rgba(20, 184, 166, 0.3); }
.calc-val-badge.emerald { color: #10b981; background: rgba(16, 185, 129, 0.1); border-color: rgba(16, 185, 129, 0.3); }

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 2rem;
  }
  .solar-solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .solar-flow-nodes-grid,
  .division-flow-nodes-grid,
  .fac-lifecycle-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .solar-journey-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .solar-components-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-mega-dropdown {
    width: 600px;
  }
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: rgba(5, 8, 17, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-left: 1px solid var(--border-subtle);
    flex-direction: column;
    padding: 6rem 2rem 3rem 2rem;
    align-items: flex-start;
    gap: 1.25rem;
    transition: right 0.4s var(--ease-spring);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-link {
    font-size: 1.1rem;
    width: 100%;
  }

  .nav-mega-dropdown {
    display: none !important;
  }

  .d-none-mobile {
    display: none !important;
  }

  .about-grid,
  .careers-layout-grid,
  .contact-layout-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .about-image-wrapper {
    height: 380px;
  }

  .hero-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 2rem;
  }

  .solar-hero-grid,
  .solar-calc-wrapper,
  .solar-om-grid,
  .division-hero-grid,
  .division-calc-wrapper,
  .division-node-detail-panel {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .division-flow-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .infra-stack-layer {
    grid-template-columns: 60px 1fr;
    gap: 0.75rem;
  }
  .infra-layer-summary,
  .infra-layer-status {
    grid-column: 2;
  }

  .auto-zones-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .solar-node-detail-panel {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }
  .services-section {
    padding: 3.5rem 0;
  }

  .section {
    padding: 5rem 0;
  }

  .hero {
    padding-top: calc(var(--nav-height) + 2rem);
  }

  .hero-title {
    font-size: clamp(2.2rem, 6vw, 3rem);
  }

  .hero-stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .services-grid,
  .projects-grid,
  .trust-grid,
  .solar-solutions-grid,
  .solar-components-grid,
  .auto-zones-grid {
    grid-template-columns: 1fr;
  }

  .about-pillars-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .application-card,
  .contact-rfp-card {
    padding: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
  }

  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .solar-flow-nodes-grid,
  .division-flow-nodes-grid,
  .fac-lifecycle-grid {
    grid-template-columns: 1fr 1fr;
  }

  .solar-flow-node::after,
  .division-flow-node::after,
  .fac-lifecycle-step::after {
    display: none;
  }

  .division-flow-wrapper,
  .division-calc-wrapper,
  .solar-flow-wrapper,
  .solar-calc-wrapper {
    padding: 2rem 1.5rem;
  }

  .solar-journey-grid {
    grid-template-columns: 1fr;
  }

  .calc-results-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }
  .section {
    padding: 4.25rem 0;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .application-card,
  .contact-rfp-card {
    padding: 1.5rem 1.25rem;
  }
  .service-card {
    padding: 1.75rem 1.25rem;
  }
  .division-image-wrapper,
  .solar-image-wrapper {
    height: 300px;
  }
  .division-floating-badge,
  .solar-floating-badge {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    padding: 0.85rem 1rem;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
  .calc-results-grid {
    grid-template-columns: 1fr;
  }
  .solar-flow-nodes-grid,
  .division-flow-nodes-grid,
  .fac-lifecycle-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-col:last-child {
    grid-column: 1 / -1;
  }
  .toast {
    margin: 0 1rem;
    bottom: 1rem;
    right: 0;
    left: 0;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  #hero-network-canvas {
    display: none;
  }
}

/* =============================================================================
   CORPORATE INFRASTRUCTURE REDESIGN & ENHANCEMENT SUITE
   ============================================================================= */

/* 1. Hero Factual Capability Cards */
.hero-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
  width: 100%;
}

.hero-capability-card {
  background: rgba(13, 20, 39, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
  position: relative;
  overflow: hidden;
}

.hero-capability-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.hero-capability-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 242, 254, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.hero-capability-card:hover::before {
  opacity: 1;
}

.hero-cap-headline {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.hero-cap-headline.cyan {
  color: #00f2fe;
}

.hero-cap-headline.gold {
  color: #f59e0b;
}

.hero-cap-headline.orange {
  color: #f97316;
}

.hero-cap-headline.emerald {
  color: #10b981;
}

.hero-cap-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.hero-cap-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* 2. Credibility Line */
.hero-credibility-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.825rem;
  color: var(--text-secondary);
  flex-wrap: wrap;
}

.hero-cred-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--text-secondary);
}

.hero-cred-pill i {
  color: var(--primary);
}

/* 3. Corporate Profile Download Button */
.btn-corporate-profile {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.15rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  transition: var(--transition-base);
  text-decoration: none;
}

.btn-corporate-profile:hover {
  background: rgba(0, 242, 254, 0.15);
  border-color: rgba(0, 242, 254, 0.4);
  color: #00f2fe;
}

/* 4. Integrated Infrastructure Convergence Feature */
.convergence-wrapper {
  background: linear-gradient(180deg, rgba(13, 20, 39, 0.9) 0%, rgba(8, 13, 26, 0.95) 100%);
  border: 1px solid rgba(20, 184, 166, 0.25);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.convergence-flow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.75rem;
  margin: 2.5rem 0;
  position: relative;
}

.convergence-step {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.25rem 0.85rem;
  text-align: center;
  transition: var(--transition-base);
  position: relative;
}

.convergence-step:hover {
  background: rgba(20, 184, 166, 0.08);
  border-color: rgba(20, 184, 166, 0.35);
  transform: translateY(-3px);
}

.convergence-step-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(20, 184, 166, 0.3);
  color: #14b8a6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin: 0 auto 0.75rem auto;
}

.convergence-step-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
}

/* 5. Industries We Serve Grid */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.industry-card {
  background: rgba(13, 20, 39, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.industry-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 242, 254, 0.3);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.industry-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.industry-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.25);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.industry-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.industry-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.industry-tag {
  font-family: var(--font-mono);
  font-size: 0.725rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}

/* 6. Why Skycom? 8-Pillar Matrix */
.why-skycom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.why-card {
  background: rgba(13, 20, 39, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.35rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.35);
}

.why-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
}

.why-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.why-card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* 7. 6-Step Execution Process Stepper ("From Concept to Completion") */
.process-stepper-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  position: relative;
}

.process-step-card {
  background: rgba(13, 20, 39, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.15rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition-base);
}

.process-step-card:hover {
  border-color: rgba(0, 242, 254, 0.35);
  transform: translateY(-4px);
}

.process-step-num {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(0, 242, 254, 0.4);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.process-step-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.4rem;
  line-height: 1.25;
}

.process-step-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* 8. Governance, Statutory & Compliance Framework */
.governance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.governance-card {
  background: rgba(13, 20, 39, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
}

.governance-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.governance-card-title i {
  color: var(--primary);
}

.governance-items-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.governance-items-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.governance-items-list li i {
  color: #10b981;
  margin-top: 0.2rem;
  font-size: 0.85rem;
}

/* 9. Structured Project Card Metadata */
.project-meta-box {
  margin: 0.85rem 0 1.25rem 0;
  padding: 0.75rem 0.9rem;
  background: rgba(5, 8, 17, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.project-meta-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.3rem;
  gap: 0.5rem;
}

.project-meta-row:last-child {
  margin-bottom: 0;
}

.project-meta-lbl {
  color: var(--text-muted);
  font-weight: 600;
}

.project-meta-val {
  color: var(--text-white);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-align: right;
}

/* Responsive adjustments for new sections */
@media (max-width: 1200px) {
  .hero-capability-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-skycom-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-stepper-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .governance-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-capability-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .industries-grid {
    grid-template-columns: 1fr;
  }
  .why-skycom-grid {
    grid-template-columns: 1fr;
  }
  .process-stepper-grid {
    grid-template-columns: 1fr;
  }
  .convergence-flow-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

