/* Hero Slider Styles */

.hero-slider {

}

.hero-slider .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slider .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider .hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-slider .container {
    position: relative;
    z-index: 1; /* keep below header */
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-slider .hero-content {
    color: white;
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

/* Hero Slider Pagination - Archer Style */
.main-slider-dot-archer {
    position: absolute !important;
    top: 50% !important;
    right: 30px !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px;
    bottom: auto !important;
    left: auto !important;
    z-index: 99999 !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: auto;
    height: auto;
    pointer-events: auto !important;
}

.main-slider-dot-archer .swiper-pagination-bullet {
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    border-radius: 0;
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.main-slider-dot-archer .swiper-pagination-bullet button {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
}

.main-slider-dot-archer .swiper-pagination-bullet:hover button {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
    color: white;
}

.main-slider-dot-archer .swiper-pagination-bullet-active button {
    background: white !important;
    border-color: white !important;
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    color: #333 !important;
    font-weight: 700;
}

/* Force pagination visibility */
.main-slider-dot-archer.swiper-pagination-bullets {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: absolute !important;
    top: 50% !important;
    right: 30px !important;
    transform: translateY(-50%) !important;
    bottom: auto !important;
    left: auto !important;
    flex-direction: column !important;
}

.main-slider-dot-archer .swiper-pagination-bullet {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Override Swiper default pagination styles */
.hero-slider .swiper-pagination {
    position: absolute !important;
    top: 50% !important;
    right: 30px !important;
    transform: translateY(-50%) !important;
    bottom: auto !important;
    left: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px;
    z-index: 9999 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Hide navigation arrows */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    display: none !important;
}



/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }
    
    .main-slider-dot-archer,
    .hero-slider .swiper-pagination {
        right: 12px !important;
        gap: 12px;
    }
    
    .main-slider-dot-archer .swiper-pagination-bullet button {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

}

@media (max-width: 480px) {
    .main-slider-dot-archer,
    .hero-slider .swiper-pagination {
        right: 10px !important;
        gap: 10px;
    }
    
    .main-slider-dot-archer .swiper-pagination-bullet button {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }
}

/* Ensure existing hero styles work with slider */
.hero-section .hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-section .hero-content {
    position: relative;
    z-index: 2;
    right: 200px;
} 