.heading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* canvas */
.canvas-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* works */
.works {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 1rem;
    justify-items: center;
}

.works:has(.work:nth-child(3)) {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 992px) {
    .works {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .works {
        grid-template-columns: 1fr;
    }
}

.work {
    width: 100%;
    overflow: hidden;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.work:nth-child(3) {
    grid-column: span 2;
    justify-self: center;
    max-width: 50%;
}

.work > img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease, box-shadow 0.3s ease;
}

.work:hover > img {
    transform: scale(1.1);
}

/* main */
.heading-title {
    font-size: 60px;
    font-weight: 700;
    font-style: normal;
    font-family: "Inter", sans-serif;
    background: linear-gradient(to right, var(--fourt-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.heading-subtitle {
    font-size: 20px;
    font-weight: 300;
    color: black;
}

/* section */
.section-title {
    display: inline-block;
    text-align: center;
    padding: 5px 15px;
    border-radius: 20px;
    background-color: var(--fourt-color);
}

.section-subtitle {
    font-weight: 700;
    font-family: "Inter", sans-serif;
}

.section-description {
    font-weight: 300;
    font-size: 20px;
    color: black;
}

/* services */
.services {
    display: grid;
    gap: 2rem;
    padding: 1rem;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
}

@media (max-width: 992px) {
    .services {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.service {
    padding: 1rem;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
}

.service-description {
    font-size: 17px;
    font-weight: 200;
    color: #757575;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0;
    padding: 0;
    border-radius: 5px;
    background-color: var(--fourt-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 0;
}

/* banner */
.banner {
    background-color: var(--fourt-color);
}

.banner-title {
    font-size: 50px;
    font-weight: 800;
    font-family: "Inter", sans-serif;
}

.banner-subtitle {
    font-family: "Rubik", sans-serif;
}

/* frameworks */
.frameworks {
    background-color: var(--fourt-color);
}

.custom-pill {
    margin-right: 10px;
    color: var(--primary-color) !important;
    border-radius: 25px !important;
    background-color: transparent !important;
    border: 2px solid var(--primary-color) !important;
}

.custom-pill.active, .custom-pill:hover {
    color: white !important;
    background-color: var(--primary-color) !important;
}

.grayscale {
    filter: grayscale(100%);
    opacity: 0.5;
}

/* whatsapp */
.whatsapp {
    position: fixed;
    z-index: 999999;
    bottom: 20px;
    right: 20px;
}

.whatsapp img {
    width: 40px;
    height: auto;
}