.hero-section {
    width: 100%;
}

.hero-img {
    width: 100%;
    height: 85vh;
    object-fit: cover;
}

/* services */
.service-card {
    background-color: white;
    color: black;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease-in-out;
    background-image: linear-gradient(to bottom, #34dceb 0%, #34dceb 100%);
    background-repeat: no-repeat;
    background-size: 100% 0%;
    background-position: top;
}

.service-card .learn-more-link {
    color: black;
    transition: color 0.3s ease-in-out;
}

.service-card:hover {
    color: white;
    background-size: 100% 100%;
    /* Fills from top to bottom */
}

.service-card:hover .card-title,
.service-card:hover .card-text,
.service-card:hover .learn-more-link {
    color: white;
}

.swiper-button-prev,
.swiper-button-next {
    background-color: #fff;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    color: #333;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 18px;
    font-weight: bold;
}

.col-md-4 {
    transition: transform 0.3s ease-in-out;
}

.col-md-4:hover {
    transform: translateY(-10px);
}

.accordion-button {
    background-color: #fff;
    color: #34dceb;
}

.accordion-button:not(.collapsed) {
    background-color: #34dceb;
    color: #fff;
}

.btn:hover {
    color: #fff;
    background-color: #34dceb;
}

.thankyou-message {
    display: none;
}

.confirmation-message {
    display: none;
}

@media (max-width: 768px) {
    .banner {
        width: 100%;
        height: 30vh !important;
        background-size: cover;
        background-position: center;
    }

    .banner-text {
        left: 5px !important;
        bottom: 20px !important;
        font-size: 10px;
        max-width: 70%;
    }

    .hero-img {
        height: 30vh;
        width: 100%;
        object-fit: fill;
    }

    .list-unstyled {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        padding-left: 20px;
        margin-bottom: 0;
        list-style: none;
    }

}