:root {
    --primaryColor: #082A99;
    --middleColor: #325c9b;
    --helperColor: #444444;
    --lightHelper: #e9e6e6;
    --hrColor: rgb(222, 184, 135);
    --transparentColor: #00d0848f;
    --shadow: rgba(189, 188, 188, 0.514);
    /* --------------------------------- */
    --whatsappColor: #25D366;
    --white: #ffff;
    --blue: #1877F2;
    --green: #25D366;
    --gray: #f8f8f8;
}

.service-section {
    display: flex;
    flex-direction: column;
    gap: 90px;
}

.service-section h1 {
    color: var(--primaryColor);
    width: fit-content;
    border-bottom: 4px solid var(--primaryColor);
    margin: auto;
    font-size: 2.5rem;
}

.services-container {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    gap: 90px;
    width: 80%;
    margin: auto;
}

/* ----------------------------------------------- */
.sevices-details {
    padding: 30px;
    width: 40%;
    /* border-radius:20% 0px ; */
    background-color: var(--white);
    box-shadow: 0 4px 8px var(--shadow);
    text-align: center;
}

.sevices-details strong {
    color: var(--primaryColor);
}

.sevices-details li {
    color: var(--primaryColor);
}

.sevices-details h2 {
    font-size: 1.5rem;
    color: var(--primaryColor);
}

.sevices-details p {
    font-size: 1.2rem;
    color: var(--middleColor);
}

/* ------------------------------------------------- */
.services-image {
    width: 40%;
}

.services-image img {
    transition: transform 1s ease-in-out;
    width: 90%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.services-image img:hover {
    transform: scale(1.05);
}

/* ----------------------------------------- */
.services-rows-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 80%;
    margin: auto;
    gap: 50px;

}

.services-rows-container-link {
    border-radius: 10px;
    padding: 5% 0%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background-color: var(--gray);
    box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.301);

    transition: transform 0.3s ease-in;

}

.services-rows-container-link div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.link-to-page {
    display: inline-block;
    margin: auto;
    text-decoration: none;
    padding: 10px 5px;
    background-color: var(--shadow);
    color: var(--primaryColor);
    border-radius: 20px;
}

.services-rows-container-link:hover {
    transform: translateY(-10px)
}

/* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */
.card-image {
    width: 70%;
    border-radius: 10px;
    max-height: 400px;
    min-height: 400px;
    transition: transform 0.5s ease-in-out;
}

.card-image:hover {
    transform: scale(1.05);
}


/* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */
.services-rows-container h3,
h4 {
    color: var(--primaryColor);
    margin: 0px;
}

/* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */

.services-rows-container hr {
    width: 80%;
    height: 2px;
    border: none;
    background-color: var(--hrColor);
}


/* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */

.services-rows-container-whats {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    gap: 20px;
    width: 85%;
    margin: auto;
    padding: 10px 5px;
    background-color: var(--shadow);
    color: var(--primaryColor);
    font-weight: 400;
    font-size: medium;
    text-decoration: none;
    border-radius: 20px;
    border: none;
    transition: border-radius 0.5s ease-in-out;
}

.services-rows-container-whats:hover {
    border-radius: 0px 25px;
}

.icon {
    width: 20%;
    max-height: 50px;

    background-color: rgba(255, 255, 255, 0);
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
@media (max-width:800px) {
    .service-section {
        gap: 30px;
    }

    .service-section h1 {
        font-size: 1.5rem;
    }

    .services-container {
        flex-direction: column;
        gap: 10px;
    }

    /* ----------------------------------------------- */
    .sevices-details {
        padding: 3px 10px;
        width: 98%;
    }

    .sevices-details h2 {
        font-size: 1.3rem;
    }

    .sevices-details p {
        font-size: 1.05rem;
        color: var(--middleColor);
    }

    /* ------------------------------------------------- */
    .services-image {
        width: 80%;
        margin: auto;
    }

    /*  ----------------------------------------- */
    .services-rows-container {

        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .services-rows-container-link {
        padding: 3% 0%;
        gap: 5px;
    }

    .services-rows-container-link:hover {
        transform: translateY(-10px)
    }

    .services-rows-container-whats {
        width: 90%;

        font-weight: 350;
        font-size: small;
    }

    .services-image {
        width: 75%;
        margin: auto;
    }

    /* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */


}