.champions-section {
  padding: 50px 0;
  background-color: #f9f9f9;
}

.champions-section h2 {
  font-size: 60px;
  font-weight: 600;
  color: var(--font-color);
}

.champions-section h3 {
  font-size: 45px;
  color: white;
  background-color: #065956;
  font-weight: bold;
  padding: 10px;
  border-radius: 5px;
}

.champions-section .img-fluid {
  height: auto;
}

.champions-section .rounded-circle {
  border: 5px solid var(--bg-color); /* Border around the image */
  padding: 5px;
}

.champions-section h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--font-color);
}

@media (max-width: 768px) {
  .champions-section h2 {
    font-size: 30px;
  }

  .champions-section h3 {
    font-size: 24px;
    padding: 8px;
  }


  .champions-section h4 {
    font-size: 18px;
  }
}


.video-section {
  padding: 50px 0;
  background-color: #f9f9f9;
}

.video-section h2 {
  font-size: 36px;
  font-weight: 600;
  color: var(--font-color);
  margin-bottom: 30px;
}

.video-container {
  max-width: 900px;
  margin: 0 auto;
}

.youtube-video {
  width: 100%;
  height: 500px;
}

.text-center {
  text-align: center;
}

.text-center p {
  font-size: 18px;
  color: var(--font-color);
}

.text-center a {
  color: var(--font-color);
  text-decoration: none;
  font-weight: bold;
}

.text-center a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .video-section h2 {
    font-size: 28px;
  }

  .youtube-video {
    height: 300px;
  }

  .text-center p {
    font-size: 16px;
  }
}
.gallery-section {
  padding: 60px 0;
}

.section-title {
  font-size: 40px;
  font-weight: 600;
  color: var(--font-color);
}

.img-fluid {
  cursor: pointer;
  transition: transform 0.3s ease;
}



.modal-body {
  text-align: center;
}

.modal-body img {
  max-height: 600px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 30px;
  }
}
