@charset "UTF-8";
.section-title {
  text-align: center;
  margin: 40px auto;
}

.sub_title {
  display: inline-block;
  position: relative;
  font-size: 35px;
  font-weight: bold;
  padding: 0 15px;
  padding-bottom: 12px;
  color: #0E116C;
  text-transform: uppercase;
}

.sub_title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  border-bottom: 5px solid #040831;
}

.countdown-section {
  background: url("../images/slide_02.jpg") no-repeat center center fixed; /* الخلفية ثابتة */
  background-size: cover;
  position: relative;
  padding: 100px 20px; /* مسافة من فوق وتحت */
  color: white;
  text-align: center;
}

.countdown-section .overlay {
  background: rgba(0, 0, 0, 0.6); /* طبقة شفافة فوق الصورة */
  padding: 50px 20px;
  border-radius: 15px;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.sub_title_ {
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
  font-size: 32px;
  font-weight: bold;
  color: #fff;
}

.sub_title_::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  border-bottom: 3px solid #fff;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.countdown div {
  background: rgba(29, 42, 172, 0.8);
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  font-size: 35px;
  min-width: 120px;
  flex: 1;
  max-width: 180px;
}

.countdown div span {
  display: block;
  font-size: 18px;
  margin-top: 5px;
}

/* ===================== Buttons ===================== */
.filled-button:hover {
  background: #1d2aac;
  color: white;
  transform: scale(1.05);
  transition: 0.3s;
}

/* ===================== Countdown ===================== */
.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.countdown div {
  background: #222;
  text-align: center;
  color: #fff;
  padding: 25px;
  border-radius: 10px;
  font-size: 35px;
  min-width: 150px;
  max-width: 200px;
  flex: none;
}

.countdown div span {
  display: block;
  text-align: center;
  font-size: 20px;
  margin-top: 5px;
  color: white;
}

@media (max-width: 600px) {
  .countdown {
    flex-direction: column;
    align-items: center;
  }
  .countdown div {
    font-size: 28px;
    min-width: 130px;
    padding: 15px;
  }
  .countdown div span {
    font-size: 18px;
  }
}
/* ===================== Slider ===================== */
.slider-container {
  width: 100%;
  padding-left: 30px;
  overflow: hidden;
  position: relative;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #1d2aac;
  padding: 20px;
}

.slide img {
  width: 500px;
  height: 350px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 15px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .slide img {
    width: 300px;
    height: 220px;
  }
}
/* ===================== Swiper ===================== */
.swiper {
  width: 100%;
  padding: 20px 0;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: 350px;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 15px;
}

@media (max-width: 768px) {
  .swiper-slide img {
    width: 250px;
    height: 150px;
  }
}
/* ===================== Slider / Swiper Buttons ===================== */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 3px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* ===================== Timeline ===================== */
.timeline-container {
  display: grid;
  gap: 20px;
  padding: 20px;
  max-width: 800px;
  margin: auto;
}

.event {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 15px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.event .icon {
  flex-shrink: 0;
  margin-right: 20px;
}

.event .icon img {
  width: 150px;
}

.event-content h3 {
  margin: 0;
  font-size: 30px;
  color: #161724;
}

.event-content p {
  margin: 5px 0 0;
  color: #555;
  font-size: 18px;
}

/* ===================== Sponsors ===================== */
.sponsor-section {
  padding: 50px 20px;
  background: #ffffff;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  margin: 50px auto;
  width: 90%;
  max-width: 900px;
  text-align: center;
  animation: fadeIn 1.5s ease-in-out;
  color: #4e5866;
}

.sponsor-logo img {
  width: 800px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: transform 0.5s ease-in-out, filter 0.3s ease-in-out;
}

.sponsor-logo img:hover {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.5));
}

@media (max-width: 768px) {
  .sponsor-logo img {
    width: 300px;
  }
}
@media (max-width: 600px) {
  .sponsor-logo img {
    width: 150px;
  }
}
/* ===================== Animations ===================== */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=style.css.map */