body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f9f9f9;
}

/* Maintenance page */

.container-maintenance {
    text-align: center;
    padding: 10px;
    background-color: transparent;
    ;
    border-radius: 10px;
}

.logo {
    width: 400px;
    margin-top: -150px;
    margin-bottom: 20px;
}

.background-effect {
    background-image: url('../images/WIP-IT-Fond-Type1-Med.png'); /* You will need to replace this with the correct image */
    background-size: cover;
    background-position: center;
    height: 612px;
    width: 100%;
    z-index: auto;
    margin-bottom: 20px;
    margin-top: -45px;
}


h2 {
    color: #444;
    font-size: 18px;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.buttons a {
    text-decoration: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    border: 2px solid #b3f713;
    color: #000000;
    transition: 0.3s ease;
}

.info-btn {
    background-color: #b3f713;
}

.contact-btn {
    background-color: transparent;
}

.buttons a:hover {
    opacity: 0.8;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
}

.modal-header, .modal-body, .modal-footer {
    padding: 10px;
}

.modal-header {
    font-size: 24px;
    color: #333;
    border-bottom: 1px solid #ccc;
}

.modal-body {
    padding: 20px 0;
}

.modal-body p {
    font-size: 16px;
    color: #555;
}

.modal-footer {
    text-align: right;
}

.close-btn {
    background-color: #b3f713;
    color: #000000;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.close-btn:hover {
    opacity: 0.8;
}

/* Infos page */

/* Header */

header {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: left;
    display: flex;
    align-items: center;
}

header img {
    margin-right: 20px;
    max-width: 100%;  /* Ensures the image doesn't exceed the container width */
    height: auto;     /* Maintains the aspect ratio */
}





.main{
    padding: 20px;
}


/* Image and Text Section */
.image-text-section {
    display: grid;
    align-items: center;
    margin: 40px 0;
    gap: 20px;
}

.image-text-section img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.image-text-section .text-block {
    font-size: 24px;
    color: #6bba41;
    text-transform: uppercase;
    font-weight: bold;
}



/* Service Item Custom Styles */

/* Custom wrapper for service items to add horizontal spacing */
.service-item-wrapper {
    padding-left: 15px;
    padding-right: 15px;
}

.service-item {
    background-color: #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;

}

.service-item img {
    width: 80px;
    margin-top: 10px;
    padding: 20px 0 0 0;
}

#vc {
    margin-top: -2px;
}

.service-item h3 {

    text-decoration-style: wavy;
    color: #333;
}

/* Base font size for service items */
.service-title {
    font-size: 18px; /* Default size for mobile screens */
    font-weight: bold;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .service-title {
        font-size: 14px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .service-title {
        font-size: 16px;
    }
}

/* Extra large devices (1200px and up) */
@media (min-width: 1200px) {
    .service-title {
        font-size: 18px;
    }
}

/* Logo Custom Styles */
/* Add margin to each logo to create space between images */
.logo-grid img {
    width: 100px; /* Adjust size as needed */
    margin: 10px; /* Add margin to create space between the logos */
    object-fit: contain;
}

/* Optionally adjust the width of specific logos like Dell */
#logo-dell {
    width: 80px; /* You can customize this further if necessary */
}

footer h2 {
    font-size: 24px;
    font-weight: bold;
    background-color: #d3d3d3;
}
.distributed-solutions {
    text-align: center;
    background-color: #d3d3d3;
    padding: 20px 0 20px 80px;
}

.container-fluid{
    background-color: #d3d3d3;
}


