﻿
.about-img img {
    border-radius: 15px;
    width: 100%;
    object-fit: cover;
}

.about-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #6c63ff !important; /* هماهنگ با هدر و tags */
    background-color: #6c63ff !important; /* هماهنگ با هدر و tags */
    transition: all 0.3s ease;
    border: 2px solid #6c63ff !important;
}

    .social-icons a:hover {
        color: #514ed0 !important;
        background-color: white !important;
    }

.main-btn.btn-resume {
    background-color: #6c63ff !important;
    color: #fff !important;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none !important;
}

    .main-btn.btn-resume:hover {
        background-color: #514ed0 !important;
        color: #222 !important;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

.about-img {
    margin-bottom: 20px;
}

@@media (min-width: 992px) {
    .about-img {
        margin-bottom: 0;
        margin-right: 30px;
    }
}

.about-img img {
    transition: transform 0.3s ease;
}

    .about-img img:hover {
        transform: scale(1.05);
    }
