/* About Section - Shared Styles */
.about-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

/* Dark Theme Background Gradient */
.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--holo-gradient-2);
    opacity: 0.08;
    z-index: -1;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}


/* Image Sizing Fix */
.profile-img {
    max-width: 100%;
    width: 80%;
    height: auto;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
