/* Start of Languages & Frameworks */
.tools-container {
    width: calc(3 * 350px + 2 * 1.8rem);
    margin: 4rem auto 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
    border-radius: 0rem;
    box-sizing: border-box;
}

.tools-box {
    padding: 1rem;
    background-color: var(--Transparent-Glass);
    border: 2px solid var(--pill-border-radius);
    border-radius: 0rem;
}

.tools-box__heading {
    margin: 0 0 1rem;
    font-size: 1.5rem;
    text-align: left;
}

.tools-box__list {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-wrap: nowrap;
    margin-top: auto;
    margin-bottom: auto;
}

.tools-box__item {
    text-align: center;
    width: 80px;
}

.tools-box__item img {
    display: block;
    width: 80px;
    height: 80px;
    margin: 0 auto 0.5rem;
    object-fit: contain;
    padding: 0rem;
}

.tools-box__item span {
    display: block;
    font-size: 1.8rem;
}

/* Start of Services */
.heading {
    text-align: center;
    font-size: 7rem;
    margin: 5rem 0;
}

.services {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15rem;
    padding: 95px 15% 0;
}

.services-inner {
    margin-top: 2.2rem;
    padding-top: 20px;
    padding-bottom: 20px;
    height: auto;
    background-color: var(--bg-color);
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 3rem;
    padding: 4rem 2rem;
    border-left: 2px solid var(--pill-border-radius);
    border-right: 2px solid var(--pill-border-radius);
}

.service-link {
    text-decoration: none;
    color: inherit;
}

.service-link:hover,
.service-link:focus {
    text-decoration: none;
    color: inherit;
}

.service-link:visited {
    color: inherit;
    text-decoration: none;
}

.services h2 {
    color: var(--text-color);
}

.service-box {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--Transparent-Glass);
    height: 400px;
    width: 100%;
    border-radius: 0rem;
    cursor: pointer;
    border: 5px solid transparent;
    transition: 0.4s ease-in-out;
    border: 2px solid var(--pill-border-radius);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 350px);
    gap: 1.8rem;
    justify-content: center;
    width: 1200px;
    margin: 4rem 0 0;
}

.service-box:hover {
    box-shadow: inset 0 0 25px var(--pill-solid-white);
    transform: scale(1.01);
}
.service-info {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 5rem;
}

.service-info h4 {
    font-size: 2.5rem;
    margin: 2rem 0;
    font-weight: 700;
}

.service-info p {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.7;
    text-color: var(--text-color);
}

.service-info img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: auto 0rem auto 2rem;
    display: block;
}

.service-info i {
    font-size: 6rem;
}
/* End of Services */

/* Start of responsive design */

/* Start Desktop Media Queries */
@media (max-width: 1200px) {
    .services-inner {
        max-width: 100%;
        border-left: none;
        border-right: none;
        padding: 4rem 1rem;
        height: auto;
    }

    .services {
        padding: 0 5% 0rem;
    }
}
/* End Desktop Media Queries */

/* Start Mobile Media Queries */
/* Iphones 13, 14 Pro Max */
@media (max-width: 430px) {
    .tools-container {
        width: auto;
        margin: 0rem 0 0rem;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .tools-box {
        width: 100%;
        padding: 0.4rem;
    }

    .tools-box__list {
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 0.2rem;
    }

    .tools-box__item img {
        width: 50px;
        height: 50px;
    }
    .tools-box__item span {
        font-size: 1.2rem;
        font-weight: 800;
    }

    .services {
        padding: 0 0 0rem;
    }

    .services-inner {
        max-width: 100%;
        border-left: none;
        border-right: none;
        height: auto;
        font-size: 1rem;
        margin-top: 8.6rem;
    }

    .heading {
        font-size: 4rem;
        margin: 1.5rem 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 1fr;
        gap: 1rem;
        width: auto;
    }

    .service-box {
        width: auto;
        height: 250px;
        padding: 0.5rem;
    }

    .service-info {
        padding: 0.8rem;
    }

    .service-info h4 {
        font-size: 1.2rem;
        margin: 1rem 0 0.5rem;
    }

    .service-info p {
        font-size: 1rem;
        line-height: 1.4;
    }

    .service-info img {
        width: 80px;
        height: 80px;
        margin-bottom: 0.4rem;
    }
}
/* End Mobile Media Queries */

/* End of responsive design */
