
.about{
    margin-top: 20px;
}

.about h1{
    position: relative;
    color: var(--title-color);
    font-size: var(--title-size);
    font-weight: var(--title-weight);
    margin-bottom: 30px;
}

.about h1::after{
    content: '';
    width: 40px;
    height: 5px;
    background: linear-gradient(to right, #FFCC33, #F2A03D);
    border-radius: 3px;
    position: absolute;
    left: 0;
    bottom: -15px;
}

.about p{
    color: var(--text-color);
    font-weight: var(--text-weight);
}

.service{
    margin-top: 20px;
}

.service h1{
    color: var(--title-color);
    font-size: var(--title2-size);
    font-weight: var(--title-weight); 
}

.service-list{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
    margin-top: 10px;
}


.service-list .service-item{
    width: 49%;
    padding: 30px;
    border-radius: 12px;
    background: linear-gradient(to bottom right, hsl(0, 0%, 25%) 0%, hsla(0, 0%, 25%, 0) 0%);
    border: 1px solid #383838;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

.service-list .service-item h2{
    color: var(--title-color);
    text-align: center;
    font-size: 18px;
}


.service-list .service-item p{
    color: var(--text-color);
    margin-top: 5px;
}


.skills{
    margin-top: 20px;
}

.skills h1{
    color: var(--title-color);
    font-size: var(--title2-size);
    font-weight: var(--title-weight); 

}

.skill-list{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;   
    justify-content: space-between;
}

.skill-list .skill-item{
    width: 150px;
    height: 150px;
    border-radius: 20px;
    overflow: hidden;
}

.skill-list .skill-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.skill-list .skill-item img:hover{
    transform: scale(1.05);
}

@media (max-width: 1250px) {

    .main-content{
        width: 100%;
        max-width: 100%;
    }

    .service-list .service-item{
        width: 100%;
    }

    .skill-list{
        justify-content: space-between;
    }
    
    .skill-list .skill-item{
        width: 110px;
        height: 110px;
    }

}