@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* Consign Custom Css */
body,p,li,a,span,div {
    font-display: swap;
    font-family: "Inter", sans-serif;
    margin-bottom: 0;
}
body{
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Inter", sans-serif;
}


/* ______________ */

/* Header Styles */

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Body scroll lock when menu open */
body.menu-open {
    overflow: hidden;
}

/* Drawer close button - hidden on desktop */
.drawer-close {
    display: none;
}

/* Mobile CTA - hidden on desktop */
.mobile-cta {
    display: none;
}

/* Replace the existing .site-header block */
.site-header {
    padding: 25px 0;
    width: 89.3%;
    margin: 32px 75px;
    z-index: 1000;
    border-radius: 16px;
    border: 1px solid #EEE;
    background: rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    position: absolute;
}

/* New scrolled state */
.site-header.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #eee;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 30px 0;
    animation: slideDown 0.3s ease forwards;
}

.scrolledLogo {
    box-shadow: 0 0 20px 0 #ccc;
    border-radius: 100px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo a {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28.8px;
    color: #1e2a3b;
    text-decoration: none;
}

.logo a span {
    color: #008BCB;
}

/* Main Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav ul li {
    position: relative;
}

.main-nav ul li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    text-decoration: none;
    color: #363B42;
    font-size: 16px;
    font-weight: 300;
    border-radius: 8px;
    transition: all 0.2s ease;
}

/* Active Menu Item */
.main-nav ul li.current-menu-item > a,
.main-nav ul li.current_page_item > a {
    background: #008BCB !important;
    color: #fff;
}

/* Dropdown Arrow */
.main-nav ul li.menu-item-has-children > a::after {
    display: none;
}

/* Dropdown Menu */
.main-nav ul li ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 10%;
    background: #fff;
    /* min-width: 200px;
    padding: 10px 0; */
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    flex-direction: column;
    gap: 0;
}

.main-nav ul li:hover > ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav ul li ul.sub-menu li a {
    min-width: 200px;
    padding: 15px 20px;
}

.main-nav ul li ul.sub-menu li a:hover {
    background: #e1e1e1;
}

/* Hover underline effect for nav links - Use ::before instead of ::after */
.main-nav > ul > li > a {
    position: relative;
    overflow: hidden;
}

.main-nav > ul > li > a::before {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: #F5A623; /* Gold/yellow color */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.main-nav > ul > li > a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Don't show underline on active/current menu items (they have background) */
.main-nav > ul > li.current-menu-item > a::before,
.main-nav > ul > li.current_page_item > a::before {
    display: none;
}

/* CTA Button */
.header-cta {
    margin-left: 20px;
}

.header-cta .menu-item a {
    display: inline-block;
    padding: 10px 24px;
    border: 1.5px solid #1e2a3b;
    border-radius: 8px;
    color: #1e2a3b;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.header-cta .menu-item a:hover {
    background: #1e2a3b;
    color: #fff;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #1e2a3b;
}

.header_button > span,
.header_button .button__icon {
    padding: .75em 1.5em !important;
}

/* =============================================
   FOOTER STYLES
   ============================================= */

/* Footer CTA Section */
.footer-cta-section {
    background: #002333;
    padding: 100px 80px;
}

.footer-cta-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.footer-cta-content {
    flex: 1;
}

.footer-cta-text {
    color: #FFF;
    font-size: 26px;
    font-style: normal;
    font-weight: 300;
    line-height: 64px;
}

.footer-cta-heading {
    color: #FFF;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 64px;
    margin-bottom: 0px;
}

/* Main Footer */
.site-footer {
    background: #3D4861;
}

/* Footer Brand */
.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: inline-block;
    text-decoration: none !important;
}

.footer-logo .logo-text {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28.8px;
    color: #fff;
}

.footer-logo .logo-accent {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28.8px;
    color: #F7B718;
}

.footer-tagline {
    color: #E7E8EB;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    padding: 24px 0 32px 0;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: color 0.2s ease;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.footer-contact .contact-item:hover {
    color: #fff;
}

.footer-contact .contact-item svg {
    flex-shrink: 0;
    opacity: 0.7;
}

/* Footer Headings */
.footer-heading {
    color: #E7E8EB;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 30.4px;
    margin-bottom: 24px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 24px;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links a {
    color: #E7E8EB;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #F5A623;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.footer-links a:hover::after {
    transform: scaleX(1);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright {
    color: #E7E8EB;
    font-feature-settings: 'liga' off;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin: 0;
}

.footer-social {
    display: flex;
    padding: 16px;
    align-items: center;
    gap: 20px;
    border-radius: 16px;
    border: 1px solid #004C70;
}

.social-label {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icons a {
    display: flex;
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    border-radius: 8px;
    color: #2A8AB7;
    background: #003A55;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #F5A623;
    color: #1e2a3b;
    transform: translateY(-3px);
}

.footer_divider {
    height: 1px;
    background: #004C70;
    margin: 80px 0;
}