#new-menu {
    background-color: aliceblue !important; /* Blue navbar */
    height: 20px;
    padding: 0;
    margin: 0;
    border: none;
    position: relative;
    z-index: 1000;
    width: 100%;
    font-weight: bold;
}

#new-menu .navbar-header {
    height: 25px;
    padding: 0;
    margin: 0;
}

#new-menu .navbar-nav {
    margin: 0;
    padding: 0;
}

#new-menu .navbar-nav > li {
    margin-right: 150px; /* Adjust spacing between menu items */
    height: 40px;
}

#new-menu .navbar-nav > li > a {
    line-height: 40px;
    padding: 0 15px;
    color: black; /* Black text for navbar */
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
}

/* Dropdown Styling */
#new-menu .dropdown-menu {
    display: none;
    position: absolute;
    background: azure;
    padding: 7px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 5000;
    border-radius: 5px;
}

#new-menu .dropdown:hover .dropdown-menu,
#new-menu .dropdown.show .dropdown-menu {
    display: block;
}

#new-menu .dropdown-menu li {
    width: 100%;
}

#new-menu .dropdown-menu li a {
    color: black; /* Black font for dropdown */
    font-size: 13px;
    text-decoration: none;
    display: block;
    padding: 7px 12px;
    transition: background 0.3s ease;
}

/* Hover Effect */
#new-menu .dropdown-menu li a:hover {
    background: gainsboro; /* Lighter gray on hover */
    border-radius: 3px;
}

/* Ensure Navbar Stays Above Image */
#header-image {
    position: relative;
    z-index: 500;
    width: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #new-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        z-index: 1100; /* Higher than other elements */
    }

    #new-menu .navbar-nav {
        display: block;
        text-align: left;
        background: #1c2b4b;
        position: absolute;
        top: 40px; /* Below the navbar */
        left: 0;
        width: 100%;
        z-index: 1200;
    }

    #new-menu .dropdown-menu {
        position: relative;
        width: 100%;
        display: none;
        background: azure;
    }

    #new-menu .dropdown.show .dropdown-menu {
        display: block;
    }
    #new-menu .navbar-nav > li > a {
        color: aliceblue;
    }
    
}


/*=====================================
  SCHOOL PROFILE
    ===================================*/
/* School Profile Section Styling */

/* Centering the Containers */
.school-profile-container,
.bank-details-container {
    width: 70%;
    margin: 0 auto; /* Centers the div horizontally */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    background: #fff;
    text-align: center; /* Centers text inside */
}

/* Heading Styling */
.school-profile-title {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 1s ease-out forwards;
}

/* Centering the Table */
.school-profile-table {
    width: 100%;
    margin: 0 auto; /* Centers the table */
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.9);
    animation: fadeInScale 0.8s ease-in-out forwards 0.5s;
}

/* Table Cells */
.school-profile-table td {
    padding: 6px;
    border: 1px solid #ddd;
    font-size: 14px;
    color: #555;
}

/* Left Column */
.school-profile-table td:first-child {
    font-weight: bold;
    background: #f1f1f1;
    width: 40%;
    text-align: left; /* Keeps alignment consistent */
}

/* Right Column */
.school-profile-table td:last-child {
    text-align: left;
}

/* Bank Transfer Details Styling */
.bank-details-container {
    text-align: center;
    font-size: 18px;
    color: #444;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 1s ease-in-out forwards 1s;
}

/* Centering the Donate Button */
.donate-btn {
    display: inline-block; /* Allows width to fit content */
    margin: 20px auto;
    padding: 10px 20px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: 0.3s;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 1s ease-out forwards 1.5s;
}

/* Button Hover Effect */
.donate-btn:hover {
    background: #0056b3;
    transform: scale(1.05);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
