/* General Styling */
* {
  margin: 0;
  padding: 2;
  box-sizing: border-box;
  font-family: 'poppins', sans-serif;
}

body {
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
}

/* Background Video */
.background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

/* Overlay to make text readable */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(255, 0, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Logo */
.logo img {
  height: 50px;
  object-fit: contain;
}

/* Navigation Menu */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0px;
  margin: 0px;
}

.nav-menu li {
  display: inline;
}
.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0px;
  margin: 0px;
}

.nav-menu a {
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 15px;
  transition: color 0.3s ease, transform 0.3s ease;
  border-radius: 8px;
}

.nav-menu a:hover {
  color: #ff00ff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.nav-menu a:active {
  color: #00ffff;
}

/* Make Navbar Responsive */
@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 30px;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 12px;
    display: none;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 10px;
  }
}


/* Header Section *
.header-section {
  text-align: center;
  padding: 80px 20px;
}

.header-section h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}

.header-section p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 30px;
}*/

/* College Name and Proudly Present *
.college-name {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
}

.proudly-present {
  font-size: 1.5rem;
  color: #ccc;
  text-align: center;
  margin-bottom: 20px;
}*/



/* Event Date *
.event-date {
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
}

/* Countdown Timer *
.countdown-timer {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}

.countdown-timer span {
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff, 0 0 20px #00ffff;
}*/

/* Header Section */
.header-section {
  padding-top: 100px; /* Added padding at the top */
  text-align: center;
}

/* College Name and Proudly Present */
.college-name {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

.dept {
  font-size: 1.5rem;
  color: #ccc;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

.proudly-present {
  font-size: 1rem;
  color: #ccc;
  text-align: center;
  margin-bottom: 20px;
}

/* Glow Effect for Heading */
.glow-texts {
  font-size: 7rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 10px #ff00ff41, 0 0 20px #ff00ff41;
  margin-bottom: 20px;
}

/* Event Date */
.event-date {
  font-size: 1.2rem;
  color: #ddd;
  margin-bottom: 10px;
}

#event-date1 {
  font-size: 2rem;
  color: #ddd;
  margin-bottom: 10px;
}
/* Countdown Timer *
.countdown-timer {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 8px #ff00ff, 0 0 16px #00ffff;
  margin-top: 10px;
}*/

/* Countdown Timer */
.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.timer-box {
  padding: 15px;
  width:80px;
  height: 80px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 10px rgb(234, 0, 255), 0 0 30px rgb(255, 0, 255);
  text-align: center;
  transition: 0.3s ease;
}

.timer-box:hover {
  transform: translateY(-5px);
}

.timer-box span {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.timer-box p {
  font-size: 1rem;
  color: #ccc;
}
@media (max-width: 600px) {
  .countdown-timer {
    flex-wrap: wrap;
    gap: 10px;
  }

  .timer-box {
    width: 70px;
    height: 70px;
    padding: 10px;
  }
}


/* About Us Section */
.about-section {
  
  padding: 40px;
  text-align: center;
}

.about-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 0 15px #ff00ff, 0 0 30px #ff00ff41;
}

.about-content {
  padding: 30px;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.6), 0 0 30px rgba(255, 0, 255, 0.6);
  transition: 0.3s ease;
}

.about-content:hover {
  transform: translateY(-5px);
}

.about-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 15px;
}

.highlight {
  color: #ffffff;
  font-weight: bold;
  text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-content {
    padding: 20px;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-content p {
    font-size: 1rem;
    text-align: justify;
  }
}



/* Event Section */
.event-section {
  margin-top: 40px;
  padding: 20px;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 20px;
  text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff;
}

.event-item {
  margin-bottom: 20px;
}

.event-title {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.5), 0 0 25px rgba(255, 0, 255, 0.5);
  cursor: pointer;
  transition: 0.3s ease;
}

.event-title:hover {
  transform: translateY(-5px);
}

.plus-icon {
  font-size: 1.5rem;
  color: #fff;
  transition: 0.3s;
}

.event-details {
  display: none;
  padding: 15px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.5), 0 0 25px rgba(255, 0, 255, 0.5);
  margin-top: 10px;
}

/* Show Event Details */
.show {
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .countdown-timer {
    flex-direction: row;
  }
}


/* Glow Text Effect */
.glow-text {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff41;
  }
  to {
    text-shadow: 0 0 20px #ff00ff, 0 0 40px #ff00ff41;
  }
}

/* Events Section */
.events-section {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

/* Accordion */
.accordion-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.3s;
}

.accordion-item:hover {
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.7), 0 0 25px rgba(255, 0, 255, 0.7);
  transform: translateY(-2px);
}

/* Accordion Header */
.accordion-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.event-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
}

.plus-icon {
  font-size: 1.5rem;
  color: #fff;
  transition: transform 0.3s ease;
}

.accordion-item.open .plus-icon {
  transform: rotate(45deg);
}

/* Accordion Content */
.accordion-content {
  display: none;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0 0 10px 10px;
  backdrop-filter: blur(12px);
  color: #ccc;
}

.accordion-content h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 10px;
}

.accordion-content p {
  font-size: 1rem;
  margin-bottom: 10px;
}

.accordion-content ul {
  padding-left: 20px;
  margin-bottom: 10px;
}

.accordion-content li {
  font-size: 1rem;
  margin-bottom: 5px;
}

/* Glow Button */
.glow-btn {
  background: linear-gradient(45deg, #ff00ff, #00ffff);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  font-size: 18px;
  transition: 0.3s;
  display: inline-block;
  text-decoration: none;
  margin-top: 10px;
}

.glow-btn:hover {
  box-shadow: 0 0 20px #ff00ff, 0 0 30px #00ffff;
  transform: scale(1.05);
}

/* Large Button for CTA */
.large-btn {
  padding: 15px 40px;
  font-size: 20px;
}

/* Coordinators Section */
.coordinators-section {
  padding: 40px 20px;
  max-width: 900px;
  margin: 40px auto;
}

/* Section Title */
.section-title {
  font-size: 2rem;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}


/* Coordinator Boxes */
.coordinator-box-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.coordinator-box {
  width: 50%;
  padding: 20px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.3), 0 0 25px rgba(255, 0, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

/* Section Title */
.section-title1 {
  font-size: 2rem;
  color: #fcfbfc;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: bold;
}


/* Coordinator Boxes */
.coordinator-box-container1 {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.coordinator-box1 {
  width: 68%;
  margin-bottom: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.3), 0 0 25px rgba(255, 0, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

/* Hover Effect */
.coordinator-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.5), 0 0 30px rgba(255, 0, 255, 0.5);
}

/* Hover Effect */
.coordinator-box1:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.5), 0 0 30px rgba(255, 0, 255, 0.5);
}

/* Coordinator Name */
.coordinator-name {
  font-size: 1.4rem;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: bold;
}

/* Coordinator Contact */
.coordinator-contact {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 5px;
}

/* Glow Effect for Contact */
.coordinator-contact:hover {
  color: #ffffff;
  text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff41;
}


/* CTA Section */
.cta-section {
  padding: 50px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 0px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-section h1 {
    font-size: 2.5rem;
  }

  .event-name {
    font-size: 1rem;
  }

  .plus-icon {
    font-size: 1.2rem;
  }

  .accordion-content h3 {
    font-size: 1.2rem;
  }

  .glow-btn {
    padding: 10px 20px;
    font-size: 16px;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .large-btn {
    padding: 12px 30px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .header-section h1 {
    font-size: 2rem;
  }

  .glow-text {
    font-size: 1.5rem;
  }

  .event-name {
    font-size: 0.9rem;
  }

  .plus-icon {
    font-size: 1rem;
  }

  .accordion-content h3 {
    font-size: 1rem;
  }

  .glow-btn {
    padding: 8px 16px;
    font-size: 14px;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .cta-section p {
    font-size: 0.9rem;
  }

  .large-btn {
    padding: 10px 25px;
    font-size: 16px;
  }
}

/* End Section */
.end-section {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 40px;
  /*background: rgba(255, 255, 255, 0.1);*/
  backdrop-filter: blur(12px);
  /*box-shadow: 0 0 30px rgba(255, 0, 255, 0.5), 0 0 40px rgba(0, 255, 255, 0.5);*/
  /*border-radius: 20px;*/
  /*margin-top: 50px;*/
}

b{
  color: #ffffff;
}
.end-part {
  flex: 1;
  background: rgba(64, 64, 64, 0);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.5), 0 0 30px rgba(255, 0, 255, 0.5);
  transition: transform 0.3s ease;
}

.end-part:hover {
  transform: translateY(-5px);
}

.end-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 0 0 15px #ff00ff00, 0 0 30px #00ffff00;
}

.end-part p {
  font-size: 1.2rem;
  color: #ea00ff;
  margin-bottom: 10px;
}

.glow-link {
  color: #ffffff;
  font-weight: bold;
  text-shadow: 0 0 10px #ff00ff00, 0 0 20px #00ffff00;
  transition: color 0.3s ease;
  text-decoration: none;
}

.glow-link:hover {
  color: #fff;
  text-shadow: 0 0 20px #ff00ff00, 0 0 30px #00ffff00;
}

/* Responsive Design */
@media (max-width: 768px) {
  .end-section {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .end-part {
    padding: 15px;
  }

  .end-title {
    font-size: 1.5rem;
  }

  .end-part p {
    font-size: 1rem;
  }

  iframe {
    height: 120px;
  }
}

/* Footer Section */
.footer {
  width: 100%;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.5), 0 0 40px rgba(255, 0, 255, 0.5);
  border-radius: 0px;
  text-align: center;
  margin-top: 0px;
  color: #ccc;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.footer:hover {
  transform: translateY(-5px);
}

.footer .highlight {
  color: #ff00ff;
  font-weight: bold;
  text-shadow: 0 0 15px #ff00ff, 0 0 20px #ff00ff41;
  transition: color 0.3s ease;
}

.footer .highlight:hover {
  color: #fff;
  text-shadow: 0 0 20px #ff00ff, 0 0 30px #ff00ff41;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer {
    padding: 15px;
    font-size: 0.9rem;
  }
}
/* Hamburger Menu Icon */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s ease;
}

/* Show Hamburger Menu on Mobile */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 30px;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 12px;
    display: none;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 10px;
  }
}