* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.smallnav {
    background-color: rgb(6, 80, 191);
    color: white;
    font-family: 'poppins', sans-serif;
    font-size: 10px;
    padding: 6px;
    text-align: center;
}

.nav {
    display: flex;
    padding: 18px;
    color: rgb(94, 91, 91);
    font-family: 'poppins', sans-serif;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav .info{
    display: flex;
    font-size: 17px;
    gap: 45px;
    cursor: pointer;
    text-decoration: none;
}

.nav .info :first-child {
    color: rgb(5, 68, 162);
}

.nav .button>button {
    padding: 10px 20px;
    font-size: 15px;
    border-radius: 5px;
    border: none;
    background-color: rgb(6, 80, 191);
    color: white;
}

.nav .button>button:hover {
    background-color: rgb(4, 70, 169);
    cursor: pointer;
}

.train{
    margin: 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-bottom: 1px solid rgb(190, 189, 189);
    font-family: 'poppins',sans-serif;
}

.train .i{
    margin: 20px 0px;
}

.left{
    font-family: 'poppins',sans-serif;
    margin-left: 40px;
}

.left-txt{
    font-weight: bold;
}

.left span{
    font-size: 0.8rem;
    color: rgb(103, 102, 102);
}

.left .img-left{
    display: flex;
    margin: 15px 0px;
    align-items: center;
    gap: 20px;
}
#footer {
    background-color: #0b0d18;
    padding: 30px 50px;
    font-family: 'poppins', sans-serif;
}

#footer .top-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

#footer .top-links a {
    color: #ccc;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

#footer .top-links a:hover {
    color: #007bff;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
    gap: 30px;
}

.footer-logo img {
    width: 180px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: #aaa;
    line-height: 1.6;
    max-width: 400px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-links h4 {
    color: #fff;
    font-size: 17px;
    margin-bottom: 15px;
}

.footer-links a {
    display: block;
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #007bff;
    transform: translateX(4px);
}