/* service card section */
body{
    height: 100%;
}

.card-wrapper{
    display: flex;
}

.service-card {
    display: flex;
    margin-right: 20px;
    /* Adjust the margin value to control the space between service cards */
    background-color: rgba(0, 70, 128, 0.9);
    border-radius: 5px;
    padding: 2px;
    max-width: 60%;
    margin: 0 auto;
    margin-bottom: 15px;
}

.pricing-table{
    display: flex;
    width: fit-content;
}
.wrapper{
    height: fit-content;
    text-align: center;
    margin: 0 auto;
    padding: 10px;
    background-color: rgba(0, 70, 128, 0.9);
    border-radius: 15px;
    margin-right: 10px;
    color: white;
    width: fit-content;
}
.wrapper h2{
    color: rgb(255, 244, 225);
}

.service-card img {
    max-width: 280px;
    min-width: 280px;
    max-height: 200px;
    filter: brightness(1.2);
    /* Adjust brightness */
    filter: contrast(1.2);
    /* Adjust contrast */
    filter: saturate(1.2);
    /* Adjust saturation */
    border-radius: 5px;
    margin: 10px 15px 10px 5px;
    /* bottom right top left */
    justify-content: center;
    /* Center horizontally */
    pointer-events: none;

}



/* Setting the styles for the pricing box */
.pricing-box {
    display: flex;
    padding: 10px;
    right: 0;
    margin-left: auto;
    display: table;
}

.price-marker {
    border-radius: 5px;
    background-color: rgb(1, 167, 3);
    /* Red marker background color */
    color: white;
    /* White text color */
    width: 40px;
    /* Marker width */
    height: 40px;
    /* Marker height */
    display: flex;
    align-items: center;
    /* Align in height */
    justify-content: center;
    /* Align in width */
    margin: 5px;
    padding: 2px;
}
.bottom-marker{
    background-color: red;
}


.seemorebtn {
    background-color: rgba(0, 70, 128, 0.9);
    border-radius: 5px;
    color: white;
    font-size: 18px;
    margin-bottom: 10px;
}

.seemorebtn:hover {
    font-size: 20px;
    transition: 0.3s;
}


.service-details {
    color: rgba(245, 222, 179, 0.9);
    font-size: 18px;
}

.service-details p {
    font-size: 20px;
}

.service-image {
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
}


/* Start of Maps Styling */
.map-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
    margin: 4%;
    /* Align the content at the top */
}

iframe {
    border-radius: 25px;
    justify-content: center;
}

body {
    overflow-x: hidden;

}

.maps {
    overflow: hidden;
    display: flex;
    justify-content: left;
    height: 450px;
    max-width: 100%;
    /* Height might need adjustments if any layout changes + TODO: Change layout of the maps in the future due to it looking ugly at the moment */
    /* Add any additional styling for your .maps container below this comment for organizing purposes */
}

.maps h2 {
    color: white;
    padding: 10px;
    max-height: 40px;
    margin: 20px;
    font-size: 25px;
}

.maps h3 {
    color: white;
    max-height: 40px;
    padding-bottom: 25px;
    padding-left: 15px;
}

.maps table {
    background-color: rgb(16,25,32);
    padding: 5px;
    margin-left: 20px;
    border-radius: 25px;
    max-width: 33%;
    max-height: fit-content;
    height: 40%;
}

.maps h3{
    margin: 10px;
}

@media (max-width: 950px) {
    .maps {
        display: block;
        height: 800px;
    }

    .maps table {
        margin: 0;
        margin-top: 20px;
        display: flex;
        max-width: 100%;
    }
}


@media(max-width: 900px){
    .service-card{
        display: block;
    }

}

.aboutus-table-wrap{
    width: 70%;
}

@media(max-width: 1700px){
    .aboutus-table-wrap{
        width: 50%;
    }
.seemorebtn {

    margin: 0;
}

}

@media(max-width: 1000px){

    .aboutus-table-wrap{
        width: 90%;
    }
}

.aboutus-btn-wrapper{
    top: 30px;
    bottom: 0px;
}

.copyrightlogos{
    position: relative;
}