/* ============================================
   WHITE NOISE - MODERN DESIGN SYSTEM
   Contemporary styling with glassmorphism & animations
   ============================================ */

:root {
  --bg-primary: #000000;
  --bg-secondary: #0a0a0a;
  --bg-elevated: #141414;
  --accent-primary: #bb33ff;
  --accent-secondary: #9922dd;
  --accent-tertiary: #7711bb;
  --text-primary: #ffffff;
  --text-secondary: #b3b3b3;
  --text-tertiary: #808080;
  --border-color: rgba(187, 51, 255, 0.2);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(187, 51, 255, 0.3);
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container-modern {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .container-modern {
    padding: 0 16px;
  }
}

/* ============================================
   PRELOADER - BOLD SANS-SERIF
   ============================================ */
#preloader {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease;
}

#preloader.hide {
  opacity: 0;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
  max-width: 400px;
  padding: 20px;
}

.preloader-logo {
  width: 120px;
  height: auto;
  margin-bottom: 24px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

.preloader-title-bold {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 8px;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.preloader-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #b3b3b3;
  margin-bottom: 32px;
}

.preloader-sub span {
  color: var(--accent-primary);
  font-weight: 600;
}

.preloader-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-bar-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 2px;
  animation: loading 2s ease-in-out infinite;
}

@keyframes loading {
  0% {
    width: 0%;
  }
  50% {
    width: 70%;
  }
  100% {
    width: 100%;
  }
}

html.preload-lock,
body.preload-lock {
  overflow: hidden;
  height: 100%;
}

/* ============================================
   MODERN NAVIGATION - FIXED ALIGNMENT
   ============================================ */
.navbar-modern {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(187, 51, 255, 0.1);
  transition: transform var(--transition-base), background var(--transition-base);
}

.navbar-modern.scrolled {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: var(--shadow-md);
}

.navbar-modern.hidden {
  transform: translateY(-100%);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand - Perfect Alignment */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.nav-brand a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.nav-brand a:hover {
  opacity: 0.8;
}

.brand-logo {
  height: 40px;
  width: auto;
  display: block;
  transition: opacity var(--transition-fast);
}

.nav-brand a:hover .brand-logo {
  opacity: 0.8;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: var(--accent-primary);
}

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

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown .nav-link i {
  font-size: 0.75rem;
  margin-left: 4px;
  transition: transform var(--transition-fast);
}

.nav-dropdown:hover .nav-link i {
  transform: rotate(180deg);
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-lg);
  list-style: none;
  margin-top: 12px;
}

.nav-dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content li {
  margin: 0;
}

.dropdown-content a {
  display: block;
  padding: 10px 16px;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  font-size: 0.9rem;
}

.dropdown-content a:hover {
  background: rgba(187, 51, 255, 0.1);
  color: var(--accent-primary);
  transform: translateX(4px);
}

/* Social Icons in Nav */
.nav-social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 16px;
  padding-left: 16px;
  border-left: 1px solid var(--border-color);
}

.nav-social a {
  color: var(--text-primary);
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.nav-social a:hover {
  color: var(--accent-primary);
  transform: translateY(-2px);
}

/* Mobile Navigation */
@media (max-width: 991px) {
  .nav-container {
    padding: 16px;
  }
  
  .brand-text {
    font-size: 1rem;
  }
  
  .brand-logo {
    height: 32px;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    padding: 80px 24px 24px;
    transition: right var(--transition-base);
    border-left: 1px solid var(--border-color);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }
  
  .nav-links > li {
    width: 100%;
    border-bottom: 1px solid rgba(187, 51, 255, 0.1);
  }
  
  .nav-link {
    display: block;
    padding: 16px 0;
    width: 100%;
  }
  
  .dropdown-content {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 0;
    background: transparent;
    border: none;
    padding-left: 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
  }
  
  .nav-dropdown:hover .dropdown-content {
    max-height: 300px;
  }
  
  .nav-social {
    border-left: none;
    border-top: 1px solid var(--border-color);
    padding-left: 0;
    padding-top: 16px;
    margin-left: 0;
    margin-top: 16px;
    justify-content: center;
  }
}

/* ============================================
   HERO SECTION - SINGLE LINE TITLE, NO PIXELS
   ============================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#heroVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1100px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(187, 51, 255, 0.1);
  border: 1px solid var(--accent-primary);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease;
}

/* SINGLE LINE TITLE - ORBITRON ONLY */
.hero-title-single {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.5rem, 9vw, 8rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 12px;
  animation: fadeInUp 0.8s ease 0.2s both;
  white-space: nowrap;
}

.hero-highlight {
  background: linear-gradient(135deg, #bb33ff, #7711bb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(187, 51, 255, 0.5));
}

.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-description {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: var(--text-secondary);
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s both;
}

/* Mobile adjustments for single line */
@media (max-width: 768px) {
  .hero-title-single {
    font-size: clamp(2rem, 12vw, 4rem);
    letter-spacing: 6px;
  }
}

@media (max-width: 480px) {
  .hero-title-single {
    font-size: clamp(1.75rem, 14vw, 3rem);
    letter-spacing: 4px;
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  animation: fadeIn 1s ease 1.5s both;
}

.scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  margin: 0 auto 8px;
  position: relative;
}

.scroll-mouse span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 2px;
  animation: scrollDown 2s infinite;
}

.scroll-indicator p {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

@keyframes scrollDown {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0;
  }
  50% {
    transform: translateX(-50%) translateY(12px);
    opacity: 1;
  }
}

/* ============================================
   BUTTONS - MODERN STYLE
   ============================================ */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #000;
}

.btn-primary:hover {
  background: var(--accent-secondary);
  border-color: var(--accent-secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(187, 51, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.btn-secondary:hover {
  background: rgba(187, 51, 255, 0.1);
  transform: translateY(-2px);
}

.btn-primary i,
.btn-secondary i {
  transition: transform var(--transition-fast);
}

.btn-primary:hover i,
.btn-secondary:hover i {
  transform: translateX(4px);
}

/* ============================================
   STATS SECTION - ANIMATED CARDS
   ============================================ */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(40, 20, 60, 0.95));
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateY(30px);
}

.stat-card.visible {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.6s ease forwards;
}

.stat-card:hover {
  transform: translateY(-8px);
  background: rgba(187, 51, 255, 0.05);
  box-shadow: var(--shadow-glow);
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.stat-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-primary);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-modern {
  padding: 100px 0;
}

.section-dark {
  background: linear-gradient(180deg, transparent, rgba(187, 51, 255, 0.03), transparent);
}

.section-header {
  margin-bottom: 60px;
}

.section-header.center {
  text-align: center;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(187, 51, 255, 0.1);
  border: 1px solid var(--accent-primary);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.section-subtitle {
  margin: 0 !important;
  max-width: 100% !important;
}


.text-accent {
  color: var(--accent-primary);
}

/* ============================================
   WHY JOIN - MODERN GRID
   ============================================ */
.why-join-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 991px) {
  .why-join-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.benefit-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateX(-30px);
}

.benefit-card.visible {
  opacity: 1;
  transform: translateX(0);
}

.benefit-card:hover {
  background: rgba(187, 51, 255, 0.05);
  border-color: var(--accent-primary);
  transform: translateX(8px);
  box-shadow: var(--shadow-glow);
}

.benefit-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #000;
}

.benefit-text h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--accent-primary);
}

.benefit-text p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Image Card */
.why-join-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
}

.image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(187, 51, 255, 0.3);
}

.image-card img {
  width: 100%;
  height: auto;
  display: block;
}

.image-badges {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.image-badges .badge {
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--accent-primary);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ============================================
   MISSION SECTION
   ============================================ */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 991px) {
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .mission-visual {
    order: -1;
  }
}

.mission-visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

.mission-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 16px 0;
}

.mission-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
}

.highlight-item i {
  color: var(--accent-primary);
  font-size: 1.2rem;
}

/* ============================================
   TIMELINE - MODERN
   ============================================ */
.timeline-modern {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline-modern::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--accent-primary), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.6s ease forwards;
}

.timeline-item:nth-child(odd) .timeline-card {
  margin-left: auto;
  text-align: right;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 20px;
  width: 20px;
  height: 20px;
  background: var(--accent-primary);
  border: 4px solid var(--bg-primary);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 20px rgba(187, 51, 255, 0.5);
}

.timeline-card {
  width: calc(50% - 40px);
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.timeline-card:hover {
  background: rgba(187, 51, 255, 0.05);
  transform: scale(1.02);
  box-shadow: var(--shadow-glow);
}

.timeline-year {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-primary);
  color: #000;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.timeline-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--accent-primary);
}

.timeline-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.timeline-card a {
  color: var(--accent-primary);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.timeline-card a:hover {
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .timeline-modern::before {
    left: 20px;
  }
  
  .timeline-dot {
    left: 20px;
  }
  
  .timeline-card,
  .timeline-item:nth-child(odd) .timeline-card {
    width: calc(100% - 60px);
    margin-left: 60px;
    text-align: left;
  }
}

/* ============================================
   PROJECTS - MODERN GRID
   ============================================ */
.projects-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.project-card-modern {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateY(30px);
}

.project-card-modern.visible {
  opacity: 1;
  transform: translateY(0);
}

.project-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
  border-color: var(--accent-primary);
}

.project-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.project-card-modern:hover .project-image img {
  transform: scale(1.1);
}

.project-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--accent-primary);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent-primary);
}

.project-tag.active {
  color: #4CAF50;
  border-color: #4CAF50;
}

.project-tag.opensource {
  color: #2196F3;
  border-color: #2196F3;
}

.project-tag.award {
  color: #FFD700;
  border-color: #FFD700;
}

.project-info {
  padding: 24px;
}

.project-info h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--accent-primary);
}

.project-info p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-primary);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.project-link:hover {
  gap: 12px;
}

.project-link i {
  transition: transform var(--transition-fast);
}

.project-link:hover i {
  transform: translateX(4px);
}

/* ============================================
   SPONSORS - MODERN GRID
   ============================================ */
.sponsors-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.sponsor-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: #ffffff;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  min-height: 140px;
  box-shadow: var(--shadow-md);
}

.sponsor-card:hover {
  background: #ffffff;
  border-color: var(--accent-primary);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(187, 51, 255, 0.3);
}

.sponsor-card img {
  max-width: 160px;
  max-height: 80px;
  width: auto;
  height: auto;
  filter: none;
  transition: transform var(--transition-fast);
}

.sponsor-card:hover img {
  transform: scale(1.05);
}

.sponsor-cta {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}

.sponsor-cta p {
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: var(--text-secondary);
}

/* ============================================
   CONTACT - MODERN CARDS
   ============================================ */
.contact-info-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.contact-card {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.contact-card:hover {
  background: rgba(187, 51, 255, 0.05);
  border-color: var(--accent-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.contact-card i {
  font-size: 2.5rem;
  color: var(--accent-primary);
  margin-bottom: 16px;
  display: block;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.contact-card p,
.contact-card a {
  color: var(--text-secondary);
  text-decoration: none;
  line-height: 1.6;
}

.contact-card a:hover {
  color: var(--accent-primary);
}

.social-links-inline {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 12px;
}

.social-links-inline a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(187, 51, 255, 0.1);
  border: 1px solid var(--accent-primary);
  border-radius: 50%;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.social-links-inline a:hover {
  background: var(--accent-primary);
  color: #000;
  transform: translateY(-2px);
}

/* ============================================
   FOOTER - MODERN
   ============================================ */
.footer-modern {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer-brand {
  max-width: 400px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

@media (max-width: 576px) {
  .footer-links {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer-column h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--accent-primary);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-size: 0.95rem;
}

.footer-column a:hover {
  color: var(--accent-primary);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.footer-bottom p {
  color: var(--text-tertiary);
  font-size: 0.9rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* ============================================
   UTILITIES
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Accessibility */
a:focus,
button:focus {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

/* Selection */
::selection {
  background: var(--accent-primary);
  color: #000;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-secondary);
}

/* ============================================
   ABOUT US PAGE STYLES
   ============================================ */
.hero-about {
  position: relative;
  height: 60vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-about .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(3px);
  transform: scale(1.05);
  z-index: 0;
}

.hero-about .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.7)
  );
}

/* About Us specific title - smaller to fit */
.hero-title-about {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: 8px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

@media (max-width: 768px) {
  .hero-title-about {
    font-size: clamp(1.75rem, 10vw, 3.5rem);
    letter-spacing: 4px;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.highlight-text {
  font-size: 1.2rem;
  font-weight: 600;
}

.link-accent {
  color: var(--accent-primary);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.link-accent:hover {
  color: var(--text-primary);
}

.about-visual {
  position: sticky;
  top: 120px;
}

/* Departments Grid */
.departments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.department-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-base);
}

.department-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--accent-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.dept-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 20px;
}

.department-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--accent-primary);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
}

.department-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.skills-tag {
  padding: 12px 16px;
  background: rgba(187, 51, 255, 0.05);
  border-left: 3px solid var(--accent-primary);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.skills-tag strong {
  color: var(--accent-primary);
}

/* CTA Box */
.cta-box {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(187, 51, 255, 0.1), rgba(119, 17, 187, 0.05));
  border: 2px solid var(--accent-primary);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-glow);
}

.cta-box h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
}

.cta-box p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.nav-link.active {
  color: var(--accent-primary) !important;
  position: relative;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-primary);
}