.services-Card-Container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 90%;
    margin: auto;
}

.services-Card {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background: rgba(255, 255, 255, 0.1); */
    backdrop-filter: blur(5px);
    border-radius: 15px;
}

.services-Card-Internal {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    margin: 2px;
    background-color: var(--backgroundLightColor);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    height: 100%;
}

.services-Card .service-Card-Title {
    display: flex;
    flex-direction: row;
    width: 86%;
}

.services-Card-Container .services-Card .servicesImgContainer {
    border-radius: 50%;
    position: relative;
    background-color: var(--backgroundLightColor);
    height: 45%;
    width: auto;
    align-self: self-start;
    object-fit: cover;
    border: 1px solid var(--textColor);
    -webkit-box-shadow: 0px 0px 26px 0px var(--shadowColor);
    -moz-box-shadow: 0px 0px 26px 0px var(--shadowColor);
    box-shadow: 0px 0px 26px 0px var(--shadowColor);
    padding: 3%;
    margin: 0 4% 0 0;
}

.services-Card-Container .services-Card-Image {
    height: 100%;
    width: 100%;
}

.services-Card .service-Card-Title .textSection h3, .services-Card .service-Card-Title .textSection p {
    color: var(--primaryColor);
    text-transform: uppercase;
    text-align: start;
    align-content: center;
    font-size: auto;
    width: 100%;
}

.services-Card .service-Card-Title .textSection p {
    color: var(--shadowColor);
}

.services-Card-Container h3, .services-Card-Container p {
    width: 85%;
    text-align: justify;
}

.services-Card-Container p {
    height: auto;
    font-size: 150%;
}

/* Float In Animation */
.services-Card-Container {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

/* Gradient Animations */
.services-Card {
    background: linear-gradient(var(--gradient-angle), var(--primaryColor), rgb(0, 0, 0));
    animation: rotation 5s linear 0s infinite normal forwards;
    backdrop-filter: blur(50px);
}

/* 
---------------------------------------------------------------------------------
------------------------------Mobile Responsiveness------------------------------
---------------------------------------------------------------------------------
*/
@media (max-width: 1000px) {
    .services-Card-Container {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Float In Animation */
    .services-Card {
        animation: appear linear;
        animation-timeline: view();
        animation-range: entry 0% cover 20%;
    }
}

@media (max-width: 700px) {
    .services-Card-Container {
        grid-template-columns: 1fr;
    }
}


/* =======================================Gradient Animation=======================================================================================================================================@keyframes rotation { */
@keyframes rotation {
    0% {
        --gradient-angle: 0deg;
    }

    100% {
        --gradient-angle: 360deg;
    }
}

@property --gradient-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}