.banner__one-image {
    background-color: #000000 !important;
}


.row {
    display: flex;
    flex-wrap: wrap;
}

.service__one-item {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service__one-item-content {
    flex: 1;
}


.banner__one-content {
    text-align: left;
}

.banner__one-content img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .banner__one-content img {
        width: 80%; /* Reduces image size on smaller screens */
    }
}

@media (max-width: 576px) {
    .banner__one-content img {
        width: 90%; /* Further adjusts image size for mobile devices */
    }
}


.banner__one-content {
    text-align: left;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner__one-content img {
    max-width: 100%;
    height: auto;
}

.contact__two-map iframe {
    filter: none !important;
    -webkit-filter: none !important;
}

.contact__two-map {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.contact__two-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.main-topbar {
    position: sticky;
    top: 0;
    z-index: 1000; /* Ensures it is above other content */
    background-color: #1a1a1a;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow for better visibility */
}

.brand__area {
    width: auto;
    overflow: hidden;
}

.brand__area-item {
    width: 200px !important;
    max-width: 200px;
}

.brand__area .swiper-wrapper {
    display: flex;
    align-items: center;
}

h1 {
    font-size: 40px;
    line-height: 1.25;
}

.section-padding-small {
    padding: 30px 0px;
}

h1 {
    outline: none;
    border: none;
}
h1:focus {
    outline: none;
    border: none;
}


.custom-header {
    background: #232323;
    padding: 20px 0;
}

.custom-header h1 {
    text-align: center;
    margin: 0;
    font-size: 2.5em; /* default (desktop) size */
    color: #ffffff;
}

/* Tablet and below */
@media (max-width: 991px) {
    .custom-header h1 {
        font-size: 2em;
    }


    /* Mobile devices */
    @media (max-width: 600px) {
        .custom-header {
            padding: 20px 16px;
        }

        .custom-header h1 {
            font-size: 1.25em;
        }

    }
}






.service-card-compact {
    border-radius: 14px;
    box-shadow: 0 1px 7px rgba(60,60,60,0.06);
    padding: 22px 6px 14px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 145px;
    transition: box-shadow 0.18s;
    width: 100%;
}

.service-card-compact:hover {
    box-shadow: 0 3px 16px 0 rgba(100,100,100,0.09);
}

.service-icon-wrapper {
    border-radius: 8px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.service-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.service-title {
    font-size: 1rem;
    font-weight: 600;
    color: #57B33E;
    margin-top: 7px;
    margin-bottom: 0;
    line-height: 1.15;
    text-align: center;
    word-break: break-word;
}

.service-desc {
    font-size: 0.91rem;
    color: #fff3cd;
    margin-top: 8px;
    line-height: 1.25;
    text-align: center;
    max-width: 90%;
    min-height: 19px;
}

/* Responsive: hide description on screens < 768px already handled by Bootstrap classes */
@media (max-width: 575.98px) {
    .service-card-compact {
        min-height: 112px;
        padding: 18px 2px 9px 2px;
        border-radius: 8px;
    }
    .service-title {
        font-size: 0.89rem;
        margin-top: 5px;
    }
    .service-icon-wrapper {
        width: 39px;
        height: 39px;
    }
    .service-icon {
        width: 25px;
        height: 25px;
    }
}