/* Optional:  If using a separate CSS file, link it in base.html */

.banner-container {
    position: relative;
    text-align: center;
    color: white;
}

.banner-image {
    width: 100%;
    height: auto;
}

/* Optional Orange Overlay */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: orange;
    opacity: 0.79;  /* Adjust as needed */
}

.carousel-control-prev,
.carousel-control-next {
    background-color: rgba(0, 0, 0, 0.5); /* Optional:  Darken the controls */
    border-radius: 5px;
    width: 40px;  /* Adjust size as needed */
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    font-size: 2rem;  /* Adjust icon size if needed */
}

.carousel-item img {
    max-height: 400px; /* Or whatever height you want */
    object-fit: cover;  /* Prevents distortion */
}

.btn-success {
    background-color: #25D366; /* WhatsApp Green */
    border-color: #25D366;
}

.btn-success:hover {
    background-color: #128C7E; /* Darker shade on hover */
    border-color: #128C7E;
}

.page-header {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/projects/banne1.webp) no-repeat center center;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {

    .hero-header,
    .page-header {
        margin-top: 152px !important;
    }
}

@media (max-width: 992px) {

    .hero-header,
    .page-header {
        margin-top: 97px !important;
    }
}
/* Add more styling as needed */