.achievements-slider {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}
.swiper-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.swiper-wrapper {
  display: flex;
  animation: scrollLeft 30s linear infinite;
}
.swiper-slide {
  flex-shrink: 0;
  width: auto;
}
.achievement-item {
  width: 250px;
  min-height: 250px;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-right: 40px;
  padding: 15px;
  text-align: center;
}
.achievement-box img {
  width: 80px;
  height: 80px;
  margin-bottom: 12px;
  object-fit: contain;
}
.achievement-item h2 {
  font-size: 18px;
  margin-bottom: 6px;
}
.achievement-item p {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #333;
}
.btn-lg-square {
  border-radius: 50%;
}
@media (max-width: 991px) {
  .achievement-item {
    width: 220px;
    min-height: 230px;
    margin-right: 25px;
    padding: 12px;
  }
  .achievement-item h2 {
    font-size: 16px;
  }
  .achievement-item p {
    font-size: 13px;
  }
}
@media (max-width: 576px) {
  .achievement-item {
    width: 180px;
    min-height: 210px;
    margin-right: 16px;
    padding: 10px;
  }
  .achievement-box img {
    width: 60px;
    height: 60px;
  }
  .achievement-item h2 {
    font-size: 15px;
  }
  .achievement-item p {
    font-size: 12px;
  }
  .swiper-wrapper {
    animation-duration: 40s;
  }
}
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.register-btn {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  align-items: center;
  justify-content: center;

  width: 60px;
  height: 210px;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;

  background-color: rgb(79, 182, 163);
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);

  z-index: 9999;
  animation: softGlow 2s infinite ease-in-out;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.register-btn:hover {
  background-color: rgb(40, 150, 130);
  color: #fff;
}

@keyframes softGlow {
  0% {
    box-shadow: 0 0 6px rgba(79, 182, 163, 0.5);
  }

  50% {
    box-shadow: 0 0 14px rgba(79, 182, 163, 0.9);
  }

  100% {
    box-shadow: 0 0 6px rgba(79, 182, 163, 0.5);
  }
}

@media (max-width: 992px) {
  .register-btn {
    width: 55px;
    height: 180px;
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .register-btn {
    width: 50px;
    height: 160px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .register-btn {
    width: 45px;
    height: 140px;
    font-size: 16px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
  }
}

.stats-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stats-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(79, 182, 163, 0.15);
}

.stats-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #4fb6a3 0%, #3a8f7e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: white;
  transition: all 0.3s ease;
}

.stats-card:hover .stats-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(79, 182, 163, 0.3);
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b 0%, #4fb6a3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-top: 15px;
}

.stats-text {
  font-size: 1rem;
  color: #475569;
  line-height: 1.5;
}

.stats-line {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #4fb6a3 0%, #3a8f7e 100%);
  margin: 0 auto;
  border-radius: 3px;
  transition: width 0.3s ease;
}

.stats-card:hover .stats-line {
  width: 80px;
}

.internship-card {
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.internship-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(79, 182, 163, 0.15);
}

.btn-success {
  background-color: #4fb6a3;
  border-color: #4fb6a3;
}

.btn-success:hover {
  background-color: #3a8f7e;
  border-color: #3a8f7e;
}

.btn-warning {
  background-color: #f59e0b;
  border-color: #f59e0b;
  color: white;
}

.btn-warning:hover {
  background-color: #d97706;
  border-color: #d97706;
  color: white;
}

.btn-outline-primary {
  border-color: #4fb6a3;
  color: #4fb6a3;
}

.btn-outline-primary:hover {
  background-color: #4fb6a3;
  border-color: #4fb6a3;
  color: white;
}

.btn-primary {
  background-color: #4fb6a3;
  border-color: #4fb6a3;
}

.btn-primary:hover {
  background-color: #3a8f7e;
  border-color: #3a8f7e;
}
