* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* SINGLE IMAGE BANNER */
.banner-section {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-caption {
    position: absolute;
    bottom: 40px;
    left: 60px;
    font-size: 32px;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.7);
    color: #333;
    padding: 16px 32px;
    border-radius: 8px;
    animation: fadeInText 1.2s ease-in-out;
}

/* Fade-in animation for text */
@keyframes fadeInText {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Optional: fade-in for whole section */
.fade-in {
    opacity: 0;
    animation: fadeInPage 1.5s forwards;
}

@keyframes fadeInPage {
    to { opacity: 1; }
}




.slider-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 80px 20px;
    background-color: #fff;
}

.slide {
    width: 220px;
    height: 220px;
    background: #007b5e;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.slide i {
    font-size: 50px;
    margin-bottom: 15px;
}

.slide span {
    font-size: 18px;
    font-weight: bold;
}

.slide:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 128, 0, 0.3);
}

@media (max-width: 768px) {
    .slider-section {
        flex-direction: column;
    }
}