/* ========================================================= */
/*                     SERVICES SECTION                      */
/* ========================================================= */

.services-preview {
    text-align: center;
    padding: 50px 20px;
    background: white;
}

.services-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.service-box {
    width: 300px;
    padding: 20px;
    background: #f4f4f4;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.service-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.service-box p {
    font-size: 16px;
}

/* ========================================================= */
/*                     CONTACT SECTION                       */
/* ========================================================= */

.contact {
    text-align: center;
    padding: 40px 20px;
    color: rgb(111, 105, 105);
}

/* ========================================================= */
/*              SOFTWARE SPECIALIZATION SECTION              */
/* ========================================================= */

.software-section {
    text-align: center;
    padding: 50px 20px;
    background: #f4f4f4;
}

.software-section h2 {
    font-size: 28px;
    color: #0056b3;
    margin-bottom: 20px;
}

/* Software Container */
.software-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Software Box */
.software-box {
    width: 150px;
    text-align: center;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.software-box img {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
}

.software-box p {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

/* ========================================================= */
/*                     FEATURES SECTION                      */
/* ========================================================= */

.features-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background: #f4f4f4;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 20px; /* Adds spacing between items */
}

/* Image Styling */
.features-image {
    flex: 1;
    text-align: center;
    max-width: 50%;
}

.features-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* Content Styling */
.features-content {
    flex: 1;
    padding: 20px;
    max-width: 50%;
}

.features-content h2 {
    font-size: 24px;
    color: #0056b3;
    margin-bottom: 15px;
}

.features-content p {
    font-size: 16px;
    color: #555;
}

.features-content ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.features-content ul li {
    font-size: 16px;
    margin: 10px 0;
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
}

.features-content ul li::before {
    content: "✔";
    color: #0056b3;
    font-size: 20px;
    margin-right: 10px;
}

/* ========================================================= */
/*                 RESPONSIVE DESIGN (MOBILE)                */
/* ========================================================= */

@media (max-width: 768px) {
    /* Features Section Mobile Layout */
    .features-container {
        flex-direction: column;
        text-align: center;
    }

    .features-image {
        max-width: 100%;
    }

    .features-content {
        max-width: 100%;
        padding: 20px;
    }

    .features-content h2 {
        font-size: 22px;
    }

    .features-content p {
        font-size: 14px;
    }

    .features-content ul li {
        font-size: 14px;
    }

    /* Software Section Mobile Layout */
    .software-container {
        flex-direction: column;
        align-items: center;
    }
}
