*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins', sans-serif;
background:#f8f9fa;;
}



/* HERO */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1504450758481-7338eba7524a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
}

/* cards style */
.event-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 10px rgba(40, 167, 69, 0.3), 0 8px 15px rgba(40, 167, 69, 0.2) !important;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.btn-primary {
    background-color: #28a745;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 600;
}
.btn-primary:hover{
background: #218838;
}
.text-primary {
    color: #0d6efd !important;
}

.card-footer {
    background: white;
    padding: 1.25rem;
}
/* .icon{
    color: #28a745;
} */