﻿.hero-container {
    /*position: relative;*/
    width: 100%;
    height: 100vh;
    background-image: url('/dist/img/login-bg.png');
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    top: 19rem;
    width: 90%;
    max-width: 1200px;
    height: 300px;
    /*background: rgba(255, 255, 255, 0.1);*/
    /*backdrop-filter: blur(10px);*/
    /*border-radius: 20px;*/
    /*border: 1px solid rgba(255, 255, 255, 0.2);*/
    overflow: hidden;
    /*box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);*/
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    width: 500%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    width: 20%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    text-align: left;
    padding: 40px;
    color: white;
    position: relative;
}

.slide-content {
    z-index: 2;
    max-width: 1000px;
    animation: fadeInUp 0.8s ease-out;
}

.slide-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fafafa;
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    -webkit-background-clip: text;
    /*-webkit-text-fill-color: transparent;*/
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.slide-subtext {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .nav-dot.active {
        background: #ff800a;
        transform: scale(1.2);
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.6);
    }

    .nav-dot:hover {
        background: rgba(255, 255, 255, 0.7);
        transform: scale(1.1);
    }

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

    .carousel-arrow:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-50%) scale(1.1);
    }

    .carousel-arrow.prev {
        left: 20px;
    }

    .carousel-arrow.next {
        right: 20px;
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1440px) {
    .hero-container {
        background-position: -267px center;
    }
}

@media (max-width: 1024px) {
    .carousel-container {
        width: 95%;
        height: 450px;
    }

    .slide-heading {
        font-size: 2rem;
    }

    .slide-subtext {
        font-size: 1rem;
    }

    .carousel-slide {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .hero-container {
        height: 100vh;
    }

    .tab-container {
        background-image: url('/dist/img/login-bg-tab.png');
        background-size: cover;
        background-position: -315px 0px;
        background-repeat: no-repeat;
        height: 100vh;
    }

    .carousel-container {
        width: 95%;
        height: 400px;
        border-radius: 15px;
    }

    .slide-heading {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .slide-subtext {
        font-size: 1.1rem;
    }

    .carousel-slide {
        padding: 25px;
    }

    .carousel-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

        .carousel-arrow.prev {
            left: 15px;
        }

        .carousel-arrow.next {
            right: 15px;
        }

    .nav-dot {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        width: 95%;
        height: 350px;
        border-radius: 10px;
    }

    .tab-container {
        background-image: url('/dist/img/login-bg-tab.png');
        background-size: cover;
        background-position: -473px 0px;
        background-repeat: no-repeat;
        height: 100vh;
        padding-right: 30px;
        padding-left: 30px;
    }

    .tab-container-tight {
        padding-left: 25px;
        padding-right: 25px;
    }

    .slide-heading {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .slide-subtext {
        font-size: 1rem;
        line-height: 1.5;
    }

    .carousel-slide {
        padding: 20px;
    }

    .carousel-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

        .carousel-arrow.prev {
            left: 10px;
        }

        .carousel-arrow.next {
            right: 10px;
        }

    .carousel-nav {
        bottom: 20px;
        gap: 10px;
    }

    .nav-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 320px) {
    .slide-heading {
        font-size: 1.8rem;
    }

    .slide-subtext {
        font-size: 0.9rem;
    }

    .carousel-slide {
        padding: 15px;
    }
}
