body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
    background-image: url('background1.jpg');
}

.marquee-container {
    width: 100%;
    /* background: #333; */
    color: #fff;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    overflow: hidden;
    position: relative;
    margin-top:5rem;
}

.marquee {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.marquee-content img {
    vertical-align: middle;
}

.heading-name {
    display: inline-block;
    line-height: 100px; /* Adjust this value to match the height of the images */
    margin-right: 3rem; /* Same margin as the images */
    font-size: 22px !important;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
.nepal{
    color: darkred;
    font-weight: 600;
    font-size: 22px;
}

.slider-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 50%;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
}

.card {
    flex: 1 1 30%;
    margin: 10px;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    max-width: 300px;
    position: relative;
    padding: 20px 0;
}

.card img {
    background: #c8c8c8;
    width: 80%;
    height: 100px !important;
    object-fit: contain;
    margin-top: 20px;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 
        2px 2px 5px rgba(0, 0, 0, 0.3),  /* Shadow below */
        -2px -2px 5px rgba(255, 255, 255, 0.7);  /* Highlight above */
}

.card a {
    display: block;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 10px;
    transition: background-color 0.3s;
}

.card a:hover {
    background-color: #6183bb6e;
    color: #fff;
}

.card p {
    margin: 10px 0;
    padding: 0 20px;
    font-size: 18px;
    color: #e3d6a6;
    text-shadow: 
        2px 2px 5px rgba(0, 0, 0, 0.3),  /* Shadow below */
        -2px -2px 5px rgba(255, 255, 255, 0.7);  /* Highlight above */
}

@media (max-width: 768px) {
    .slider-container {
        flex-direction: column;
        height: auto;
    }

    .card {
        flex: 1 1 100%;
        max-width: 90%;
    }

    .card img {
        width: 100%;
        margin-top: 10px;
    }

    .card a {
        padding: 10px;
    }
}
