/* Image grid */

.image-header{
    color: #000;

    /* Heading-1 */
    font-family: Outfit;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;

    align-self: center;

    padding-top: 10px;
}
.image-gallery {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 columns */
    grid-gap: 10px; /* space between images */
    width: 100%;
    max-width: 1360px; /* limits the maximum width of the grid */
}

.gallery-item img {
    width: 272px;
    height: 150px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.gallery-item img:hover {
    transform: scale(1.05); /* slight zoom on hover */
}

/* Responsive adjustments */
@media screen and (max-width: 1400px) {
    .gallery-grid {
        max-width: 816px;
        grid-template-columns: repeat(3, 1fr); /* 3 columns on smaller screens */
    }
}

@media screen and (max-width: 768px) {
    .gallery-item img {
        width: 136px;
        height: 75px;
    }
    .gallery-grid {
        max-width: 272px;
        grid-template-columns: repeat(2, 1fr); /* 2 columns on very small screens */
    }
}


/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}
.modal-content {
    margin: auto;
    display: block;
    width: 800px;
    height: 500px;
}
.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .modal-content{
        width: 300px;
        height: 200px;
    }
}

.section-one{
    background-color: #bcdafa;
    padding-bottom: 10px;
    position: relative; /* Allow absolute positioning of children */
}

h3{
    color: #000;

    /* Heading-1 */
    font-family: Outfit;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    padding: 10px;
}

.list-container{
    padding-left: 160px;
}

.list-container ul.list-ic {
    display: flex; /* Make the list items inline horizontally */
    flex-wrap: wrap; /* Allow the items to wrap if the container is too small */
    gap: 10px; /* Add space between list items */
    list-style-position: outside; /* Align text with bullet */
    padding: 0;
}

.list-container ul.list-ic li {
    margin-bottom: 20px;
    flex: 1 1 30%; /* Each item takes up 30% of the container width */
}

.list-container ul.list-ic li::marker {
    color: #5a7ecf; /* Change bullet color to green */
    font-size: 2em; /* Adjust bullet size as needed */
}
.list-ic{
    padding-left: 10px;
}

.list-ic a {
    color: #788288;
    text-decoration: none;
    color: #000;
    /* Header-Navbar */
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.third-h3{
    text-align: center;
}

.section-two {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.scope-of-work{
    padding-left: 100px;
}

.scope-of-work, .terms-of-use {
    flex: 1;
    margin: 0 10px;
    text-align: center;
}

.scope-of-work ul, .terms-of-use ul {
    list-style-position: inside;
    padding: 0;
    margin: 0;
}

.scope-of-work li, .terms-of-use li {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}

.section-two li{
    color: #000;
    /* Header-Navbar */
    font-family: Outfit;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.image-column {
    position: absolute; /* Position relative to the nearest positioned ancestor */
    right: 200px; /* 100 pixels from the right */
    top: 40px; /* Align at the top */
    display: block; /* Ensure the column is displayed as a block */
}

.service-image {
    max-width: 300px; /* Set the maximum width to 60 pixels */
    width: auto; /* Allow the width to adjust based on max-width */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 10px; /* Space between images */
    display: block; /* Ensure images take full row width */ 
}

/* Hide the image column on smaller screens */
@media (max-width: 1400px) {
    .image-column {
        display: none; /* Hide images */
    }
}

 
.additional-desc{
    color: #000;

    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    /* padding-left: 140px; */
}

/* Business Section */

.business{
    padding-left: 160px;
    padding-right: 80px;
    background-color: #bcdafa;
    padding-bottom: 20px;
    padding-top: 10px;
}

.business-service{
    color: #000;

    /* Heading-1 */
    font-family: Outfit;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;

}

.business-service-subtitile{
    font-family: Outfit;
    font-size: 23px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}


.maintenance-plans {
    list-style-type: disc;
    padding-top: 20px;
    margin-left: 20px; /* Add spacing for bullets */
    padding-left: 0;
    text-align: left; /* Left-align the bullet points */
}

.maintenance-plans li {
    margin-bottom: 10px; /* Add space between list items */

    color: #000;
    /* Header-Navbar */
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.business .additional-desc{
    padding: 0;
}


/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .additional-desc{
        font-size: 12px;
        padding: 8px 12px
    }

    .image-header{
        font-size: 20px;
        padding-left: 5px;
        padding-top: 0px;
        padding-bottom: 0px;
    }
    h3{
        font-size: 20px;
    }
    .business-service-subtitile{
        font-family: Outfit;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-align: center;
    }
    .list-container{
        padding: 8px 12px;
        padding-left: 70px;
    }
    .list-ic a {
        font-size: 14px;
    }
    .list-container ul.list-ic {
        display: block; /* Disable flexbox on smaller screens */
        padding-left: 20px;
    }
    .list-container ul.list-ic li {
        flex: none; /* Remove flex properties */
    }

    .scope-of-work{
        padding-left: 0px;
    }
    .section-two {
        flex-direction: column; /* Stack items vertically */
        align-items: flex-start; /* Align items to the start */
    }
    .scope-of-work, .terms-of-use {
        margin: 10px 0; /* Add some spacing between the sections */
        text-align: left; /* Align text to the left */
        padding-left: 0; /* Remove left padding */
    }
    .scope-of-work li, .terms-of-use li {
        justify-content: flex-start; /* Align items to the start (left) */
        text-align: left; /* Ensure text inside list items is left-aligned */
        font-size: 14px;
    }
    
    .business{
        padding: 8px 12px;
    }

    .business-service{
        font-size: 18px;
    }
    .maintenance-plans li {
        font-size: 14px;
    }

}
@media (max-width: 376px) {
    .list-container{
        padding-left: 55px;
    }
}
/* General Section Styling */
.process {
    text-align: center;
    padding: 20px;
    background-color: #bcdafa;
}

.process-heading {
    margin-bottom: 20px;
}

/* List Container */
.process-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 140px;
    padding-right: 70px;
}

.process-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* List Items */
.process-item {
    text-decoration: none;
    color: #000;
    /* Header-Navbar */
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* Link Styling */
.process-link {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    transition: color 0.3s ease;
}

/* Arrow Styling */
.process-arrow {
    margin-left: 8px;
    margin-right: 8px;
    color: #666;
    font-size: 20px;
}

/* Remove Arrow from the Last Item */
.process-item:last-child .process-arrow {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .process-list {
        flex-direction: column;
        align-items: center;
    }

    .process-item {
        margin: 10px 0;
        flex-direction: column;
    }

    .process-arrow {
        display: none; /* Optional: Hide arrows for vertical stacking */
    }

    .process-link {
        font-size: 16px;
    }

    .process-heading {
        font-size: 20px;
    }
    .process-container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

