

.hero {
    text-align: center;
    color: white;
    position: relative;
    padding: 50px 20px;
    width: 100%;
}

.image-slider {
    position: relative;
    width: 100%;
    max-width: 100vw;
    height: 50vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-slider img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    border-radius: 0;
    box-shadow: none;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.image-slider img:first-child {
    opacity: 1;
}

@keyframes slideShow {
    0% { opacity: 1; }
    33% { opacity: 0; }
    66% { opacity: 0; }
}

.image-slider img:nth-child(1) { animation: slideShow 9s infinite 0s; }
.image-slider img:nth-child(2) { animation: slideShow 9s infinite 3s; }
.image-slider img:nth-child(3) { animation: slideShow 9s infinite 6s; }

.hero h1 {
    font-size: 3rem;
    animation: fadeInDown 1s ease-in-out;
}

.hero p {
    font-size: 1.2rem;
    margin: 10px 0 20px;
    animation: fadeInUp 1s ease-in-out;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: #ff6600;
    color: white;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

