* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9f5e9 100%);
  color: #222;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(0, 68, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 18px 0;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 68, 0, 0.4);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
  background: rgba(0, 51, 0, 0.95);
  box-shadow: 0 6px 30px rgba(0, 68, 0, 0.4);
  padding: 12px 0;
}

/* Container Layout */
.navbar .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== LOGO ===== */
.logo img {
  height: 90px;
  width: auto;
  vertical-align: middle;
  filter: drop-shadow(0 0 12px rgba(144, 255, 144, 0.6));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.logo img:hover {
  transform: scale(1.08) rotate(2deg);
  filter: drop-shadow(0 0 20px rgba(160, 255, 176, 0.9));
}

/* ===== TITLE ===== */
.navbar h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(144, 255, 144, 0.4);
  letter-spacing: 1px;
}

/* ===== NAVBAR ===== */
.navbar {
  background: linear-gradient(135deg, rgba(0, 80, 0, 0.9) 0%, rgba(0, 120, 0, 0.95) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 16px 0;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 15px rgba(0, 68, 0, 0.3);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===== ON SCROLL ===== */
.navbar.scrolled {
  background: rgba(0, 80, 0, 0.92);
  padding: 10px 0;
  box-shadow: 0 6px 25px rgba(0, 68, 0, 0.4);
}

/* ===== CONTAINER ===== */
.navbar .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== LOGO ===== */
.logo img {
  height: 75px;
  width: auto;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.6));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(160, 255, 176, 0.8));
}

/* ===== TITLE ===== */
.navbar h1 {
  font-size: 1.7rem;
  font-weight: 700;
  margin: 0 20px;
  color: #ffffff;
  text-shadow: 0 0 6px rgba(144, 255, 144, 0.4);
  flex: 1;
  text-align: center;
  white-space: nowrap;
}

/* ===== NAV LINKS ===== */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -3px;
  left: 0;
  background: linear-gradient(90deg, #a0ffb0, #00aa44);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: #a0ffb0;
  text-shadow: 0 0 10px rgba(160, 255, 176, 0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .navbar .container {
    flex-direction: column;
    gap: 10px;
  }

  .navbar h1 {
    font-size: 1.4rem;
    margin: 0;
  }

  .logo img {
    height: 65px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}
/* ===== INFO KIT SECTION ===== */
.info-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f6fff6, #e9ffe9);
  text-align: center;
  color: #003300;
}

.info-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #006600;
  text-shadow: 0 0 8px rgba(160, 255, 176, 0.4);
}

.info-section p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.info-btn {
  background: linear-gradient(90deg, #00aa44, #66ff99);
  color: #003300;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.info-btn:hover {
  background: linear-gradient(90deg, #66ff99, #00aa44);
  box-shadow: 0 0 10px rgba(144, 255, 144, 0.6);
}
/* ===== INFO KIT SECTION ===== */
.info-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f6fff6, #e9ffe9);
  text-align: center;
  color: #003300;
}

.info-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #006600;
  text-shadow: 0 0 8px rgba(160, 255, 176, 0.4);
}

.info-section p {
  max-width: 700px;
  margin: 0 auto 20px;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Event Timings */
.event-timings {
  margin: 25px auto;
  font-size: 1.05rem;
  color: #004d00;
  background: rgba(160, 255, 176, 0.2);
  display: inline-block;
  padding: 15px 25px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(160, 255, 176, 0.3);
}

/* QR Code */
.qr-section {
  margin: 35px 0;
}

.qr-section img {
  width: 160px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 100, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qr-section img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(160, 255, 176, 0.6);
}

.qr-section p {
  margin-top: 10px;
  font-size: 1rem;
  color: #004d00;
}

/* Download Button */
.info-btn {
  background: linear-gradient(90deg, #00aa44, #66ff99);
  color: #003300;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 20px;
}

.info-btn:hover {
  background: linear-gradient(90deg, #66ff99, #00aa44);
  box-shadow: 0 0 10px rgba(144, 255, 144, 0.6);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: #004400; /* Solid fallback color if video/poster fails */
  height: 100vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: heroFadeIn 1s ease-out;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Video Background Styling */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.6) contrast(1.1) saturate(1.2); /* Enhanced for vibrancy */
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 60, 0, 0.6), rgba(0, 100, 0, 0.4)); /* More dynamic overlay */
  z-index: 1;
}

.hero-content {
  z-index: 2;
  position: relative;
  max-width: 700px;
  padding: 20px;
  animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* Deeper shadow for pop */
  background: linear-gradient(135deg, #fff, #a0ffb0); /* Gradient text for appeal */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .date {
  font-size: 1.2rem;
  color: #b4ffb4;
  margin-top: 10px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  font-weight: 400;
}

.hero .highlight {
  color: #ffea00;
  font-size: 1.8rem;
  margin-top: 20px;
  font-weight: 600;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  animation: glow 2s ease-in-out infinite alternate; /* Subtle glow animation */
}

@keyframes glow {
  from { text-shadow: 1px 1px 4px rgba(255, 234, 0, 0.5); }
  to { text-shadow: 1px 1px 10px rgba(255, 234, 0, 0.8), 0 0 20px rgba(255, 234, 0, 0.3); }
}

.deadline {
  margin-top: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, #90ee90 0%, #00aa44 100%);
  color: #003300;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(144, 238, 144, 0.4);
  position: relative;
  overflow: hidden;
  border: none;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  background: linear-gradient(135deg, #00aa44 0%, #008000 100%);
  color: white;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 170, 68, 0.5), 0 0 20px rgba(144, 238, 144, 0.3); /* Added glow for appeal */
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 20px;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, rgba(233, 245, 233, 0.8) 0%, rgba(248, 249, 250, 0.9) 100%); /* Subtle background gradient for depth */
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #004400, transparent);
  box-shadow: 0 1px 3px rgba(0, 68, 0, 0.1); /* Soft shadow on divider */
}

.section h2 {
  color: #004400;
  font-size: 2.2rem;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  text-shadow: 1px 1px 3px rgba(0, 68, 0, 0.2); /* Subtle text shadow */
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(135deg, #90ee90, #00aa44);
  border-radius: 2px;
  box-shadow: 0 2px 5px rgba(144, 238, 144, 0.4); /* Glow on underline */
}

.section h3 {
  color: #004400;
  font-size: 1.5rem;
  margin: 40px 0 20px;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 68, 0, 0.1);
}

.section p {
  max-width: 800px;
  margin: 15px auto;
  font-size: 1.1rem;
  color: #333;
  transition: color 0.3s ease;
}

.section p:hover {
  color: #004400; /* Subtle color shift on hover for interactivity */
}

.theme .reasons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.theme .reason {
  background: linear-gradient(135deg, #e9fbe9 0%, #d4f4d4 100%);
  color: #004400;
  padding: 15px 25px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 68, 0, 0.1);
  transition: all 0.3s ease;
  min-width: 150px;
  transform: translateY(0);
  border: 1px solid rgba(144, 238, 144, 0.3); /* Subtle border for definition */
  position: relative;
  overflow: hidden;
}

.theme .reason::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(144, 238, 144, 0.2), transparent);
  transition: left 0.5s;
}

.theme .reason:hover::before {
  left: 100%;
}

.theme .reason:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 68, 0, 0.2), 0 0 15px rgba(144, 238, 144, 0.3); /* Enhanced glow */
  background: linear-gradient(135deg, #d4f4d4 0%, #c8e6c8 100%);
}

.register .highlight {
  color: #d62828;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(214, 40, 40, 0.3);
  animation: pulse 2s infinite; /* Gentle pulse for urgency */
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ===== PARTNERS ===== */
.partners .logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
  margin: 40px 0;
}

.partners img {
  width: 150px;
  height: auto;
  filter: grayscale(0%) brightness(1);
  transition: all 0.3s ease;
  opacity: 0.9;
  border-radius: 10px; /* Soft corners for modern look */
  box-shadow: 0 4px 10px rgba(0, 68, 0, 0.1); /* Subtle shadow */
}

.partners img:hover {
  filter: grayscale(0%) brightness(1.1) saturate(1.1);
  transform: scale(1.05) rotate(2deg); /* Fun hover with slight rotation */
  opacity: 1;
  box-shadow: 0 8px 20px rgba(0, 68, 0, 0.2), 0 0 15px rgba(144, 238, 144, 0.3); /* Glow effect */
}

.partners h3 {
  color: #004400;
  font-size: 1.5rem;
  margin: 30px 0 20px;
  text-shadow: 1px 1px 2px rgba(0, 68, 0, 0.1);
}

/* ===== TEAM SECTION ===== */
.team-members {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
}

.member {
  background: linear-gradient(135deg, #e9f5e9 0%, #d4f4d4 100%); /* Gradient background for appeal */
  border-radius: 15px;
  padding: 20px;
  width: 180px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 68, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid rgba(144, 238, 144, 0.3); /* Enhanced border */
  position: relative;
  overflow: hidden;
}

.member::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(144, 238, 144, 0.2), transparent);
  transition: left 0.5s;
}

.member:hover::before {
  left: 100%;
}

.member:hover {
  transform: translateY(-8px) scale(1.03); /* More pronounced lift */
  box-shadow: 0 10px 30px rgba(0, 68, 0, 0.2), 0 0 20px rgba(144, 238, 144, 0.4); /* Stronger glow */
  border-color: #00aa44;
}

.member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  border: 3px solid #00aa44;
  transition: all 0.3s ease;
}

.member:hover img {
  border-color: #008000;
  box-shadow: 0 0 15px rgba(0, 170, 68, 0.5); /* Image glow on hover */
}

.member h4 {
  color: #004400;
  font-size: 1rem;
  margin-bottom: 5px;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 68, 0, 0.1);
}

.member p {
  font-size: 0.9rem;
  color: #222;
  line-height: 1.4;
  font-weight: 500;
}
.team-members {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.member {
  background: #e9f5e9;
  border-radius: 20px;
  padding: 25px;
  width: 260px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 68, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 68, 0, 0.2);
}

.member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #00aa44;
  margin-bottom: 10px;
}

.member h4 {
  font-size: 1.1rem;
  color: #004400;
  margin-bottom: 5px;
}

.member p {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.5;
  margin: 3px 0;
}

.member .role {
  color: #006600;
  font-weight: 600;
  margin-top: 5px;
}

.member .desc {
  font-size: 0.85rem;
  color: #444;
  margin-bottom: 8px;
}

.member a {
  color: #007a33;
  text-decoration: none;
  font-size: 0.9rem;
  word-break: break-word;
}

.member a:hover {
  text-decoration: underline;
}

.member i {
  margin-right: 5px;
}

@media (max-width: 768px) {
  .team-members {
    flex-direction: column;
    align-items: center;
  }
  .member {
    width: 90%;
  }
}
/* ===== LOGISTICS SPONSORS ===== */
.logistics .marquee-logos {
  display: inline-flex;
  align-items: center;
  gap: 100px; /* Increased spacing between logos */
  padding: 10px 0;
}

.logistics img {
  width: 150px; /* slightly larger for better visibility */
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 68, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logistics img:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 68, 0, 0.2);
}

.logistics .note {
  margin-top: 25px;
  font-size: 1rem;
  color: #004400;
  font-weight: 500;
}


footer {
  background: linear-gradient(135deg, #003300 0%, #001a00 100%);
  color: #e8ffe8;
  padding: 50px 20px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
  flex-wrap: wrap;
}

.contact-info h3,
.map-container h3 {
  color: #a0ffb0;
  font-size: 1.6rem;
  font-weight: 700;
  text-shadow: 0 0 12px #a0ffb0;
  margin-bottom: 20px;
  text-align: center;
}

.contact-info {
  max-width: 400px;
  text-align: left;
}

.contact-person {
  margin-bottom: 20px;
  color: #e0ffe0;
  line-height: 1.7;
  font-size: 1rem;
}

.contact-person strong {
  color: #fff;
  font-weight: 600;
}

.icon {
  color: #ff69b4;
  margin-right: 8px;
}

.map-container {
  max-width: 450px;
  text-align: center;
}

.map-container iframe {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(160, 255, 176, 0.3);
}

.map-container p {
  color: #80ff80;
  margin-top: 10px;
  font-size: 1rem;
}

.copyright {
  margin-top: 30px;
  color: #ffffff !important; /* pure white, forced */
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.9),
               0 0 20px rgba(255, 255, 255, 0.6);
}


@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-info, .map-container {
    max-width: 90%;
    text-align: center;
  }
}
