/* ===== Universal Light Background ===== */
body {
    background-color: #fdfdfd; /* very light gray, close to white */
    color: #333; /* dark text for readability */
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
}
.bodyContent {
    background-color: lightyellow;
}

/* --------- Moving Nav --------- */
.MoveingNav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f2f2f2;
    padding: 10px 20px;
    overflow: hidden;
    border-bottom: 1px solid #ccc;
    flex-wrap: wrap;
}

.scrolling-text {
    flex: 1;
    min-width: 200px;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

    .scrolling-text h6 {
        display: inline-block;
        padding-left: 100%;
        animation: scroll-left 30s linear infinite;
        font-size: 16px;
        color: #d10000;
        font-weight: bold;
        margin: 0;
    }

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* --------- Info Items --------- */
.info-items {
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    flex-wrap: wrap;
}

    .info-items i {
        color: #007bff;
        font-size: 18px;
    }

    .info-items h6 a {
        color: #333;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 15px;
    }

        .info-items h6 a:hover {
            color: #d10000;
        }
.logo-bg {
    background-color: #ffffff; /* White background makes dark logo visible */
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
/* --------- Navbar --------- */
.navbar {
    background: linear-gradient(to right, #004e92, #000428);
    margin-top:20px;
    padding: 12px 24px;
}
.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    margin-right: 5px;
    font-size: 16px;
    transition: color 0.3s ease;
}

    .navbar-nav .nav-link:hover {
        color: #ffc107 !important;
    }

    .navbar-nav .nav-link.active {
        color: #ffc107 !important;
        font-weight: 600;
        position: relative;
    }

        .navbar-nav .nav-link.active::after {
            content: "";
            position: absolute;
            width: 100%;
            height: 3px;
            background-color: #ffc107;
            left: 0;
            bottom: -6px;
        }

/* --------- Info Box --------- */
.info-box {
    background-color: #f5faff;
    border: 2px solid #cce5ff;
    border-radius: 12px;
    padding: 20px;
    max-width: 500px;
    margin: 20px auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}

    .info-box p:first-child {
        font-size: 22px;
        font-weight: bold;
        color: #0056b3;
        margin-bottom: 10px;
    }

    .info-box p:last-child {
        font-size: 16px;
        color: #555;
    }
/*.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;*/ /* space between logo & text */
    /*text-decoration: none;
}*/

    .navbar-brand img {
        height: 40px;  adjust size 
        max-width: 100%;
    }

.brand-text {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.navbar-brand:hover .brand-text {
    color: #ffc107; /* gold highlight on hover */
}

/* --------- Responsive Media Queries --------- */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 768px) {
    .MoveingNav {
        flex-direction: column;
        align-items: flex-start;
    }

    .scrolling-text {
        width: 100%;
        margin-bottom: 10px;
    }

    .info-items {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        height: 36px;
    }

    .navbar-nav .nav-link {
        font-size: 14px;
    }

    .info-box {
        padding: 15px;
    }

        .info-box p:first-child {
            font-size: 18px;
        }

        .info-box p:last-child {
            font-size: 14px;
        }
}
