:root {
    --navy-deep: #071422;
    --navy: #0d2137;
    --navy-mid: #1a3a5c;
    --navy-card: #183350;
    --primary: #29b6d1;
    --primary-hover: #1f9cb4;
    --primary-light: #5cd4e8;
    --primary-muted: rgba(41, 182, 209, 0.08);
    --primary-border: rgba(41, 182, 209, 0.2);
    --brand-blue: #2a6496;
    --brand-blue-hover: #1e4f7a;
    --white: #ffffff;
    --bg-ice: #f0f6fa;
    --hero-tint: #e4f0f7;
    --border: #dce8f0;
    --border-accent: rgba(42, 100, 150, 0.22);
    --border-dark: rgba(255, 255, 255, 0.12);
    --text-body: #000;
    --card-shadow: 0 4px 22px rgba(7, 20, 34, 0.06);
    --card-shadow-hover: 0 10px 32px rgba(41, 182, 209, 0.12);
    --shadow: 0 2px 14px rgba(7, 20, 34, 0.05);
    --btn-shadow-hover: 0 6px 22px rgba(41, 182, 209, 0.38);
    --radius: 10px;
    --radius-lg: 14px;
    --radius-btn: 50px;
    --footer-cta-overlap: 88px;
    --accent-yellow: #f5b301;
}
header a:focus, footer a:focus{
    outline: none!important;
    text-decoration: none!important;
}
header a:hover , footer a:hover{
    text-decoration: none!important;
}
footer{
    padding: 0px!important;
}
/* ============================================
   GLOBAL HELPERS (used by header)
   ============================================ */
a {
    text-decoration: none;
    color: inherit;
}

header ul {
    list-style: none;
}

header .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 25px;
    width: 100%;
}
header .navbar:before , header .navbar:after{
    display: none;
}

/* ============================================
   HEADER & NAVIGATION — BASE (Desktop)
   ============================================ */
.navbar .logo-link .site-logo {
    max-height: 58px;
    max-width: 135px;
    height: auto;
    width: auto;
    object-fit: contain;
    display: block;
}

.navbar .logo-link {
    display: block;
    width: 135px;
    height: 100%;
}

header {
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    min-height: 64px;
    margin: 0px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.menu li {
    list-style: none;
    position: static;
}

.menu > li > a,
.menu > li .menu-parent-link {
    text-decoration: none;
    color: var(--text-body);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
    padding: 25px 0;
    display: block;
}

.menu-submenu-toggle {
    border: 0;
    background: transparent;
    color: var(--text-body);
    padding: 10px 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.menu-dropdown-arrow {
    font-size: 11px;
    margin-left: 6px;
    transition: transform 0.25s ease;
}

.header-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--brand-blue) 100%);
    color: var(--white) !important;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    font-size: 14px;
    border: 1.5px solid transparent;
    transition: all 0.25s ease;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.menu-toggle:hover {
    border-color: var(--primary);
    background: var(--bg-light, #f8fafc);
}

.menu-toggle-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease, width 0.25s ease;
}

.site-header.menu-open .menu-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-toggle-bar:nth-child(2) {
    opacity: 0;
    width: 0;
}

.site-header.menu-open .menu-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.menu-overlay {
    display: none;
}

body.nav-locked {
    overflow: hidden;
}

/* Hidden on desktop — shown in mobile drawer */
.menu-drawer-head,
.menu-drawer-extra,
.menu-drawer-cta-wrap {
    display: none;
}

.menu-panel {
    display: contents;
}

.menu > li.has-dropdown {
    position: relative;
}

.menu > li.has-dropdown > .menu-parent-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Dropdown menu */
.dropdown-menu {
    background: var(---dark-white-color);
    text-align: left;
    border: 1px solid #0d172014;
    min-width: 300px;
    margin: 0;
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    padding: 0;
}

.dropdown-menu li {
    border-bottom: 1px solid var(--border);
    background: var(--white);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu>li>a.dropdown-menu__link {
    color: var(--navy);
    text-transform: capitalize;
    border: none;
    border-radius: 0;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    transition: all 0.4s ease-out;
    display: block;
    position: relative;
}

.dropdown-menu__link::before {
    content: "";
    transform-origin: 0;
    z-index: 1;
    background: linear-gradient(90deg, #fff, #0faff5, #fff);
    width: 100%;
    height: 1px;
    transition: all 0.4s ease-in;
    position: absolute;
    bottom: -1px;
    left: 0;
    transform: scaleX(0);
}

.dropdown-menu__link:hover::before {
    transform: scale(1);
}

.dropdown-menu__link:hover {
    color: var(--primary);
}

.dropdown-menu__icon {
    width: 20px;
    height: 20px;
    min-width: 32px;
    object-fit: contain;
    vertical-align: middle;
    margin-top: -3px;
    margin-right: 7px;
    display: inline-block;
}

/* Dropdown animation */
@keyframes fade-up {
    0% {
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* ============================================
   MOBILE DRAWER — Contact & Social (used inside menu)
   ============================================ */
.info-content {
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.info-content .info-link {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.info-content .info-link a {
    font-size: 14px;
    color: var(--text-body);
    display: inline-flex;
    align-items: center;
    line-height: normal;
    padding: 0 0 6px;
}

.footer-contact a {
    color: var(--text-body);
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--primary);
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-btn);
    background: var(--bg-ice);
    border: 1px solid var(--primary-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--navy);
    transition: all 0.25s ease;
}

.social-links a:hover {
    color: var(--white);
    border-color: var(--navy);
    background: var(--navy);
    transform: translateY(-2px);
}

.footer-col .footer-col-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-body);
    margin-bottom: 14px;
    line-height: 1.2;
}

/* ============================================
   RESPONSIVE — Desktop hover (993px+)
   ============================================ */
@media (min-width: 993px) {
    .menu > li.has-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        animation: 0.45s linear fade-up;
    }

    .menu > li.has-dropdown:hover > .menu-parent-row .menu-parent-link {
        color: var(--primary);
    }

    .menu li:hover > a .menu-dropdown-arrow,
    .menu li:hover > .menu-parent-link .menu-dropdown-arrow,
    .menu li:hover > .menu-parent-row .menu-dropdown-arrow {
        transform: rotate(180deg);
    }

    .menu > li > a:hover,
    .menu > li .menu-parent-link:hover {
        color: var(--primary);
        opacity: 1;
    }

    .header-btn:hover {
        transform: translateY(-2px);
        box-shadow: var(--btn-shadow-hover);
    }
}

/* ============================================
   RESPONSIVE — Tablet (max 1024px)
   ============================================ */
@media (max-width: 1024px) {
    .menu {
        gap: 18px;
    }
    body{
        margin: 0px!important;
    }
}

/* ============================================
   RESPONSIVE — Mobile drawer (max 992px)
   ============================================ */
@media screen and (max-width: 992px) {
    .menu-toggle {
        display: flex;
        z-index: 1002;
        margin: 0px!important;
    }

    .menu-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(7, 20, 34, 0.5);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.35s ease, visibility 0.35s ease;
        z-index: 1000;
        backdrop-filter: blur(2px);
    }

    .site-header.menu-open .menu-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .site-header.menu-open .menu-toggle {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
    }

    .navbar {
        flex-wrap: nowrap;
        gap: 10px;
        padding: 10px 0;
        position: relative;
        z-index: 1001;
    }

    .site-header.menu-open {
        z-index: 1001;
    }

    /* Slide-in drawer panel */
    .menu-panel {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        width: 100%;
        max-width: 100%;
        min-height: 100vh;
        min-height: 100dvh;
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        box-shadow: -8px 0 40px rgba(7, 20, 34, 0.14);
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
    }

    .site-header.menu-open .menu-panel {
        transform: translateX(0);
    }

    .menu {
        position: static;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        background: transparent;
        box-shadow: none;
        list-style: none;
        flex: 1 1 auto;
    }

    /* Drawer header (logo + close) */
    .menu-drawer-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 16px 20px 12px;
        border-bottom: 1px solid var(--border);
        background: var(--white);
        position: sticky;
        top: 0;
        z-index: 2;
    }

    .menu-drawer-logo {
        display: flex;
        align-items: center;
        flex: 1;
        min-width: 0;
        text-decoration: none;
        padding: 0 !important;
    }

    .menu-drawer-logo .site-logo {
        max-height: 44px;
        max-width: 160px;
        width: auto;
        height: auto;
    }

    .menu-drawer-close {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        padding: 0;
        border: none;
        border-radius: 0;
        background: none;
        color: var(--navy);
        font-size: 25px;
        cursor: pointer;
        transition: border-color 0.2s ease, color 0.2s ease;
    }

    .menu-drawer-close:hover {
        border-color: var(--border);
        color: var(--navy);
    }

    /* Menu items */
    .menu > li {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    .menu > li > a,
    .menu > li.has-dropdown .menu-parent-row .menu-parent-link {
        padding: 15px 20px;
        width: 100%;
        font-size: 16px;
        font-weight: 500;
        color: var(--text-body);
    }

    .menu > li.has-dropdown > .menu-parent-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
    }

    .menu > li.has-dropdown > .menu-parent-row > .menu-submenu-toggle {
        width: auto;
        height: auto;
        padding: 18px 20px;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: var(--text-body);
        flex-shrink: 0;
    }

    .menu > li.has-dropdown > .menu-parent-row .menu-dropdown-arrow {
        margin-left: 0;
        font-size: 12px;
        color: var(--text-body);
    }

    .menu > li.has-dropdown > .menu-parent-row > .menu-submenu-toggle:hover {
        background: transparent;
        color: var(--primary);
    }

    .menu > li.submenu-open > .menu-parent-row > .menu-parent-link {
        color: var(--text-body);
        background: transparent;
    }

    .menu > li.submenu-open > .menu-parent-row {
        background: transparent;
        border-color: transparent;
    }

    .menu > li.submenu-open > .menu-parent-row > .menu-submenu-toggle {
        color: var(--text-body);
    }

    .menu > li.submenu-open > .menu-parent-row .menu-dropdown-arrow {
        transform: rotate(180deg);
        color: var(--primary);
    }

    /* Mobile dropdown (accordion) */
    .menu > li.has-dropdown .dropdown-menu {
        position: relative;
        top: auto;
        left: 0;
        min-width: 0;
        width: 100%;
        border: none;
        border-radius: 0;
        box-shadow: none;
        border-top: 1px solid var(--border);
        padding: 0;
        margin-top: 0;
        display: none;
        opacity: 1;
        visibility: visible;
        max-height: none;
        overflow: visible;
        animation: none;
    }

    .menu > li.has-dropdown.submenu-open .dropdown-menu {
        display: block;
    }

    .menu > li.has-dropdown .dropdown-menu li a,
    .menu > li.has-dropdown .dropdown-menu .dropdown-menu__link {
        padding: 15px 20px;
        font-size: 15px;
        border-bottom: none;
    }

    .menu > li.has-dropdown .dropdown-menu li {
        border-bottom: 1px solid var(--border);
    }

    .menu > li.has-dropdown .dropdown-menu li:last-child {
        border-bottom: none;
    }

    .menu > li.has-dropdown .dropdown-menu .dropdown-menu__link {
        display: flex;
        align-items: center;
        gap: 16px;
        color: var(--navy);
    }

    .menu > li.has-dropdown .dropdown-menu .dropdown-menu__icon {
        width: 25px;
        height: 25px;
        min-width: 28px;
        margin-right: 0;
        margin-top: 0;
    }

    .menu > li.has-dropdown .dropdown-menu li a:hover,
    .menu > li.has-dropdown .dropdown-menu .dropdown-menu__link:hover {
        background: var(--bg-ice);
    }

    /* Drawer CTA button */
    .menu-drawer-cta-wrap {
        display: none;
        padding: 16px 20px;
        border-bottom: 1px solid var(--border);
    }

    .menu-drawer-cta {
        display: block;
        width: 100%;
        text-align: center;
    }

    /* Drawer footer (contact, social, copyright) */
    .menu-drawer-extra {
        display: block;
        margin-top: auto;
        padding: 20px;
    }

    .menu-drawer-extra .footer-col-title {
        font-size: 18px;
        font-weight: 500;
        color: var(--text-body);
        margin-bottom: 12px;
        margin-top: 0px;
    }

    .menu-drawer-extra .footer-contact .info-link a {
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

    .menu-drawer-extra .footer-contact .info-link i {
        width: 16px;
        margin-top: 2px;
        flex-shrink: 0;
        color: var(--primary);
    }

    .menu-drawer-social {
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid var(--border);
    }

    .menu-drawer-extra .social-links {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .menu-drawer-copy-right {
        margin-top: 18px;
        border-top: 1px solid var(--border);
        padding-top: 15px;
    }

    .navbar .logo-link {
        margin-right: auto;
    }

    .header-btn--bar {
        padding: 8px 16px;
        font-size: 13px;
        white-space: nowrap;
    }
}

/* ============================================
   RESPONSIVE — Small mobile (max 767px)
   ============================================ */
@media (max-width: 767px) {
    .container {
        padding: 0 20px;
    }

    .navbar .logo-link .site-logo {
        max-height: 48px;
        max-width: 180px;
    }
}

/* ============================================
   RESPONSIVE — Extra small (max 320px)
   ============================================ */
@media (max-width: 320px) {
    .header-btn--bar {
        display: none;
    }

    .menu-drawer-cta-wrap {
        display: block;
    }
}

.site-footer {
    background: var(--white);
    padding: 0;
    border-top: none;
    position: relative;
    z-index: 1;
}
.footer-main {
    background: var(--white);
    padding:24px 0;
    border-top: none;
}
.footer-logo-link {
    display: inline-block;
    padding: 0;
    margin-bottom: 8px;
    background: transparent;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 30px;
}
.footer-brand p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
    margin: 16px 0 10px;
}
.footer-contact p {
    font-size: 14px;
    color: var(--text-body);
    margin-bottom: 0px;
    margin-top: 10px;
}
.info-content {
    display: flex;
    align-items: flex-start;
    gap: 5px;
}
.info-content p {
    margin-top: -1px;
}
.info-content .info-link {
    display: flex;
    flex-direction: column;
    gap: 0px;
}
.info-content .info-link a {
    font-size: 14px;
    color: var(--text-body);
    display: inline-flex;
    align-items: center;
    line-height: normal;
    padding: 0px 0px 6px;
}
.footer-contact a {
    color: var(--text-body);
    transition: color 0.2s;
}
.footer-contact a:hover {
    color: var(--primary);
}
.social-links a {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-btn);
    background: var(--bg-ice);
    border: 1px solid var(--primary-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--navy);
    transition: all 0.25s ease;
}
.social-links a:hover {
    color: var(--white);
    border-color: var(--navy);
    background: var(--navy);
    transform: translateY(-2px);
    text-decoration: none!important;
}
.footer-col .footer-col-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-body);
    margin-bottom: 14px;
    line-height: 1.2;
}
.footer-col ul li {
    margin-bottom: 10px;
    line-height: normal;
}
.footer-col ul li:last-child {
    margin-bottom: 0px;
}
.footer-col ul li a {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.2;
    display: block;
    transition: all 0.2s ease;
}
.footer-col ul li a::before{
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 0px;
    display: inline-block;
    transition: all 0.2s ease;
    opacity: 0;
    position: absolute;
    left: -18px;
    top: 0;
}
.footer-col ul li a:hover::before {
    opacity: 1;
}
.footer-col ul li a:hover {
    color: var(--brand-blue-hover);
    transform: translateX(16px);
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-body);
}
.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
}
.post-type-archive-cyblance-portfolio .footer{
    width: 68%;
}
body #f-nav{
    top: 70px;
}
@media (max-width: 1024px){
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.footer-col ul {
    padding: 0px;
    list-style: none;
}
@media (max-width: 767px){
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 0px
    }
}
.fab-icon {
    position: fixed;
    bottom: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2;
}
.fab-icon a {
    width: 55px;
    height: 55px;
    display: block;
    box-shadow: 0 0 4px rgba(0, 0, 0, .14), 0 4px 8px rgba(0, 0, 0, .28);
    border-radius: 50%;
}
.fab-icon a img{
    width: 100%;
    height: 100%;
}
