/* Awards Section */
.awards-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.awards-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14,84,168,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.awards-header {
  text-align: center;
  margin-bottom: 60px;
}

.awards-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0e54a8;
  margin-bottom: 15px;
}

.awards-title-accent {
  color: #fa1713;
}

.awards-divider {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #fa1713 0%, #0e54a8 100%);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.awards-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Awards Slider Container */
.awards-slider-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.awards-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.awards-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.award-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  flex: 0 0 300px;
  min-width: 300px;
}

.award-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0e54a8 0%, #fa1713 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.award-card:hover::before {
  transform: scaleX(1);
}

.award-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(14, 84, 168, 0.15);
}

.award-image-wrapper {
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.award-image {
  width: 80%;
  height: 80%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.award-card:hover .award-image {
  transform: scale(1.1);
}

.award-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0e54a8;
  text-align: center;
  margin-bottom: 10px;
}

.award-year {
  text-align: center;
  color: #999;
  font-size: 0.9rem;
}

/* Modal Overlay */
.award-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.award-modal.active {
  display: flex;
}

.award-modal-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 90%;
  max-height: 90%;
  overflow: auto;
  position: relative;
  animation: slideUp 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { 
    opacity: 0;
    transform: translateY(50px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

.award-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: #0e54a8;
  cursor: pointer;
  background: none;
  border: none;
  transition: transform 0.3s ease;
}

.award-modal-close:hover {
  transform: rotate(90deg);
  color: #fa1713;
}

.award-modal-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 15px;
}

/* Slider Navigation Buttons */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  border: none;
}

.slider-nav:hover {
  background: #0e54a8;
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 30px rgba(14, 84, 168, 0.3);
}

.slider-nav-prev {
  left: 0;
}

.slider-nav-next {
  right: 0;
}

.slider-nav i {
  font-size: 1.5rem;
}

/* Slider Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(14, 84, 168, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.slider-dot.active {
  background: #0e54a8;
  width: 30px;
  border-radius: 6px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .awards-slider-container {
    padding: 0 50px;
  }

  .award-card {
    flex: 0 0 280px;
    min-width: 280px;
  }
}

@media (max-width: 768px) {
  .awards-section {
    padding: 60px 0;
  }

  .awards-slider-container {
    padding: 0 15px;
  }

  .slider-nav {
    display: none;
  }

  .award-card {
    flex: 0 0 260px;
    min-width: 260px;
  }

  .award-image-wrapper {
    height: 200px;
  }

  .award-modal-content {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .awards-title {
    font-size: 1.7rem;
  }

  .award-card {
    flex: 0 0 240px;
    min-width: 240px;
    padding: 20px;
  }

  .award-image-wrapper {
    height: 180px;
  }
}
