.maintitle {
    width: 90%;
    margin: 7% auto 0 auto;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

/* --------------------------------------Services-------------------------------------- */
.services {
    width: 100%;
    color: var(--textColor);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 2% 0;
    align-items: center;
}

.services .maintitle {
    margin-top: 7%;
    text-transform: uppercase;
}

.services h2 {
    text-align: center;
    text-transform: uppercase;
}

.services h3 {
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 2%;
}

/* --------------------------------------Why Us Section-------------------------------------- */
.why-Us {
    width: 100%;
    color: var(--textColor);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.why-Us .maintitle {
    margin-top: 2%;
    text-transform: uppercase;
}

.why-Us h2 {
    text-align: center;
    text-transform: uppercase;
}

.why-Us h3 {
    width: 60%;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 2%;
}

/* --------------------------------------Technologies Available-------------------------------------- */

.technologies-container {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--textColor);
}


.technologies-container-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 80%;
}

.technologies-card {
    background-color: var(--backgroundLightColor);
    display: flex;
    flex-direction: row;

    padding: 1%;
    border-radius: 15px;


    /* Box Shadow */
    border: 2px solid #ffffff21;

}

.technologies-card img {
    width: 10vw;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: fill;
    border-radius: 15px;
}

.technologies-card-contents {
    color: var(--textColor);
    width: 100%;
}


.technologies-container h1 {
    display: inline-block;
    text-align: center;
    margin-top: 2%;
    text-transform: uppercase;
}

.technologies-container h3 {
    margin-bottom: 2%;

}

.technologies-container p {
    justify-self: start;
    padding: 0 0 0 5%;
}

/* Float In Animation */
.technologies-card {
    animation: translate linear;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
}



/* 
---------------------------------------------------------------------------------
------------------------------Mobile Responsiveness------------------------------
---------------------------------------------------------------------------------
*/
@media (max-width: 1000px) {
    .technologies-card {
        animation-range: entry 0% cover 10%;
    }

    .technologies-container-row {
        grid-template-columns: repeat(1, 1fr);
    }

}

@media (max-width: 950px) {
    .technologies-card {
        animation-range: entry 0% cover 10%;
    }


}

@media (max-width: 700px) {

    .technologies-container-row {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 500px) {
    .technologies-card {
        flex-direction: column;
        align-items: center;
    }

}