  



        .team-card {
            transition: transform 0.3s, box-shadow 0.3s;
            margin-bottom: 20px;
        }

        .team-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .team-image {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 50%;
        }

        .member-description {
            display: none;
        }

        .show-more-btn {
            cursor: pointer;
            color: #007bff;
            font-weight: 500;
        }

        /* Video Section Styles */
        .video-section {
            padding: 60px 0;
            background-color: #f8f9fa;
        }

        .video-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
            max-width: 800px;
            margin: 0 auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            background-color: #000; /* Fallback background */
        }

        .video-container video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain; /* Changed from cover to contain for better aspect ratio */
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            background-color: rgba(0, 0, 0, 0.5);
            transition: all 0.3s ease;
            opacity: 1;
            cursor: pointer;
        }

        .video-overlay.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .play-button {
            width: 80px;
            height: 80px;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .play-button i {
            font-size: 40px;
            color: white;
        }

        .play-button:hover {
            transform: scale(1.1);
            background-color: rgba(255, 255, 255, 0.3);
        }

        .video-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 10px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .video-subtitle {
            font-size: 16px;
            opacity: 0.9;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }

        .video-loading {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            z-index: 10;
        }
        
    /* General accordion button style */
.accordion-button {
    color: #205781;
    background-color: #fff;
    font-weight: 500;
    border: 1px solid #205781;
    box-shadow: none;
}

/* When accordion is open (active) */
.accordion-button:not(.collapsed) {
    color: #205781;
    background-color: #f0f8ff;
    border: 1px solid #205781;
    box-shadow: none;
}

/* When accordion button is focused */
.accordion-button:focus {
    border-color: #205781;
    box-shadow: 0 0 0 0.25rem rgba(32, 87, 129, 0.25); /* soft shadow in your theme color */
    outline: none;
}


    