.governor-box {
    position: fixed;
    top: 100px;
    left: 20px;
    width: 150px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 1000;
    text-align: center;
    border-top: 4px solid #dc3545;
    display: block;
}

.governor-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.governor-title {
    font-size: 0.65rem;
    color: #666;
    margin-top: 8px;
    text-transform: uppercase;
    font-weight: bold;
}

.governor-name {
    font-size: 0.8rem;
    color: #dc3545;
    font-weight: 800;
    line-height: 1.2;
}

/* Swiper Styles */
.swiper {
    width: 100%;
    height: 100vh;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    position: relative;
}

    .swiper-slide::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.4);
        z-index: 1;
    }

.slide-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 20px;
}

.slide-title {
    font-size: 4rem;
    font-weight: 800;
    opacity: 0;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.slide-desc {
    font-size: 1.4rem;
    margin-bottom: 30px;
    opacity: 0;
}

.btn-hero {
    opacity: 0;
    padding: 15px 40px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: bold;
}

.anim-active .slide-title {
    animation: slideInDown 1s ease forwards;
}

.anim-active .slide-desc {
    animation: fadeInUp 1s ease 0.5s forwards;
}

.anim-active .btn-hero {
    animation: fadeInUp 1s ease 0.8s forwards;
}

@media (max-width: 768px) {
    .governor-box {
        display: none;
    }

    .slide-title {
        font-size: 2.5rem;
    }
}
