﻿body { padding-top:9px; }
/*.carousel-item img { height:400px; object-fit:cover; }*/
.carousel-item img {
    height: 400px;
    object-fit: initial;
}
/* Dropdown on hover */
.navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
    /*margin-top: 0; /* fix spacing */
}
.navbar-nav .dropdown-menu {
    margin-top: 0; /* या adjust करें 0.2rem-0.3rem के आसपास */
}

/* Utility link (skip) */
.util-link {
    font-size: 13px;
    padding: 3px 6px;
    margin-right: 4px;
    text-decoration: none;
}

/* Utility buttons */
.util-btn {
    font-size: 12px;
    padding: 3px 6px;
    margin: 0 2px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    background: #f8f9fa;
    color: #000;
    line-height: 1.5em !important;
    font-size: 11px !important;
}

    /* Different colors */
    .util-btn.blue {
        background: #007bff;
        color: #fff;
    }

    .util-btn.green {
        background: #28a745;
        color: #fff;
    }

    /* On hover */
    .util-btn:hover {
        opacity: 0.85;
    }
footer h5 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: bold;
}

footer a {
    text-decoration: none;
}

    footer a:hover {
        text-decoration: underline;
        color: #ffc107; /* hover color */
    }

    /* Keyframes for animations */
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-100px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(100px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Initially hidden */
.animate-left, .animate-right {
    opacity: 0;
}

/* Visible class triggers animation */
.animate-left.visible {
    animation: slideInLeft 1s ease-out forwards;
}

.animate-right.visible {
    animation: slideInRight 1s ease-out forwards;
}

/* Here is style of new moving*/
.news-ticker {
    position: relative;
    height: 50px; /* Visible area height */
    overflow: hidden;
    background: #f0f0f0;
    border: 1px solid #ccc;
}

.news-ticker ul {
    list-style: none;
    margin: 0;
    padding: 0;
    animation: ticker 10s linear infinite;
}

.news-ticker li {
    height: 50px;
    line-height: 50px;
    padding-left: 15px;
    font-size: 16px;
    background: #fff;
}

/* Animation: Moves content upward */
@keyframes ticker {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-50px);
    }

    50% {
        transform: translateY(-100px);
    }

    75% {
        transform: translateY(-150px);
    }

    100% {
        transform: translateY(0);
    }
}
/**/



