@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Outfit',sans-serif;
}

/* =========================================
   HEADER
========================================= */

:root{
    --navbar-height:92px;
}


.vb-header{
    position:fixed;
    top:0;
    left:0;

    width:100%;

    z-index:9999;

    background:#ffffff;

    border-bottom:
    1px solid rgba(0,0,0,.06);

    transition:.4s ease;
}

/* SCROLL EFFECT */

.vb-header.scrolled{

    box-shadow:
    0 10px 40px rgba(0,0,0,.08);

}

/* =========================================
   NAVBAR
========================================= */

.vb-navbar{
    max-width:1500px;

    margin:auto;

    height:92px;

    padding:0 5%;

    display:flex;

    align-items:center;

    justify-content:space-between;
}

/* =========================================
   LOGO
========================================= */

.vb-logo{
    display:flex;
    align-items:center;

    text-decoration:none;
}

.vb-logo img{
    width:115px;

    transition:.4s ease;
}

.vb-logo:hover img{
    transform:scale(1.03);
}

/* =========================================
   MENU
========================================= */

.vb-menu{
    display:flex;

    align-items:center;

    gap:45px;

    list-style:none;
}

.vb-menu li a{
    position:relative;

    text-decoration:none;

    color:#111111;

    font-size:18px;

    font-weight:600;

    transition:.3s ease;
}

/* HOVER LINE */

.vb-menu li a::after{
    content:"";

    position:absolute;

    left:0;
    bottom:-10px;

    width:0%;
    height:3px;

    border-radius:20px;

    background:
    linear-gradient(
        90deg,
        #ff0088,
        #00c6ff
    );

    transition:.4s ease;
}

.vb-menu li a:hover::after,
.vb-menu li a.active::after{
    width:100%;
}

.vb-menu li a:hover{
    color:#5f3dc4;
}

/* =========================================
   BUTTON
========================================= */

.vb-quote-btn{
    display:inline-flex;

    align-items:center;
    justify-content:center;

    height:54px;

    padding:0 34px;

    border-radius:60px;

    text-decoration:none;

    color:#ffffff;

    font-size:16px;
    font-weight:700;

    background:
    linear-gradient(
        135deg,
        #5f3dc4,
        #00c6ff
    );

    box-shadow:
    0 12px 30px rgba(95,61,196,.25);

    transition:.4s ease;
}

.vb-quote-btn:hover{
    transform:translateY(-4px);

    box-shadow:
    0 18px 35px rgba(95,61,196,.35);
}

/* =========================================
   HAMBURGER
========================================= */

.vb-hamburger{
    width:42px;
    height:42px;

    display:none;

    flex-direction:column;

    justify-content:center;

    gap:6px;

    cursor:pointer;
}

.vb-hamburger span{
    width:100%;
    height:3px;

    border-radius:20px;

    background:#111111;

    transition:.4s ease;
}

/* ACTIVE */

.vb-hamburger.active span:nth-child(1){
    transform:
    translateY(9px)
    rotate(45deg);
}

.vb-hamburger.active span:nth-child(2){
    opacity:0;
}

.vb-hamburger.active span:nth-child(3){
    transform:
    translateY(-9px)
    rotate(-45deg);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:992px){

    .vb-nav{
        position:fixed;

        top:92px;
        right:-100%;

        width:320px;
        height:calc(100vh - 92px);

        background:#ffffff;

        padding:50px 40px;

        transition:.5s ease;

        box-shadow:
        -10px 0 40px rgba(0,0,0,.08);
    }

    .vb-nav.active{
        right:0;
    }

    .vb-menu{
        flex-direction:column;
        align-items:flex-start;

        gap:35px;
    }

    .vb-menu li a{
        font-size:22px;
    }

    .vb-hamburger{
        display:flex;
    }

    .vb-quote-btn{
        display:none;
    }

}

@media(max-width:768px){

    .vb-navbar{
        height:84px;
    }

    .vb-logo img{
        width:170px;
    }

    .vb-nav{
        top:84px;
        height:calc(100vh - 84px);
    }

}

:root {
    --navbar-height: 92px;
}

/* =========================================
   HEADER BASE CORES
   ========================================= */
.vb-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,.06);
    transition: box-shadow .4s ease, background-color .4s ease;
}

.vb-header.scrolled {
    box-shadow: 0 10px 40px rgba(0,0,0,.08);
}

.vb-navbar {
    max-width: 1500px;
    margin: auto;
    height: var(--navbar-height);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vb-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.vb-logo img {
    width: 115px;
    height: auto;
    transition: transform .4s ease;
}

.vb-logo:hover img {
    transform: scale(1.03);
}

.vb-menu {
    display: flex;
    align-items: center;
    gap: 45px;
    list-style: none;
}

.vb-menu li a {
    position: relative;
    text-decoration: none;
    color: #111111;
    font-size: 18px;
    font-weight: 600;
    transition: color .3s ease;
}

.vb-menu li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0%;
    height: 3px;
    border-radius: 20px;
    background: linear-gradient(90deg, #ff0088, #00c6ff);
    transition: width .4s ease;
}

.vb-menu li a:hover::after,
.vb-menu li a.active::after {
    width: 100%;
}

.vb-menu li a:hover {
    color: #5f3dc4;
}

.vb-quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 0 34px;
    border-radius: 60px;
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #5f3dc4, #00c6ff);
    box-shadow: 0 12px 30px rgba(95,61,196,.25);
    transition: transform .4s ease, box-shadow .4s ease;
}

.vb-quote-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(95,61,196,.35);
}

.vb-hamburger {
    width: 32px;
    height: 24px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 10000; /* Ensure button stays on top of menu */
}

.vb-hamburger span {
    width: 100%;
    height: 3px;
    border-radius: 20px;
    background: #111111;
    transition: transform .4s ease, opacity .4s ease;
}

/* HAMBURGER ACTIVE X TRANSFORMS */
.vb-hamburger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.vb-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.vb-hamburger.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* =========================================
   CLEAN RESPONSIVE LAYOUT ENGINE FORK
   ========================================= */
@media (max-width: 992px) {
    .vb-hamburger {
        display: flex;
    }

    .vb-quote-btn {
        display: none;
    }

    /* Isolated and targeted mobile navigation panel mapping */
    .vb-nav {
        position: fixed;
        top: var(--navbar-height);
        right: -100%;
        width: 320px;
        height: calc(100vh - var(--navbar-height));
        background: #ffffff;
        padding: 50px 40px;
        transition: right .4s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: -10px 10px 40px rgba(0, 0, 0, 0.05);
        z-index: 9998;
        display: block !important; /* Overrides component row level collapses */
    }

    .vb-nav.active {
        right: 0;
    }

    .vb-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 35px;
    }

    .vb-menu li a {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    :root {
        --navbar-height: 84px;
    }

    .vb-navbar {
        height: var(--navbar-height);
    }

    .vb-logo img {
        width: 100px; /* Kept clean so it doesn't collide with hamburger nodes */
    }

    .vb-nav {
        top: var(--navbar-height);
        height: calc(100vh - var(--navbar-height));
    }
}


/* =========================================
   DESKTOP DROPDOWN CORE ENGINE
========================================= */
.vb-dropdown-parent {
    position: relative;
}

/* Arrow indicator icon inside text link */
.dropdown-arrow {
    font-size: 12px;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.vb-dropdown-parent:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Hide line effect for services parent link when hovering dropdown panel itself */
.vb-dropdown-parent:hover > a::after {
    width: 100%;
}

/* The actual dropdown flyout box menu */
.vb-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px); /* Offset slightly lower for animation slide up */
    width: 220px;
    background: #ffffff;
    border-radius: 14px;
    padding: 12px 0;
    list-style: none;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    
    /* Animation Properties */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.3s;
}

/* On hover reveal panel smoothly */
.vb-dropdown-parent:hover .vb-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(5px); /* Slide upward cleanly */
}

.vb-dropdown-menu li {
    width: 100%;
}

.vb-dropdown-menu li a {
    display: block;
    padding: 12px 24px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #444444 !important;
    transition: all 0.25s ease !important;
    width: 100%;
}

/* Remove default link hover line underline for child rows inside dropdown menu panel box */
.vb-dropdown-menu li a::after {
    display: none !important;
}

.vb-dropdown-menu li a:hover {
    color: #5f3dc4 !important;
    background-color: #f8f9fa;
    padding-left: 28px !important; /* Premium subtle nudge to the right */
}

/* =========================================
   RESPONSIVE MOBILE BREAKDOWN FOR DROPDOWN
========================================= */
@media (max-width: 992px) {
    .vb-dropdown-parent {
        width: 100%;
    }

    .vb-dropdown-parent:hover .dropdown-arrow {
        transform: none; /* Turn off desktop hover triggers */
    }

    /* Transform arrow behavior when active sub-menu triggers */
    .vb-dropdown-parent.open-mobile-menu .dropdown-arrow {
        transform: rotate(180deg);
        color: #5f3dc4;
    }

    .vb-dropdown-menu {
        position: relative;
        top: 0;
        left: 0;
        transform: none !important;
        width: 100%;
        box-shadow: none;
        border: none;
        padding: 0;
        background: transparent;
        
        /* Accordion Collapsed States */
        display: none; 
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* Active open configuration state wrapper mapping script toggles */
    .vb-dropdown-parent.open-mobile-menu .vb-dropdown-menu {
        display: block;
        margin-top: 15px;
        padding-left: 15px;
        border-left: 2px solid #5f3dc4;
    }

    .vb-dropdown-menu li a {
        padding: 10px 0 !important;
        font-size: 18px !important;
    }

    .vb-dropdown-menu li a:hover {
        background: transparent;
        padding-left: 5px !important;
    }
}


/* =========================================
   GLOBAL REUSABLE BREADCRUMBS STYLES
========================================= */
/* =========================================
   GLOBAL REUSABLE BREADCRUMBS STYLES
========================================= */
/* ==========================================================================
   GLOBAL DETACHED TRANSPARENT BREADCRUMBS (BREAKOUT ENGINE FIXED)
   ========================================================================== */
.vb-breadcrumb-global-overlay {
    position: absolute;
    top: 92px; /* Places it exactly below your 92px desktop fixed navbar line */
    left: 0;
    width: 100%;
    background: transparent !important;
    background-color: transparent !important;
    z-index: 9990; /* Sits perfectly above hero templates but beneath dropdown popups */
    pointer-events: none; /* Prevents container overlay boundaries from blocking form field clicks */
}

.vb-breadcrumb-nav {
    width: 100%;
    padding: 8px 2%;
    background: transparent !important;
    background-color: transparent !important;
    border-bottom: none !important;
}

.vb-breadcrumb-list {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    pointer-events: auto; /* Re-enables links inside the trail layer to work perfectly */
}

/* Light text styling so the trail contrast pops cleanly against dark image masks */
.vb-breadcrumb-item, 
.vb-breadcrumb-item a {
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: rgb(49, 49, 49) !important;
    text-decoration: none;
    text-transform: capitalize;
    transition: color 0.25s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25); /* Subtle shadow ensures clean reading over light image patches */
}

.vb-breadcrumb-item a:hover {
    color: #2f46f6 !important; /* Visualbox Signature Gold highlight on focus hover states */
}

.vb-breadcrumb-separator {
    font-size: 10px;
    color: rgba(91, 0, 0, 0.45);
    display: inline-flex;
    align-items: center;
    user-select: none;
}

/* Terminal page location highlight text node */
.vb-breadcrumb-item.active-node {
    color: #710101 !important;
    font-weight: 600;
    pointer-events: none;
}

/* Clean compact mobile adjustments safely handling lower screen real estate breaks */
@media (max-width: 768px) {
    .vb-breadcrumb-global-overlay {
        top: 84px; /* Matches your 84px mobile header tracking line layout adjustments */
    }
    .vb-breadcrumb-nav {
        padding: 16px 5%;
    }
    .vb-breadcrumb-item, 
    .vb-breadcrumb-item a {
        font-size: 12px;
    }
}