/* Custom Styles for About Us Section */

#section-about {
    position: relative;
    background: url('../images/background/genz-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    padding: 100px 0;
    color: #fff;
    overflow: hidden;
}

/* Dark Overlay for Readability */
#section-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 31, 58, 0.85);
    /* Deep blue/black tint matching theme */
    z-index: 1;
}

#section-about .container {
    position: relative;
    z-index: 2;
}

/* Glassmorphism Card for Content */
.about-glass-card {
    background: rgba(255, 255, 255, 0.05);
    /* Very subtle white */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 60px 50px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Modern Typography */
.about-title-wrapper {
    margin-bottom: 40px;
    text-align: center;
}

.about-subtitle {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--tertiary-color);
    /* Orange */
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.about-title {
    font-size: 2.4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    /* Teal → Deep Blue gradient */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 4px 10px rgba(47, 168, 161, 0.3));
    display: inline-block;
}

/* Gradient styling for "Vy" in about title */
.about-title .gradient-text {
    background: linear-gradient(135deg, var(--tertiary-color) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    /* Orange → Teal → Deep Blue gradient */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 4px 10px rgba(215, 118, 24, 0.4));
    /* Orange glow with updated tertiary color */
}

.about-lead {
    font-size: var(--font-size-lg);
    /* Adjusted for better fit */
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.6;
}

.about-text {
    font-size: var(--font-size-base);
    /* Adjusted for better fit */
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

/* Vision & Mission Cards */
.vm-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid var(--tertiary-color);
    /* Orange */
    transition: transform 0.3s ease, background 0.3s ease;
}

.vm-card:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
}

.vm-title {
    font-size: var(--font-size-h5);
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.vm-title i {
    margin-right: 10px;
    color: var(--tertiary-color);
    /* Orange */
}

/* Core Values Pills */
.values-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.value-pill {
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: var(--font-size-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: default;
}

.value-pill:hover {
    background: var(--tertiary-color);
    /* Orange */
    border-color: var(--tertiary-color);
    /* Orange */
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(242, 140, 40, 0.3);
}

/* Responsive */
@media (max-width: 991px) {
    #section-about {
        padding: 60px 0;
    }

    .about-glass-card {
        padding: 30px;
    }

    .about-title {
        font-size: 2.5rem;
    }

    #section-about {
        background-attachment: scroll;
        /* Disable parallax on mobile for performance */
    }
}