/* High-contrast About section background and card styles (override) */
#about {
    background: linear-gradient(120deg, #232526 0%, #ff7e5f 100%);
    padding: 5rem 0 4rem 0;
}
.about-card.glass-card {
    background: rgba(255,255,255,0.90);
    box-shadow: 0 12px 40px 0 rgba(34,34,34,0.18);
    border-radius: 2.5rem;
    padding: 3rem 2.5rem;
    margin: 0 auto;
    max-width: 900px;
    width: 100%;
    backdrop-filter: blur(12px);
    border: 2px solid #ff7e5f;
    transition: box-shadow 0.2s, border-color 0.2s;
    position: relative;
    overflow: hidden;
}
.about-card.glass-card:hover {
    box-shadow: 0 24px 64px 0 rgba(34,34,34,0.22);
    border-color: #232526;
}
.about-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #232526;
    margin-bottom: 1.2rem;
    letter-spacing: 0.03em;
    text-shadow: 0 2px 8px rgba(255,126,95,0.12);
}
.about-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ff7e5f;
    margin-bottom: 0.7rem;
}
.about-role {
    font-size: 1.15rem;
    color: #232526;
    background: linear-gradient(90deg, #ff7e5f 0%, #feb47b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}
.about-desc {
    font-size: 1.18rem;
    color: #232526;
    line-height: 1.8;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(255,126,95,0.08);
}
/* Animated entrance for intro card */
.animated-intro {
    animation: fadeInUp 1.1s cubic-bezier(.4,.2,.2,1) 0.1s both;
}
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(32px) scale(0.98); }
    80% { opacity: 1; transform: translateY(-2px) scale(1.01); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Gradient border for glass card */
.about-card.glass-card {
    border: 2.5px solid;
    border-image: linear-gradient(120deg, #BD5D38 0%, #e67e22 100%) 1;
}

/* Contact info styling */
.about-contact {
    display: flex;
    gap: 1.2rem;
    margin: 0.7rem 0 1.1rem 0;
    flex-wrap: wrap;
}
.about-contact-item {
    color: #fff;
    background: rgba(189,93,56,0.13);
    border-radius: 0.7rem;
    padding: 0.32rem 0.9rem;
    font-size: 1.07rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(189,93,56,0.08);
    transition: background 0.14s, color 0.14s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.about-contact-item:hover, .about-contact-item:focus {
    background: linear-gradient(90deg, #e67e22 0%, #BD5D38 100%);
    color: #fff;
    outline: none;
}
/* Glassmorphism card for About section */
.about-card.glass-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2.2rem;
    background: linear-gradient(120deg, rgba(34,40,49,0.82) 0%, rgba(189,93,56,0.09) 100%);
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.18), 0 2px 12px rgba(189,93,56,0.10);
    border-radius: 2.2rem;
    padding: 2.2rem 2.4rem;
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    border: 1.5px solid rgba(255,255,255,0.09);
    margin-bottom: 2.2rem;
    transition: box-shadow 0.18s, background 0.18s;
}
.about-avatar {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-img-profile {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(189,93,56,0.18);
    box-shadow: 0 2px 16px rgba(189,93,56,0.13);
    background: rgba(255,255,255,0.12);
}
.about-details {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.about-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--nav-accent, #BD5D38);
    margin-bottom: 0.5rem;
}
.about-name {
    font-size: 1.35rem;
    font-weight: 600;
    color: #fff;
.about-section {
    background: linear-gradient(120deg, #232526 0%, #BD5D38 100%);
    padding: 5rem 0 4rem 0;
}
.about-card.glass-card {
    background: rgba(255,255,255,0.92);
    box-shadow: 0 8px 32px 0 rgba(34,34,34,0.12);
    border-radius: 2rem;
    padding: 2.5rem 2rem;
    margin: 0 auto;
    max-width: 900px;
    width: 100%;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.18);
    transition: box-shadow 0.2s;
}
.about-card.glass-card:hover {
    box-shadow: 0 16px 48px 0 rgba(34,34,34,0.18);
}
.about-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #BD5D38;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}
.about-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #232526;
    margin-bottom: 0.5rem;
}
.about-role {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}
.about-desc {
    font-size: 1.15rem;
    color: #232526;
    line-height: 1.7;
}
}
@media (max-width: 991px) {
    .about-card.glass-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.2rem 1rem;
        gap: 1.2rem;
    }
    .about-img-profile {
        width: 80px;
        height: 80px;
    }
    .about-title { font-size: 1.4rem; }
    .about-name { font-size: 1.08rem; }
}
/* About Section */
#about {
    background: var(--light-color);
}

.about-content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 0.5rem;
    display: block;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    line-height: 1.8;
}

/* Profile Info */
.profile-info {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.profile-info-item {
    padding: 15px 0;
    border-bottom: 1px solid var(--light-color);
}

.profile-info-item:last-child {
    border-bottom: none;
}

.profile-info-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
}
