.about-section {
    margin-top: 70px;
    margin-bottom: 70px;
    color: #fff;
}

.about-img-box {
    position: relative;
    width: fit-content;
}

.about-img {
    width: 360px;
    height: 360px;
    object-fit: cover;
    margin-left: 150px;
}

.experience-box {
    position: absolute;
    left: 85px;
    bottom: 35px;
    background:var(--main-color);
    padding: 30px 25px;
    width: 150px;
}

.experience-box h3 {
    font-size: 80px;
    font-weight: 900;
    margin: 0;
}

.experience-box p {
    margin: 0;
    font-weight: 700;
}

.about-text h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-text p {
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
}

.about-info {
    display: flex;
    gap: 25px;
    margin: 25px 0;
}

.about-info h5 {
    color:var(--main-color);
    font-size: 14px;
    margin-bottom: 5px;
}

.about-info span {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.about-btn {
    display: inline-block;
    background:var(--main-color);
    color: #fff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 5px;
}

.about-btn:hover {
    background:var(--main-color);
    color: #fff;
}

.social-box {
    position: relative;
    display: inline-block;
}

.social-links {
    position: absolute;
    top: 60px;
    left: 0;
    background: #202938;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    gap: 12px;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: 0.3s ease;
}

.social-links img {
    width: 25px;
    height: 25px;
    transition: 0.3s;
}

.social-links img:hover {
    transform: scale(1.2);
}

.social-links.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.social-links i {
    font-size: 23px;
    margin-top: 3px;
    transition: 0.3s;
    color: var(--main-color);
}


@media (max-width: 768px) {
    .about-img-box {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .about-img {
        width: 45%;
        max-width: 120px;
    }

    .experience-box {
        position: absolute;
        left: 505px;
        bottom: 15px;
        background:var(--main-color);
        padding: 30px 25px;
        width: 150px;
    }

    .experience-box {
        left: 0;
        bottom: -30px;
        width: 130px;
        padding: 20px;
    }
}

/* (max-width: 768px) {
    .about-img-box{
        margin-left: -75px;
        margin-bottom: 50px;
    }
}*/