body {
    background-color: rgba(var(--bs-dark-rgb));
}
.banner-area4 .banner-content {
    max-width: 100%;
    width: 100%;
}

.text-success-theme {
    color: var(--theme-color);
}

.rounded-1 {
    border-radius: 1rem;
}

.bg-dark-2 {
    background: #161a1e;
}

.gallery-image {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    margin: 10px;
    width: 100%;
    /* max-width: 200px; */
}

.gallery-image:hover {
    opacity: 0.7;
}

.image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.image-modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-image {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.image-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

.modal-image,
.image-caption {
    animation: zoom 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.close-button {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close-button:hover,
.close-button:focus {
    color: #bbb;
    cursor: pointer;
}

@media only screen and (max-width: 700px) {
    .modal-image {
        width: 100%;
    }
}

.bg-success-grad {
    background: #008f58;
    background: linear-gradient(
        111deg,
        rgba(0, 143, 88, 1) 51%,
        rgba(75, 214, 161, 1) 100%
    );
}

img {
    transition: transform 0.2s ease;
    will-change: transform;
}

.contact-page-wrap .contact-form-wrap .contact-form form input,
.contact-page-wrap .contact-form-wrap .contact-form form textarea,
.contact-page-wrap .contact-form-wrap .contact-form form select,
.contact-page-wrap .contact-form-wrap .contact-form form select option {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    height: 41px;
    font-family: var(--font-saira);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.02em;
    color: #dedada;
    padding: 10px 15px;
}

select option[disabled][selected] {
    color: #888; /* Light grey like a placeholder */
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--black-color2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
body.loaded #preloader {
    display: none;
}

.single-solution {
    min-height: 175px;
}
