body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f0f8ff;
  color: #333;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.navbar {
  background: linear-gradient(to right, #3f51b5, #2196f3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  flex-wrap: wrap;
}

.menu-toggle {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  padding: 10px 15px;
  display: block;
  font-weight: bold;
}

.nav-links .dropdown-content {
  display: none;
  position: absolute;
  background: #3f51b5;
  top: 100%;
  left: 0;
  border-radius: 0 0 8px 8px;
  z-index: 99;
}

.nav-links li:hover > .dropdown-content {
  display: block;
}

.nav-links .dropdown-content li a {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    width: 100%;
    flex-direction: column;
    display: none; /* HIDDEN BY DEFAULT ON MOBILE */
    background: rgba(63, 81, 181, 0.95);
  }

  .nav-links.show {
    display: flex; /* SHOW MENU WHEN 'show' CLASS IS ADDED */
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links .dropdown-content {
    position: static;
    display: none;
    background: rgba(33, 150, 243, 0.9);
  }

  .nav-links .dropdown-content.show {
    display: block;
  }

  .dropdown > a::after {
    content: ' ▼';
  }
}

  .video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    margin: 20px 0;
  }
  .video-container iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
  }

.topbar {
  background: linear-gradient(90deg, #3f51b5, #e91e63);
  color: white;
  padding: 15px;
  text-align: center;
}
marquee {
  font-weight: bold;
}
.navbar {
  display: flex;
  justify-content: space-around;
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  padding: 10px 0;
}
.navbar a, .dropbtn {
  text-decoration: none;
  padding: 12px;
  color: #3f51b5;
  font-weight: bold;
  border: none;
  background: none;
  cursor: pointer;
}
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 200px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
}
.dropdown-content a {
  color: #333;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
}
.dropdown:hover .dropdown-content {
  display: block;
}
.about, .venue, #winners {
  padding: 20px;
  max-width: 900px;
  margin: auto;
}
footer {
  text-align: center;
  padding: 20px;
  background: #3f51b5;
  color: white;
}

  .video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    margin: 20px 0;
  }
  .video-container iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
  }
  .live-gallery {
    width: 100%;
    overflow: hidden;
    background: #000;
    padding: 20px 0;
  }

  .slider {
    display: flex;
    gap: 20px;
    align-items: center;
    will-change: transform;
  }

  .slider.animate {
    animation: scroll 30s linear infinite;
  }

  .slider-item {
    flex: 0 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
  }

  .slider-item img,
  .slider-item iframe {
    max-height: 250px;
    width: 100%;
    border-radius: 12px;
    display: block;
    object-fit: cover;
  }

  .slider-item .desc {
    position: absolute;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    width: 100%;
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .slider-item:hover .desc {
    opacity: 1;
  }

  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
  }

  @media (max-width: 768px) {
    .slider-item img, .slider-item iframe {
      max-height: 180px;
    }
  }
  .topbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }
  
  .logo-title {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .site-logo {
    height:3cm;
    width: auto;
  }
  .office-scroll {
  position: relative;
  background: #f4f8fc;
  padding: 40px 20px;
  overflow: hidden;
}
.office-scroll h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #3f51b5;
}

.scroll-container {
  display: flex;
  gap: 20px;
  animation: scrollCards 30s linear infinite;
}

.card {
  flex: 0 0 auto;
  width: 220px;
  height: 150px;
  perspective: 1000px;
}
.inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}
.card:hover .inner {
  transform: rotateY(180deg);
}
.front, .back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.front {
  background: #3f51b5;
  color: white;
}
.back {
  background: #ffffff;
  color: #333;
  transform: rotateY(180deg);
}

@keyframes scrollCards {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.scroll-container:hover {
  animation-play-state: paused;
}

  



