/* GLOBAL STYLES - Merged common CSS elements from all files */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url(images/graduationcap.jpeg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
}

.header {
    background-color: #002147;
    color: white;
    padding: 5px 0;
    text-align: center;
}

.header a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.nav-menu {
    text-align: center;
    padding: 10px 0;
    margin-top: 40px;
}

.nav-menu a {
    text-align: center;
    color: white;
    font-weight: bold;
    text-decoration: none;
    margin: 15px;
    padding: 10px;
    font-size: 20px;
}

.nav-menu a:hover {
    background-color: #fdc632;
    border-radius: 5px;
}
/* .hamburger {
    display: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
  } */
  .contact-info {
    display: flex;
    justify-content: center;
    margin-left: -600px;
    
     gap:10px;
}
.contact-info a  {
    color: white;
    text-decoration: none;
    

    /* align-items: center; */
    
}
.icon-manage{
    position: absolute;
    margin-top: -28px;
}
.logo {
    
    text-align: center;
    
}
.logo img {
    width: 150px;
    margin-left: 20px;
     /* mix-blend-mode:multiply;  */
}
.containr{
    display: flex;
     justify-content: space-between;}

.footer {
    background-color: white;
    color: #002147;
    padding: 20px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}

.footer-section {
    width: 30%;
}

.footer-section h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #002147;
}

.footer-section p,
.footer-section ul,
.footer-section a {
    color: #002147;
    text-decoration: none;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a:hover {
    color: #fdc632;
}

.footer-section i {
    color: #002147;
    margin: 5px;
    transition: transform 0.3s;
}

.footer-section i:hover {
    transform: scale(1.2);
    color: #fdc632;
}

.footer-bottom p {
    margin-top: 20px;
    font-size: 1.2em;
    color: #002147;
    animation: fadeIn 2s ease-in-out, colorChange 5s infinite;
    text-align: center;
}

@keyframes colorChange {
    0% { color: #002147; }
    50% { color: #fdc632; }
    100% { color: #002147; }
}
