/* CSS for Events Section - Premium Redesign */
.events-section {
    position: relative;
    overflow: hidden;
}

.event-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    z-index: 1;
    height: 100%;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--grad-hero, linear-gradient(90deg, #4f46e5, #ec4899));
    transition: height 0.3s ease;
    z-index: -1;
}

.event-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px -10px rgba(79, 70, 229, 0.15);
}

.event-card:hover::before {
    height: 100%;
    opacity: 0.03;
}

.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: #f8f9fa;
    border-radius: 50%;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.event-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.event-title {
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #1f2937, #4b5563);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s;
}

.event-card:hover .event-title {
    background: var(--grad-hero, linear-gradient(90deg, #4f46e5, #ec4899));
    -webkit-background-clip: text;
}

.event-desc {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1rem;
}

/* Floating Shapes Background */
.shape-blob {
    position: absolute;
    filter: blur(50px);
    z-index: -1;
    animation: floatBlob 10s infinite alternate;
}

.blob-1 {
    top: 10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(236, 72, 153, 0.1);
}

.blob-2 {
    bottom: 10%;
    right: -5%;
    width: 250px;
    height: 250px;
    background: rgba(79, 70, 229, 0.1);
}

@keyframes floatBlob {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 50px);
    }
}