:root {
  --neon-blue: #38bdf8;
  --neon-purple: #a855f7;
  --bg-dark: #020617;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg-dark);
  color: white;
  font-family: 'Rajdhani', sans-serif;
}

/* ===== HEADER ===== */
.cyber-header {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(56,189,248,0.08),
    rgba(168,85,247,0.08)
  );
  border-bottom: 2px solid var(--neon-blue);
  padding-bottom: 40px;
  animation: introFade 1.5s ease forwards;
  opacity: 0;
  overflow: hidden;
}

/* Scanline */
.cyber-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    transparent,
    rgba(56,189,248,0.12),
    transparent
  );
  animation: scan 4s linear infinite;
  pointer-events: none;
}

/* ===== NAV ===== */
nav {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.nav__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  color: var(--neon-blue);
  text-decoration: none;
  text-shadow: 0 0 10px var(--neon-blue);
}

.nav__logo span {
  color: var(--neon-purple);
}

/* ===== HAMBURGER ===== */
.nav__toggle {
  display: block;
  cursor: pointer;
}

.bar1, .bar2, .bar3 {
  width: 25px;
  height: 3px;
  background: var(--neon-blue);
  margin: 5px 0;
  transition: 0.4s;
}

.change .bar1 { transform: rotate(-45deg) translate(-5px, 6px); }
.change .bar2 { opacity: 0; }
.change .bar3 { transform: rotate(45deg) translate(-5px, -6px); }

/* ===== MENU BASE ===== */
.nav__menu {
  display: none;
}

.nav__menu.show {
  display: block;
}

.nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ===== LINKS ===== */
.nav__link {
  display: block;
  padding: 12px;
  color: #e5e7eb;
  text-decoration: none;
  letter-spacing: 2px;
}

.nav__link:hover {
  color: var(--neon-blue);
  text-shadow: 0 0 8px var(--neon-blue);
}

/* ===== DROPDOWNS ===== */
.dropdown__menu,
.dropdown__submenu {
  display: none;
  list-style: none;
  padding-left: 15px;
}

.dropdown__item:hover > .dropdown__menu,
.dropdown__subitem:hover > .dropdown__submenu {
  display: block;
}

.dropdown__link,
.dropdown__sublink {
  display: block;
  padding: 10px;
  color: #cbd5f5;
  text-decoration: none;
}


.dropdown__link:hover,
.dropdown__sublink:hover {
  color: var(--neon-purple);
  text-shadow: 0 0 6px var(--neon-purple);
}

/* ===== DESKTOP VIEW ===== */
@media (min-width: 768px) {

  .nav__toggle {
    display: none;
  }

  /* 🔥 KEY FIX */
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav__menu {
    display: block;
  }

  .nav__list {
    display: flex;
    gap: 24px;
    align-items: center;
  }

  .nav__link {
    padding: 8px 0;
  }

  /* Dropdown positioning */
  .dropdown__item {
    position: relative;
  }

  .dropdown__menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #020617;
    border: 1px solid var(--neon-blue);
    min-width: 220px;
    padding: 10px 0;
    z-index: 10;
  }

  .dropdown__submenu {
    position: absolute;
    left: 100%;
    top: 0;
    background: #020617;
    border: 1px solid var(--neon-purple);
    min-width: 220px;
  }

.dropdown__submenu {margin-top: 100px;}
}


/* ===== BANNER TEXT ===== */
.logo-main {
  margin-top: 40px;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 6px;
  color: var(--neon-blue);
  text-shadow: 0 0 15px var(--neon-blue);
  transition: 0.4s;
}

.logo-sub,
.logo-year {
  text-align: center;
  letter-spacing: 4px;
  margin-top: 10px;
}

.logo-year {
  color: var(--neon-purple);
}


.cyber-header:hover .logo-main {
  text-shadow:
    0 0 20px var(--neon-blue),
    0 0 50px var(--neon-purple);
  transform: scale(1.05);
}




/* ===== ANIMATION ===== */
@keyframes introFade {
  from { opacity: 0; transform: translateY(-25px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scan {
  from { transform: translateY(-100%); }
  to { transform: translateY(100%); }
}



    .quote-section {
      height: 25vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 40px;
    }

    .quote {
      max-width: 900px;
      font-size: 1.5rem;
      line-height: 1.6;
      opacity: 0;
      transition: opacity 1.5s ease-in-out;
    }

    .quote.show {
      opacity: 1;
    }

    .author {
      display: block;
      margin-top: 20px;
      font-size: 1.1rem;
      color: #93c5fd;
    }
    
    
    
    








/* =============== ABOUT SECTION =============== */
.about {
  padding: 4rem 1rem;
  background-color: #ffffff;
}

.about__container {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about__image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.about__content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #292943;
}

.about__content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 1rem;
}







    
    
    
    
    
    
    
    
.contact-section {
  padding: 80px 20px;
  max-width: 1100px;
  margin: auto;
    background-color: #e7e7e7;
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;

}

form {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
}

input, textarea {
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 5px;
  border: none;
}

button {
  padding: 12px;
  background: #2563eb;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background: #1d4ed8;
}

.map {
  flex: 1;
  min-width: 280px;
  height: 350px;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
}

#status {
  margin-top: 10px;
  color: #93c5fd;
}







.footer {
  background-color: #000;
  color: #fff;
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
}

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

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #1d4ed8; /* Blue hover */
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a img {
  width: 24px;
  height: 24px;
  filter: invert(100%);
  transition: filter 0.3s;
}

.social-icons a:hover img {
  filter: invert(55%) sepia(100%) saturate(500%) hue-rotate(200deg);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #777;
}

/* Responsive: stack columns on small screens */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 20px;
  }
}
















    article {
        background-color: #0f172a; /* Slightly lighter dark */
        padding: 20px;
        margin-top: 25px;
        border-radius: 12px;
        box-shadow: 0 0 15px rgba(0,0,0,0.4);
        border-left: 5px solid #38bdf8;
    }

    pre {
        background-color: #767676;
        padding: 15px;
        border-radius: 8px;
        color: white;
        overflow-x: auto;
    }

