.learningEventSection {
    position: relative;
    padding: 80px 20px;
    min-height: 45vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    overflow: hidden;
}
.learningEventSection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/imgs/backgroundStyles.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 1;
}
.learningEventContainer {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
}
.mainTitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}
.cardsGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.learningCard {
    background: rgba(40, 40, 40, 0.8);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    overflow: hidden; 
}

.learningCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 193, 7, 0.3);
}

.learningCard::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px; 
    background: linear-gradient(180deg, #ffc107, #ff8f00);
    border-radius: 20px 0 0 20px;
    z-index: 1; 
    transition: all 0.3s ease; 
}

.learningCard:hover::before {
    width: 6px; 
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.5); 
}

.cardIcon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    filter: brightness(0) saturate(100%) invert(77%) sepia(86%) saturate(2295%) hue-rotate(360deg) brightness(101%) contrast(103%);
}
.cardTitle {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.3;
}
.cardDescription {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #d0d0d0;
    line-height: 1.6;
    flex-grow: 1;
}
.glowEffect {
    position: absolute;
    top: 50%;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translateY(-50%) scale(1.1);
    }
}
@media (max-width: 768px) {
    .mainTitle {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    .cardsGrid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    .learningCard {
        padding: 30px 25px;
        min-height: 250px;
    }
    .cardTitle {
        font-size: 1.3rem;
    }
    .cardDescription {
        font-size: 0.95rem;
    }
    .learningEventSection {
        padding: 60px 15px;
    }
}
@media (max-width: 480px) {
    .mainTitle {
        font-size: 1.8rem;
    }
    .learningCard {
        padding: 25px 20px;
    }
    .cardIcon {
        font-size: 2rem;
    }
}