/* ================= GLOBAL ================= */
body{
    font-family: 'Noto Sans Devanagari', sans-serif;
    background: #f8f9fa;
}

/* ================= CARD ================= */
.card{
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

/* Card Text */
.card p{
    text-align: justify;
}

/* ================= INPUT ================= */
.input-group-text{
    background: #f1f1f1;
    border: none;
}

/* ================= LINKS ================= */
a{
    text-decoration: none;
}

a:hover{
    text-decoration: underline;
}

/* ================= IMAGE CONTROL ================= */
img{
    max-width: 100%;
    display: block;
}


/* Image zoom inside card */
.hover-card img{
    transition: 0.4s ease;
}

.hover-card:hover img{
    transform: scale(1.08);
}

/* ================= LOGIN CARD ================= */
.login-card{
    transition: 0.3s;
}

.login-card:hover{
    transform: scale(1.04);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* ================= WHY JOIN + CARD ================= */
.hover-card{
    transition: 0.4s ease;
    cursor: pointer;
}

.hover-card:hover{
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 10px 30px rgba(211,47,47,0.5);
}

/* ================= VIDEO ================= */
.video-box{
    overflow: hidden;
    border-radius: 10px;
    transition: 0.4s;
}

.video-box:hover{
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.video-box iframe{
    transition: 0.4s;
}

.video-box:hover iframe{
    transform: scale(1.08);
}

/* ================= GALLERY ================= */
.gallery-box{
    overflow: hidden;
    border-radius: 10px;
}

.gallery-img{
    transition: 0.4s ease;
}

.gallery-box:hover .gallery-img{
    transform: scale(1.08);
}

.gallery-box:hover{
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* ================= MARQUEE ================= */

.marquee-bar{
    background: #ffc107;
    padding: 8px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* LABEL */
.marquee-label{
    background: #d32f2f;
    color: #fff;
    padding: 5px 12px;
    font-weight: bold;
    border-radius: 4px;
    margin-right: 10px;
    white-space: nowrap;
}

/* CONTAINER */
.marquee-container{
    overflow: hidden;
    white-space: nowrap;
    flex: 1;
    position: relative;
}

/* CONTENT */
.marquee-content{
    display: inline-block;
    padding-left: 100%;
    animation: marquee 20s linear infinite;
    font-weight: 600;
}

/* 🔥 HOVER = STOP */
.marquee-container:hover .marquee-content{
    animation-play-state: paused;
}

/* LINK STYLE */
.marquee-content a{
    text-decoration: none;
    color: #000;
    margin-right: 40px;
    transition: 0.3s;
}

/* HOVER LINK */
.marquee-content a:hover{
    color: #d32f2f;
    text-decoration: underline;
}

/* SMOOTH ANIMATION */
@keyframes marquee{
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(-100%);
    }
}

/* MOBILE SPEED ADJUST */
@media(max-width:768px){
    .marquee-content{
        animation-duration: 25s;
        font-size: 14px;
    }
}


/* ================= VERTICAL MARQUEE ================= */

.marquee-vertical{
    max-height: 350px;
    overflow: hidden;
    position: relative;
}

/* CONTENT */
.marquee-vertical-content{
    display: inline-block;
    animation: scrollUp 20s linear infinite;
}

/* HOVER STOP */
.marquee-vertical:hover .marquee-vertical-content{
    animation-play-state: paused;
}

/* ITEM */
.notice-item{
    padding: 10px 5px;
    border-bottom: 1px solid #ddd;
}

/* LINK */
.notice-link{
    text-decoration: none;
    color: #000;
    font-weight: 600;
    transition: 0.3s;
}

.notice-link:hover{
    color: #d32f2f;
    text-decoration: underline;
}

/* DATE */
.notice-item small{
    color: #777;
}

/* ANIMATION */
@keyframes scrollUp{
    0%{
        transform: translateY(100%);
    }
    100%{
        transform: translateY(-100%);
    }
}

/* MOBILE SPEED */
@media(max-width:768px){
    .marquee-vertical-content{
        animation-duration: 25s;
    }
}

/* ================= BUTTON ================= */
.btn{
    transition: 0.3s ease;
}

.btn:hover{
    transform: translateY(-3px);
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){

    .card{
        margin-bottom: 15px;
    }

    .marquee-content{
        animation-duration: 20s;
    }

}