body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    overflow-x: hidden;
}

/* Container styles */
.container1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
    width: 95%;
    gap: 40px;
    margin-top: 10px;
    margin-left: 20px;
    height: 34rem; /* Adjust as necessary */
}

/* Content styles */
.content {
    flex: 1;
    padding-left: 20px;
    text-align: left;
    padding: 20px;
}

.content h1 {
    font-size: 4rem;
    color: #003636;
    line-height: 1.2;
    margin-bottom: 40px;
    transition: color 0.3s ease-in-out;
}

.content p,
.content ol {
    font-size: 1.2em;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: 'Times New Roman', Times, serif;
    transition: color 0.3s ease-in-out;
}

/* Image styles */
.image {
    flex: 1;
}

.image img {
    width: 90%;
    border-radius: 10px;
}

#vision .image img {
    width: 90%;
    border-radius: 10px;
}

/* Supplier section */
.supplier-section {
    background-color: #ffffff;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 95%;
    margin-left: 20px;
    margin-top: 10px;
}

.container-supplier {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.image {
    flex: 1;
    text-align: left;
    padding: 20px;
}

.image img {
    max-width: 100%;
    border-radius: 10%;
}

.content-supplier {
    flex: 1;
    padding: 20px;
    text-align: left;
    font-size: 1em;
}

.content1{
    flex: 1;
    padding-left: 20px;
    text-align: left;
    padding: 20px;
    
}

.content1 h1 {
    font-size: 4rem;
    color: #003636;
    line-height: 1.2;
    margin-bottom: 10px;
    transition: color 0.3s ease-in-out;
}

.content1 p,
.content1 ol {
    font-size: 1.4em;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: 'Times New Roman', Times, serif;
    transition: color 0.3s ease-in-out;
}

.content-supplier h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #003636;
}

.content-supplier p {
    font-size: 1.2em;
    line-height: 1.5;
    margin-bottom: 20px;
    font-family: 'Times New Roman', Times, serif;
}

.content-supplier ul {
    list-style-type: none;
    padding: 0;
    font-family: 'Times New Roman', Times, serif;
}

.content-supplier ul li {
    font-size: 1.2em;
    line-height: 1.5;
    margin-bottom: 10px;
}

.content-supplier ul li:before {
    content: '●';
    color: #E94560;
    display: inline-block;
    width: 1em;
    margin-left: 0em;
}

.supplier-section1 {
    background-color: #d7efdf;
    color: #d7efdf;
}

.supplier-section1 .content-supplier h1 {
    color: #d7efdf;
}

/* New Services Section */
.service-heading {
    text-align: center;
    margin: 20px 0;
    padding: 10px;
    background: #1d7676;
    color: #fff;
    border-radius: 10px;
    max-width: 80%;
    margin: auto;
    margin-bottom: 25px;
    margin-top: 40px;
}

.new-services-section {
    background-color: #dad9dc; /* Light purple background */
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* width: 95%; */
    margin: 30px auto; /* Centered horizontally */
}

.new-services-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
}

.service-banner-box {
    background-color: #ffffff;
    border: 1px solid #c5b9e8; /* Light purple border */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px;
    flex: 1 1 calc(20% - 40px); /* Two boxes per row */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-banner-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-banner-box img {
    width: 50px;
    height: auto;
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
}

.service-banner-box img:hover {
    transform: scale(1.1);
}

.service-banner-box h2 {
    font-size: 1.5em;
    color: #003636; /* Purple */
    margin-bottom: 15px;
}

.service-banner-box p {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
}

.service-banner-box a {
    color: #003636;
    text-decoration: none;
    font-weight: bold;
}

.service-banner-box a:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.new-services-section, .new-services-container, .service-banner-box {
    animation: fadeIn 1s ease-in-out;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .container1 {
        flex-direction: column;
        height: auto;
        margin-left: 0;
    }

    .content h1 {
        font-size: 3rem;
        text-align: center;
    }

    .content p,
    .content ol {
        font-size: 1em;
        text-align: center;
    }

    .supplier-section {
        width: 100%;
        margin-left: 0;
    }

    .container-supplier {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .content-supplier h1 {
        font-size: 2em;
        text-align: center;
    }

    .content-supplier p,
    .content-supplier ul li {
        font-size: 1em;
        text-align: center;
    }

    .new-services-container {
        flex-direction: column;
        align-items: center;
    }

    .service-banner-box {
        flex: 1 1 100%;
    }

    .service-banner-box h2 {
        font-size: 1.2em;
    }

    .service-banner-box p {
        font-size: 0.9em;
    }
}

@media (max-width: 768px) {
    .container1 {
        padding: 10px;
        gap: 20px;
    }

    .content h1 {
        font-size: 2.5rem;
    }

    .content p,
    .content ol {
        font-size: 0.9em;
    }

    .supplier-section {
        padding: 30px 10px;
    }

    .container-supplier {
        padding: 10px;
    }

    .content-supplier h1 {
        font-size: 1.5em;
    }

    .content-supplier p,
    .content-supplier ul li {
        font-size: 0.9em;
    }

    .service-banner-box {
        margin: 10px;
    }

    .service-banner-box h2 {
        font-size: 1em;
    }

    .service-banner-box p {
        font-size: 0.8em;
    }

    .service-banner-box img {
        width: 40px;
    }
}

@media (max-width: 480px) {
    .container1 {
        padding: 5px;
        gap: 10px;
    }

    .content h1 {
        font-size: 2rem;
        text-align: center;
    }

    .content p,
    .content ol {
        font-size: 0.8em;
        text-align: center;
    }

    .supplier-section {
        padding: 20px 5px;
    }

    .container-supplier {
        padding: 5px;
    }

    .content-supplier h1 {
        font-size: 1.2em;
        text-align: center;
    }

    .content-supplier p,
    .content-supplier ul li {
        font-size: 0.8em;
        text-align: center;
    }

    .service-banner-box {
        padding: 10px;
        margin: 5px;
    }

    .service-banner-box h2 {
        font-size: 0.8em;
    }

    .service-banner-box p {
        font-size: 0.7em;
    }

    .service-banner-box img {
        width: 30px;
    }
}

.section-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background-color: white;
    margin: 20px auto;
    border-radius: 15px;
    max-width: 1380px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.section-container:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
    transform: rotate(30deg);
}

.text-container {
    flex: 1 1 45%;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 15px;
    z-index: 1;
}

.text-container h2 {
    color: #003636;
    margin-bottom: 10px;
    font-size: 2em;
    border-bottom: 2px solid #00796b;
    display: inline-block;
    padding-bottom: 5px;
}

.text-container p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.2em;
    font-family: 'Times New Roman', Times, serif;
}

.image-container {
    flex: 1 1 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 1;
}

.image-container img {
    max-width: 85%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 1s ease-in-out;
}

.image-container:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .section-container {
        flex-direction: column;
        padding: 20px;
    }

    .text-container,
    .image-container {
        flex: 1 1 100%;
        padding: 10px;
    }

    .image-container img {
        max-width: 100%;
    }
}
