body{
    margin: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: white; 
    box-shadow: 0 2px 5px rgba(26, 74, 120, 0.4);
}
.navbar-brand img {
    width: 450px;
    height: auto;
}
.nav-item{
    padding-right: 15px;
    font-weight: bold;
}
.nav-item a:hover{
    border-bottom: 3px solid #0d6efd;
}
main {
    position: relative;
    background-color: #87cefa;
    text-align: center;
    padding: 150px;
    z-index: 1;
    margin-top: 90px;
}
main::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../IMAGES/Eyes.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.2; 
    z-index: -1;
}
main h2{
    color: white;
    border-bottom: 3px solid white;
    display: inline-block;
    padding-bottom: 10px;
}
aside {
    display: flex;
    flex-direction: column; 
    align-items: center;   
    position: fixed;  
    font-weight: bold;      
    top: 50%;             
    right: 2%;                 
    transform: translateY(-50%);
    padding: 10px;
    z-index: 1000;
    color: #0d6efd;
}
aside span {
    margin: 10px 0;
    writing-mode: vertical-lr;
    text-align: center;
}
aside span a {
    font-size: 24px;
    text-decoration: none;
}
aside i{
    color: #0d6efd;
}
.learn-more {
  color: #007bff;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s;
}
.learn-more:hover {
  color: #0056b3;
  text-decoration: underline;
}
.img-fluid {
  width: 100%;
  height: auto;
}


footer{
    background-color: #1a4a78;
    overflow-x: hidden;
    padding: 0px 6% 20px 6%;
    margin-top: 100px;
}
.footer{
    padding: 50px 50px 5px 50px;
}
.footer ul{
    list-style-type: none;
}
.footer li{
    padding: 15px;
}
.footer a{
    text-decoration: none;
    color: white;
}
.footer a:hover{
    text-decoration: underline;
    color: #0d6efd;
}
hr{
    color: white;
}

@media screen and (max-width: 991px){
    .navbar-brand img {
        width: 300px;
        height: auto;
    }
    main {
        padding: 120px;
    }
    footer{
        margin-top: 20px;
    }
}
@media screen and (max-width: 600px) {
    .navbar-nav{
        margin-top: 20px;
    }
    .navbar-brand img {
        width: 200px;
        height: auto;
    }
    main {
        margin-top: 70px;
        padding: 80px;
    }
    footer{
        padding: 0px 0% 0px 0%;
        margin-top: 50px;
    }
    .footer{
        padding: 50px 50px 0px 25px;
    }
    .copyright{
        font-size: 12px;
    }
    .socials{
        font-size: 10px;
        padding-right: 10%;
    }
}