/* Original pagination styles */
.swiper-pagination-dash {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    bottom: 40px !important;
    left: 0;
    right: 0;
    position: absolute;
    z-index: 10;
}
.swiper-pagination-dash .swiper-pagination-bullet {
    width: 32px;
    height: 4px;
    border-radius: 2px;
    background: #fff;
    opacity: 0.4;
    margin: 0 !important;
    transition: all 0.3s ease;
}
.swiper-pagination-dash .swiper-pagination-bullet:hover {
    opacity: 0.7;
    transform: scaleY(1.5);
}
.swiper-pagination-dash .swiper-pagination-bullet-active {
    opacity: 1;
    background: #039db6;
    transform: scaleY(1.5);
}

/* NEW ANIMATIONS */
/* Background image slow zoom-out animation */
@keyframes zoomOut {
    0% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

.hero-bg {
    animation: zoomOut 12s ease-out infinite alternate;
}

/* Content animations */
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply animations with staggered delays */
.animate-content-1 {
    animation: slideInLeft 1.2s ease-out 0.3s both;
}

.animate-content-2 {
    animation: fadeInUp 1.2s ease-out 0.6s both;
}

.animate-content-3 {
    animation: fadeInUp 1.2s ease-out 0.9s both;
}

.animate-content-4 {
    animation: fadeInScale 1.2s ease-out 1.2s both;
}

/* Enhanced button animations */
.hero-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.hero-button:hover::before {
    left: 100%;
}

.hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(195, 214, 0, 0.4) !important;
}

.hero-button:active {
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .animate-content-1,
    .animate-content-2,
    .animate-content-3,
    .animate-content-4 {
        animation-duration: 1s;
    }
}