﻿body {
    margin: 0;
    font-family: 'titillium-web', 'Spectral'-serif;
    min-height: auto;
    padding: 0px !important;
}

header {
    background-color: #052d66;
    border-radius: 0 0 10px 10px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 10;
    margin: 0px 3rem;
}

.logo img {
    width: 340px;
}

a:hover {
    font-weight: 700 !important;
    color: #fff !important;
}

p.copy-right-para {
    font-size: 14px;
    font-family: 'titillium-web';
    color: white;
}

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

.nav {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.nav-item {
    position: relative;
    margin: 0 15px;
    display: flex;
    align-items: center;
}

.nav-item>a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 5px;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: 'titillium-web';
}



.nav-item .arrow {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
    border-left: unset;
    border-right: unset;
    border-top: unset;
    bottom: unset;
    height: unset;
    left: unset;
    position: unset;
    width: unset;
}

.nav-item.active .arrow {
    transform: rotate(180deg);
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 0;
    opacity: 0;
    padding: 8px 15px;
    border-radius: 20px;
    border: none;
    outline: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.search-container.active .search-input {
    width: 350px;
    opacity: 1;
    position: absolute;
    right: 0;
    z-index: 2;
}

.search-container.active .search-icon {
    color: #7EB9FF !important;
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    cursor: pointer;
    font-size: 18px;
    color: white;
}

.search-input {
    margin: 0px
}

.search-container.active .search-input .search-icon {
    color: lightblue
}

.subheader {
    display: none;
    background-color: #fff;
    padding: 15px 40px;
    border-top: 1px solid #ccc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: absolute;
    top: 90px;
    left: 2px;
    width: 94%;
    z-index: 5;
    align-items: center;
    gap: 40px;
    margin: 0px 48px;
}

.subheader.show {
    display: flex;
    border-radius: 0 0 10px 10px;
}

.subheader-label {
    font-size: 13px;
    font-weight: bold;
    color: #052d66;
    text-transform: uppercase;
    padding-bottom: 5px;
    margin-right: 20px;
    font-family: 'titillium-web';
}

.subheader-label::after {
    content: "";
    display: block;
    width: 180px;
    height: 2px;
    background-color: #052d66;
    margin-top: 5px;
}

.subheader a {
    color: #052d66;
    font-weight: bold;
    text-decoration: none;
    font-family: 'Spectral';
    font-weight: 800;
    font-size: 28px;
    padding: 0 5rem;
}

.subheader a:hover {
    text-decoration: underline;
    font-weight: 800 !important;
}


.hamburger {
    display: none;
    cursor: pointer;
    font-size: 22px;
    color: white;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: auto;
    background: #fff;
    padding: 20px;
    z-index: 999;
}

.mobile-menu.active {
    left: 40px;
    top: 60px;
}

.mobile-menu a {
    display: block;
    color: #052d66;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 0;
}

.mobile-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: large;
    padding: 10px 0;
    color: #012D63;
    font-weight: 600;
    justify-content: start;
    font-family: 'titillium-web';
    font-size: 25px;
}

.mobile-heading span {
    font-size: 20px;
    color: #052d66;
}

.mobile-submenu {
    display: none;
    padding-left: 15px;
}

.mobile-submenu a {
    font-size: 24px;
    font-weight: bold;
    padding: 6px 0;
    font-family: 'spectral'
}

.mobile-search {
    margin-top: 20px;
    position: relative;
}

.mobile-search input {
    width: 90%;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid #ccc;
}

.mobile-search .search-icon {
    position: absolute;
    right: 45px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #7EB9FF;
    cursor: pointer;
}


footer {
    background-color: #002d6a;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    bottom: 0;
    width: auto;
}

/* Logo */
.footer-logo img {
    max-width: 200px;
    margin-bottom: 30px;
}

/* Navigation Links */
.footer-nav {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    margin-bottom: 0px;
}

.footer-nav a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    font-size: 26px;
    font-family: 'titillium-web';

    cursor: pointer;
    margin: 0px 30px;
}


/* Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
    font-size: 14px;
    font-family: 'titillium-web';
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom-left img {
    width: 40px;
    height: auto;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-family: 'titillium-web';
    margin: 0px 30px;
}


.footer_field {
    display: flex;
    gap: 30px;
}

.toggle {
    color: #7EB9FF;
     padding-left: 10px;
}

.footer-sub-menu {
    display: flex;
    gap: 30px
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 15px;
    font-size: 22px;
}

.footer-social a {
    color: #fff;
    text-decoration: none;
}

@media (min-width: 1200px) {

    header,
    .subheader {
        width: 94%;
    }
}

@media (max-width: 1240px) {

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

    .mobile-menu {
        position: fixed;
    }

    .hamburger {
        position: relative;
        left: 75px;
        display: block;
        left: unset;
        text-align: right;
    }

    header {
        margin: auto;
        gap: 4rem;
    }

    .right-section {
        display: none;
    }

}

@media (max-width: 767px) {


    .footer-sub-menu {
        display: flex;
        gap: 30px;
        flex-direction: column-reverse;
    }

    .footer-bottom-left {
        flex-direction: column;
        position: relative;
        bottom: 50px;
    }

    .footer-links p {
        margin: 5px;
        font-size: 12px;
        color: rgba(204, 204, 204, 1);
        position: relative;
        top: 75px;
    }

    .footer-nav a {
        margin: 10px 0px;
        font-size: 16px;
    }

    .social-icon {
        font-size: 26px;
    }


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

    .footer-bottom {
        flex-direction: column-reverse;
    }

    .footer-links {
        flex-direction: column-reverse;
    }

    .footer_field {
        flex-direction: column;
    }

    .footer-inner-container {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .footer-links p {
        position: relative;
        top: 100px;
    }

    .footer-sub-menu a {
        margin: 0px;
    }

    .social-icon img {
        width: 30px;
    }
}
