#aboutPage {
    .about-section {
        max-width: 1200px;
        margin: 50px auto;
        padding: 40px;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: hidden;
        animation: fadeIn 1s ease-in-out;
    }



    .about-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: linear-gradient(to bottom, #4CAF50, #2196F3);
        animation: slideIn 0.8s ease-in-out forwards;
        transform: scaleY(0);
        transform-origin: top;
    }



    .about-content p {
        font-size: 1.1rem;
        margin-bottom: 25px;
        text-align: center;
        animation: textFade 1.2s ease-in-out;
    }


    .about-info {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 40px;
    }

    .info-container {
        flex: 1;
        min-width: 300px;
        padding: 25px;
        background-color: #f8f9fa;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        animation: slideUp 1s ease-in-out forwards;
        opacity: 0;
        transform: translateY(20px);

        &:first-child {
            animation-delay: 0.3s;
        }

        &:last-child {
            animation-delay: 0.6s;
        }
    }


    .info-container {
        &:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        h3 {
            font-size: 1.3rem;
            color: var(--surface_color);
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e9ecef;
            text-align: center;
        }

        p {
            font-size: 1rem;
            line-height: 1.5;
        }
    }

    .highlight {
        color: #4CAF50;
        font-weight: bold;
    }

    .vision-mission {
        margin-top: 40px;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .vm-container {
        padding: 30px;
        border-radius: 8px;
        background-color: #fff;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        position: relative;
        overflow: hidden;
        animation: fadeIn 1.5s ease-in-out forwards;
        opacity: 0;

        h3 {
            font-size: 1.5rem;
            color: var(--text_heading_color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;

            &::after {
                content: "";
                position: absolute;
                bottom: -5px;
                left: 0;
                width: 100%;
                height: 2px;
                background: var(--surface_color);
            }
        }
    }

    .vision {
        border-left: 4px solid #4CAF50;
    }

    .mission {
        border-left: 4px solid #2196F3;
    }

    .animated-text {
        font-size: 1.1rem;
        line-height: 1.7;
        position: relative;
        overflow: hidden;
        white-space: normal;
        border-right: 3px solid transparent;
    }


    /* Team Section Styles */
    .team-member {
        width: 260px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

        &:hover {
            img {
                transform: scale(1.05);
            }
        }

        .thumbnail {
            height: 280px;
            overflow: hidden;
            border-radius: 10px;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: all ease-in-out 0.4s;
            }

        }

        .member-info {
            padding: 20px;
            text-align: center;
            position: relative;


            .member-name {
                font-size: 1.3rem;
                color: #2C3E50;
                margin-bottom: 5px;
                position: relative;
                display: inline-block;
            }

            .member-position {
                font-size: 1rem;
                color: #2196F3;
                margin-bottom: 15px;
                font-style: italic;
            }
        }

    }
}












@keyframes textFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    to {
        transform: scaleY(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}












/* Enhanced Responsive Styles */
@media (max-width: 1200px) {
    #aboutPage {
        .about-section {
            padding: 35px;
            margin: 40px 20px;
        }

        .about-info {
            gap: 15px;
        }

        .team-container {
            gap: 25px;
        }
    }
}

@media (max-width: 992px) {
    #aboutPage {
        .about-header h1 {
            font-size: 2.2rem;
        }

        .about-content p {
            font-size: 1rem;
        }

        .team-container {
            gap: 20px;
        }

        .team-member {
            width: calc(50% - 20px);
            max-width: 280px;
        }

        .vm-container {
            padding: 25px;
        }
    }
}

@media (max-width: 768px) {
    #aboutPage {
        .about-section {
            padding: 30px;
            margin: 30px 15px;
        }

        .about-header h1 {
            font-size: 2rem;
        }

        .about-info {
            flex-direction: column;
            gap: 20px;
        }

        .info-container {
            width: 100%;
            min-width: unset;
        }

        .vm-container {
            padding: 20px;
        }

        .animated-text {
            font-size: 1rem;
        }

        .team-container {
            gap: 25px;
        }

        .team-member {
            width: 100%;
            max-width: 320px;
        }

        .team-title {
            font-size: 1.8rem;
            margin-bottom: 30px;
        }
    }
}

@media (max-width: 576px) {
    #aboutPage {
        .about-section {
            padding: 25px 15px;
            margin: 20px 10px;
        }


        .info-container,
        .vm-container {
            padding: 15px;
        }

        .info-container h3,
        .vm-container h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .team-title {
            font-size: 1.6rem;
            margin-bottom: 25px;
            padding-bottom: 12px;
        }

        .team-section {
            margin-top: 40px;
        }

        .team-container {
            gap: 20px;
        }

        .team-member {
            width: 100%;
            max-width: 280px;
        }

        .member-image {
            height: 240px;
        }

        .member-info {
            padding: 15px;
        }

        .member-name {
            font-size: 1.2rem;
        }

        .member-position {
            font-size: 0.9rem;
            margin-bottom: 12px;
        }

        .social-links {
            gap: 12px;
        }

        .social-icon {
            width: 32px;
            height: 32px;
        }
    }
}

@media (max-width: 380px) {
    #aboutPage {
        .about-section {
            padding: 20px 12px;
            margin: 15px 8px;
        }

        .about-header h1 {
            font-size: 1.6rem;
        }

        .about-content p {
            font-size: 0.9rem;
        }

        .info-container h3,
        .vm-container h3 {
            font-size: 1.1rem;
        }

        .info-container p,
        .vm-container p,
        .animated-text {
            font-size: 0.9rem;
        }

        .team-title {
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .team-member {
            max-width: 260px;
        }

        .member-image {
            height: 220px;
        }

        .member-name {
            font-size: 1.1rem;
        }

        .member-position {
            font-size: 0.85rem;
        }

        .social-icon {
            width: 30px;
            height: 30px;
        }
    }
}