/* Custom CSS for Navbar */
.navbar {
    background-color: #80B728;
    padding: 0.5rem;
    position: fixed; /* Makes the navbar fixed at the top */
    top: 0; /* Align it to the top of the page */
    width: 100%; /* Ensure it spans the full width of the screen */
    z-index: 9999; /* Ensures it stays above other content */
}

/* Default Styles for Navbar Brand */
.navbar .navbar-brand {
    font-family: 'Work Sans', serif; /* Serif font for a classic and professional look */
    font-weight: 600; /* Bold font */
    font-size: 24px; /* Default font size for larger screens */
}

/* For Medium Screens (Laptops) */
@media (max-width: 992px) {
    .navbar .navbar-brand {
        font-size: 30px; /* Increased font size for medium screens (laptops) */
    }
}

/* For Small Screens (Mobile) */
@media (max-width: 576px) {
    .navbar .navbar-brand {
        font-size: 14px; /* Adjusted for smaller mobile screens */
    }
}

/* For Extra Small Screens */
@media (max-width: 400px) {
    .navbar .navbar-brand {
        font-size: 12px; /* Further adjusted for very small screens */
    }
}

.navbar a.nav-link {
    font-family: 'Work Sans', sans-serif; /* Clean and modern sans-serif font */
    font-weight: 600;
    text-transform: uppercase; /* Ensures all links are uppercase */
}
/* Dropdown menu fixes */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 300px;
    /* Set a max height for dropdown */
    overflow-y: auto;
    /* Make dropdown scrollable */
    z-index: 1000;
    /* Ensure it stays on top */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
/* Bold styling for links */
.bold-link {
    font-weight: bold;
}

/* Apply Source Sans Pro to the body */
body {
    font-family: 'Source Sans Pro', sans-serif; /* Highly readable font for the body */
    line-height: 1.6; /* Improves readability with better spacing */
    padding-top: 60px; /* Adjust content to not overlap with fixed navbar */
}

/* About Section Styles */
#about {
    padding-top: 50px;
    padding-bottom: 50px;
}

/* Image Styling */
#about .img-fluid {
    box-shadow: 13px 7px 5px #80B728;
    transition: transform 0.3s ease;
}

#about .img-fluid:hover {
    transform: scale(1.05);
}

/* Section Title */
#about .section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF8C00;
}

/* Adjusting text alignment for responsiveness */
#about .text-justify {
    text-align: justify;
    line-height: 1.6;
}

/* Button Styling */
#about .btn-warning {
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#about .btn-warning:hover {
    background-color: #ff7f00;
}
#contact {
    background-color: #80B728; /* Dark background */
}

.footer {
    color: #fff; /* White text color */
}

.footer .section-title {
    color: #000000; /* Yellow color for the title */
}

.footer p {
    color: #fff; /* Ensures the text is white */
}

.notification-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.5);
    /* Shadow effect */
    overflow: hidden;
}

.notification-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #80B728;
    color: white;
    border-radius: 5px;
    padding: 5px 10px;
}

.notification-header .bell-icon {
    font-size: 20px;
    color: white;
    margin-right: 5px;
    animation: ring 5s infinite;
}

.notification-header .label {
    font-size: 16px;
    font-weight: bold;
    color: white;
    white-space: nowrap;
}

@keyframes ring {
    0% {
        transform: rotate(0);
    }

    25% {
        transform: rotate(-15deg);
    }

    50% {
        transform: rotate(15deg);
    }

    75% {
        transform: rotate(-15deg);
    }

    100% {
        transform: rotate(0);
    }
}

.marquee {
    white-space: nowrap;
    overflow: hidden;
    animation: scrollMarquee 30s linear infinite;
}

.marquee:hover {
    animation-play-state: paused;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.marquee a {
    color: #007bff;
    text-decoration: none;
    margin: 0 5px;
}

.marquee a:hover {
    text-decoration: underline;
}

.card-body {
    padding: 10px;
}

.row {
    display: flex;
    align-items: center;
}
.notification-header {
    font-size: 1.25rem;
}

.bell-icon {
    font-size: 1.5rem;
    color: #f39c12;
}

.notification-card {
    border-radius: 8px;
    border: 1px solid #ddd;
}

.marquee {
    font-size: 1rem;
    color: #333;
}

@media (max-width: 768px) {
    .notification-header {
        font-size: 1rem;
    }

    .bell-icon {
        font-size: 1.2rem;
    }

    .marquee {
        font-size: 0.9rem;
    }
}