@keyframes popUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.section {
    display: flex;
    flex-wrap: wrap;
}

/* Section Container */
.section__container {
    padding: 100px 40px 60px;
    max-width: 100%;
    margin: 0 auto;
}

.section__container h3{
    margin-bottom: 10px;
    color: rgb(88, 102, 255);
    font-size: 2rem;
}

/* Flexbox Layout for Cards */
.card-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 20px; /* Space between video cards */
    margin-top: 2rem;
}

/* Experience Cards */
.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 420px; /* Set fixed width for the video cards */
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.card:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

/* Card Body */
.card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

/* Card Footer */
.card time {
    display: block;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
}

/* Uniform Video Size */
.card iframe {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    margin-bottom: 10px;
}
.card video {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    .card-container {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
        max-width: 95%;
    }
}