/* styles.css */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

/* Navbar */
.navbar {
    font-weight: bold;
}

    .navbar .nav-link {
        color: #fff !important;
    }

        .navbar .nav-link:hover {
            color: #f8f9fa !important;
        }

/* Banner Section */
.banner {
    background-image: url('https://via.placeholder.com/1600x800');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
}

    .banner h1 {
        font-size: 3.5rem;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .banner .btn {
        font-size: 1.1rem;
        padding: 12px 25px;
        border-radius: 50px;
        transition: background-color 0.3s ease;
    }

        .banner .btn:hover {
            background-color: #e60000;
        }

/* About Us Section */
.about-us {
    padding: 60px 0;
    background-color: #f9f9f9;
}

    .about-us h2 {
        font-size: 2rem;
        font-weight: 600;
        color: #e60000;
    }

    .about-us .btn {
        padding: 10px 20px;
        border-radius: 25px;
        font-size: 1.1rem;
        text-transform: uppercase;
    }

/* Events and News Cards */
.card {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f9f9f9;
}

.card-text {
    font-size: 1rem;
    color: #666;
}

.card .btn {
     background-color: #e60000;
/*    background-color: #FBBF24;*/
color: white;
    font-weight: bold;
    /* padding: 10px 20px;*/
    padding: 4px 12px;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

    .card .btn:hover {
        background-color: #b50000;
    }

/* Footer */
footer {
    background-color: #e60000;
}

    footer a {
        color: white;
    }

        footer a:hover {
            color: #f8f9fa;
        }

  /*news section slider*/
/* Scrolling News Section */
.news-strip {
    background-color: #004080; /* PEAN blue */
    color: white;
    overflow: hidden;
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
    padding-left: 10px;
    font-weight: bold;
    font-size: 1rem;
}

.news-text {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 20s linear infinite;
    padding-left: 100%;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}


/*Nepali Text*/
.nepali-text {
    font-family: 'Noto Sans Devanagari', sans-serif;
    text-align: justify;
    font-size: 1.1rem;
    line-height: 1.9;
}

