/* Navbar */
.navbar {
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

.logo-bold {
    color: var(--primary-navy);
    font-weight: 700;
}

.logo-orange {
    color: var(--accent-orange);
    font-weight: 700;
}

.logo-subtext {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #98a2b3;
}

/* Buttons */
.btn-navy {
    background: var(--primary-navy);
    color: #ffffff;
    border-radius: 25px;
    padding: 10px 22px;
    font-weight: 600;
}

.btn-navy:hover {
    background: #134074;
    color: #ffffff;
}

.btn-orange {
    background: var(--accent-orange);
    color: #ffffff;
    border-radius: 25px;
    padding: 12px 24px;
    font-weight: 600;
}

.btn-orange:hover {
    background: #d95518;
    color: #ffffff;
}

.navbar-brand {
    animation: logoTinyBounce 3s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    
    .navbar-brand,navbar{
         animation: none !important;
    }
}

/* footer */



/* footer */

.footer-section {
    background: #062b57;
    padding: 90px 0 40px;
    color: white;
}

.footer-top {
    padding-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;
}

.footer-logo-icon {
    width: 46px;
    height: 46px;
    background: white;
    color: #062b57;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.footer-logo h3 {
    color: white;
    font-size: 22px;
    font-weight: 800;
    margin: 0;
}

.footer-logo span {
    color: #ff6b1a;
}

.footer-description {
    color: #d6e2ef;
    line-height: 1.9;
    font-size: 18px;
    max-width: 340px;
    margin-bottom: 35px;
}

.footer-socials {
    display: flex;
    gap: 14px;
}

.footer-socials a {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: #ff6b1a;
    border-color: #ff6b1a;
}

.footer-links h4 {
    color: white;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.footer-links ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 20px;
}

.footer-links ul li a {
    color: #d6e2ef;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ff6b1a;
    padding-left: 5px;
}

.footer-middle {
    border-top: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding: 35px 0;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #d6e2ef;
    font-size: 20px;
}

.footer-contact i {
    font-size: 22px;
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
}

.footer-bottom p {
    color: #9fb5ca;
    margin: 0;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 991px) {

    .footer-section {
        padding: 70px 0 30px;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-links {
        margin-top: 10px;
    }
}

@media (max-width: 767px) {

    .footer-logo {
        margin-bottom: 24px;
    }

    .footer-description {
        font-size: 16px;
    }

    .footer-links ul li a {
        font-size: 16px;
    }

    .footer-contact {
        font-size: 16px;
    }

    .footer-bottom p {
        font-size: 14px;
    }
}


