/* YEAR FILTER */

.events-sec h2{
    font-size: 1.9rem;
    font-weight: 600;
    color: #212529;
    
} 

.event-years {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin: 30px 0 40px 0;
    background: #e8f5ee;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border-radius: 40px;
    padding: 5px;
    box-shadow: 0 2px 10px rgba(34,153,97,0.12);
}

.year-btn {
    padding: 9px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    background: transparent;
    color: #229961;
    border: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.year-btn:hover {
    background: rgba(34, 153, 97, 0.15);
}

.year-btn.active {
    background: #229961;
    color: white;
    box-shadow: 0 4px 12px rgba(34, 153, 97, 0.35);
}

.activities-sec h2 {
    font-size: 1.55rem;
    font-weight: 700;
    color: #333333;
    margin-top: 10px;
}

.events .box{
    width: 90%;
    overflow: hidden;
    background-color: white;
    border-radius: 0px 0px 15px 15px;
    position: relative;
    margin-bottom: 50px;
}

.events .box .image-sec{
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.events .box .image-sec img{
    width: 100%;
    height: 100%;
}


.events .box .date-sec{
    position: absolute;
    top: 265px ;
    left: 20px;
    background: linear-gradient(135deg, #0097a7, #00b4b4);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
   padding: 10px;
   border-radius: 10px;
}

.events .box .date-sec h6{
   padding: 0;
   margin: 0;
   font-weight: 800;
   font-size: 1.2rem;
   margin-top: 8px;
}
.events .box .date-sec p{
   padding: 0;
   margin: 0;
   font-size: 0.8rem;
   font-weight: 600;
}
.events .box .text-sec{
    padding: 20px;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.events .box .text-sec h5{
    font-weight: 600;
}

.events .box .text-sec p{
    text-align: justify;
    color: #676767;
}

.events .box .text-sec .botton-sec{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.events .box .text-sec .botton-sec p{
   margin: 0;
   padding: 0;
   font-size: 1.1rem;
}

.events .box .text-sec .botton-sec p:nth-child(3){
   color: #FEC900;
   font-size: 1.2rem;
   font-weight: 600;
   text-transform: capitalize;
}

.events .box .text-sec .botton-sec .read-more-btn {
    background: linear-gradient(135deg, #229961, #2ea36a);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 153, 97, 0.3);
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.events .box .text-sec .botton-sec .read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 153, 97, 0.4);
    background: linear-gradient(135deg, #1e8466, #268c5a);
}

.events .box .text-sec .botton-sec .read-more-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(34, 153, 97, 0.3);
}

@media (max-width: 768px) {
    .events .box{
    width: 95%;
 
}
}