
body {
    background-color: #e4e2e2; 
    color: #333;
    line-height: 1.6;
}
#nav {
    background-color: #030408;
    font-family:Arial, Helvetica, sans-serif;
    padding: 30px 10px;
}
.nav-item .nav-link {
    color: #f4f6f9;
}
#nav .nav-link:hover {
    color: rgb(222, 101, 21) !important;
}
#footer {
    background-color: #030408;
    color: #f4f6f9;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
}

.sticky-top {
    z-index: 1030;
}

main.container {
    margin-top: 10px;
}

#carouselExampleCaptions {
    width: 100%;
    margin-top: 10px; 
    max-height: 650px; 
    overflow: hidden;
}

#carouselExampleCaptions .carousel-item img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.card-text {
    color: #dca602; 
}

.carousel-control-prev,
.carousel-control-next {
    width: 48px;
    height: 48px;
    background-color: rgba(0,0,0,0.35);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-indicators [data-bs-target] {
    background-color: rgba(255,255,255,0.8);
}

@media (max-width: 991px) {
    #carouselExampleCaptions .carousel-item img {
        height: 380px;
    }
}

@media (max-width: 575px) {
    #carouselExampleCaptions .carousel-item img {
        height: 260px;
    }
}


.card-text {
    color: #ffc107; 
}


.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}