    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease-in-out;
    }

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .img-fluid {
        border-radius: 15px;
        transition: transform 0.4s ease-in-out;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .img-fluid:hover {
        transform: scale(1.03);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .team-member {
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        border-radius: 15px;
        overflow: hidden;
        background: white;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .team-member:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    }

    .team-member img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: 0;
    }

    .team-member-info {
        padding: 20px;
        text-align: center;
    }

    .team-member-name {
        font-weight: bold;
        font-size: 1.2rem;
        color: #333;
        margin-bottom: 5px;
    }

    .team-member-role {
        color: #666;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 2.5rem;
        font-weight: bold;
        color: #333;
        margin-bottom: 30px;
        position: relative;
    }

    .section-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        margin: 15px 0;
    }

    .about-intro {
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    }

    .purpose-image {
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .value-card {
        background: white;
        border-radius: 15px;
        padding: 30px 20px;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        height: 100%;
    }

    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    }

    .value-card img {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 50%;
        margin-bottom: 20px;
    }

    .value-card h4 {
        color: #333;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .value-card p {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-header {
            padding: 20vh 0 10vh 0;
            background-attachment: scroll;
        }
        
        .page-header h1 {
            font-size: 2.5rem;
        }
        
        .section-title {
            font-size: 2rem;
        }
        
        .team-member img {
            height: 250px;
        }
        
        .team-member-info {
            padding: 15px;
        }
    }

    @media (max-width: 576px) {
        .page-header h1 {
            font-size: 2rem;
        }
        
        .section-title {
            font-size: 1.75rem;
        }
        
        .team-member img {
            height: 200px;
        }
        
        .value-card {
            margin-bottom: 20px;
        }
    }
