/* ===== Achievement Slider ===== */

.achievement-slider-section {
  padding: 80px 0;
  background: #f8faf8;
  overflow: hidden;
}

.slider-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #3f2d20;
}

.slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scroll-left 40s linear infinite;
}

.slider-container:hover .slider-track {
  animation-play-state: paused;
}

.achievement-slide {
  width: 320px;
  min-width: 320px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #16a34a;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.achievement-slide:hover {
  transform: translateY(-8px);
}

.achievement-slide img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center top;
  border-bottom: 1px solid #e5e7eb;
}
.slide-content {
  padding: 20px;
  text-align: center;
}

.slide-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #15803d;
}

.slide-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.achievement-slide {
  overflow: hidden;
}

.achievement-slide img {
  transition: transform 0.4s ease;
}

.achievement-slide:hover img {
  transform: scale(1.05);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-344px * 4));
  }
}

/* Mobile SAME slider */

@media (max-width: 768px) {

  .slider-title {
    font-size: 30px;
  }

  .achievement-slide {
    width: 280px;
    min-width: 280px;
  }

  .achievement-slide img {
    height: 180px;
  }

  .slider-track {
    animation: scroll-left 20s linear infinite;
  }
}


/* ========================= */
/* WhatsApp AI Chatbot */
/* ========================= */

.whatsapp-ai-chat{
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    text-decoration: none;
    animation: chatbotFloat 2s infinite ease-in-out;
}

.whatsapp-ai-chat img{
    width: 38px !important;
    height: 38px !important;
    max-width: 38px !important;
    max-height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    object-fit: contain;
    display: block;
    z-index: 2;
}

/* Ripple Animation */

.whatsapp-ripple{
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37,211,102,0.45);
    animation: rippleEffect 2s infinite;
    z-index: 1;
}

/* Floating */

@keyframes chatbotFloat{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-6px);
    }
    100%{
        transform: translateY(0px);
    }
}

/* Ripple */

@keyframes rippleEffect{
    0%{
        transform: scale(1);
        opacity: 0.8;
    }
    100%{
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Hover */

.whatsapp-ai-chat:hover{
    transform: scale(1.1);
    transition: 0.3s ease;
}

/* Mobile */

@media(max-width:768px){

    .whatsapp-ai-chat{
        width: 62px;
        height: 62px;
        bottom: 18px;
        right: 18px;
    }

    .whatsapp-ai-chat img{
        width: 34px;
        height: 34px;
    }
}