* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

section[id] {
  scroll-margin-top: 80px;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #1e293b;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, #8E54E9, #4776E6);
  border-radius: 2px;
}
.section-title.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-text {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.navbar {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 5px 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  padding: 5px 0;
  transition: all 0.3s ease;
}
.navbar .navbar-brand {
  padding: 0;
}
.navbar .navbar-brand img {
  transition: transform 0.3s ease;
  height: 60px;
}
.navbar .navbar-brand img:hover {
  transform: scale(1.05);
}
.navbar .navbar-nav .nav-link {
  color: #1e293b;
  font-weight: 500;
  margin: 0 15px;
  position: relative;
  transition: color 0.3s ease;
}
.navbar .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #8E54E9, #4776E6);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.navbar .navbar-nav .nav-link:hover {
  color: #4776E6;
}
.navbar .navbar-nav .nav-link:hover::after {
  width: 100%;
}
.navbar .social-links {
  display: flex;
  gap: 15px;
}
.navbar .social-links .social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(to right, #8E54E9, #4776E6);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.navbar .social-links .social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(81, 90, 218, 0.3);
}

.banner-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.banner-section .banner-swiper {
  height: 100%;
}
.banner-section .banner-swiper .banner-slide {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.banner-section .banner-swiper .banner-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(142, 84, 233, 0.7), rgba(71, 118, 230, 0.7));
}
.banner-section .banner-swiper .banner-content {
  text-align: center;
  color: #FFFFFF;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}
.banner-section .banner-swiper .banner-content .banner-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out;
}
.banner-section .banner-swiper .banner-content .banner-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.3s both;
}
.banner-section .banner-swiper .banner-content .btn {
  background: linear-gradient(to right, #8E54E9, #4776E6);
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  padding: 15px 40px;
  animation: fadeInUp 1s ease-out 0.6s both;
}
.banner-section .banner-swiper .banner-content .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(71, 118, 230, 0.3);
}
.banner-section .banner-swiper .swiper-pagination {
  bottom: 30px;
}
.banner-section .banner-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #FFFFFF;
  opacity: 0.5;
}
.banner-section .banner-swiper .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #8E54E9;
}
.banner-section .banner-swiper .swiper-button-next,
.banner-section .banner-swiper .swiper-button-prev {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.banner-section .banner-swiper .swiper-button-next:hover,
.banner-section .banner-swiper .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.3);
}
.banner-section .banner-swiper .swiper-button-next::after,
.banner-section .banner-swiper .swiper-button-prev::after {
  font-size: 20px;
}

.about-section {
  padding: 80px 0;
  background: #f8fafc;
}
.about-section .about-content {
  padding-right: 30px;
}
.about-section .about-image {
  position: relative;
}
.about-section .about-image img {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.about-section .about-image img:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.about-section .about-image::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(to right, #8E54E9, #4776E6);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.3;
}

.events-section {
  padding: 80px 0;
}
.events-section .event-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.events-section .event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.events-section .event-card .event-image {
  height: 250px;
  overflow: hidden;
}
.events-section .event-card .event-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.events-section .event-card .event-content {
  padding: 25px;
}
.events-section .event-card .event-content h3 {
  color: #4776E6;
  margin-bottom: 10px;
  font-weight: 700;
}
.events-section .event-card .event-content .event-date {
  color: #6B46C1;
  font-weight: 600;
  margin-bottom: 15px;
}
.events-section .event-card .event-content .event-date i {
  margin-right: 8px;
}
.events-section .event-card .event-content .event-description {
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.6;
}
.events-section .event-card .event-content .btn {
  background: linear-gradient(to right, #8E54E9, #4776E6);
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  background: transparent;
  border: 2px solid #4776E6;
  color: #4776E6;
}
.events-section .event-card .event-content .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(71, 118, 230, 0.3);
}
.events-section .event-card .event-content .btn:hover {
  background: linear-gradient(to right, #8E54E9, #4776E6);
  color: #FFFFFF;
  border-color: transparent;
}
.events-section .event-card:hover .event-image img {
  transform: scale(1.1);
}

.parallax-section {
  height: 60vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(142, 84, 233, 0.8), rgba(71, 118, 230, 0.8)), url("./images/imgs/img-18.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax-section .parallax-content {
  color: #FFFFFF;
  text-align: center;
  z-index: 2;
}
.parallax-section .parallax-content .parallax-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.parallax-section .parallax-content .parallax-text {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  line-height: 1.6;
}
.parallax-section .parallax-content .parallax-stats .stat-item {
  padding: 20px;
}
.parallax-section .parallax-content .parallax-stats .stat-item .stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #8E54E9;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.parallax-section .parallax-content .parallax-stats .stat-item .stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0.9;
}

.gallery-section {
  padding: 80px 0;
}
.gallery-section .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.gallery-section .gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.gallery-section .gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.gallery-section .gallery-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.gallery-section .gallery-item a:hover {
  text-decoration: none;
}
.gallery-section .gallery-item .gallery-image {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-section .gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(142, 84, 233, 0.9), rgba(71, 118, 230, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}
.gallery-section .gallery-item .gallery-overlay i {
  font-size: 2rem;
  color: #FFFFFF;
  transform: scale(0.8);
  transition: all 0.3s ease;
}
.gallery-section .gallery-item:hover .gallery-image {
  transform: scale(1.1);
}
.gallery-section .gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-section .gallery-item:hover .gallery-overlay i {
  transform: scale(1.2);
}

.sponsors-section {
  padding: 80px 0;
  background: #f8fafc;
}
.sponsors-section .sponsor-category {
  margin-bottom: 60px;
}
.sponsors-section .sponsor-category:last-child {
  margin-bottom: 0;
}
.sponsors-section .sponsor-category-title {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  color: #999;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .sponsors-section .sponsor-category:last-child .sponsors-grid .sponsor-card {
    flex: 0 0 100px;
  }
}
@media (max-width: 768px) {
  .sponsors-section [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
  .sponsors-section [data-aos-delay] {
    transition-delay: 0s !important;
  }
  .sponsors-section [data-aos-duration] {
    transition-duration: 0s !important;
  }
}
.sponsors-section .sponsors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.sponsors-section .sponsors-grid .sponsor-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 10px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  flex: 0 0 180px;
  max-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sponsors-section .sponsors-grid .sponsor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.sponsors-section .sponsors-grid .sponsor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(71, 118, 230, 0.15);
}
.sponsors-section .sponsors-grid .sponsor-card .sponsor-link {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sponsors-section .sponsors-grid .sponsor-card .sponsor-link:hover {
  text-decoration: none;
}
.sponsors-section .sponsors-grid .sponsor-card .sponsor-logo {
  max-width: 100%;
  max-height: 110px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1200px) {
  .sponsors-section .sponsors-grid {
    max-width: 1000px;
  }
  .sponsors-section .sponsors-grid .sponsor-card {
    flex: 0 0 160px;
  }
}
@media (max-width: 992px) {
  .sponsors-section .sponsors-grid {
    max-width: 800px;
  }
  .sponsors-section .sponsors-grid .sponsor-card {
    flex: 0 0 140px;
  }
}
@media (max-width: 768px) {
  .sponsors-section .sponsors-grid {
    gap: 15px;
  }
  .sponsors-section .sponsors-grid .sponsor-card {
    flex: 0 0 120px;
  }
}
@media (max-width: 480px) {
  .sponsors-section .sponsors-grid {
    gap: 10px;
  }
  .sponsors-section .sponsors-grid .sponsor-card {
    flex: 0 0 150px;
  }
}

.contact-section {
  padding: 80px 0;
}
.contact-section .contact-form-wrapper {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.contact-section .contact-form-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.contact-section .contact-form-wrapper .form-control {
  border: 2px solid #E9ECEF;
  border-radius: 10px;
  padding: 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.contact-section .contact-form-wrapper .form-control:focus {
  border-color: #4776E6;
  box-shadow: 0 0 0 0.2rem rgba(71, 118, 230, 0.25);
}
.contact-section .contact-form-wrapper textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.contact-section .contact-form-wrapper .btn {
  background: linear-gradient(to right, #8E54E9, #4776E6);
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  padding: 15px 40px;
  font-size: 1.1rem;
}
.contact-section .contact-form-wrapper .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(71, 118, 230, 0.3);
}
.contact-section .contact-info {
  text-align: center;
  padding: 30px 20px;
}
.contact-section .contact-info .contact-icon {
  font-size: 3rem;
  color: #8E54E9;
  margin-bottom: 20px;
}
.contact-section .contact-info h5 {
  color: #4776E6;
  margin-bottom: 15px;
  font-weight: 600;
}
.contact-section .contact-info p {
  color: #64748b;
  margin: 0;
}
.contact-section .contact-info p a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.footer {
  background: #1e293b;
  color: #FFFFFF;
  padding: 40px 0;
}
.footer .footer-social-links {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}
.footer .footer-social-links .social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(to right, #8E54E9, #4776E6);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer .footer-social-links .social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(71, 118, 230, 0.3);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 991.98px) {
  .navbar .social-links {
    margin-top: 15px;
    justify-content: center;
  }
  .banner-section .banner-swiper .banner-content .banner-title {
    font-size: 3rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .parallax-section .parallax-title {
    font-size: 2.5rem;
  }
  .sponsors-section .sponsors-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  .about-section .about-content {
    padding-right: 0;
    margin-bottom: 30px;
  }
  .contact-section .contact-form-wrapper {
    padding: 30px 20px;
  }
  .footer .footer-social-links {
    justify-content: center;
    margin-top: 20px;
  }
}
@media (max-width: 767.98px) {
  .banner-section .banner-swiper .banner-content .banner-title {
    font-size: 2.5rem;
  }
  .banner-section .banner-swiper .banner-content .banner-subtitle {
    font-size: 1.2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .parallax-section {
    height: 50vh;
  }
  .parallax-section .parallax-content .parallax-title {
    font-size: 2rem;
  }
  .parallax-section .parallax-content .parallax-text {
    font-size: 1.1rem;
  }
  .parallax-section .parallax-content .parallax-stats .stat-item .stat-number {
    font-size: 2.5rem;
  }
  .sponsors-section .sponsors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .sponsors-section .sponsors-grid .sponsor-card {
    padding: 20px;
  }
  .sponsors-section .sponsors-grid .sponsor-card .sponsor-name {
    font-size: 1rem;
  }
  .sponsors-section .sponsors-grid .sponsor-card .sponsor-category {
    font-size: 0.8rem;
  }
  .navbar .social-links {
    gap: 10px;
  }
  .navbar .social-links .social-link {
    width: 35px;
    height: 35px;
  }
  .events-section .event-card .event-content {
    padding: 20px;
  }
  .contact-section .contact-info {
    padding: 20px 15px;
  }
}
@media (max-width: 575.98px) {
  .banner-section .banner-swiper .banner-content .banner-title {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .navbar .navbar-brand img {
    height: 40px;
  }
  .contact-section .contact-form-wrapper {
    padding: 25px 15px;
  }
  .sponsors-section .sponsors-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .sponsors-section .sponsors-grid .sponsor-card {
    padding: 15px;
  }
}
.text-gradient {
  background: linear-gradient(to right, #8E54E9, #4776E6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient {
  background: linear-gradient(to right, #8E54E9, #4776E6);
}

.shadow-custom {
  box-shadow: 0 10px 30px rgba(71, 118, 230, 0.1);
}

.rounded-custom {
  border-radius: 20px;
}

html {
  scroll-padding-top: 80px;
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to right, #8E54E9, #4776E6);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #4776E6;
}/*# sourceMappingURL=styles.css.map */