/* ============================================
   STRIKE - Premium Learning Platform
   CSS Variables & Base Styles
   ============================================ */

:root {
  --font-size: 16px;
  --background: #ffffff;
  --foreground: #0a0e1a;
  --primary: #ff9933;
  --primary-dark: #ff7700;
  --secondary: #138808;
  --accent: #22c55e;
  --muted: #64748b;
  --border: rgba(255, 153, 51, 0.2);
  --radius: 0.625rem;
  --font-weight-medium: 500;
  --font-weight-normal: 400;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: var(--font-size);
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #fff;
  overflow-x: hidden;
}

/* ============================================
   CONTAINER & BACKGROUNDS
   ============================================ */

.defense-container {
  min-height: 100vh;
  background: #0a0e1a;
  color: #fff;
  overflow-x: hidden;
  position: relative;
}

.grid-background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: 
    linear-gradient(rgba(255, 153, 51, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 153, 51, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.radar-scan {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  margin: -400px 0 0 -400px;
  border-radius: 50%;
  border: 2px solid rgba(255, 153, 51, 0.1);
  z-index: 0;
  animation: radar-pulse 4s ease-in-out infinite;
}

.radar-scan::before,
.radar-scan::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 2px solid rgba(255, 153, 51, 0.05);
}

.radar-scan::before {
  width: 600px;
  height: 600px;
  margin: -300px 0 0 -300px;
  animation: radar-pulse 4s ease-in-out 0.5s infinite;
}

.radar-scan::after {
  width: 400px;
  height: 400px;
  margin: -200px 0 0 -200px;
  animation: radar-pulse 4s ease-in-out 1s infinite;
}

@keyframes radar-pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}

/* ============================================
   NAVIGATION
   ============================================ */

.defense-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 153, 51, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-icon {
  width: 40px;
  height: 40px;
  font-size: 2rem;
  animation: shield-pulse 3s ease-in-out infinite;
}

@keyframes shield-pulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 5px #ff9933); }
  50% { transform: scale(1.1); filter: drop-shadow(0 0 15px #ff9933); }
}

.brand-name {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: #fff;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ff9933 0%, #138808 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-tagline {
  font-size: 0.75rem;
  color: #138808;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-left: 2px solid #ff9933;
  padding-left: 1rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff9933 0%, #138808 100%);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #ff9933;
}

.nav-links a:hover::before {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #ff9933 0%, #ff7700 100%);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 153, 51, 0.5);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-defense {
  position: relative;
  z-index: 10;
  padding: 6rem 2rem 4rem;
}

.hero-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-left {
  animation: slide-in-left 0.8s ease-out;
}

@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

.mission-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 153, 51, 0.15);
  border: 1px solid #ff9933;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ff9933;
  text-transform: uppercase;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #fff;
}

.highlight-text {
  display: block;
  background: linear-gradient(135deg, #ff9933 0%, #138808 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradient-flow 3s ease infinite;
}

@keyframes gradient-flow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 2rem;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 153, 51, 0.2);
  border-radius: 8px;
  padding: 1rem;
  transition: all 0.3s ease;
}

.stat-box:hover {
  border-color: #ff9933;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 153, 51, 0.2);
}

.stat-icon-wrapper {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(255, 153, 51, 0.2) 0%, rgba(19, 136, 8, 0.2) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.stat-info {
  flex: 1;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.btn-primary-defense,
.btn-secondary-defense {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
}

.btn-primary-defense {
  background: linear-gradient(135deg, #ff9933 0%, #ff7700 100%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(255, 153, 51, 0.3);
}

.btn-primary-defense:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 153, 51, 0.5);
}

.btn-secondary-defense {
  background: transparent;
  border: 2px solid #ff9933;
  color: #ff9933;
}

.btn-secondary-defense:hover {
  background: rgba(255, 153, 51, 0.1);
  transform: translateY(-3px);
}

.hero-right {
  animation: slide-in-right 0.8s ease-out;
}

@keyframes slide-in-right {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

.stats-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 153, 51, 0.2);
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.status-indicator {
  width: 12px;
  height: 12px;
  background: #22c55e;
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
  box-shadow: 0 0 10px #22c55e;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.panel-header span {
  font-size: 0.875rem;
  font-weight: 700;
  color: #22c55e;
  letter-spacing: 1px;
}

.panel-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.panel-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.panel-label {
  font-size: 0.875rem;
  color: #94a3b8;
}

.panel-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}

/* ============================================
   MAP SECTION
   ============================================ */

.map-section {
  position: relative;
  z-index: 10;
  padding: 6rem 2rem;
  max-width: 1600px;
  margin: 0 auto;
}

.section-header-defense {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 153, 51, 0.15);
  border: 1px solid #ff9933;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ff9933;
  text-transform: uppercase;
}

.section-title-defense {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #fff;
}

.section-description {
  font-size: 1.125rem;
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.map-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 0;
}

.india-map {
  position: relative;
}

.map-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(255, 153, 51, 0.2));
}

.zone-group {
  cursor: pointer;
  transition: all 0.3s ease;
}

.zone-path {
  fill: rgba(255, 255, 255, 0.03);
  stroke: rgba(255, 153, 51, 0.4);
  stroke-width: 2;
  transition: all 0.3s ease;
}

.zone-group:hover .zone-path {
  fill: rgba(255, 153, 51, 0.15);
  stroke: #ff9933;
  stroke-width: 3;
  filter: drop-shadow(0 0 15px rgba(255, 153, 51, 0.6));
}

.zone-central {
  fill: rgba(255, 153, 51, 0.2);
  stroke: #ff9933;
  stroke-width: 3;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { 
    filter: drop-shadow(0 0 10px rgba(255, 153, 51, 0.5));
  }
  50% { 
    filter: drop-shadow(0 0 25px rgba(255, 153, 51, 0.8));
  }
}

.zone-center-circle {
  fill: rgba(255, 153, 51, 0.3);
  stroke: #ff9933;
  stroke-width: 2;
  animation: pulse-circle 2s ease-in-out infinite;
}

@keyframes pulse-circle {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

.zone-connector {
  stroke: rgba(255, 153, 51, 0.2);
  stroke-width: 1;
  stroke-dasharray: 5, 5;
  animation: dash 20s linear infinite;
}

@keyframes dash {
  to { stroke-dashoffset: -100; }
}

.zone-cards {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.zone-card {
  position: absolute;
  width: 300px;
  background: rgba(10, 14, 26, 0.98);
  border: 2px solid #ff9933;
  border-radius: 12px;
  padding: 1.5rem;
  pointer-events: all;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  animation: fade-in-up 0.5s ease-out;
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.card-central {
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
}

.card-north {
  top: 10%;
  left: 35%;
}

.card-northeast {
  top: 15%;
  right: 10%;
}

.zone-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.zone-card-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(255, 153, 51, 0.2) 0%, rgba(19, 136, 8, 0.2) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.zone-status {
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.zone-status.secured {
  background: rgba(255, 153, 51, 0.2);
  color: #ff9933;
  border: 1px solid #ff9933;
}

.zone-status.active {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid #22c55e;
}

.zone-card-title {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.zone-card-description {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.zone-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

.zc-stat {
  display: flex;
  flex-direction: column;
}

.zc-label {
  font-size: 0.75rem;
  color: #64748b;
  margin-bottom: 0.25rem;
}

.zc-value {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.zone-card-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #ff9933 0%, #ff7700 100%);
  color: #fff;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.zone-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 153, 51, 0.4);
}

.zone-legend {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.legend-color {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 2px solid;
}

.legend-color.secured {
  background: rgba(255, 153, 51, 0.2);
  border-color: #ff9933;
}

.legend-color.active {
  background: rgba(34, 197, 94, 0.2);
  border-color: #22c55e;
}

.legend-color.locked {
  background: rgba(100, 116, 139, 0.2);
  border-color: #64748b;
}

.legend-item span {
  font-size: 0.875rem;
  color: #94a3b8;
}

/* ============================================
   PROGRAMS SECTION
   ============================================ */

.programs-section {
  position: relative;
  z-index: 10;
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 153, 51, 0.03) 50%, transparent 100%);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.program-card {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 153, 51, 0.3);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff9933 0%, #138808 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.program-card:hover::before {
  opacity: 1;
}

.program-card:hover {
  transform: translateY(-10px);
  border-color: #ff9933;
  box-shadow: 0 20px 60px rgba(255, 153, 51, 0.3);
}

.program-card.featured {
  border-color: #ff9933;
  background: rgba(255, 153, 51, 0.05);
}

.program-card.featured::before {
  opacity: 1;
}

.program-rank {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 800;
  color: #ff9933;
  background: rgba(255, 153, 51, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #ff9933 0%, #ff7700 100%);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.program-icon-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(255, 153, 51, 0.2) 0%, rgba(19, 136, 8, 0.2) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.program-card:hover .program-icon-large {
  transform: scale(1.1) rotate(5deg);
}

.program-title {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.program-description {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.program-features {
  list-style: none;
  margin-bottom: 2rem;
}

.program-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #cbd5e1;
  font-size: 0.875rem;
}

.program-progress {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.progress-header span:first-child {
  color: #94a3b8;
}

.progress-header span:last-child {
  color: #ff9933;
  font-weight: 700;
}

.progress-bar-defense {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  overflow: hidden;
}

.progress-fill-defense {
  height: 100%;
  background: linear-gradient(90deg, #ff9933 0%, #138808 100%);
  border-radius: 50px;
  transition: width 2s ease-out;
}

/* ============================================
   DEPLOYMENT SECTION
   ============================================ */

.deployment-section {
  position: relative;
  z-index: 10;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgba(255, 153, 51, 0.05) 0%, rgba(19, 136, 8, 0.05) 100%);
  border-top: 1px solid rgba(255, 153, 51, 0.2);
  border-bottom: 1px solid rgba(255, 153, 51, 0.2);
}

.deployment-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.deployment-title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.deployment-description {
  font-size: 1.125rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.deployment-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.deploy-stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 153, 51, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.deploy-stat:hover {
  border-color: #ff9933;
  transform: translateY(-5px);
}

.deploy-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ff9933 0%, #138808 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.deploy-label {
  font-size: 0.875rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-deployment {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #ff9933 0%, #ff7700 100%);
  color: #fff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 153, 51, 0.3);
}

.btn-deployment:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 153, 51, 0.5);
}

.deployment-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.deploy-feature {
  display: flex;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 153, 51, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.deploy-feature:hover {
  border-color: #ff9933;
  transform: translateX(10px);
}

.df-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(255, 153, 51, 0.2) 0%, rgba(19, 136, 8, 0.2) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.df-content h4 {
  font-size: 1.125rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.df-content p {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.6;
}

/* ============================================
   FINAL CTA
   ============================================ */

.final-cta {
  position: relative;
  z-index: 10;
  padding: 6rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 153, 51, 0.1) 0%, rgba(19, 136, 8, 0.1) 100%);
  margin: 4rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 153, 51, 0.2);
}

.cta-defense-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-defense-title {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-defense-description {
  font-size: 1.25rem;
  color: #94a3b8;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.btn-cta-defense {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #ff9933 0%, #ff7700 100%);
  color: #fff;
  padding: 1.25rem 3rem;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(255, 153, 51, 0.4);
}

.btn-cta-defense:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 50px rgba(255, 153, 51, 0.6);
}

.cta-note-defense {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: #64748b;
}

/* ============================================
   FOOTER
   ============================================ */

.defense-footer {
  position: relative;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  padding: 3rem 2rem 1.5rem;
  border-top: 1px solid rgba(255, 153, 51, 0.2);
}

.footer-defense-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-defense-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo-defense {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
}

.footer-logo-defense span:last-child {
  font-weight: 800;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #ff9933 0%, #138808 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-defense-brand p {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.6;
}

.footer-colors {
  margin-top: 1rem;
}

.india-flag {
  display: flex;
  flex-direction: column;
  width: 80px;
  height: 48px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.flag-saffron {
  flex: 1;
  background: #ff9933;
}

.flag-white {
  flex: 1;
  background: #fff;
}

.flag-green {
  flex: 1;
  background: #138808;
}

.footer-defense-links {
  display: contents;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-col a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #ff9933;
}

.footer-defense-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-defense-bottom p {
  font-size: 0.875rem;
  color: #64748b;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .deployment-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-defense-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links,
  .brand-tagline {
    display: none;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats-row {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .section-title-defense {
    font-size: 2rem;
  }

  .programs-grid {
    grid-template-columns: 1fr;
  }

  .deployment-stats-grid {
    grid-template-columns: 1fr;
  }

  .footer-defense-content {
    grid-template-columns: 1fr;
  }

  .zone-cards {
    position: relative;
    margin-top: 2rem;
  }

  .zone-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    margin-bottom: 1.5rem;
  }

  .cta-defense-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title-defense {
    font-size: 1.75rem;
  }

  .stat-box {
    flex-direction: column;
    text-align: center;
  }

  .btn-primary-defense,
  .btn-secondary-defense {
    width: 100%;
    justify-content: center;
  }

  .deployment-title {
    font-size: 2rem;
  }

  .deploy-number {
    font-size: 2rem;
  }
}

/* ============================================
   ANIMATED BOLD TEXT - Timing Animations
   ============================================ */

.animated-bold {
  display: inline-block;
  position: relative;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: bold-pulse 2s ease-in-out infinite;
}

.animated-bold:nth-of-type(1) {
  animation-delay: 0s;
}

.animated-bold:nth-of-type(2) {
  animation-delay: 0.3s;
}

.animated-bold:nth-of-type(3) {
  animation-delay: 0.6s;
}

.animated-bold:nth-of-type(4) {
  animation-delay: 0.9s;
}

.animated-bold:nth-of-type(5) {
  animation-delay: 1.2s;
}

@keyframes bold-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.05);
  }
}

/* ============================================
   MENTORS PAGE - Professional Styles
   ============================================ */

.page-header {
  position: relative;
  z-index: 10;
  padding: 10rem 2rem 6rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 153, 51, 0.1) 0%, transparent 100%);
}

.page-header-content {
  max-width: 1200px;
  margin: 0 auto;
}

.page-title {
  font-size: 4rem;
  font-weight: 800;
  margin: 1.5rem 0;
  animation: fade-in-up 0.8s ease-out;
}

.page-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin: 1.5rem auto 0;
  line-height: 1.8;
  animation: fade-in-up 1s ease-out;
}

/* Mentor Stats Section */
.mentor-stats-section {
  position: relative;
  z-index: 10;
  padding: 4rem 2rem;
}

.mentor-stats-container {
  max-width: 1400px;
  margin: 0 auto;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 153, 51, 0.2);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
  animation: fade-in-up 0.6s ease-out backwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 153, 51, 0.05);
  border-color: var(--primary);
  box-shadow: 0 10px 40px rgba(255, 153, 51, 0.2);
}

.stat-icon-professional {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 153, 51, 0.2), rgba(19, 136, 8, 0.2));
  color: var(--primary);
  flex-shrink: 0;
}

.stat-content {
  flex: 1;
}

.stat-number-big {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.stat-label-big {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
}

/* Lead Mentors Section */
.lead-mentors-section {
  position: relative;
  z-index: 10;
  padding: 6rem 2rem;
}

.lead-mentors-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-description {
  text-align: center;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 1rem auto 4rem;
  line-height: 1.8;
}

/* Mentors Grid */
.mentors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.mentor-card-pro {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 153, 51, 0.2);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fade-in-up 0.6s ease-out backwards;
  position: relative;
  overflow: hidden;
}

.mentor-card-pro::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 153, 51, 0.1), transparent);
  transition: left 0.5s ease;
}

.mentor-card-pro:hover::before {
  left: 100%;
}

.mentor-card-pro:nth-child(1) { animation-delay: 0.1s; }
.mentor-card-pro:nth-child(2) { animation-delay: 0.2s; }
.mentor-card-pro:nth-child(3) { animation-delay: 0.3s; }
.mentor-card-pro:nth-child(4) { animation-delay: 0.4s; }
.mentor-card-pro:nth-child(5) { animation-delay: 0.5s; }
.mentor-card-pro:nth-child(6) { animation-delay: 0.6s; }

.mentor-card-pro:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--primary);
  background: rgba(255, 153, 51, 0.05);
  box-shadow: 0 20px 60px rgba(255, 153, 51, 0.3);
}

/* Mentor Avatar */
.mentor-avatar-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.mentor-avatar-pro {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 153, 51, 0.3), rgba(19, 136, 8, 0.3));
  border: 3px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.mentor-card-pro:hover .mentor-avatar-pro {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(255, 153, 51, 0.4);
}

.mentor-badge-top {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 0.375rem 1rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
}

/* Mentor Details */
.mentor-details {
  text-align: center;
}

.mentor-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.mentor-title-role {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.mentor-company {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.mentor-company svg {
  color: var(--primary);
}

.mentor-bio {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: left;
}

/* Expertise Tags */
.mentor-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.expertise-tag {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(255, 153, 51, 0.1);
  border: 1px solid rgba(255, 153, 51, 0.3);
  padding: 0.375rem 0.875rem;
  border-radius: 2rem;
  font-size: 0.8125rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.expertise-tag svg {
  width: 14px;
  height: 14px;
}

.mentor-card-pro:hover .expertise-tag {
  background: rgba(255, 153, 51, 0.2);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* Mini Stats */
.mentor-stats-mini {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 153, 51, 0.2);
}

.mini-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.mini-stat svg {
  color: var(--primary);
  width: 16px;
  height: 16px;
}

/* Mentorship Benefits Section */
.mentorship-benefits-section {
  position: relative;
  z-index: 10;
  padding: 6rem 2rem;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 153, 51, 0.05) 50%, transparent 100%);
}

.benefits-container {
  max-width: 1400px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card-pro {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 153, 51, 0.2);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s ease;
  animation: fade-in-up 0.6s ease-out backwards;
}

.benefit-card-pro:nth-child(1) { animation-delay: 0.1s; }
.benefit-card-pro:nth-child(2) { animation-delay: 0.2s; }
.benefit-card-pro:nth-child(3) { animation-delay: 0.3s; }
.benefit-card-pro:nth-child(4) { animation-delay: 0.4s; }
.benefit-card-pro:nth-child(5) { animation-delay: 0.5s; }
.benefit-card-pro:nth-child(6) { animation-delay: 0.6s; }

.benefit-card-pro:hover {
  transform: translateY(-8px);
  background: rgba(255, 153, 51, 0.05);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(255, 153, 51, 0.2);
}

.benefit-icon-pro {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 153, 51, 0.2), rgba(19, 136, 8, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.5rem;
  animation: float 3s ease-in-out infinite;
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.benefit-desc {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* Responsive Mentors Page */
@media (max-width: 1024px) {
  .mentors-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-title {
    font-size: 2.5rem;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .mentors-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-header {
    padding: 8rem 1.5rem 4rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .page-description {
    font-size: 1rem;
  }

  .stat-number-big {
    font-size: 2rem;
  }
}

/* ============================================
   ABOUT PAGE - Comprehensive Styles
   ============================================ */

/* Mission Section */
.mission-section {
  position: relative;
  z-index: 10;
  padding: 6rem 2rem;
}

.mission-container {
  max-width: 1400px;
  margin: 0 auto;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mission-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-icon-large {
  position: relative;
  z-index: 5;
  color: var(--primary);
  animation: float 6s ease-in-out infinite;
}

.orbit-ring {
  position: absolute;
  border: 2px solid rgba(255, 153, 51, 0.2);
  border-radius: 50%;
  animation: orbit-rotate 20s linear infinite;
}

.orbit-1 {
  width: 200px;
  height: 200px;
  animation-duration: 15s;
}

.orbit-2 {
  width: 300px;
  height: 300px;
  animation-duration: 20s;
}

.orbit-3 {
  width: 400px;
  height: 400px;
  animation-duration: 25s;
}

@keyframes orbit-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.mission-content {
  animation: fade-in-up 1s ease-out;
}

.mission-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.mission-stats-row {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
}

.mission-stat-item {
  text-align: center;
}

.mission-stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.mission-stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Why Different Section */
.why-different-section {
  position: relative;
  z-index: 10;
  padding: 6rem 2rem;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 153, 51, 0.03) 50%, transparent 100%);
}

.why-different-container {
  max-width: 1400px;
  margin: 0 auto;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.difference-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 153, 51, 0.2);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s ease;
  animation: fade-in-up 0.6s ease-out backwards;
}

.difference-card:nth-child(1) { animation-delay: 0.1s; }
.difference-card:nth-child(2) { animation-delay: 0.2s; }
.difference-card:nth-child(3) { animation-delay: 0.3s; }
.difference-card:nth-child(4) { animation-delay: 0.4s; }
.difference-card:nth-child(5) { animation-delay: 0.5s; }
.difference-card:nth-child(6) { animation-delay: 0.6s; }

.difference-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 153, 51, 0.05);
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(255, 153, 51, 0.25);
}

.difference-icon-pro {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 153, 51, 0.2), rgba(19, 136, 8, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.difference-card:hover .difference-icon-pro {
  transform: scale(1.1) rotate(10deg);
}

.difference-title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.difference-desc {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* Company Timeline Section */
.company-timeline-section {
  position: relative;
  z-index: 10;
  padding: 6rem 2rem;
}

.company-timeline-container {
  max-width: 1200px;
  margin: 0 auto;
}

.timeline-journey {
  position: relative;
  margin-top: 4rem;
  padding-left: 50px;
}

.timeline-journey::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
}

.timeline-item-company {
  position: relative;
  margin-bottom: 4rem;
  animation: fade-in-up 0.8s ease-out backwards;
}

.timeline-item-company:nth-child(1) { animation-delay: 0.1s; }
.timeline-item-company:nth-child(2) { animation-delay: 0.3s; }
.timeline-item-company:nth-child(3) { animation-delay: 0.5s; }
.timeline-item-company:nth-child(4) { animation-delay: 0.7s; }

.timeline-item-company::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid #0a0e1a;
  box-shadow: 0 0 0 4px rgba(255, 153, 51, 0.3);
  animation: pulse-glow 2s ease-in-out infinite;
}

.timeline-year {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.timeline-content-company {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 153, 51, 0.2);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s ease;
}

.timeline-item-company:hover .timeline-content-company {
  transform: translateX(10px);
  background: rgba(255, 153, 51, 0.05);
  border-color: var(--primary);
  box-shadow: 0 10px 40px rgba(255, 153, 51, 0.2);
}

.timeline-title-company {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.timeline-desc-company {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 1rem;
}

/* Values Section */
.values-section {
  position: relative;
  z-index: 10;
  padding: 6rem 2rem;
  background: linear-gradient(180deg, rgba(255, 153, 51, 0.03) 0%, transparent 100%);
}

.values-container {
  max-width: 1400px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 153, 51, 0.2);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  animation: fade-in-up 0.6s ease-out backwards;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }
.value-card:nth-child(5) { animation-delay: 0.5s; }
.value-card:nth-child(6) { animation-delay: 0.6s; }

.value-card:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(255, 153, 51, 0.05);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(255, 153, 51, 0.25);
}

.value-emoji {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
}

.value-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.value-desc {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* Recognition Section */
.recognition-section {
  position: relative;
  z-index: 10;
  padding: 6rem 2rem;
}

.recognition-container {
  max-width: 1400px;
  margin: 0 auto;
}

.company-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.company-logo-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 153, 51, 0.2);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: all 0.3s ease;
  animation: fade-in-up 0.6s ease-out backwards;
}

.company-logo-box:nth-child(1) { animation-delay: 0.1s; }
.company-logo-box:nth-child(2) { animation-delay: 0.2s; }
.company-logo-box:nth-child(3) { animation-delay: 0.3s; }
.company-logo-box:nth-child(4) { animation-delay: 0.4s; }
.company-logo-box:nth-child(5) { animation-delay: 0.5s; }
.company-logo-box:nth-child(6) { animation-delay: 0.6s; }

.company-logo-box:hover {
  transform: translateY(-10px);
  background: rgba(255, 153, 51, 0.05);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(255, 153, 51, 0.2);
}

.company-logo-box svg {
  color: var(--primary);
  transition: all 0.3s ease;
}

.company-logo-box:hover svg {
  transform: scale(1.1);
  filter: drop-shadow(0 5px 15px rgba(255, 153, 51, 0.5));
}

.company-name-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive About Page */
@media (max-width: 1024px) {
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .mission-visual {
    height: 300px;
  }

  .difference-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .mission-stats-row {
    flex-direction: column;
    gap: 2rem;
  }

  .difference-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .company-logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-journey {
    padding-left: 40px;
  }
}

@media (max-width: 480px) {
  .mission-stat-number {
    font-size: 2.5rem;
  }

  .company-logos-grid {
    grid-template-columns: 1fr;
  }

  .timeline-year {
    font-size: 1rem;
    padding: 0.375rem 1rem;
  }

  .timeline-title-company {
    font-size: 1.25rem;
  }
}

/* ============================================
   ENHANCED DEFENSE MAP - Professional Gaming Style
   ============================================ */

/* Command HUD */
.command-hud {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  animation: fade-in-up 0.8s ease-out;
}

.hud-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 153, 51, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.hud-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.hud-item:hover {
  background: rgba(255, 153, 51, 0.1);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 153, 51, 0.3);
}

.hud-item strong {
  color: var(--primary);
  font-weight: 700;
}

.hud-alert {
  border-color: rgba(255, 200, 0, 0.5);
}

.hud-alert svg {
  color: #ffc800;
  animation: pulse-warning 2s ease-in-out infinite;
}

@keyframes pulse-warning {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.pulse-text {
  animation: pulse-text-glow 2s ease-in-out infinite;
}

@keyframes pulse-text-glow {
  0%, 100% { color: #ffc800; }
  50% { color: #ff9933; }
}

/* Enhanced Zone Groups */
.zone-group.zone-active .zone-path {
  fill: rgba(34, 197, 94, 0.2);
  stroke: #22c55e;
  stroke-width: 3;
  animation: zone-active-pulse 2s ease-in-out infinite;
}

.zone-group.zone-locked .zone-path {
  fill: rgba(100, 116, 139, 0.05);
  stroke: rgba(255, 153, 51, 0.3);
  stroke-width: 2;
}

.zone-group.zone-locked:hover .zone-path {
  fill: rgba(255, 153, 51, 0.1);
  stroke: rgba(255, 153, 51, 0.6);
}

@keyframes zone-active-pulse {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 25px rgba(34, 197, 94, 0.8));
  }
}

/* Zone Pulse Animation */
.zone-pulse {
  fill: none;
  stroke: rgba(255, 153, 51, 0.3);
  stroke-width: 2;
  animation: pulse-expand 3s ease-out infinite;
}

@keyframes pulse-expand {
  0% {
    r: 30;
    opacity: 0.8;
  }
  100% {
    r: 50;
    opacity: 0;
  }
}

/* Central Zone Enhanced */
.zone-central-outer {
  fill: none;
  stroke: rgba(34, 197, 94, 0.2);
  stroke-width: 2;
  animation: pulse-ring-outer 4s ease-in-out infinite;
}

.zone-central-middle {
  fill: none;
  stroke: rgba(34, 197, 94, 0.3);
  stroke-width: 2;
  animation: pulse-ring-middle 3s ease-in-out infinite 0.5s;
}

@keyframes pulse-ring-outer {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

@keyframes pulse-ring-middle {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.08);
  }
}

/* Scan Line Animation */
.scan-line {
  animation: scan-sweep 8s ease-in-out infinite;
}

@keyframes scan-sweep {
  0% {
    opacity: 0;
    transform: translateX(-400px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(400px);
  }
}

/* Connector Animation */
.connector-active {
  stroke: rgba(34, 197, 94, 0.4);
  stroke-width: 2;
  animation: dash-flow 3s linear infinite;
}

@keyframes dash-flow {
  to { stroke-dashoffset: -50; }
}

/* Enhanced Zone Cards */
.zone-card-active {
  border: 2px solid #22c55e;
  box-shadow: 0 0 40px rgba(34, 197, 94, 0.4), 0 20px 60px rgba(0, 0, 0, 0.8);
  animation: card-glow 3s ease-in-out infinite;
}

@keyframes card-glow {
  0%, 100% {
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.4), 0 20px 60px rgba(0, 0, 0, 0.8);
  }
  50% {
    box-shadow: 0 0 60px rgba(34, 197, 94, 0.6), 0 20px 60px rgba(0, 0, 0, 0.8);
  }
}

.zone-card-locked {
  border: 2px solid rgba(255, 153, 51, 0.3);
  opacity: 0.85;
}

.zone-card-locked:hover {
  opacity: 1;
  border-color: rgba(255, 153, 51, 0.6);
}

/* Professional Icon Styling */
.zone-card-icon-pro {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(255, 153, 51, 0.2) 0%, rgba(19, 136, 8, 0.2) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.zone-card-icon-pro svg {
  color: var(--primary);
}

.zone-card-active .zone-card-icon-pro {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.3) 0%, rgba(19, 136, 8, 0.3) 100%);
  border-color: #22c55e;
}

.zone-card-active .zone-card-icon-pro svg {
  color: #22c55e;
}

.icon-locked {
  background: linear-gradient(135deg, rgba(100, 116, 139, 0.2) 0%, rgba(71, 85, 105, 0.2) 100%);
  border-color: rgba(255, 153, 51, 0.5);
  animation: none;
}

/* Zone Status Badges */
.status-active {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid #22c55e;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.status-active svg {
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.status-locked {
  background: rgba(100, 116, 139, 0.2);
  color: #94a3b8;
  border: 1px solid rgba(255, 153, 51, 0.3);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

/* Zone Level Bar */
.zone-level-bar {
  position: relative;
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.zone-level-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  border-radius: 4px;
  transition: width 0.5s ease;
  animation: level-shimmer 2s ease-in-out infinite;
}

@keyframes level-shimmer {
  0% {
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.8);
  }
  100% {
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
  }
}

.zone-level-text {
  position: absolute;
  top: -20px;
  right: 0;
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 600;
}

/* Enhanced Stats Grid */
.zone-card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 0;
  background: none;
}

.zc-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 153, 51, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.zc-stat:hover {
  background: rgba(255, 153, 51, 0.05);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.zc-stat svg {
  color: var(--primary);
}

.zc-label {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.zc-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
}

/* Enhanced Buttons */
.btn-active {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-active:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.5);
}

.btn-locked {
  background: rgba(100, 116, 139, 0.2);
  border: 1px solid rgba(255, 153, 51, 0.3);
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9375rem;
  cursor: not-allowed;
}

/* Enhanced Legend */
.legend-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.legend-title svg {
  color: var(--primary);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.legend-color {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid;
}

.legend-color.active {
  background: rgba(34, 197, 94, 0.2);
  border-color: #22c55e;
}

.legend-color.active svg {
  color: #22c55e;
}

.legend-color.secured {
  background: rgba(100, 116, 139, 0.2);
  border-color: rgba(255, 153, 51, 0.5);
}

.legend-color.secured svg {
  color: rgba(255, 153, 51, 0.8);
}

.legend-color.locked {
  background: rgba(255, 200, 0, 0.1);
  border-color: #ffc800;
}

.legend-color.locked svg {
  color: #ffc800;
}

/* Responsive Enhancements */
@media (max-width: 1024px) {
  .command-hud {
    gap: 1rem;
  }
  
  .hud-item {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) {
  .command-hud {
    flex-direction: column;
    align-items: stretch;
  }

  .zone-card {
    width: 280px;
  }

  .zone-card-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .zone-card {
    width: 100%;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    margin-bottom: 1.5rem;
  }

  .zone-cards {
    position: relative;
    padding: 0 1rem;
  }

  .hud-item {
    font-size: 0.8125rem;
  }
}
