body {
    font-family: 'Arial', sans-serif;
}

.card-img-top {
    height: 180px;
    object-fit: cover;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: slide 15s infinite;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    animation: fade 15s infinite;
}

.hero-image:nth-child(1) {
    animation-delay: 0s;
}

.hero-image:nth-child(2) {
    animation-delay: 5s;
}

.hero-image:nth-child(3) {
    animation-delay: 10s;
}

@keyframes slide {
    0%,
    100% {
        opacity: 0;
    }
    10%,
    30% {
        opacity: 1;
    }
}

@keyframes fade {
    0%,
    100% {
        opacity: 0;
    }
    10%,
    30% {
        opacity: 1;
    }
}

.bg-custom-orange {
    background-color: #E67E22; /* Custom orange color */
}

.text-custom-orange {
    color: #E67E22; /* Custom orange text color */
}

.btn-custom-orange {
    background-color: #E67E22; /* Custom orange button color */
}