


/* Modern Hero Slider - Completely New Design */
.hero__slider--section_1 {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    margin-bottom: 0;
    z-index: 1;
}

.hero__slider--inner {
    width: 100%;
    height: 100vh;
    position: relative;
}

.hero__slider--wrapper {
    width: 100%;
    height: 100vh;
}

.swiper-slide {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero__slider--items {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed;
}

/* Dark overlay for better text readability */
.hero__slider--items::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero__slider--items__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider__content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-overlay {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 25px !important;
    padding: 50px 40px !important;
    box-shadow:
        0 25px 45px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
}

.text-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transition: left 0.5s;
}

.text-overlay:hover::before {
    left: 100%;
}

.text-overlay:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 35px 65px rgba(0, 0, 0, 0.15),
        0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.slider__content--maintitle {
    font-size: 4rem !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    margin-bottom: 25px !important;
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
    letter-spacing: -2px !important;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.slider__content--desc {
    font-size: 1.3rem !important;
    font-weight: 300 !important;
    line-height: 1.7 !important;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-bottom: 35px !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2) !important;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.slider__btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    padding: 18px 35px !important;
    border-radius: 60px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    color: #fff !important;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow:
        0 8px 25px rgba(102, 126, 234, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.1) !important;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
}

.slider__btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.slider__btn:hover::before {
    left: 0;
}

.slider__btn:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow:
        0 15px 35px rgba(102, 126, 234, 0.6),
        0 8px 20px rgba(0, 0, 0, 0.15) !important;
    color: #fff !important;
}

.primary__btn--arrow__icon {
    transition: transform 0.3s ease;
    fill: currentColor;
}

.slider__btn:hover .primary__btn--arrow__icon {
    transform: translateX(8px);
}

/* Enhanced Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    width: 70px !important;
    height: 70px !important;
    margin-top: -35px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border: 2px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 50% !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
    z-index: 10;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    transform: scale(1.1) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 24px !important;
    color: #fff !important;
    font-weight: 900 !important;
}

/* Pagination */
.swiper-pagination {
    bottom: 30px !important;
    z-index: 10;
}

.swiper-pagination-bullet {
    width: 14px !important;
    height: 14px !important;
    background: rgba(255, 255, 255, 0.6) !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
    margin: 0 8px !important;
}

.swiper-pagination-bullet-active {
    background: #667eea !important;
    transform: scale(1.4) !important;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.6);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Responsive Design */
@media (max-width: 768px) {

    .hero__slider--section_1,
    .hero__slider--inner,
    .hero__slider--wrapper,
    .swiper-slide,
    .hero__slider--items {
        height: 300px;
    }

    .slider__content--maintitle {
        font-size: 2.8rem !important;
        margin-bottom: 20px !important;
    }

    .slider__content--desc {
        font-size: 1.1rem !important;
        margin-bottom: 30px !important;
        display: none;
    }

    .text-overlay {
        padding: 35px 25px !important;
        border-radius: 20px !important;
    }

    .slider__btn {
        padding: 10px 15px !important;
        font-size: 1rem !important;
    }
}

@media (max-width: 576px) {
    .slider__content--maintitle {
        font-size: 2.2rem !important;
        letter-spacing: -1px !important;
    }

    .slider__content--desc {
        font-size: 1rem !important;
    }

    .text-overlay {
        padding: 25px 20px !important;
        border-radius: 15px !important;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 50px !important;
        height: 50px !important;
        margin-top: -25px !important;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 18px !important;
    }
}

/* Loading Animation */
.hero__slider--section_1.loading {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero__slider--section_1.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 100;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}