:root {
  --primary: #f1c40f;
  --bg: #0d1117;
  --bg-alt: #161b22;
  --text: #eaeaea;
} 

:root {
  --speed: 60s; /* speed of scroll */
  --gap: 80px;  /* gap between items */
  --bg: #0f1724;
  --text-color: #ffffff;
  --accent: #00dfd8;
}  

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body,html {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
  transition: background 0.5s, color 0.5s;
}
h1, h2, h3, p { line-height: 1.4; }
h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 1em;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}
section { padding: clamp(50px, 6vw, 80px) 5vw; }
a { text-decoration: none; color: inherit; }

/* ===== NAVBAR ===== */
.navbar {
  background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.logo {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: bold;
  color: var(--primary);
}
.nav-links {
  list-style: none;
  display: flex;
  gap: clamp(15px, 3vw, 25px);
  align-items: center;
  transition: max-height 0.4s ease;
}
.nav-links li a {
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
  box-shadow: 10px 10px 10px rgba(0,0,0,0.2);
}
.nav-links li a:hover, .nav-links li a:focus {
  color: var(--primary);
  outline: none;
}

#icon {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
}

/* ===== THEME TOGGLE ===== */
.theme-toggle {
  background: var(--primary);
  color: #000;
  border: none;
  border-radius: 50%;
  width: 35px; height: 35px;
  display: flex;
  align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform 0.3s;
}
.theme-toggle:hover { transform: rotate(20deg) scale(1.1); }


:root {
  --primary: #f1c40f;
  --text-light: #f8f8f8;
  --bg-dark: #0d1117;
  --bg-light: #161b22;
}

/* === BASE STYLES === */
body{
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* === ABOUT SECTION === */
.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 80px 5%;
  background: var(--bg-light);
  text-align: center;
}

/* TEXT AREA */
.about-content {
  max-width: 650px;
}

.about h2 {
  color: var(--primary);
  font-size: 2.3rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.about h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: var(--primary);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.about p {
  margin-top: 20px;
  opacity: 0.9;
  font-size: 1rem;
}

/* HIGHLIGHTS */
.about-highlights {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.about-highlights div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1rem;
}

.about-highlights i {
  color: var(--primary);
  font-size: 1.2rem;
}


/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
}
.service {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}
.service img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}
.service:hover {
  transform: translateY(-10px);
}

/* Booking Modal */
.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal-content {
  background: #1e1e1e;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 0 20px #00dfd8;
  animation: slideInUp 0.5s ease;
}
.modal-content h3 {
  color: #00dfd8;
  margin-bottom: 20px;
}
.modal-content input,
.modal-content textarea {
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  border-radius: 6px;
  border: none;
  background: #2b2b2b;
  color: #f0f0f0;
}
.modal-content button {
  padding: 12px;
  width: 100%;
  background: #00dfd8;
  border: none;
  font-weight: bold;
  cursor: pointer;
}
.close-btn {
  float: right;
  font-size: 24px;
  color: #aaa;
  cursor: pointer;
}

/* Booking Button */
.book-btn {
  margin-top: 10px;
  padding: 8px 16px;
  background: #f1c40f;
  border: none;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
.book-btn:hover {
  background: #00c2b0;
}


/* === MISSION SECTION === */
.mission-section {
  position: relative;
  width: 100%;
  max-width: 700px;
  height: 180px;
  margin-top: 60px;
}

.mission-card {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease;
  text-align: center;
  padding: 0 10px;
  box-sizing: border-box;
}

.mission-card h3 {
  font-size: 1.7rem;
  color: var(--primary);
  margin-bottom: 0.5em;
}

.mission-card p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0 auto;
  max-width: 600px;
}

/* Animation for smooth infinite swap */
@keyframes fadeSwap {
  0%, 45% {
    opacity: 1;
    transform: translateY(0);
  }
  50%, 100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.mission-card.mission {
  animation: fadeSwap 5s infinite alternate ease-in-out;
}

.mission-card.aims {
  animation: fadeSwap 5s infinite alternate-reverse ease-in-out;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 992px) {
  .about {
    padding: 60px 7%;
  }
  .about img {
    max-width: 380px;
  }
}



#divbod {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
 
}

.slider-container {
  position: relative;
  top: 3em;
  width: 90%;
  max-width: 500px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.slider {
  display: flex;
  transition: transform 0.7s ease-in-out;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
  text-align: center;
  padding: 20px;
}
.slide img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  border-radius: 10px;
}
.slide h3 {
  color: #f1c40f;
  margin-top: 15px;
}
.slide p {
  margin: 5px 0 15px;
  font-size: 1.1rem;
}
.slide button {
  background: #f1c40f;
  color: #000;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.slide button:hover {
  background: #fff;
}

/* Navigation Buttons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #f1c40f;
  color: #000;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  transition: 0.3s;
}
.nav-btn:hover {
  background: #fff;
}
.prev { left: 10px; }
.next { right: 10px; }



/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0d1117 60%, #1a2028), 
              url('electro-bg.jpg') center/cover no-repeat;
  height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(241,196,15,0.2) 0%, transparent 70%);
  z-index: 1;
  animation: glowPulse 5s ease-in-out infinite alternate;
}

.hero h2, .hero p, .cta, .choice-buttons {
  position: relative;
  z-index: 2;
}

.hero h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(241,196,15,0.25);
  animation: fadeInDown 1.5s ease;
}

.hero p {
  font-size: 1.2rem;
  margin: 15px 0 30px;
  color: var(--text-light);
  animation: fadeInUp 1.5s ease;
  opacity: 0.9;
}

/* CTA MAIN BUTTON */
.cta {
  display: inline-block;
  background: var(--primary);
  color: #000;
  padding: 14px 36px;
  border-radius: 40px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  text-decoration: none;
  transition: all 0.4s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(241,196,15,0.3);
}

.cta:hover {
  background: #fff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 20px rgba(255,255,255,0.4);
}

/* CHOICE BUTTONS */
.choice-buttons {
  display: none;
  margin-top: 35px;
  gap: 25px;
  opacity: 0;
  transform: translateY(50px);
  z-index: 2;
}

.choice-buttons.show {
  display: flex;
  animation: slideUp 0.8s ease forwards;
}

.choice-buttons button {
  background: var(--card-bg);
  border: 1px solid rgba(241,196,15,0.4);
  color: #fff;
  padding: 14px 30px;
  border-radius: 35px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: 0.4s;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.choice-buttons button i {
  margin-right: 8px;
  color: var(--primary);
}

.choice-buttons button:hover {
  background: var(--primary);
  color: #000;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(241,196,15,0.35);
}

/* ANIMATIONS */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes glowPulse {
  from { opacity: 0.6; }
  to { opacity: 1; }
}


/* ============================
   📊 Stats Counter Section
============================= */
.stats-section {
  background: #111;
  padding: 70px 30px;
  text-align: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 40px;
}
.stat-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 223, 216, 0.1);
  transition: transform 0.3s ease;
}
.stat-box:hover {
  transform: translateY(-5px);
}
.stat-box .icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #00dfd8;
}
.stat-box h3 {
  font-size: 2rem;
  color: #fff;
}
.stat-box p {
  font-size: 1rem;
  color: #ccc;
}


/* ===== SERVICES ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}


.service {
  background: var(--bg-alt);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  border: 1px solid #f1c40f33;
  transition: transform 0.4s, box-shadow 0.4s;
}
.service:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px #f1c40f44;
}
.service img {
  width: 100%;
  height: clamp(150px, 25vw, 200px);
  object-fit: cover;
  border-radius: 10px;
}

.body {
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Wrapper */
.sponsor-section {
  width: 100vw;
 
  
  /* background: var(--bg); */
  color: var(--text-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.25);
  padding: 1em;
}

.sponsor-header {
  text-align: center;
  font-size: 1.4em;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 1em;
  color: var(--primary);
}

/* Slider Container */
.sponsor-slider {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 140px;
}

/* Moving track */
.sponsor-track {
  display: flex;
  align-items: center;
  gap: var(--gap);
  white-space: nowrap;
  animation: scroll var(--speed) linear infinite;
  will-change: transform;
}


/* Each sponsor block */
.sponsor-item {
  min-width: 200px;
  text-align: center;
  flex-shrink: 0;
}

.sponsor-item h4 {
  font-size: 1.1em;
  margin-bottom: 0.3em;
  color: var(--accent);
}

.sponsor-item p {
  font-size: 0.9em;
  opacity: 0.9;
  line-height: 1.4em;
}

/* Animation */
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); } /* because we’ll duplicate content */
}



 #bod{
      font-family: Arial, sans-serif;
      background: #111;
      margin: 0;
      padding: 0;
      height: auto; /* Extra height for scrolling */
      opacity: 0.8;
    }

    .container {
      max-width: 600px;
      margin: auto; /* Push down for scroll trigger */
      padding: 20px;
      background: #111;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      text-align: center;
      border-radius: 8px;
      flex-direction: column;
    }


    .slide-in {
      opacity: 0;
      transform: translateX(-100px);
      transition: all 0.6s ease-out;
    }

    .slide-in.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .author-img {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      object-fit: cover;
      margin: 20px auto;
    }

    .name, .role, .author-img {
      margin: 20px 0;
    }

    .delay-1 {
      transition-delay: 0.2s;
    }

    .delay-2 {
      transition-delay: 0.4s;
    }

    .delay-3 {
      transition-delay: 0.6s;
    }

     .delay-4 {
      transition-delay: 0.8s;
    }




/* ===== CONTACT ===== */
.contact form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact input, .contact textarea {
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: var(--bg-alt);
  color: #fff;
}
.contact button {
  background: var(--primary);
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.contact button:hover {
  background: #fff;
  color: #000;
}

/* ===== FLOATING BUTTONS ===== */
.floating-btn {
  position: fixed;
  bottom: 80px; right: 20px;
  background: var(--primary);
  color: #000;
  width: 45px; height: 45px;
  display: flex;
  justify-content: center; align-items: center;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 10px #0004;
}
.scroll-top { bottom: 20px; }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 20px; right: 20px;
  background: var(--primary);
  color: #000;
  padding: 10px 20px;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s;
}
.toast.show { opacity: 1; transform: translateY(0); }


   /* ====== Footer Section ====== */
.footer-section {
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  color: #eee;
  padding: 60px 20px 20px;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  position: relative;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

.footer-section.reveal .footer-container {
  opacity: 1;
  transform: translateY(0);
}

.footer-box {
  flex: 1 1 300px;
  min-width: 250px;
}

.footer-box h3 {
  color: #00d4ff;
  margin-bottom: 15px;
  position: relative;
}

.footer-box h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #00d4ff;
  margin-top: 5px;
  transition: width 0.4s ease;
}

.footer-box:hover h3::after {
  width: 80px;
}

.footer-box p {
  color: #ccc;
  line-height: 1.7;
  margin: 6px 0;
}

/* Social Links */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  color: #00d4ff;
  font-size: 22px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
  transform: scale(1.2) rotate(8deg);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  color: #999;
  font-size: 14px;
}



/* ===== ANIMATIONS ===== */
@keyframes glow { from { text-shadow: 0 0 10px var(--primary); } to { text-shadow: 0 0 25px var(--primary); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

@media (max-width: 600px) {
  .slide img {
    height: 200px;
  }
  .slide p { font-size: 1rem; }
}



/* ===== RESPONSIVE ===== */
@media(max-width: 768px){
  
#icon { 
    display: block; 
    cursor: pointer;
    color: var(--text);
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    background: var(--bg-alt);
    top: 65px;
    right: 10px;
    border-radius: 12px;
    padding: 3em 0;
    width: 22em;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.05);

    /* ✅ Hidden state */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;

    /* ✅ Smooth animation */
    transition: max-height 0.35s ease, opacity 0.35s ease;
  }

  /* ✅ When menu is active */
  .nav-links.active {
    max-height: 500px;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li {
    padding: 8px 0;
  }

  .nav-links a {
    color: var(--text);
    display: block;
    padding: 10px 0;
    transition: 0.2s;
    font-weight: 500;
  }

  .nav-links a:hover {
    background: var(--bg);
    color: var(--primary);
  }

  
}