* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Exo 2', sans-serif;
  color: #e6e6ff;
  background: #05060f;
  overflow-x: hidden;
}

/* Star layer */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("cosmic-bg.avif");
  background-size: cover;
  opacity: 0.25;
  z-index: -2;
  animation: drift 120s linear infinite;
}

@keyframes drift {
  from { transform: translateY(0); }
  to { transform: translateY(-200px); }
}  


.typed {
            overflow: hidden;
            white-space: nowrap;
            width: 0;
            animation: typing;
            animation-duration: 3s;
            animation-timing-function: steps(30, end);
            animation-fill-mode: forwards;
			
        }

        @keyframes typing {
            from {
                width: 0
            }

            to {
                width: 100%
            }
        }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
	align-content: center;
}        
.container-fluid {
            max-width: 100%;
            height: auto;
            text-align: center;
	font-family: 'Orbitron', sans-serif;
	align-content: center;
        }
header {
  width: 100%;
    background: rgba(8, 8, 30, 0.72);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid rgba(90, 120, 255, 0.25);
  padding: 1.3rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 30, 0.6);
  transition: transform 1.2s ease, opacity 1.2s ease;
}

.nav-links a,
.mobile-menu a {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
  color: #cfd2ff;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.nav-links a:hover,
.mobile-menu a:hover {
  color: #9f8cff;
  text-shadow: 0 0 8px #6c63ff;
}


/* Hidden state (slides upward) */
header.header-hidden {
  transform: translateY(-100%);
}
.hero {
  min-height: 80vh;
  display: flex;
  justify-content: center;

  /* FIX */
  align-items: flex-start;

  padding-top: 10px; /* adjust to taste */
  
  text-align: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(108,99,255,0.2), transparent 60%);
}

.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  letter-spacing: 3px;
  text-shadow:
    0 0 10px rgba(108,99,255,0.8),
    0 0 30px rgba(80,50,231,0.6);
}

.tagline {
  margin-top: 20px;
  font-size: 1.2rem;
  opacity: 0.85;
}
.site-title {
	 font-family: 'Orbitron', sans-serif;
  color: #d0d8ff;
  font-size: 2.3rem;
  text-align: center;
  margin-bottom: 0.8rem;
  text-shadow: 
    0 0 10px #5060c0,
    0 0 20px #304080,
    0 0 30px #203060;
  letter-spacing: 1.2px;
}        .container {
            display: inherit;



        }

nav {
  display: flex;
  justify-content: center;
  position: relative;
}

/* ── DESKTOP NAVIGATION ──────────────────────────────────────────────── */
.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  color: #b0c8ff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.6rem 1.3rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-shadow: 0 0 5px rgba(100, 140, 255, 0.5);
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(90, 130, 255, 0.22);
  color: white;
  box-shadow: 0 0 15px rgba(100, 140, 255, 0.45);
}

/* Dropdown (desktop) */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(10, 10, 35, 0.94);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(90, 130, 255, 0.35);
  border-radius: 8px;
  min-width: 160px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.65);
  padding: 0.5rem 0;
  z-index: 200;
  list-style: none;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.4rem;
  color: #b0c8ff;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s;
}

.dropdown-menu a:hover {
  background: rgba(90, 130, 255, 0.25);
  color: white;
}

/* ── MOBILE HAMBURGER & MENU ─────────────────────────────────────────── */
.hamburger {
  display: none;
  font-size: 2.5rem;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  text-shadow: 0 0 8px #6080e0;
  padding: 0.5rem;
  transition: top 1.3s;
}

.mobile-menu {
  display: none;
  list-style: none;
}

/* Mobile view */
@media (max-width: 768px) {

  /* Show hamburger on LEFT */
.hamburger {
  display: block;
  position: absolute;
  left: 0.75rem;     /* stays inside banner */
  top: 50%;          /* vertical centre */
  transform: translateY(-70%);
}

  /* Prevent title overlapping hamburger */
  .site-title {
    font-size: 1.9rem;
    
  }
  /* Hide desktop nav */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(8, 8, 35, 0.95);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(90, 120, 255, 0.3);
    padding: 1.5rem 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.7);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.3rem;
    padding: 1rem 1.5rem;
    text-align: center;
  }
}

  .mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(8, 8, 35, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(80, 120, 255, 0.3);
    padding: 1.2rem 0.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.7);
  }

  .mobile-menu.active {
    display: flex;
  }

  /* Main items (Home, About Us, Contact) */
  .mobile-menu > li > a {
    color: #b0c8ff;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    padding: 0.9rem 1.5rem;
    display: block;
    text-align: center;
    border-radius: 6px;
    transition: all 0.25s;
    text-shadow: 0 0 5px rgba(100, 140, 255, 0.5);
  }

  .mobile-menu > li > a:hover,
  .mobile-menu > li > a.active {
    background: rgba(90, 130, 255, 0.22);
    color: white;
    box-shadow: 0 0 12px rgba(100, 140, 255, 0.4);
  }

  /* Submenu (Recent, News, Videos) – smaller text */
  .mobile-dropdown .dropdown-menu {
    display: none;
    position: static;
    background: rgba(20, 20, 60, 0.7);
    border: none;
    box-shadow: none;
    margin: 0.3rem 0 0.8rem 2rem;
    padding: 0.3rem 0;
  }

  .mobile-dropdown.active .dropdown-menu {
    display: block;
  }

  .mobile-dropdown .dropdown-menu a {
    font-size: 1.05rem;           /* smaller than main items */
    padding: 0.75rem 2rem;
    text-align: left;
    color: #c0d0ff;
    text-decoration: none;
    display: block;
  }

  .mobile-dropdown .dropdown-menu a:hover {
    background: rgba(90, 130, 255, 0.18);
  }

  .mobile-dropdown > a {
    cursor: pointer;
  }

.main-wrapper {
  padding-top: 20px;
	padding-bottom: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logo */
.logo-section {
  text-align: center;
  margin: 20px 0;
}

.logo-section img {
  max-width: 90%;
  height: auto;
}

/* Card */
.hero-content {
  max-width: 900px;
  margin: 10px auto 0;
  padding: 40px;
  border-radius: 20px;
  background: rgba(15, 18, 40, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(108, 99, 255, 0.3);
  box-shadow:
    0 0 30px rgba(80, 50, 231, 0.2);
}
.content-card {
   max-width: 900px;
  margin: 30px auto;
  padding: 40px;
  border-radius: 20px;
  background: rgba(15, 18, 40, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(108, 99, 255, 0.3);
  box-shadow:
    0 0 30px rgba(80, 50, 231, 0.2);
}
.content-card {
  margin: -80px auto 30px;
}
/* Two-column layout */
.two-column {
	
  max-width: 900px;
  margin: 80px auto;
  padding: 40px;
  border-radius: 20px;
  background: rgba(15, 18, 40, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(108, 99, 255, 0.3);
  box-shadow:
    0 0 30px rgba(80, 50, 231, 0.2);
}
.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.two-column > div {
  flex: 1 1 320px;
}

.image-side img {
  max-width: 245px;
  height: auto;
}

/* Video */
video {
  max-width: 90%;
  height: auto;
  margin: 20px 0;
}

.video-title {
  font-size: 12px;
  margin-top: 30px;
}

.footer-note {
  font-size: 12px;
  margin-top: 30px;
}
/* =========================
   HERO BOOT SEQUENCE
========================= */

.hero-content {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  animation: heroBoot 1.4s ease-out forwards;
}

@keyframes heroBoot {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(60px) scale(0.96);
  }

  60% {
    opacity: 1;
    filter: blur(2px);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}
.hero {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}
.hero-content {
  position: relative;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(108,99,255,0.5),
    transparent
  );
  opacity: 0.4;
  filter: blur(15px);
  animation: glowPulse 6s linear infinite;
  z-index: -1;
}

@keyframes glowPulse {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.hero h1 {
  font-family: "Orbitron", sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;

  text-shadow:
    0 0 5px #6c63ff,
    0 0 15px #6c63ff,
    0 0 35px rgba(108,99,255,0.7);
}
/* slide over */
.hero {
  position: relative;
  top: 0;
  z-index: 1;
}
.content-card {
  position: relative;
  z-index: 5;

  margin: -120px auto 40px; /* adjust depth */
}

@media (max-width: 768px) {

  .hero {
    position: relative;
    top: 0;
  }

  .content-card {
    margin: -140px auto 40px;
  }

}
.content-card {
  box-shadow:
    0 -20px 40px rgba(0,0,0,0.6),
    0 0 30px rgba(80,50,231,0.2);
}
