/* About Page Specific Styles */
.about-section {
    position: relative;
    background-color: var(--bodybg-color, #f2f4f6);
}

.about-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    pointer-events: none;
}

/* About description creative touch */
.about-desc {
    position: relative;
    padding-left: 1.25rem;
    border-left: 2px solid rgba(225, 48, 56, 0.15);
}

[dir="rtl"] .about-desc {
    padding-left: 0;
    padding-right: 1.25rem;
    border-left: none;
    border-right: 2px solid rgba(225, 48, 56, 0.15);
}

.about-desc::before {
    content: '\201C';
    position: absolute;
    top: -0.6rem;
    left: -0.1rem;
    font-size: 3.5rem;
    color: rgba(225, 48, 56, 0.12);
    font-family: Georgia, serif;
    line-height: 1;
}

[dir="rtl"] .about-desc::before {
    content: '\201D';
    left: auto;
    right: -0.1rem;
}