@import url('https://fonts.googleapis.com/css2?family=Anton&family=Roboto:wght@300;500&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: white;
  font-family: 'Roboto', sans-serif;
  list-style-type: none;
}
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 12px 18px;
    font-size: 16px;
    background-color: #131212;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: none;
    /* Initially hidden */
    opacity: 0;
    transform: translateY(20px);
    /* Start slightly below */
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000000000;
}

/* Hover effect */
#backToTop:hover {
    background-color: #333;
}

/* Show button with fade-up effect */
#backToTop.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
    /* Move to original position */
}





/* Hero Sections */
.hero {
  width: 100%;
  height: 110vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Add this */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Adjust opacity here */
  z-index: 0;
}

/* Keep overlay content on top */
.hero .overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 60px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero h1 {
  font-size: 4rem;
  font-family: 'Anton', sans-serif;
  color: #ff6600;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.5rem;
  color: #f0f0f0;
  max-width: 800px;
  line-height: 1.6;
}

/* Info Sections */
.info-section {
  padding: 60px 30px;
  text-align: center;
}

.info-section h2 {
  font-size: 3rem;
  color: #ff6600;
  margin-bottom: 40px;
  font-family: 'Anton', sans-serif;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.info-box {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 30px;
  max-width: 300px;
  min-height: 220px;
  box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
  transition: transform 0.3s ease;
}

.info-box:hover {
  transform: scale(1.05);
}

.info-box h3 {
  color: #ff8800;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.info-box p {
  font-size: 1.2rem;
  color: #e0e0e0;
}

.dark-bg {
  background-color: #000;
}

.light-bg {
  background-color: #111;
}



.separator1 {
  width: 100%; /* Matches the width of .comp_div */
  height: 15px;
  background: #000000;
  display: block;
}



.stats-section {
    background: #000;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
  }
  
  .stat-box {
    text-align: center;
    color: white;
  }
  
  .stat-box h3 {
    font-size: 3rem;
    color: #ff6600;
  }
  
  .stat-box p {
    font-size: 1.2rem;
    color: #ccc;
  }



  @keyframes slideFadeIn {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .hero .overlay {
    animation: slideFadeIn 1.5s ease forwards;
  }

  

  .section-divider svg {
    display: block;
    width: 100%;
    height: 100px;
  }

  

  .timeline-section {
    background: #111;
    padding: 60px 20px;
    text-align: center;
  }
  
  .timeline-section h2 {
    font-size: 2.8rem;
    color: #ff6600;
    margin-bottom: 30px;
  }
  
  .timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .timeline-item {
    border-left: 4px solid #ff6600;
    padding-left: 20px;
    text-align: left;
    max-width: 600px;
  }
  
  .timeline-item .year {
    font-size: 1.5rem;
    color: #ff6600;
    font-weight: bold;
  }
  
  .timeline-item p {
    color: #ccc;
    font-size: 1.2rem;
  }
  















.sponsors-container {
    text-align: center;
    padding: 80px 20px;
    background-color: black;
}

.sponsors-title {
    font-size: 4rem;
    color: rgb(255, 119, 0);
    margin-bottom: 20px;
}

.main-sponsor {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #0f0e0e;
    padding: 30px;
    border-radius: 15px;
    max-width: 600px;
    margin: auto;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.main-sponsor img {
    width: 150px;
    height: 150px;
    /* Fixed size */
    object-fit: contain;
    margin-bottom: 15px;
}

.main-sponsor h2 {
    font-size: 2rem;
    color: orange;
    margin-bottom: 10px;
}

.main-sponsor p {
    font-size: 1.2rem;
    color: white;
}

.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 50px auto 0;
}

.sponsor-card {
    background-color: #000000;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    /* box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1); */
    opacity: 0;
    transform: translateY(20px);
}

.sponsor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.sponsor-card img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
    border-radius: 10px;
}

.sponsor-card h3 {
    font-size: 1.5rem;
    color: white;
}

@media (max-width: 768px) {
    .sponsor-grid {
        grid-template-columns: 1fr;
    }
}





















.lastimg {
    text-align: center;
    margin: 50px 0;
}

.lastimg img {
    width: 80%;
    max-width: 1000px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}


.team-section {
    margin-top: 50px;
}

.team-section h1 {
    font-size: 3rem;
    color: rgb(255, 115, 0);
    margin-bottom: 20px;
    text-align: center;
}

.team-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    position: relative;
    text-align: center;
    width: 100%;
    /* Full width for mobile */
    max-width: 300px;

    /* Keeps images from getting too big */
}

.image-wrapper {
    position: relative;
    display: inline-block;

}

.image-wrapper img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border-color: #ff4d00;
    transition: transform 0.3s ease-in-out;
}

.image-wrapper:hover img {
    transform: scale(1.1);
}

.overlay1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.668);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.image-wrapper:hover .overlay1 {
    opacity: 1;
}

.overlay1 i {
    color: white;
    font-size: 24px;
}

.team-member h3 {
    margin-top: 10px;
    font-size: 1.5rem;
    color: white;
}

@media (max-width: 768px) {
    .team-container {
        flex-direction: column;
        /* Stack members vertically */
        align-items: center;
        /* Center content */
    }

    .team-member {
        width: 100%;
        /* Makes each member take full width */
        max-width: 350px;
        /* Controls size */
    }
}


















  #map-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  .map-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
  }

  



  .faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
  }
  
  .faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #555;
  }
  
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #ff6600;
    font-size: 1.2rem;
    text-align: left;
    padding: 15px;
    cursor: pointer;
    outline: none;
    transition: color 0.3s;
  }
  
  .faq-question:hover {
    color: #ff8800;
  }
  
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
  padding: 0 0;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 10px 0;
  opacity: 1;
}

  
.faq-map-wrapper {
  display: flex;
  gap: 30px;
  padding: 40px 10%;
  background: #000000;
  flex-wrap: wrap; /* Ensure mobile responsiveness */
}

.faq-box {
  flex: 0 0 60%;
  background: rgb(0, 0, 0);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.map-box {
  flex: 0 0 30%;
  height: auto;
  min-height: 400px;
  background: rgb(0, 0, 0);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.faq-box h2, .map-box h2 {
  margin-bottom: 20px;
  color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .faq-map-wrapper {
    flex-direction: column;
    padding: 20px 5%;
  }

  .faq-box, .map-box {
    flex: 1 1 100%;
    width: 100%;
  }

  .map-box {
    margin-top: 30px;
    height: 400px;
  }
}




























  


  .flip-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
  }
  
  .flip-card {
    background: none;
    width: 280px;
    height: 200px;
    perspective: 1000px;
  }
  
  .flip-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    position: relative;
  }
  
  .flip-card:hover .flip-inner {
    transform: rotateY(180deg);
  }
  
  .flip-front,
  .flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
  }
  
  .flip-front {
    background-color: #ff6600;
  }
  
  .flip-back {
    background-color: #222;
    transform: rotateY(180deg);
  }
  

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .info-grid,
  .card-grid {
    flex-direction: column;
    align-items: center;
  }


}



/* Reveal on Scroll Animation */
.fade-up-init {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
  }
  
  .revealed {
    opacity: 1;
    transform: translateY(0);
  }
  