 /* -------------------Header Logo   Start-----------------------*/
.header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 20px;
   /* --- background:#fff;---*/
}

/* Logo container */
.logo-container a{
    display:flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
}

/* Logos */
.logo{
    max-width:100%;
    height:auto;
}

/* First Logo */
.main-logo{
   width: 335px;
    height: 58px;
    
}

/* Second Logo */
.sub-logo{
    height:70px;
    width: 70px;
}

/* Mobile Menu Button */
.menu-toggle{
    font-size:26px;
    border:2px solid #ff4d6d;
    padding:5px 12px;
    border-radius:8px;
    color:#ff4d6d;
    display:none;
    cursor:pointer;
}

/* Responsive */
@media(max-width:768px){

    .header{
        padding:10px;
    }

    .logo-container a{
        gap:10px;
    }

    .main-logo{
        width:150px;
        height: 35px;
       
    }

    .sub-logo{
        width:70px;
    }

    .menu-toggle{
        display:block;
    }
}
/* -------------------Header Logo   End-----------------------*/





.event-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.06);
    transition:0.3s ease;
    height:100%;
}

.event-card:hover{
    transform:translateY(-6px);
}

/* Image */
.event-img{
    position:relative;
}

.event-img img{
    width:100%;
    height:230px;
    object-fit:cover;
    display:block;
}

/* Mobile image height */
@media (max-width:767px){
    .event-img img{
        height:200px;
    }
}

/* Date Badge */
.date-badge{
    position:absolute;
    top:15px;
    right:15px;
    background:#ff4d6d;
    color:#fff;
    padding:6px 14px;
    font-size:13px;
    font-weight:600;
    border-radius:20px;
}

/* Meta Overlay */
.event-meta{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    background:rgba(243, 213, 115, 0.9);
    display:flex;
    justify-content:space-between;
    padding:8px 15px;
    font-size:13px;
    color:#333;
}

/* Content */
.event-content{
    padding:15px;
}

.event-title{
    font-size:15px;
    font-weight:700;
    margin-bottom:12px;
}

.event-desc{
    font-size:14px;
    color:#6c757d;
    margin-bottom:20px;
    line-height:1.6;
}


/* Video */
.video-box video{
    width:100%;
    border-radius:15px;
}

/*--------------------------End Upcoming Events -----------------*/




