:root {
    --primaryColor: #212223;
    --middleColor: #323234;
    --helperColor: #FED300;
    --lightHelper: #FFF2B2;
    --hrColor: rgb(222, 184, 135);
    --transparentColor: rgba(0, 0, 0, 0.699);
    --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(4, 1fr);
    width: 80%;
    margin: auto;
    gap: 50px;

}

.services-rows-container-link {
    border-radius: 10px;
    padding: 0% 0% 5% 0%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background-color: var(--lightHelper);
    transition: transform 0.3s ease-in;
    overflow: hidden;

}

.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;
    padding: 10px 3px;
    background-color: var(--shadow);
    text-decoration: none;
    color: var(--primaryColor);
    border-radius: 20px;
}

.services-rows-container-link:hover {
    transform: translateY(-10px)
}

/* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */
.card-image {
    width: 100%;
    border-radius: 10px;
    max-height: 200px;
    min-height: 200px;
    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(--middleColor);
}


/* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */

.services-rows-container-whats {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    gap: 5px;
    width: fit-content;
    margin: auto;
    padding: 10px;
    background: var(--gray);
    color: var(--whatsappColor);
    font-weight: 400;
    font-size: medium;
    text-decoration: none;
    border-radius: 25px;
    border: 1px solid var(--whatsappColor);
    box-shadow: 0px 4px 6px var(--shadow);
    transition: transform 0.5s ease-in-out;
    direction: ltr;
}

.services-rows-container-whats:hover {
    transform: translateY(-10px);
}

.icon i {
    font-size: large;
    font-weight: bold;
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
@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;
    }

    /* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */


}