.footer {
    background: #132244;
}

.footer-top {
    border-bottom: 1px solid #1c2e55;
    padding: 32px 0;
}

.footer-row {
    display: flex;
    align-items: center;
}

.footer-links ul {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0;
}

.footer-links a {
    font-size: 18px;
    color: #afb8c9 !important;
    text-decoration: none;
}

.footer-links a:hover {
    color: #75ab4a !important;
    transition: 0.1s ease-in-out;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.footer-social p {
    margin: 0;
    font-size: 16px;
    color: #afb8c9;
}

.social-icons {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.social-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    color: #132244 !important;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none !important;
}

.social-icon i {
    font-size: 20px;
}

.social-icon:hover {
    background: #75ab4a;
    color: white !important;
    transition: 0.2s ease-in-out;
    border: 1px solid #afb8c9;
}

.footer-inner {
    padding: 70px 0;
}

.contact-info img {
    margin-bottom: 20px;
}

.contact-info p {
    color: #62718d;
    font-size: 16px;
    margin-bottom: 20px;
}

.contact-info ul li a {
    color: white !important;
    font-size: 16px;
    text-decoration: none;
}

.contact-info ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.contact-info li:last-child {
    margin-bottom: 0;
}

.contact-info li:hover {
    color: #75ab4a !important;
}

.contact-info li i {
    font-size: 18px;
    color: #62718d;
}

.contact-info li a span {
    color: #8c96ac;
}

.quick-links h2 {
    font-size: 25px;
    font-weight: bold;
    color: white;
    margin-top: 0;
    margin-bottom: 25px;
}

.quick-links ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.quick-links li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 16px;
    cursor: pointer;
}

.quick-links li:hover a {
    color: #75ab4a !important;
    transition: .2s ease-in-out;
}

.quick-links li:hover i {
    color: #75ab4a;
    transition: .2s ease-in-out;
}

.quick-links li i {
    font-size: 10px;
    color: #62718d;
}

.quick-links a {
    color: #8c96ac !important;
    text-decoration: none;
}

.newsletter h2 {
    font-size: 25px;
    font-weight: bold;
    color: white;
    margin-top: 0;
    margin-bottom: 25px;
}

.newsletter p {
    color: #8c96ac;
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.newsletter label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #62718d;
}

.newsletter input[type="email"] {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: none;
    background-color: #fff;
    color: #000;
    margin-bottom: 20px;
}

.newsletter button {
    background-color: #2d2d2d;
    color: #fff;
    border: none;
    padding: 10px 24px;
    font-size: 14px;
    cursor: pointer;
}

.newsletter button:hover {
    background-color: #1f1f1f;
}

.footer-bottom {
    padding: 40px 0;
    background: #06173a;
    text-align: center;
    color: #8c96ac;
    font-size: 14px;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
    .widget {
        margin-bottom: 40px;
    }

    .footer-row {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 410px) {
    .footer-social {
        flex-direction: column;
        gap: 10px;
    }
}

/*-------------------
         Header
---------------------*/
.site-header {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    flex-shrink: 0;
}

.header-logo img {
    height: 50px;
}

.header-nav {
    flex-grow: 1;
    margin-left: 20px;
}

.header-nav .header-menu {
    display: flex;
}

.header-menu>li>a {
    padding: 40px 26px 40px 26px;
    font-family: "Cabin", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 24px;
    color: #202b5d !important;
    display: flex;
    align-items: end;
    gap: 5px;
    white-space: normal;
}

.header-menu>li>a:focus {
    background: none;
}

.header-menu>li>a i {
    font-size: 10px;
    padding-bottom: 8px;
    display: inline-block;
}

.header-menu>li>a:hover {
    color: #75ab4a;
    background: transparent;
}

.header-right {
    display: flex;
    align-items: center;
}

.header-request-btn {
    border: 2px solid #007bff;
    color: #007bff !important;
    font-size: 16px;
    padding: 8px 14px;
    font-weight: 500;
    margin-left: 20px;
}

.header-request-btn:hover {
    background: #2D5E17;
    color: white !important;
    border: 2px solid transparent;
    transition: .2s ease-in-out;
}

.search {
    display: flex;
    /* justify-content: end; */
    align-items: end;
}

.header-search-icon {
    font-size: 18px;
    color: #555;
    background: none;
    border: none;
    outline: none;
    margin-left: auto;
}

.header-search-icon:hover {
    background: none;
    color: #75ab4a;
    transition: .2s ease-in-out;
}

.header-search-icon i {
    font-size: 18px;
}


/* Base hidden state */
.header-menu .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 13rem;
    background-color: white;
    box-shadow: 0px 10px 40px rgba(6, 22, 58, 0.1);
    z-index: 1000;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: block;
    pointer-events: none;
    padding: 15px;
    border: 0;
}

/* Show on hover */
.header-menu>li.dropdown:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Dropdown links */
.header-menu .dropdown-menu li a {
    display: block;
    padding: 7px 15px;
    text-decoration: none;
    color: #202b5d !important;
    transition: 0.2s ease;
    font-size: 17px;
    text-transform: capitalize;
}

.header-menu .dropdown-menu li a:hover {
    background-color: #75ab4a;
    color: white !important;
}


/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .header-right {
        display: none;
    }
}

@media (max-width: 1024px) {

    .header-nav,
    .search {
        display: none;
    }

    .hamburger {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: rgb(32, 32, 32);
        border: none;
        color: white;
        border-radius: 5px;
        height: 40px;
        width: 40px;
        margin-left: auto;
        padding: 0 !important;
    }

    .hamburger i {
        font-size: 25px;
    }

    .hamburger:hover {
        background: rgb(32, 32, 32);
        color: white !important;
    }

    .header-container {
        justify-content: start;
    }
}

/* Default hidden */
.hamburger {
    display: none;
    cursor: pointer;
}

/* Sidebar & Overlay */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #343434;
    z-index: 1000;
    padding-top: 30px;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease-in-out;
    overflow-y: auto;
}

.sidebar.open {
    left: 0;
}

.sidebar-overlay.show {
    display: block;
}

.sidebar-close {
    background: none;
    border: none;
    font-size: 22px;
    float: right;
    cursor: pointer;
    margin-bottom: 20px;
    color: white;
    padding-right: 20px;
}

.sidebar-close:hover {
    background: none;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
}

.collapse-toggle {
    background: none;
    border: none;
    font-size: 17px;
    font-weight: normal;
    color: white !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
    padding: 10px 15px;
    border-bottom: 1px solid #9b9b9b1f;
}

.collapse-toggle:hover {
    background: transparent;
    color: #75ab4a !important;
    transition: .2s ease-in-out;
    border-bottom: 1px solid #9b9b9b1f;
    text-decoration: none;
}

.collapse-toggle:focus {
    outline: none;
    color: white;
    text-decoration: none;
}


.collapse-toggle i {
    font-size: 10px;
}

.collapse-menu {
    overflow: hidden;
    height: 0;
    transition: height 0.3s ease;
    padding: 0 25px;
    list-style: none;
}

.collapse-menu.show {
    display: block;
}

.collapse-menu li a {
    color: white !important;
    font-size: 15px;
    text-decoration: none;
    display: block;
    padding: 8px 10px;
    border-bottom: 1px solid #9b9b9b1f;
}

.collapse-menu li:first-child a {
    margin-top: 10px;
}

.collapse-menu li:last-child a {
    margin-bottom: 10px;
}

.collapse-menu li a:hover {
    background: #75ab4a;
    color: white;
    transition: .2s ease-in-out;
}

.sidebar .single-item {
    background: none;
    border: none;
    font-size: 17px;
    font-weight: normal;
    color: white !important;
    display: flex;
    width: 100%;
    cursor: pointer;
    padding: 10px 15px;
    border-bottom: 1px solid #9b9b9b1f;
}

.sidebar .single-item:hover {
    color: #75ab4a;
    text-decoration: none;
}

.collapse-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
}