/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 542px;
    overflow: hidden;
}

.hero-slider * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.hero-slider .hero-swiper {
    width: 100%;
    height: 100%;
    cursor: grab;
}

.hero-slider .hero-swiper:active {
    cursor: grabbing;
}

.hero-slider .swiper-wrapper {
    height: 100%;
}

.hero-slider .hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-slider .hero-slide__content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 50%;
    margin-right: auto;
    padding: 40px 70px;
    text-align: left;
    color: white;
}

.hero-slider .hero-slide__tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-slider .hero-slide__title {
    font-family: CircularXX, sans-serif;
    font-weight: 450;
    font-size: 64px;
    line-height: 100%;
    letter-spacing: -1px;
    margin-bottom: 35px;
    color: #fff;
}

.hero-slider .hero-slide__subtitle {
    font-family: CircularXX, sans-serif;
    font-weight: 450;
    font-style: Book;
    font-size: 24px;
    line-height: 116%;
    margin-bottom: 35px;
    color: white;
}

.hero-slider .hero-slide__button {
    font-family: CircularXX, sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 17.41px;
    letter-spacing: 1.58px;
    padding: 14px 28px;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 16px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-decoration: none;
    display: block;
    width: fit-content;
}

.hero-slider .hero-slide__button.main-slide-btn {

}

.hero-slider .hero-slide__button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #333;
}

.hero-slider .hero-next-slide-btn {
    position: relative;
    overflow: hidden;
}

/* .hero-slider .hero-next-slide-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1.5rem;
    width: 0;
    height: 0;
    border-left: 6px solid #333;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.hero-slider .hero-next-slide-btn:hover::after {
    right: 1rem;
} */

.hero-slider .hero-next-slide-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Swiper Pagination Styles */
.hero-slider .hero-swiper-pagination {
    position: absolute;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    z-index: 10;
    top: 2rem;
    right: 2rem;
    height: auto;
    width: auto;
    pointer-events: auto;
}

.hero-slider .hero-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    opacity: 1;
}

.hero-slider .hero-swiper-pagination .swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.hero-slider .hero-swiper-pagination .swiper-pagination-bullet-active {
    background: white;
}

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .hero-slider .hero-swiper-pagination {
        top: 37px;
        right: 52px;
        height: 10px;
        width: fit-content;
        margin-left: auto;
    }
    
    .hero-slider .hero-slide__title {
        font-size: 4rem;
    }
    
    .hero-slider .hero-slide__subtitle {
        font-size: 1.5rem;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    .hero-slider {
        height: 570px;
    }

    .hero-slider .hero-swiper {
        padding-bottom: 70px;
    }
    
    .hero-slider .hero-swiper-pagination {
        bottom: 2.5rem;
        left: 50%;
        transform: translateX(-50%);
        top: auto;
        right: auto;
        height: auto;
        width: auto;
    }

    .hero-slider .hero-swiper-pagination .swiper-pagination-bullet {
        background: rgba(202, 202, 202, 0.4);
        margin: 0;
    }
    .hero-slider .hero-swiper-pagination .swiper-pagination-bullet-active {
        background: rgba(51, 186, 246, 1);
    }
    
    .hero-slider .hero-slide__content {
        padding: 0;
        padding-top: 1.5rem;
        max-width: 100%;
        justify-content: flex-end;
    }

    .hero-slider .hero-slide__content .mobile-blur-bg {
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.01);
        /* backdrop-filter: blur(74.88411712646484px); */
        /* border: 0.22px solid rgba(255, 255, 255, 0.3); */
    }
    
    .hero-slider .hero-slide__title {
        font-weight: 450;
        font-size: 36px;
        line-height: 100%;
        margin-bottom: 12px;
    }
    
    .hero-slider .hero-slide__subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .hero-slider .hero-slide__tag {
        /* display: none; */
        margin-bottom: auto;
        margin-inline-start: 20px;
    }
    
    .hero-slider .hero-slide__button {
        font-size: 12px;
        line-height: 14px;
        letter-spacing: 1.2px;
        padding: 10px 20px;
        border-radius: 10px;
        margin-bottom: 0;
    }
    
    .hero-slider .hero-next-slide-btn::after {
        right: 1rem;
    }
    
    .hero-slider .hero-next-slide-btn:hover::after {
        right: 0.5rem;
    }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-slider .hero-slide__title {
        font-size: 3rem;
    }
    
    .hero-slider .hero-slide__subtitle {
        font-size: 1.25rem;
    }
}
