.wrap {
    max-width: 1320px;
    margin-inline: auto;
    padding-inline: clamp(16px, 3vw, 10px);
}

/* ─── SIDE RAIL ───────────────────────────────── */
.side-rail {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 700;
    display: flex;
    flex-direction: column;
}

.side-rail a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background .2s;
}

.side-cb {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    background: #1565C0;
    color: #fff;
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 16px 8px;
}

.side-cb:hover {
    background: #0d47a1;
    color: #fff;
}

.side-wa {
    background: #25D366;
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    color: #fff;
    writing-mode: horizontal-tb;
    transform: none;
}

.side-wa:hover {
    background: #1ebe5d;
    color: #fff;
}

@media (max-width: 575px) {
    .side-rail {
        display: none;
    }
}

/* ─── NAVBAR ─────────────────────────────────── */
#navbar {
    position: sticky;
    top: 0;
    z-index: 1100;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 1px 8px rgba(0, 0, 0, .06);
    transition: box-shadow .3s ease;
}

#navbar.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, .11);
}

.nav-inner {
    display: flex;
    align-items: center !important;
    height: 80px;
}

/* Logo */
.n-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: 0px;
}

.n-mark {
    width: 90px;
    height: auto;
    flex-shrink: 0;
    display: grid;
    place-items: center;
}







/* ─── DESKTOP NAV ────────────────────────────── */
.desk-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.desk-nav>ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 1px;
    margin-bottom: 0px;
}

.desk-nav>ul>li {
    position: static;
}

.desk-nav>ul>li>button {
    font-size: 16px;
    font-weight: 500;
    color: #1a1f2e;
    background: transparent;
    transform:uppercase;
    border: none;
    padding: 9px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    height: 70px;
    transition: color .18s, background .18s;
}

.desk-nav>ul>li>button:hover,
.desk-nav>ul>li.m-open>button {
    color: #F47920;
}

.dc {
    font-size: .62rem;
    opacity: .55;
    transition: transform .22s ease;
}

.desk-nav>ul>li.m-open .dc {
    transform: rotate(180deg);
}

.desk-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
    flex-shrink: 0;
}

.d-phone {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    color: inherit;
}

.d-ph-ico {
    width: 50px;
    height: 40px;
    display: grid;
    place-items: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: background .2s, color .2s;
}



.d-ph-lbl {
    font-size: .62rem;
    color: #9ca3af;
    font-weight: 500;
    letter-spacing: .3px;
    display: block;
}

.d-ph-num {
    font-size: .9rem;
    font-weight: 700;
    color: #1a1f2e;
}

.btn-quote {
    background: #F47920;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    padding: 9px 25px;
    border-radius: 10px;
    border: 2px solid #F47920;
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 3px 12px rgba(244, 121, 32, .28);
    transition: background .18s, color .18s, transform .15s;
}

.btn-quote:hover {
    transform: translateY(-2px);
}

/* ─── HAMBURGER ──────────────────────────────── */
.ham {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1.5px solid #e2e8f0;
    border-radius: 7px;
    cursor: pointer;
    margin-left: auto;
    flex-shrink: 0;
    transition: border-color .2s, background .2s;
}

.ham:hover {
    border-color: #F47920;
    background: #fff4ec;
}

.ham span {
    display: block;
    width: 18px;
    height: 2px;
    background: #1a1f2e;
    border-radius: 3px;
    transition: transform .32s ease, opacity .22s, width .22s;
}

.ham.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.ham.active span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.ham.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════
MEGA MENU — reusable block
• width  : min(95vw, 1320px)
• height : 500px fixed, each col scrolls inside
• hover + click both open/close
═══════════════════════════════════════════════ */
.mega-drop {
    position: fixed;
    top: 70;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: min(95vw, 100%);
    z-index: 1090;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.mega-drop.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mega-inner {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 28px 60px rgba(13, 27, 42, .13);
    display: flex;
    height: 500px;
    overflow: hidden;
}

/* Scrollbar style inside mega */
.mega-inner *::-webkit-scrollbar {
    width: 4px;
}

.mega-inner *::-webkit-scrollbar-track {
    background: #EBF1FF;
    border-radius: 4px;
}

.mega-inner *::-webkit-scrollbar-thumb {
    background: #1565C0;
    border-radius: 4px;
}

/* Three equal columns */
.mega-col {
    flex: 0 0 33.333%;
    width: 33.333%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mega-col-1 {
    background: #ffffff;
    border-right: 1px solid #e2e8f0;
}

.mega-col-2 {
    background: #ffffff;
    border-right: 1px solid #e2e8f0;
}

.mega-col-3 {
    background: #F7F9FF;
}

/* Scroll area per column */
.mega-col-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.mega-col-1 .mega-col-scroll {
    padding: 12px;
}

/* Tab items — col 1 */
.mega-tab {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 10px;
    color: #1E293B;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid transparent;
    margin-bottom: 5px;
    cursor: default;
    user-select: none;
    transition: background .15s;
}

.mega-tab-label {
    font-size: 15px;
    font-weight: 500;
}

.mega-tab-arrow {
    font-size: 20px;
    color: #64748B;
    transition: opacity .15s, transform .15s;
}

.mega-tab.active {
    background: #e1ecff;
}

.mega-tab.active .mega-tab-arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* Ad card — bottom of col 1, never scrolls away */
.mega-ad {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(90deg, #d9ff00, #c6f500 55%, rgba(217, 255, 0, .4));
    padding: 14px;
    margin: 0 12px 12px;
    flex-shrink: 0;
}

.mega-ad::after {
    content: '';
    position: absolute;
    right: -30px;
    top: -15px;
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    transform: rotate(25deg);
    opacity: .8;
    z-index: 1;
}

.mega-ad-content {
    position: relative;
    z-index: 2;
    max-width: 65%;
}

.mega-ad-logo {
    width: 70px;
    margin-bottom: 5px;
}

.mega-ad-content h5 {
    font-weight: 700;
    font-size: .88rem;
    color: #0f172a;
    margin-bottom: 6px;
}

.mega-ad-content p {
    font-size: .75rem;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.5;
}

.mega-ad-link {
    font-size: .78rem;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
}

.mega-ad-link:hover {
    text-decoration: underline;
}

/* Panel (col 2) */
.mega-panel {
    display: none;
    animation: mFade .15s ease;
}

.mega-panel.active {
    display: block;
}

@keyframes mFade {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.mega-panel-head {
    font-size: 15px;
    font-weight: 700;
    color: #0D1B2A;
    margin-bottom: 12px;
}

/* Link list */
.mega-links {
    list-style: none;
    display: grid;
    gap: 8px;
}

.mega-links li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    border-radius: 10px;
    background: #F7F9FF;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    color: #1E293B;
    font-size: 14px;
    font-weight: 500;
    transition: background .15s, transform .15s;
}

.mega-links li a:hover {
    background: #e3e8f3;
    transform: translateY(-1px);
}

.mega-links li a i {
    color: #F47920;
    font-size: .85rem;
    width: 18px;
    flex-shrink: 0;
}

/* Blog list */
.mega-blog-list {
    display: flex;
    flex-direction: column;
}

.mega-blog-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    text-decoration: none;
    border-bottom: 1px solid #e2e8f0;
    transition: background .15s;
}

.mega-blog-item:last-child {
    border-bottom: none;
}

.mega-blog-item:hover {
    background: #dce9ff;
}

.mega-blog-thumb {
    width: 120px;
    height: 80px;
    border-radius: 8px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.mega-blog-title {
    font-size: 13px;
    font-weight: 600;
    color: #1E293B;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mega-blog-item:hover .mega-blog-title {
    color: #0057FF;
}

.mega-blog-date {
    font-size: 10.5px;
    color: #94A3B8;
    margin-top: 3px;
    display: block;
}

/* Col 3 featured */
.mega-feat-img {
    width: 100%;
    height: 190px;
    border-radius: 12px;
    margin-bottom: 14px;
    background: linear-gradient(140deg, #0D1B2A, #003AB8 70%, #0057FF);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.mega-feat-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 5px;
    padding: 3px 9px;
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .8px;
    text-transform: uppercase;
    z-index: 2;
}

.mega-feat-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0D1B2A;
    line-height: 1.35;
    margin-bottom: 8px;
}

.mega-feat-desc {
    font-size: 13px;
    color: #64748B;
    line-height: 1.65;
    margin-bottom: 14px;
}

.mega-feat-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 700;
    color: #0057FF;
    text-decoration: none;
    border-bottom: 2px solid #0057FF;
    padding-bottom: 1px;
    transition: gap .15s;
}

.mega-feat-link:hover {
    gap: 9px;
}

/* Simple link grid used in non-AI menus */
.mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.mega-grid a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #F7F9FF;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    color: #1E293B;
    font-size: 13.5px;
    font-weight: 500;
    transition: background .15s, transform .15s;
}

.mega-grid a:hover {
    background: #e3e8f3;
    transform: translateY(-1px);
}

.mega-grid a i {
    color: #F47920;
    font-size: .85rem;
    flex-shrink: 0;
}

/* Section label inside col 2 */
.mega-sec-label {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 10px;
    margin-top: 16px;
    display: block;
}

.mega-sec-label:first-child {
    margin-top: 0;
}

/* ─── OVERLAY ─────────────────────────────────── */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .4);
    backdrop-filter: blur(2px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s;
}

.overlay.on {
    opacity: 1;
    visibility: visible;
}

/* ═══════════════════════════════════════════════
MOBILE DRAWER (left slide-in)
═══════════════════════════════════════════════ */
.drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: min(290px, 88vw);
    height: 100dvh;
    background: #ffffff;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    transform: translateX(-110%);
    transition: transform .36s ease;
    box-shadow: 6px 0 40px rgba(15, 23, 42, .14);
    overflow: hidden;
}

.drawer.on {
    transform: translateX(0);
}

.dr-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    height: 60px;
    border-bottom: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.dr-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.dr-logo img{
    width: 70px;
    height: auto;
}


.dr-phone-strip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
    transition: background .18s;
}

.dr-phone-strip:hover {
    background: #eef2f7;
}

.dr-ph-ico {
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.dr-ph-ico img{
    width: 30px;
    height: auto;
}

.dr-ph-lbl {
    font-size: .72rem;
    color: #787f8b;
    font-weight: 500;
    display: block;
}

.dr-ph-num {
    font-size: .88rem;
    font-weight: 700;
    color: #1a1f2e;
}

.dr-body {
    flex: 1;
    overflow-y: auto;
}

.dr-body::-webkit-scrollbar {
    width: 3px;
}

.dr-body::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 3px;
}

.dr-menu {
    list-style: none;
}

.dr-item:last-child {
    border-bottom: none;
}

.dr-row {
    display: flex;
    align-items: stretch;
}

.dr-lbl {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: .9rem;
    font-weight: 600;
    color: #1a1f2e;
    text-align: left;
    text-decoration: none;
    transition: color .18s, background .18s;
}

.dr-lbl .mi {
    font-size: .95rem;
    color: #F47920;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.dr-tog {
    width: 44px;
    display: grid;
    place-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #9ca3af;
    font-size: .72rem;
    transition: color .18s, background .18s;
    flex-shrink: 0;
}

.dr-tog i {
    transition: transform .3s ease;
}

.dr-item.open .dr-lbl {
    color: #F47920;
    background: #fff4ec;
}

.dr-item.open .dr-tog {
    color: #F47920;
    background: #fff4ec;
}

.dr-item.open .dr-tog i {
    transform: rotate(180deg);
}

.dr-row:hover .dr-lbl {
    color: #F47920;
    background: #fff4ec;
}

.dr-row:hover .dr-tog {
    background: #fff4ec;
    color: #F47920;
}

.dr-sub {
    padding-left: 10px;
    list-style: none;
    max-height: 0;
    overflow: hidden;
    background: #fafbfc;
    transition: max-height .34s ease;
}

.dr-item.open .dr-sub {
    max-height: 600px;
}



.dr-sub li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px 10px 15px;
    font-size: .83rem;
    font-weight: 500;
    color: #4b5563;
    text-decoration: none;
    transition: color .15s, background .15s, padding-left .18s ease;
}

.dr-sub li a i {
    font-size: .78rem;
    color: #c4cada;
    width: 14px;
    text-align: center;
    flex-shrink: 0;
    transition: color .15s;
}

.dr-sub li a:hover {
    color: #F47920;
    background: #fff4ec;
    padding-left: 20px;
}

.dr-sub li a:hover i {
    color: #F47920;
}

.dr-foot {
    flex-shrink: 0;
    padding: 20px 18px;
    border-top: 1px solid #e2e8f0;
    background: #f1f5f9;
}

.btn-dq {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 11px;
    border-radius: 7px;
    background: #F47920;
    color: #fff;
    font-weight: 700;
    font-size: .88rem;
    text-decoration: none;
    border: 2px solid #F47920;
    
    transition: background .18s;
}

.btn-dq:hover {
    background: #d4641a;
    color: #fff;
}

/* .btn-dwa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 11px;
    border-radius: 7px;
    background: #fff;
    color: #25D366;
    font-weight: 700;
    font-size: .88rem;
    text-decoration: none;
    border: 2px solid #25D366;
    transition: background .18s, color .18s;
}

.btn-dwa:hover {
    background: #25D366;
    color: #fff;
} */

/* ─── RESPONSIVE ──────────────────────────────── */
@media (min-width: 1024px) {
    .ham {
        display: none !important;
    }

    .desk-nav,
    .desk-actions {
        display: flex !important;
    }
}

@media (max-width: 1023px) {

    .desk-nav,
    .desk-actions {
        display: none !important;
    }

    .ham {
        display: flex !important;
    }

    .nav-inner {
        height: 58px;
    }

    .n-logo {
        margin-right: 0;
    }

    .mega-drop {
        display: none !important;
    }
}

@media (max-width: 380px) {
    

    .n-mark {
        width: 34px;
        height: 34px;
    }

    .drawer {
        width: 100vw;
    }
}

/* Mega responsive: on mid-size desktops shrink columns */
@media (min-width: 1024px) and (max-width: 1199px) {
    .mega-inner {
        height: 500px;
    }

    .mega-tab-label {
        font-size: 13.5px;
    }

    .mega-links li a {
        font-size: 13px;
        padding: 8px 10px;
    }

    .mega-grid a {
        font-size: 12.5px;
        padding: 8px 10px;
    }

    .mega-blog-thumb {
        width: 90px;
        height: 65px;
    }

    .mega-feat-img {
        height: 160px;
    }

    .mega-feat-title {
        font-size: .95rem;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .mega-blog-thumb {
        width: 100px;
        height: 72px;
    }
}

/* ─── HERO ────────────────────────────────────── */
.hero {
    position: relative;
    min-height: clamp(480px, 70vh, 640px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 18, 60, .85), rgba(10, 18, 60, .55) 55%, rgba(10, 18, 60, .16)), linear-gradient(135deg, #0f172a, #1e3a8a 55%, #3b5fc0);
}

.hero-body {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-body .wrap {
    padding-block: clamp(50px, 8vh, 96px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(244, 121, 32, .16);
    border: 1px solid rgba(244, 121, 32, .38);
    color: #ffb970;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 5px 13px;
    border-radius: 100px;
    margin-bottom: 18px;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #F47920;
    animation: blink 1.8s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .3;
        transform: scale(.55)
    }
}

.hero-h1 {
    font-weight: 800;
    font-size: clamp(1.65rem, 4vw, 2.9rem);
    line-height: 1.12;
    color: #fff;
    max-width: 660px;
    margin-bottom: 18px;
}

.hero-h1 em {
    font-style: normal;
    color: #F47920;
}

.hero-p {
    color: rgba(255, 255, 255, .76);
    font-size: clamp(.86rem, 1.3vw, .97rem);
    line-height: 1.76;
    max-width: 540px;
    margin-bottom: 14px;
}

.btn-hero {
    background: #F47920;
    color: #fff;
    font-weight: 700;
    font-size: .96rem;
    padding: 12px 26px;
    border-radius: 6px;
    border: 2px solid #F47920;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 8px;
    box-shadow: 0 4px 20px rgba(244, 121, 32, .34);
    transition: background .22s, color .22s, transform .18s;
}

.btn-hero:hover {
    background: transparent;
    color: #F47920;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.sn {
    font-size: clamp(1.4rem, 2.8vw, 1.9rem);
    font-weight: 900;
    color: #F47920;
    line-height: 1;
}

.sl2 {
    font-size: .7rem;
    color: rgba(255, 255, 255, .6);
    font-weight: 600;
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.ss {
    width: 1px;
    background: rgba(255, 255, 255, .16);
    align-self: stretch;
}