.card {
    border-radius: 20px;
   position: relative;
background-size: contain;
        width: 100%;
        height: 180px;
        margin-bottom: 20px;
   
}
    

.card-img-top {
    border-radius: 20px 20px 0px 0px;
    }

.card-body {
     width: 100%;
    /* position: absolute; */
    bottom: 0;
    background: rgba(17, 103, 134, 0.9);
   
    border-radius: 0px 0px 20px 20px;
    text-align: center;
    height: 10px;
    padding: 10px 10px;
    
}

.card-text {
    text-align: center;
    color: #ffff;
font-weight: 600;
    font-size: 15px;
 
}

.card:hover {
   transform: scale(1.05, 1.05);
        transition: all 0.3s ease-in-out;
        -webkit-transform: scale(1.05, 1.05);
        -webkit-transition: all 0.3s ease-in-out;
}

/* annual report */
.annual-reports-btn{
    color: #0D617A;
    background-color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    border-radius: 10px 10px;
    padding: 20px 15px;
    border: #0D617A 1px solid;
    
    transition: background-color 0.3s, transform 0.3s;
}
.annual-reports-btn:hover{
    background-color: #0D617A;
    color: #ffff;
            transform: scale(1.05); 
}

/* events */
.event-card {
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 20px;
}
.event-card:hover {
    transform: scale(1.03);
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.event-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}
.event-card-body {
    padding: 10px 20px;
}
.event-card-title {
    color: #000000;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center;
}
