 * {
             margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
        }

        body {
            overflow-x: hidden;
            background: #fff;
        }

        img {
            max-width: 100%;
        }

        .container {
            width: 100%;
            max-width: 1280px;
            margin: auto;
            padding: 0 20px;
        }

        /* ================= TOP HEADER ================= */

        .top-header {
            background: #013780;
            padding: 12px 0;
            color: #fff;
            font-size: 14px;
        }

        .top-header-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .top-left,
        .top-right {
            display: flex;
            gap: 22px;
            flex-wrap: wrap;
        }

        .top-header a {
            color: #fff;
            text-decoration: none;
            transition: 0.3s;
        }

        .top-header a:hover {
            color: #f48b38;
        }

        .top-header i {
            color: #f48b38;
            margin-right: 8px;
        }

        /* ================= HEADER ================= */

        header {
            width: 100%;
            background: #fff;
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

       .navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:55px;
    padding:8px 15px;
}

        /* LOGO */

        .logo {
            display: flex;
            align-items: center;
            margin-right: 6px;
        }

        .logo a {
            display: flex;
            align-items: center;
        }

        .logo img {
            width: 100%;
            max-width: 220px;
            height: 68px;
            object-fit: contain;
            transition: 0.3s;
        }

        /* MENU */

        .menu {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-left: auto;
        }

        .menu li {
            list-style: none;
            position: relative;
        }

        .menu li a {
            text-decoration: none;
            color: #013780;
            font-size: 17px;
            font-weight: 700;
            letter-spacing: 0.3px;
            transition: 0.3s;
            position: relative;
        }

        /* HOVER EFFECT */

        .menu li a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 0;
            height: 2px;
            background: #f48b38;
            transition: 0.3s;
        }

        .menu li a:hover::after {
            width: 100%;
        }

        .menu li a:hover {
            color: #f48b38;
        }

        /* DROPDOWN */

        .dropdown-menu {
            position: absolute;
            top: 48px;
            left: 0;
            width: 240px;
            background: #fff;
            border-radius: 14px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
            overflow: hidden;
            opacity: 0;
            visibility: hidden;
            transition: 0.4s;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
        }

        .dropdown-menu li {
            border-bottom: 1px solid #eee;
        }

        .dropdown-menu li:last-child {
            border-bottom: none;
        }

        .dropdown-menu li a {
            display: block;
            padding: 15px 18px;
            font-size: 15px;
            font-weight: 600;
        }

        /* BUTTON */

        .header-btn {
            background: #f48b38;
            color: #fff !important;
            padding: 12px 24px;
            border-radius: 50px;
            box-shadow: 0 8px 18px rgba(244, 139, 56, 0.25);
        }

        .header-btn:hover {
            background: #013780;
            transform: translateY(-2px);
        }

        /* MOBILE MENU */

        .menu-toggle {
            display: none;
            font-size: 28px;
            color: #013780;
            cursor: pointer;
        }

        /* ================= FOOTER ================= */

        footer {
            background: #012d69;
            color: #fff;
            padding: 20px 0 0px;
        }

        .footer-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 45px;
        }

        .footer-about p {
            line-height: 30px;
            color: #dddddd;
            margin-bottom: 22px;
            font-size: 15px;
        }

        .footer-box h3 {
            color: #f48b38;
            font-size: 24px;
            margin-bottom: 25px;
            font-weight: 700;
        }

        .footer-links li {
            list-style: none;
            margin-bottom: 15px;
        }

        .footer-links li a {
            color: #fff;
            text-decoration: none;
            transition: 0.3s;
            font-size: 15px;
        }

        .footer-links li a:hover {
            color: #f48b38;
            padding-left: 5px;
        }

        .footer-links i {
            color: #f48b38;
            margin-right: 10px;
        }

        .contact-info p {
            display: flex;
            gap: 12px;
            line-height: 30px;
            margin-bottom: 16px;
            color: #e6e6e6;
            font-size: 15px;
        }

        .contact-info i {
            color: #f48b38;
            margin-top: 6px;
            min-width: 16px;
        }

        /* SOCIAL ICONS */

        .social-icons {
            display: flex;
            gap: 12px;
            margin-top: 25px;
        }

        .social-icons a {
            width: 42px;
            height: 42px;
            background: #f48b38;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: 0.3s;
            font-size: 15px;
        }

        .social-icons a:hover {
            background: #fff;
            color: #013780;
            transform: translateY(-4px);
        }

        /* COPYRIGHT */

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            margin-top: 5px;
            padding: 20px;
            text-align: center;
            color: #ddd;
            font-size: 14px;
        }

        /* ================= MOBILE ================= */

        @media(max-width:991px) {

            .menu-toggle {
                display: block;
            }

            .menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 300px;
                height: 100vh;
                background: #013780;
                flex-direction: column;
                align-items: flex-start;
                padding: 95px 30px;
                transition: 0.4s;
                z-index: 999;
                overflow-y: auto;
                gap: 18px;
            }

            .menu.active {
                right: 0;
            }

            .menu li {
                width: 100%;
            }

            .menu li a {
                color: #fff;
                display: block;
                width: 100%;
                font-size: 18px;
                font-weight: 700;
            }

            .dropdown-menu {
                position: static;
                width: 100%;
                opacity: 1;
                visibility: visible;
                background: #0d4ca0;
                box-shadow: none;
                margin-top: 12px;
            }

            .dropdown-menu li a {
                color: #fff;
            }

            .top-header {
                display: none;
            }

            .logo img {
                max-width: 185px;
                height: 58px;
            }

        }

        @media(max-width:576px) {

            .logo img {
                max-width: 165px;
                height: 50px;
            }

            .footer-box h3 {
                font-size: 22px;
            }

            .footer-wrapper {
                gap: 35px;
            }

        }
        /* MOBILE MENU */

.menu-toggle {
    display: none;
    font-size: 30px;
    color: #013780;
    cursor: pointer;
    z-index: 1001;
}

/* CLOSE BUTTON */

.menu-close {
    display: none;
}

@media(max-width:991px) {

    .menu-toggle {
        display: block;
    }

    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #013780;
        flex-direction: column;
        align-items: flex-start;
        padding: 95px 30px 40px;
        transition: 0.4s ease;
        z-index: 999;
        overflow-y: auto;
        gap: 18px;
    }

    .menu.active {
        right: 0;
    }

    .menu-close {
        display: block;
        position: absolute;
        top: 22px;
        right: 22px;
        color: #fff;
        font-size: 32px;
        cursor: pointer;
        transition: 0.3s;
    }

    .menu-close:hover {
        color: #f48b38;
        transform: rotate(90deg);
    }

    .menu li {
        width: 100%;
    }

    .menu li a {
        color: #fff;
        display: block;
        width: 100%;
        font-size: 18px;
        font-weight: 700;
        padding: 5px 0;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        background: #0d4ca0;
        box-shadow: none;
        margin-top: 12px;
        border-radius: 10px;
    }

    .dropdown-menu li a {
        color: #fff;
        font-size: 16px;
        padding: 14px 16px;
    }

    .top-header {
        display: none;
    }

    .logo img {
        max-width: 185px;
        height: 58px;
    }

}
