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;
}
section{
    position: relative;
    padding-top: 80px;
    z-index: 1;
}
.intro-francis{
    font-size: 30px;
    font-style: italic;
}
.dots{
    position: absolute;
    top: 100px;
    z-index: 0;
}
.journey{
    background-color: #f0f8ff;
    margin-top: 100px;
    padding-top: 40px;
}
.sec-left{
    display: flex;
    justify-content: center;
    padding-top: 20px;
}
/* Initial state */
.slide-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 2s ease-out;
  }
  
  /* Final state when in view */
  .slide-left.visible {
    opacity: 1;
    transform: translateX(0);
  }
  
.sec-right{
    padding: 50px 10% 20px 20px;
}
.steps{
    display: flex;
    padding-bottom: 40px;
}
.year{
    margin-right: 30px;
    background-color: #007bff;
    padding: 10px 20px 10px 20px;
    text-align: center;
    border-radius: 5px;
    color: white;
}
.text {
    position: relative;
    border-left: 2px solid black;
    padding-left: 10px;
    margin-bottom: 2rem; /* spacing between items */
}

.text::before {
    content: "";
    position: absolute;
    top: 0;
    left: -6px; /* adjust to center on border */
    width: 12px;
    height: 12px;
    background-color: black;
    border-radius: 50%;
}

article{
    padding: 100px 5% 0px 5%;
}
article h2{
    padding-left: 6%;
}
article span{
    padding-right: 6%;
}
article span{
    width: 16.6%;
    height: auto;
}
.sl img{
   width: 300px;
   height: 150px;
}
/* FOOTER */
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;
    }
    section{
        padding-top: 40px;
    }
    .sec-left img{
        width: 100%;
    }
    .sec-right{
        padding: 50px 5% 20px 20px;
    }
    .dots{
        top: 50px;
    }
    .journey{
        margin-top: 50px;
    }
    article{
        padding-top: 30px;
    }
    article img{
        width: 60px;
        height: auto;
    }
    .text-center{
        padding-top: 20px;
    }
    .text{
        padding-left: 25px;
    }
    .sl img{
     width: 250px;
     height: 100px;
    }
    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;
    }
    section{
        padding: 30px 20px 20px 20px;
    }
    .journey{
        margin-top: 50px;
        padding-top: 20px;
    }
    article{
        padding: 50px 2% 0px 2%;
    }
    article span{
        padding-right: 10%;
    }
    .sl img{
     width: 200px;
     height: 100px;
    }
    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%;
    }
}