* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito Sans', sans-serif;
}

/* NAVBAR CSS */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #f4f4f4;
    /* border-top: 3px solid #4b5d66; */
    padding: 15px 0;
    z-index: 9999;
    transition: all 0.3s ease;
}

.nav-container {
    width: 92%;
    /* max-width: 1600px; */
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo {
    flex-shrink: 0;
}

.logo img {
    width: 150px;
    max-width: 100%;
    display: block;
}

/* MENU */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-left: auto;
}

.nav-menu a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #2d2d2d;
    font-size: 17px;
    font-weight: 400;
    padding: 6px 0;
    transition: color .35s ease;
}

/* Underline Effect */
.nav-menu a::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #005b8f;
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width .35s ease;
}

/* Hover */
.nav-menu a:hover {
    color: #005b8f;
}

.nav-menu a:hover::before {
    width: 100%;
}

/* Active Page */
.nav-menu a.active {
    color: #005b8f;
    font-weight: 600;
}

.nav-menu a.active::before {
    width: 100%;
}
/* CTA BUTTON */

.cta-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 60px;
    padding: 10px 15px;
    background: #005b8f;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid transparent;
    transition: all .35s ease;
    box-shadow: 0 4px 12px rgba(0, 91, 143, .15);
}

/* Shine Effect */
.cta-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .35),
            transparent);
    transform: skewX(-25deg);
    transition: left .8s ease;
}

.cta-btn:hover {
    background: #006fae;
    border-color: rgba(255, 255, 255, .25);
    box-shadow: 0 8px 20px rgba(0, 91, 143, .25);
}

.cta-btn:hover::before {
    left: 150%;
}

.cta-btn:active {
    transform: none;
}

/* MOBILE RIGHT */
.mobile-right {
    display: none;
    align-items: center;
    gap: 30px;
}

/* HAMBURGER */
.hamburger {
    width: 42px;
    height: 42px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #005b8f;
    transition: .3s;
}

/* Footer CSS */

.footer {
    background: #005b8f;
    color: #fff;
    padding: 60px 0 40px;
}

.footer-container {
    width: 92%;
    max-width: 1600px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

/* Left Side */
.footer-left {
    flex: 1;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 30px;
}

.footer-logo img {
    width: 250px;
    max-width: 100%;
    display: block;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 300;
    transition: .3s;
}

.footer-contact a:hover {
    opacity: .8;
}

/* Right Side */
.footer-right {
    min-width: 300px;
}

.footer-right .footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #fff;
}

.footer-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-right li {
    margin-bottom: 20px;
}

.footer-right a {
    color: #fff;
    font-size: 17px;
    font-weight: 300;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: .3s;
}

.footer-right a:hover {
    opacity: .8;
}

/* Bottom */
.footer-bottom {
    width: 92%;
    max-width: 1600px;
    margin: 2rem auto 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding-top: 2rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.6;
}

.footer-bottom a {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom a:hover {
    opacity: .8;
}

/* MOBILE MENU */
@media(max-width:991px) {

    .navbar {
        padding: 20px 0;
    }

    .logo img {
        width: 220px;
    }

    .nav-menu,
    .desktop-btn {
        display: none;
    }

    .mobile-right {
        display: flex;
    }

    .mobile-btn {
        text-decoration: none;
        background: #005b8f;
        color: #fff;
        padding: 10px 15px;
        font-size: 14px;
        font-weight: 700;
        white-space: nowrap;
    }

    .nav-menu.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #f4f4f4;
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        z-index: 999;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    .nav-menu.active a {
        width: 100%;
        text-align: center;
        padding: 18px;
        border-bottom: 1px solid #ddd;
    }

    .nav-container {
        position: relative;
    }

    /* footer css */

    .footer {
        padding: 60px 0 35px;
    }

    .footer-container {
        gap: 50px;
    }

    .footer-logo img {
        width: 320px;
    }

    .footer-right h3 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .footer-right a,
    .footer-contact a,
    .footer-bottom p {
        font-size: 18px;
    }
}

@media(max-width:575px) {

    .logo img {
        width: 100px;
    }

    .mobile-btn {
        padding: 10px 14px;
        font-size: 13px;
    }

    .hamburger {
        width: 36px;
    }

    /* footer css */

    .footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 50px;
    }

    .footer-left,
    .footer-right {
        width: 100%;
    }

    .footer-logo {
        margin-bottom: 30px;
    }

    .footer-logo img {
        width: 210px;
        margin: auto;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-right {
        min-width: auto;
    }

    .footer-right h3 {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .footer-right li {
        margin-bottom: 20px;
    }

    .footer-right a,
    .footer-contact a {
        font-size: 18px;
    }

    .footer-bottom {
        margin-top: 50px;
    }

    .footer-bottom p {
        font-size: 16px;
    }
}