.section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1600px;
    width: 100%;
    margin: 50px auto;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.text-content {
    max-width: 50%;
}
.text-content h2 {
    color: #091f5c;
}
.text-content p {
    color: #555;
    line-height: 1.7;
}
.button-WE {
    display: inline-block;
    padding: 10px 20px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}
.image-container {
    width: 45%;
    position: relative;
    animation: float 4s infinite ease-in-out;
}
.image-container img {
    width: 100%;
    border-radius: 10px;
}


/* @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
} */



/* ✅     */
.services-section {
    display: flex;
    justify-content: center; 
    align-items: center; 
    text-align: center;
    padding: 60px 0;
 
}

.container {
    display: flex;
    justify-content: center; 
    align-items: center;
    flex-direction: column; 
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    justify-content: center; 
      margin: 0 auto;

}

.service-box-about {
    text-decoration: none;
    /* width: calc(33% - 20px);  */
    min-width: 250px;
    background-color: white;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    border: 4px solid #091f5c;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
}

.service-box-about:hover {
    transform: translateY(-5px);
}

.service-box-about i {
    font-size: 40px;
    color: #091f5c;
    margin-bottom: 10px;
}

.service-box-about h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #091f5c;
}

.service-box-about p {
    font-size: 14px;
    color: #000000;
}
.service-box-about h3, .service-box-about p {
    text-align: center;
    margin: 5px 0;
}

.service-box-about a {
    width: 100%;
    height: 100%;
    text-decoration: none; 
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* @keyframes floatAnimation1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes floatAnimation2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(20px); }
}

@keyframes floatAnimation3 {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.4); }
}

@keyframes floatAnimation4 {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(40deg); }
} */

/* .service-box-about:nth-child(1) i { animation: floatAnimation1 1s infinite ease-in-out; }
.service-box-about:nth-child(2) i { animation: floatAnimation2 1s infinite ease-in-out; }
.service-box-about:nth-child(3) i { animation: floatAnimation3 1s infinite ease-in-out; }
.service-box-about:nth-child(4) i { animation: floatAnimation4 1s infinite ease-in-out; } */


@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px; 
    }
    .text-content {
        max-width: 60%; 
    }
    .image-container {
        width: 35%;
    }
}


@media (max-width: 768px) {
    .services-section {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
     
    }

   .services-grid {
        grid-template-columns: repeat(1, 1fr);
        max-width: 400px;
        margin: auto;
        }
        .section {
            flex-direction: column;
            text-align: center;
            padding: 20px;
        }
        .text-content {
            max-width: 100%;
        }
        .image-container {
            width: 80%;
            margin-top: 20px;
        }
    }
 
     @media (max-width: 480px) {
        .image-container {
            width: 100%;
        }
        .service-box-about {
            width: 80%; 
            margin: auto;
        }
    }
    