color {
    color: #23A3E5;
    color: #1D257A;
    color: #ABCDE8;
}

.blue {
    color: #1D257A;
}

.service {
    padding-top: 40px;
    background-color: #f5f5f5;
    padding-bottom: 40px;
    color: black;
}

.service-title {
    width: 100%;
    text-align: center;
    padding-bottom: 30px;
}

.service-container {
    display: inline;
    /* gap: 30px; */
    padding-bottom: 30px;
}

.service-containers {
    display: flex;
    gap: 30px;
    padding-bottom: 30px;
}

.servicegalleryinfo {
    display: flex;
    color: black;
    gap: 40px;
    width: 100%;
}

.galleryinfo {
    width: 65%;
}

.service-gallery {
    width: 35%;
    height: 450px;
}

.service-gallerys {
    width: 35%;
    height: 450px;
}

.service-gallery img {
    width: 100%;
    height: 300px;
}

.service-gallerys img {
    width: 100%;
    height: 300px;
}

.service-gallery img:hover {
    opacity: 0.5;
}

.service-desc {
    width: 100%;
    text-align: center;
    padding: 15px 20px;
    background-color: #ABCDE8;
    font-size: larger;
    font-weight: bold;
}

.service-desc p {
    color: black;
}

.service-banner {
    margin-top: 0px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../assets/short-banner.jpg");
    height: 70%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    width: 100%;
    height: 200px;
}

.service-banner h2 {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.service-quote {
    background-color: #1D257A;
    padding: 50px;
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
}

@media(max-width:800px) {
    .service-container {
        display: inline;
        gap: 30px;
    }
    .service-containers {
        display: inline;
        gap: 30px;
    }
    .service-gallery {
        width: 100%;
        padding-bottom: 20px;
    }
    .service-gallerys {
        width: 100%;
        padding-bottom: 20px;
    }
    .servicegalleryinfo {
        display: inline;
    }
    .galleryinfo {
        width: 100%;
        text-align: justify;
        padding-bottom: 80px;
    }
    .service-gallery {
        /* width: 35%; */
        height: 350px;
    }
    .service-gallerys {
        /* width: 35%; */
        height: 500px;
    }
    .modal {
        margin-top: 100px;
    }
}

/* pop */

/* Styles for the modal */

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    /* margin-top: 100px; */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black with opacity */
}

/* Modal content */

.modal-content {
    background-color: #ABCDE8;
    margin: 15% auto;
    /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    /* Could be more or less, depending on screen size */
}

/* Close button */

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.close2 {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close2:hover,
.close2:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.readmorebtn {
    background-color: #23A3E5;
    /* Blue background */
    color: white;
    /* White text */
    padding: 10px 20px;
    /* Padding for better appearance */
    border: none;
    /* Remove border */
    border-radius: 5px;
    /* Add border radius */
    cursor: pointer;
    /* Show pointer cursor on hover */
}

/* Style for the "Read More" button when hovered */

.readmorebtn:hover {
    background-color: #1D257A;
    /* Darker blue background on hover */
    box-shadow: 0 0 10px rgba(17, 0, 255, 0.972);
}