/* ---------------- GLOBAL ---------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: Poppins, Arial, sans-serif;
  background-color: #0b0b0b;
  background-image:
    radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  color: #fff;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
section { padding: 90px 10%; }

/* ---------------- CUSTOM CURSOR ---------------- */
.cursor-dot, .cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 10000;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: #ff7a00;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 40px; height: 40px;
  border: 2px solid rgba(255,122,0,0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* ---------------- NAVBAR ---------------- */
nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  padding: 18px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
  transition: 0.4s;
}
nav.scrolled {
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(8px);
}

/* LOGO */
.logo {
  background: rgba(255,255,255,0.06);
  padding: 14px 22px;
  border-radius: 16px;
}
.logo img {
  height: 90px;
  filter:
    drop-shadow(0 0 10px rgba(255,120,0,0.7))
    drop-shadow(0 0 18px rgba(0,140,255,0.6));
  animation: logoFloat 4s ease-in-out infinite;
}

/* MENU */
.menu {
  display: flex;
  gap: 26px;
}
.menu a {
  position: relative;
  font-weight: 500;
}
.menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -6px;
  background: linear-gradient(90deg,#ff7a00,#008cff);
  transition: 0.4s;
}
.menu a:hover::after { width: 100%; }

/* CTA */
.menu li:last-child a {
  background: linear-gradient(90deg,#ff7a00,#008cff);
  padding: 8px 18px;
  border-radius: 20px;
}

/* RIGHT LOGOS */
.right-area {
  display: flex;
  align-items: center;
  gap: 14px;
}
.right-logos {
  display: flex;
  gap: 10px;
  padding: 10px;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
}
.right-logos img {
  height: 55px;
  background: rgba(255,255,255,0.9);
  padding: 6px 10px;
  border-radius: 10px;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 12px;
}
.social-icons a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}
.social-icons a:hover {
  transform: translateY(-4px) scale(1.1);
}

/* ---------------- SLIDER ---------------- */
header {
  height: 100vh;
}
.slider, .slide {
  height: 100vh;
}
.slide {
  position: absolute;
  width: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: 1s;
}
.slide.active { opacity: 1; }
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.slide-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.slide-content h1 {
  font-size: 60px;
  animation: fadeUp 1.2s ease;
}
.slide-content p {
  margin: 20px 0;
  font-size: 20px;
}
.btn {
  padding: 14px 30px;
  background: #ff7a00;
  border-radius: 30px;
  font-weight: bold;
}

/* ---------------- SECTIONS ---------------- */
h2 { font-size: 40px; text-align: center; margin-bottom: 30px; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 30px;
}
.card {
  background: rgba(255,255,255,0.08);
  padding: 30px;
  border-radius: 18px;
  text-align: center;
}

/* ---------------- FOOTER ---------------- */
footer {
  background: #000;
  text-align: center;
  padding: 30px;
}

/* ---------------- ANIMATIONS ---------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes logoFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
/**************************************/
.sponsor-slider {
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  padding: 30px 0;
}

.sponsor-track {
  display: flex;
  gap: 60px;
  animation: scrollSponsors 20s linear infinite;
}

.sponsor-track img {
  height: 60px;
  background: white;
  padding: 10px;
  border-radius: 10px;
}

@keyframes scrollSponsors {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 14px;
  cursor: pointer;
}

#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
}
/****************About Us*********************/
.about-section {
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.about-container {
  max-width: 1200px;
  margin: auto;
}

.about-section h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 30px;
}

.about-section h2 span {
  background: linear-gradient(90deg,#ff7a00,#008cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-main {
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.about-section p {
  opacity: 0.9;
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-highlight {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-top: 25px;
  color: #ff7a00;
}

.about-taglines {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 30px;
}

/* ================= TAGLINE BLOCK – INNOVATIVE ================= */

.tagline-block {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.02)
  );
  border-radius: 22px;
  padding: 34px 30px;
  backdrop-filter: blur(10px);
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(.23,1,.32,1);
}

/* Animated Neon Border */
.tagline-block::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1.5px;
  background: linear-gradient(
    120deg,
    transparent,
    #ff7a00,
    #008cff,
    transparent
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderFlow 6s linear infinite;
}

/* Soft Glow Layer */
.tagline-block::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle,
    rgba(0,140,255,0.15),
    transparent 60%
  );
  opacity: 0;
  transition: 0.6s;
}

/* Hover Lift + Energy */
.tagline-block:hover {
  transform: translateY(-12px) rotateX(6deg);
}

.tagline-block:hover::after {
  opacity: 1;
}

/* Floating Glow Border */
.glow-border {
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  background: linear-gradient(90deg,#ff7a00,#008cff,#ff7a00);
  opacity: 0.15;
  filter: blur(18px);
  animation: glowMove 5s linear infinite;
  z-index: -1;
}

/* Heading Animation */
.tagline-block h3 {
  position: relative;
  font-size: 21px;
  margin-bottom: 18px;
  background: linear-gradient(90deg,#ff7a00,#008cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textReveal 1s ease forwards;
}

/* Tagline List */
.tagline-block li {
  margin-bottom: 12px;
  font-style: italic;
  opacity: 0.85;
  transform: translateY(12px);
  animation: fadeUpTagline 0.8s ease forwards;
}

.tagline-block li:nth-child(1){ animation-delay: 0.2s }
.tagline-block li:nth-child(2){ animation-delay: 0.4s }
.tagline-block li:nth-child(3){ animation-delay: 0.6s }

/* ================= ANIMATIONS ================= */

@keyframes borderFlow {
  0% { background-position: 0% }
  100% { background-position: 300% }
}

@keyframes glowMove {
  from { transform: rotate(0deg) }
  to { transform: rotate(360deg) }
}

@keyframes fadeUpTagline {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes textReveal {
  from {
    letter-spacing: 6px;
    opacity: 0;
  }
  to {
    letter-spacing: 1px;
    opacity: 1;
  }
}
/*******************Slider*********************/
/* ========== SLIDER UPGRADE ========== */

.slider {
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.2s ease, transform 6s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.3)
  );
}

.slide-content {
  position: relative;
  z-index: 2;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* TEXT ANIMATION */
.slide-content h1 {
  font-size: 60px;
  opacity: 0;
  transform: translateY(40px);
  animation: slideText 1.2s ease forwards;
}

.slide.active .slide-content h1 {
  animation-delay: 0.3s;
}

.slide-content p {
  font-size: 22px;
  margin: 20px 0;
  opacity: 0;
  transform: translateY(30px);
  animation: slideText 1.2s ease forwards;
  animation-delay: 0.6s;
}

.slide-content .btn {
  opacity: 0;
  transform: translateY(20px);
  animation: slideText 1.2s ease forwards;
  animation-delay: 0.9s;
}

/* DOTS */
.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: 0.4s;
}

.slider-dots span.active {
  background: linear-gradient(90deg,#ff7a00,#008cff);
  transform: scale(1.3);
}

/* TEXT KEYFRAME */
@keyframes slideText {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media(max-width:768px){
  .slide-content h1 { font-size: 36px; }
  .slide-content p { font-size: 18px; }
}
/* ================= FLOATING SOCIAL ================= */

.floating-social {
  position: fixed;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.floating-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  transition: all 0.4s cubic-bezier(.23,1,.32,1);
  position: relative;
}

/* Hover lift + glow */
.floating-social a:hover {
  transform: translateX(-8px) scale(1.15);
}

/* BRAND COLORS + GLOW */
.floating-social .fb:hover {
  background: #1877f2;
  box-shadow: 0 0 18px rgba(24,119,242,0.9);
}

.floating-social .ig:hover {
  background: radial-gradient(circle at 30% 110%, #fdf497, #fd5949, #d6249f, #285AEB);
  box-shadow: 0 0 18px rgba(214,36,159,0.9);
}

.floating-social .yt:hover {
  background: #ff0000;
  box-shadow: 0 0 18px rgba(255,0,0,0.9);
}

.floating-social .tw:hover {
  background: #000;
  box-shadow: 0 0 18px rgba(255,255,255,0.8);
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .floating-social {
    top: auto;
    bottom: 16px;
    right: 50%;
    transform: translateX(50%);
    flex-direction: row;
    background: rgba(0,0,0,0.7);
    padding: 10px 16px;
    border-radius: 30px;
  }

  .floating-social a:hover {
    transform: translateY(-6px) scale(1.1);
  }
}
.floating-social a::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}
/* ================= PARTICIPANT CORNER ================= */

.participant-section {
  padding: 120px 10%;
  position: relative;
}

.participant-wrapper {
  display: flex;
  justify-content: center;
}

.participant-highlight {
  position: relative;
  max-width: 1100px;
  width: 100%;
  padding: 70px 60px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.1),
    rgba(255,255,255,0.03)
  );
  backdrop-filter: blur(12px);
  overflow: hidden;
  text-align: center;
  transform: translateY(60px);
  opacity: 0;
  transition: 1s cubic-bezier(.23,1,.32,1);
}

/* Scroll reveal */
.participant-highlight.active {
  transform: translateY(0);
  opacity: 1;
}

/* Animated Glow */
.participant-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle,
    rgba(255,122,0,0.18),
    rgba(0,140,255,0.12),
    transparent 65%
  );
  animation: glowRotate 10s linear infinite;
  z-index: -1;
}

/* Headings */
.participant-highlight h2 {
  font-size: 44px;
  margin-bottom: 12px;
  background: linear-gradient(90deg,#ff7a00,#008cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.participant-sub {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 50px;
}

/* Feature Boxes */
.participant-features {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 30px;
}

.p-box {
  background: rgba(0,0,0,0.35);
  padding: 28px 22px;
  border-radius: 20px;
  transition: all 0.6s cubic-bezier(.23,1,.32,1);
  transform: translateY(30px);
  opacity: 0;
}

/* stagger animation */
.participant-highlight.active .p-box {
  transform: translateY(0);
  opacity: 1;
}

.participant-highlight.active .p-box:nth-child(1){ transition-delay: .2s }
.participant-highlight.active .p-box:nth-child(2){ transition-delay: .35s }
.participant-highlight.active .p-box:nth-child(3){ transition-delay: .5s }
.participant-highlight.active .p-box:nth-child(4){ transition-delay: .65s }

.p-box i {
  font-size: 34px;
  margin-bottom: 14px;
  color: #ff7a00;
}

.p-box h4 {
  margin-bottom: 10px;
}

.p-box p {
  font-size: 14px;
  opacity: 0.85;
}

/* Hover Effect */
.p-box:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 18px 50px rgba(0,0,0,0.6);
}

/* CTA */
.participant-cta {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(90deg,#ff7a00,#008cff);
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.4);
  padding: 14px 30px;
  border-radius: 30px;
}

/* Mobile */
@media(max-width:768px){
  .participant-highlight {
    padding: 50px 25px;
  }
  .participant-highlight h2 {
    font-size: 34px;
  }
}
/* ================= JUDGES SECTION ================= */

.judges-section {
  padding: 120px 10%;
  background:
    radial-gradient(circle at top, rgba(0,140,255,0.12), transparent 60%);
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 42px;
  text-align: center;
  margin-bottom: 12px;
}

.section-title span {
  background: linear-gradient(90deg,#ff7a00,#008cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub {
  text-align: center;
  opacity: 0.85;
  margin-bottom: 70px;
}

/* Grid */
.judges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 40px;
}

/* Judge Card */
.judge-card {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.02)
  );
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  overflow: hidden;
  transform: translateY(50px);
  opacity: 0;
  transition: 0.9s cubic-bezier(.23,1,.32,1);
}

/* Scroll reveal */
.judge-card.active {
  transform: translateY(0);
  opacity: 1;
}

/* Image */
.judge-card img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.2);
  margin-bottom: 18px;
  z-index: 2;
  position: relative;
}

/* Glow */
.judge-glow {
  position: absolute;
  inset: -50%;
  background: radial-gradient(
    circle,
    rgba(255,122,0,0.18),
    rgba(0,140,255,0.12),
    transparent 60%
  );
  opacity: 0;
  transition: 0.6s;
}

/* Hover Authority Effect */
.judge-card:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}

.judge-card:hover .judge-glow {
  opacity: 1;
}

.judge-card h4 {
  margin-bottom: 6px;
  font-size: 20px;
}

.judge-card p {
  font-size: 14px;
  opacity: 0.8;
}

/* Mobile */
@media(max-width:768px){
  .section-title {
    font-size: 34px;
  }
}

/*******************Sponsor*********************/
/* ================= SPONSORS PREMIUM ================= */

.sponsor-premium {
  padding: 130px 8%;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(255,122,0,0.12), transparent 55%);
}

/* Marquee Container */
.sponsor-marquee {
  margin-top: 70px;
  overflow: hidden;
  position: relative;
}

/* Track */
.sponsor-track {
  display: flex;
  gap: 50px;
  animation: sponsorScroll 25s linear infinite;
}

/* Sponsor Card */
.sponsor-card {
  position: relative;
  min-width: 220px;
  height: 130px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.14),
    rgba(255,255,255,0.04)
  );
  backdrop-filter: blur(12px);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.6s cubic-bezier(.23,1,.32,1);
  overflow: hidden;
}

/* Logo */
.sponsor-card img {
  max-height: 70px;
  max-width: 80%;
  filter: brightness(1.1);
  z-index: 2;
}

/* Glow */
.sponsor-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle,
    rgba(0,140,255,0.18),
    rgba(255,122,0,0.18),
    transparent 65%
  );
  opacity: 0;
  transition: 0.6s;
}

/* Hover Spotlight */
.sponsor-card:hover {
  transform: scale(1.12);
  box-shadow: 0 25px 60px rgba(0,0,0,0.7);
}

.sponsor-card:hover .sponsor-glow {
  opacity: 1;
}

/* Pause on Hover */
.sponsor-marquee:hover .sponsor-track {
  animation-play-state: paused;
}

/* Animation */
@keyframes sponsorScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Mobile */
@media(max-width:768px){
  .sponsor-card {
    min-width: 180px;
    height: 110px;
  }
}
/*******************Gallery*********************/
/* ================= GALLERY CINEMATIC ================= */

.gallery-cinematic {
  padding: 130px 8%;
  position: relative;
}

.gallery-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-auto-rows: 220px;
  gap: 24px;
}

/* Items */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  transform: translateY(50px);
  opacity: 0;
  transition: 0.9s cubic-bezier(.23,1,.32,1);
}

/* Size variants */
.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

/* Image */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s cubic-bezier(.23,1,.32,1);
}

/* Hover Effect */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65),
    transparent 60%
  );
  opacity: 0;
  transition: 0.6s;
}

.gallery-item:hover img {
  transform: scale(1.12);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Reveal */
.gallery-item.active {
  transform: translateY(0);
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
  z-index: 9999;
}

.lightbox.show {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}

.lightbox .close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  cursor: pointer;
}

/* Mobile */
@media(max-width: 992px){
  .gallery-grid {
    grid-template-columns: repeat(2,1fr);
  }
}
@media(max-width: 576px){
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= Event Update ================= */
/* ================= EVENT UPDATE EDITORIAL ================= */

.event-update-editorial {
  padding: 140px 8%;
  position: relative;
}

.update-title {
  text-align: center;
  margin-bottom: 70px;
}

.update-title h2 {
  font-size: 42px;
}

.update-title span {
  background: linear-gradient(90deg,#ff7a00,#008cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.update-title p {
  margin-top: 10px;
  opacity: 0.7;
}

/* Layout */
.update-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  max-width: 1000px;
  margin: auto;
}

/* Feature Card */
.update-feature {
  position: relative;
  padding: 50px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.15),
    rgba(255,255,255,0.04)
  );
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.7);
  transform: translateY(60px);
  opacity: 0;
  transition: 1s cubic-bezier(.23,1,.32,1);
}

.update-feature.active {
  transform: translateY(0);
  opacity: 1;
}

.badge-live {
  display: inline-block;
  padding: 6px 14px;
  font-size: 11px;
  letter-spacing: 1px;
  border-radius: 30px;
  background: #ff7a00;
  color: #000;
  margin-bottom: 18px;
}

.update-feature h3 {
  font-size: 28px;
  margin-bottom: 14px;
}

.update-feature p {
  line-height: 1.8;
  opacity: 0.85;
}

.update-feature .date {
  display: block;
  margin-top: 20px;
  font-size: 13px;
  opacity: 0.6;
}

/* Update List */
.update-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.update-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transform: translateX(40px);
  opacity: 0;
  transition: 0.8s cubic-bezier(.23,1,.32,1);
}

.update-row.active {
  transform: translateX(0);
  opacity: 1;
}

.update-row .dot {
  width: 10px;
  height: 10px;
  background: #008cff;
  border-radius: 50%;
  margin-top: 6px;
}

.update-row h4 {
  font-size: 18px;
  margin-bottom: 4px;
}

.update-row p {
  font-size: 14px;
  opacity: 0.75;
}

.update-row.upcoming .dot {
  background: transparent;
  border: 2px dashed #008cff;
}

/* Mobile */
@media(max-width: 992px){
  .update-layout {
    grid-template-columns: 1fr;
  }
}
@media(max-width: 576px){
  .update-feature {
    padding: 30px;
  }
  .update-feature h3 {
    font-size: 22px;
  }
}
/* ================= Drop your Question ================= */
/* ================= QUERY SECTION ================= */

.query-section {
  padding: 140px 8%;
  position: relative;
}

.query-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  max-width: 1100px;
  margin: auto;
}

/* Content */
.query-content h2 {
  font-size: 44px;
  margin-bottom: 18px;
}

.query-content span {
  background: linear-gradient(90deg,#ff7a00,#008cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.query-content p {
  opacity: 0.8;
  line-height: 1.7;
}

.query-points {
  margin-top: 30px;
}

.query-points li {
  margin-bottom: 12px;
  font-size: 15px;
  opacity: 0.85;
}

/* Form */
.query-form {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.14),
    rgba(255,255,255,0.04)
  );
  padding: 50px;
  border-radius: 28px;
  backdrop-filter: blur(14px);
  transform: translateY(60px);
  opacity: 0;
  transition: 1s cubic-bezier(.23,1,.32,1);
}

.query-form.active {
  transform: translateY(0);
  opacity: 1;
}

.field {
  position: relative;
  margin-bottom: 30px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 12px;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  outline: none;
  font-size: 15px;
}

.field textarea {
  resize: none;
  height: 100px;
}

.field label {
  position: absolute;
  left: 0;
  top: 14px;
  font-size: 14px;
  pointer-events: none;
  opacity: 0.6;
  transition: 0.3s;
}

/* Floating label */
.field input:focus + label,
.field textarea:focus + label,
.field input:valid + label,
.field textarea:valid + label {
  top: -10px;
  font-size: 12px;
  color: #008cff;
}

/* Button */
.query-form button {
  width: 100%;
  padding: 14px;
  border-radius: 40px;
  border: none;
  font-size: 15px;
  cursor: pointer;
  background: linear-gradient(90deg,#ff7a00,#008cff);
  color: #000;
  transition: 0.4s;
}

.query-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

/* Mobile */
@media(max-width: 992px){
  .query-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
  .query-form {
    margin-top: 50px;
  }
  /* ================= FOOTER ================= */

.site-footer {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.95),
    rgba(0,0,0,1)
  );
  padding: 100px 8% 30px;
  position: relative;
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1.3fr repeat(3,1fr);
  gap: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 60px;
}

/* Brand */
.footer-col.brand img {
  max-width: 160px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 20px rgba(255,122,0,0.5));
}

.footer-col.brand p {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.7;
}

/* Headings */
.footer-col h4 {
  margin-bottom: 20px;
  font-size: 18px;
}

/* Links */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #fff;
  opacity: 0.7;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  opacity: 1;
  color: #ff7a00;
}

/* Contact */
.contact-list li {
  font-size: 14px;
  opacity: 0.8;
}

/* Social */
.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  color: #fff;
  transition: 0.4s;
}

.footer-social a:hover {
  background: linear-gradient(90deg,#ff7a00,#008cff);
  color: #000;
  transform: translateY(-4px);
}

/* Bottom */
.footer-bottom {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
  opacity: 0.6;
}

/* Mobile */
@media(max-width: 992px){
  .footer-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
/***************Menu Animation*******************/
/* ================= MENU ANIMATION ================= */
/* ---------- GLASS MENU ---------- */
.glass-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 14px 22px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 12px 35px rgba(0,0,0,0.5);
}

/* MENU LINKS */
.glass-menu li a {
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

/* UNDERLINE ANIMATION */
.glass-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff7a00, #008cff);
  transition: width 0.4s ease;
}

.glass-menu li a:hover::after {
  width: 100%;
}

/* HOVER COLOR */
.glass-menu li a:hover {
  color: #ff7a00;
}

/* CTA BUTTON */
.glass-menu .cta a {
  padding: 10px 18px;
  border-radius: 30px;
  background: linear-gradient(90deg, #ff7a00, #ff4b2b);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(255,75,43,0.6);
}

.glass-menu .cta a:hover {
  color: #fff;
  transform: scale(1.05);
}

nav.scrolled .glass-menu {
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(14px);
}
@media (max-width: 1024px) {
  .glass-menu {
    gap: 18px;
    padding: 12px 18px;
  }

  .glass-menu li a {
    font-size: 14px;
  }
}

@media (max-width: 768px) {

  .hamburger {
    display: flex;
  }

  .glass-menu {
    display: flex;                 /* IMPORTANT */
    position: absolute;
    top: 85px;
    left: 20px;
    right: 20px;

    flex-direction: column;
    align-items: center;
    gap: 20px;

    padding: 28px 20px;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(16px);

    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 25px 60px rgba(0,0,0,0.9);

    opacity: 0;
    transform: translateY(-25px);
    pointer-events: none;

    transition: all 0.45s ease;
    z-index: 999;
  }

  .glass-menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .glass-menu li {
    width: 100%;
    text-align: center;
  }

  .glass-menu li a {
    font-size: 16px;
    padding: 12px 0;
    display: block;
    width: 100%;
  }

  /* CTA button fix */
  .glass-menu .cta a {
    width: 100%;
    text-align: center;
  }
 
nav ul {
  list-style: none;
}
.glass-menu,
.glass-menu li {
  list-style: none !important;
  margin: 0;
  padding-left: 0px;
}
}
 .glass-menu,
.glass-menu li {
  list-style: none !important;
  margin: 0;
  padding-left: 10px;
}

/***************************Judges Section***************************/
/* ================= JUDGES SECTION ================= */
/* ---------- JUDGES SECTION ---------- */
.judges-section {
  background: transparent;
  padding: 100px 10%;
  text-align: center;
}

.section-title {
  font-size: 42px;
  color: #fff;
  margin-bottom: 10px;
}

.section-subtitle {
  color: rgba(255,255,255,0.7);
  margin-bottom: 60px;
}

/* GRID */
.judges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

/* CARD */
.judge-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 40px 25px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.judge-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.7);
}

/* IMAGE */
.judge-img {
  width: 140px;
  height: 140px;
  margin: auto;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(135deg, #ff7a00, #008cff);
}

.judge-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #000;
}

/* TEXT */
.judge-card h3 {
  color: #fff;
  margin-top: 20px;
  font-size: 22px;
}

.judge-card span {
  color: #ff7a00;
  font-size: 15px;
  font-weight: 500;
}
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
/* ---------- JUDGES BOX ---------- */
.judge-box {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.12),
    rgba(255,255,255,0.04)
  );
  backdrop-filter: blur(14px);
  border-radius: 24px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 20px 45px rgba(0,0,0,0.6);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  position: relative;
  overflow: hidden;
}

/* SHINE EFFECT */
.judge-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.25),
    transparent
  );
  transform: rotate(25deg);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.judge-box:hover::before {
  opacity: 1;
  animation: shine 1.5s linear;
}

/* HOVER */
.judge-box:hover {
  transform: translateY(-18px) scale(1.02);
  box-shadow: 0 30px 70px rgba(0,0,0,0.8);
}

/* IMAGE */
.judge-img-wrap {
  width: 140px;
  height: 140px;
  margin: auto;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(135deg, #ff7a00, #008cff);
}

.judge-img-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #000;
}

/* TEXT */
.judge-info h3 {
  color: #fff;
  margin-top: 20px;
  font-size: 22px;
}

.judge-info p {
  color: #ff7a00;
  font-size: 15px;
  margin-top: 6px;
}

/* SHINE KEYFRAME */
@keyframes shine {
  from { transform: translateX(-100%) rotate(25deg); }
  to   { transform: translateX(100%) rotate(25deg); }
}
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
/*********************Video Section*********************/
/* ================= VIDEO SECTION ================= */
/* ---------- VIDEO SECTION ---------- */
.video-section {
  padding: 120px 10%;
  background: transparent;
}

.video-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* VIDEO FRAME */
.video-frame {
  position: relative;
  border-radius: 30px;
  padding: 10px;
  background: linear-gradient(135deg, #ff7a00, #008cff);
  animation: borderGlow 4s linear infinite;
}

.video-frame video {
  width: 100%;
  border-radius: 22px;
  display: block;
}

/* PLAY BUTTON */
.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: #fff;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  cursor: pointer;
  transition: all 0.4s ease;
}

.play-btn:hover {
  background: rgba(0,0,0,0.3);
  transform: scale(1.05);
}

/* VIDEO TEXT */
.video-content h2 {
  font-size: 42px;
  color: #fff;
}

.video-content p {
  margin-top: 20px;
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  line-height: 1.7;
}

/* BORDER ANIMATION */
@keyframes borderGlow {
  0%   { filter: drop-shadow(0 0 10px rgba(255,122,0,0.6)); }
  50%  { filter: drop-shadow(0 0 18px rgba(0,140,255,0.8)); }
  100% { filter: drop-shadow(0 0 10px rgba(255,122,0,0.6)); }
}
@media (max-width: 900px) {
  .video-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .video-content h2 {
    font-size: 32px;
  }
}
.video-frame video {
  opacity: 0;
  animation: videoFadeIn 2s ease forwards;
}

@keyframes videoFadeIn {
  to { opacity: 1; }
}
/* ---------- ANIMATED TITLE ---------- */
.video-title {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  position: relative;
  display: inline-block;
  overflow: hidden;
}

/* GRADIENT TEXT */
.video-title span {
  background: linear-gradient(90deg, #ff7a00, #008cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

/* UNDERLINE SWEEP */
.video-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff7a00, #008cff);
  transform: translateX(-100%);
  animation: underlineSweep 1.4s ease forwards;
  animation-delay: 1s;
}

/* GLOW PULSE */


/* KEYFRAMES */
@keyframes underlineSweep {
  to { transform: translateX(0); }
}

@keyframes glowPulse {
  0%,100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}
.reveal-title {
  opacity: 0;
  transform: translateY(40px);
  animation: titleReveal 1.2s ease forwards;
}

@keyframes titleReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .video-title {
    font-size: 32px;
  }
}


/********************Hamburger Menu*********************/
/* ---------- HAMBURGER ---------- */
.hamburger {
  width: 32px;
  height: 24px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 9999;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #ff7a00, #008cff);
  border-radius: 3px;
  transition: all 0.4s ease;
}

/* ACTIVE ANIMATION */
.hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* ---------- MOBILE MENU ---------- */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .glass-menu {
    position: absolute;
    top: 90px;
    right: 20px;
    width: calc(100% - 40px);
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 30px;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(16px);
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);

    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: all 0.4s ease;
  }

  .glass-menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* Hide cursor on mobile / touch devices */
@media (hover: none) and (pointer: coarse) {
  * {
    cursor: none !important;
  }

  .custom-cursor,
  .cursor-dot,
  .cursor-outline {
    display: none !important;
  }
}

