/* / هدر درباره من / */
.about-hero {
    background: linear-gradient(135deg, #6084d6, #1e3a8a);
}

/* / معرفی / */
.about-header {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 30px;
    align-items: center;
}

.about-photo img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* / فلسفه کاری / */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.philosophy-item {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* / مهارت‌ها / */
.about-skills .skill-bar span {
    background: #1e3a8a;
}

/* / فوتر / */
.footer {
    background: #111827;
    color: #e5e7eb;
    padding: 40px 20px;
}

.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.contact-item {
    background: #1f2933;
    padding: 18px;
    border-radius: 12px;
}

.footer-copy {
    margin-top: 15px;
    font-size: 13px;
    opacity: 0.7;
}