
:root {
    --primary-color: #00A0E3;
    --secondary-color: #333333;
}


.heroSwiper {
    width: 100%;
    height: 100vh;
}

.heroSwiper .swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 80%;
    max-width: 1200px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: white !important;
}

.swiper-pagination-bullet {
    background: white !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}


@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem !important;
    }
    .hero-content p {
        font-size: 1rem !important;
    }
}


.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
