/* =========================================================
   GK CONSULTANCY
   PREMIUM RESPONSIVE HEADER
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #1f2937;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

button,
a,
input {
    font-family: 'Poppins', sans-serif;
}

button {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 42px;

    padding: 0 6%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #050505;

    z-index: 9000;
}


/* =========================================================
   TOP LEFT
========================================================= */

.top-left {
    display: flex;
    align-items: center;
    gap: 28px;
}

.top-left > span {
    display: flex;
    align-items: center;

    gap: 8px;

    color: #f8fafc;

    font-size: 12px;
    font-weight: 400;

    white-space: nowrap;
}

.top-left > span:hover {
    color: #60a5fa;
}

.top-left i {
    font-size: 12px;
}

.top-left > span:first-child i {
    color: #22c55e;
}

.top-left > span:nth-child(2) i {
    color: #3b82f6;
}


/* =========================================================
   TOP RIGHT
========================================================= */

.top-right {
    display: flex;
    align-items: center;

    gap: 9px;
}

.top-right a {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #151515;
    color: #ffffff;

    text-decoration: none;

    font-size: 12px;

    transition:
        transform .3s ease,
        background .3s ease;
}

.top-right a:hover {
    background: #2563eb;
    transform: translateY(-3px);
}


/* =========================================================
   MAIN HEADER
========================================================= */

.main-header {
    position: fixed;

    top: 42px;
    left: 0;

    width: 100%;
    height: 88px;

    padding: 0 6%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(255, 255, 255, .97);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    border-bottom: 1px solid #e5e7eb;

    box-shadow:
        0 8px 30px rgba(15, 23, 42, .08);

    z-index: 8000;

    transition:
        height .3s ease,
        box-shadow .3s ease;
}


/* =========================================================
   SCROLLED HEADER
========================================================= */

.main-header.scrolled {
    height: 76px;

    box-shadow:
        0 12px 35px rgba(15, 23, 42, .13);
}


/* =========================================================
   LOGO SECTION
========================================================= */

.logo-section {
    display: flex;
    align-items: center;

    gap: 12px;

    text-decoration: none;

    flex-shrink: 0;
}

.logo-section img {
    width: 70px;
    height: 70px;

    object-fit: contain;

    transition:
        transform .3s ease;
}

.logo-section:hover img {
    transform: scale(1.05);
}


/* =========================================================
   LOGO TEXT
========================================================= */

.logo-text h3 {
    margin: 0;

    font-family: 'Montserrat', sans-serif;

    color: #111827;

    font-size: 24px;
    font-weight: 800;

    line-height: 1.1;

    letter-spacing: .2px;
}

.logo-text p {
    margin: 5px 0 0;

    color: #64748b;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: .5px;
}


/* =========================================================
   NAVBAR DESKTOP
========================================================= */

.navbar {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 25px;
}


/* =========================================================
   NAV LINKS
========================================================= */

.navbar > a:not(.header-btn) {
    position: relative;

    height: 100%;

    display: flex;
    align-items: center;

    color: #1f2937;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    white-space: nowrap;

    transition:
        color .3s ease;
}

.navbar > a:not(.header-btn):hover {
    color: #2563eb;
}


/* =========================================================
   NAV UNDERLINE
========================================================= */

.navbar > a:not(.header-btn)::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 18px;

    width: 0;
    height: 2px;

    border-radius: 10px;

    background: #2563eb;

    transform: translateX(-50%);

    transition:
        width .3s ease;
}

.navbar > a:not(.header-btn):hover::after {
    width: 100%;
}


/* =========================================================
   SERVICES DROPDOWN
========================================================= */

.dropdown {
    position: relative;

    height: 100%;

    display: flex;
    align-items: center;
}


/* =========================================================
   SERVICES BUTTON
========================================================= */

.service-btn {
    position: relative;

    height: 100%;

    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    border: none;
    outline: none;

    background: transparent;

    color: #1f2937;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;
}

.service-btn:hover {
    color: #2563eb;
}

.service-btn i {
    font-size: 11px;

    transition:
        transform .3s ease;
}

.dropdown:hover .service-btn i {
    transform: rotate(180deg);
}


/* =========================================================
   SERVICES UNDERLINE
========================================================= */

.service-btn::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 18px;

    width: 0;
    height: 2px;

    background: #2563eb;

    border-radius: 10px;

    transform: translateX(-50%);

    transition:
        width .3s ease;
}

.service-btn:hover::after {
    width: 100%;
}


/* =========================================================
   DESKTOP MEGA MENU
========================================================= */
/* 
.mega-menu {
    position: absolute;

    top: calc(100% + 8px);
    right: -25px;

    width: 960px;
    max-width: calc(100vw - 40px);

    padding: 24px;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 12px 15px;

    background: #ffffff;

    border: 1px solid #dbeafe;

    border-radius: 20px;

    box-shadow:
        0 25px 70px rgba(15, 23, 42, .18);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transform: translateY(12px);

    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s ease;

    z-index: 9500;
}
 */
/* =========================================================
   GK CONSULTANCY
   SERVICES MEGA MENU
   EXACT 5 COLUMN STYLE
========================================================= */

.mega-menu {

    position: absolute;

    top: calc(100% + 8px);

    right: -75px;

    width: 1050px;

    max-width: calc(100vw - 30px);

    padding: 24px 0 25px;

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    column-gap: 18px;

    row-gap: 22px;

    background: #ffffff;

    border: none;

    border-radius: 4px;

    box-shadow:
        0 20px 55px rgba(15,23,42,.15);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transform: translateY(10px);

    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s ease;

    z-index: 9500;
}


/* =========================================================
   DESKTOP OPEN
========================================================= */

@media (min-width: 992px) {

    .dropdown:hover .mega-menu {

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform: translateY(0);
    }

}


/* =========================================================
   MEGA MENU ARROW
========================================================= */

.mega-menu::before {

    content: "";

    position: absolute;

    top: -7px;

    right: 92px;

    width: 14px;

    height: 14px;

    background: #ffffff;

    transform: rotate(45deg);
}


/* =========================================================
   MEGA ITEM
========================================================= */

.mega-item {

    min-width: 0;

    display: flex;

    align-items: flex-start;

    gap: 10px;

    padding: 0;

    margin: 0;

    background: transparent;

    border: none;

    border-radius: 0;

    text-decoration: none;

    transition:
        transform .25s ease;
}


.mega-item:hover {

    background: transparent;

    box-shadow: none;

    transform: translateX(2px);
}


/* =========================================================
   ICON
========================================================= */

.mega-icon {

    width: 36px;

    height: 36px;

    min-width: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-top: 0;

    border-radius: 50%;

    background: #f6edd6;

    color: #e7c35d;

    font-size: 14px;

    flex-shrink: 0;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}


.mega-item:hover .mega-icon {

    background: #e7c35d;

    color: #ffffff;

    transform: scale(1.06);
}


/* =========================================================
   CONTENT
========================================================= */

.mega-content {

    min-width: 0;

    flex: 1;

    padding-top: 1px;
}


/* =========================================================
   TITLE
========================================================= */

.mega-content h4 {

    margin: 0;

    padding: 0;

    color: #3d2b1f;

    font-family: 'Poppins', sans-serif;

    font-size: 13px;

    font-weight: 400;

    line-height: 1.8;

    white-space: normal;

    transition:
        color .25s ease;
}


.mega-item:hover .mega-content h4 {

    color: #c69d35;
}


/* =========================================================
   REMOVE OLD DESCRIPTION
========================================================= */

.mega-content p {

    display: none !important;
}


/* =========================================================
   REMOVE OLD BLUE SIDE LINE
========================================================= */

.mega-item::before {

    display: none !important;
}


/* =========================================================
   REMOVE OLD FOOTER
========================================================= */

.mega-footer {

    display: none !important;
}
/* =========================================================
   HOVER BRIDGE
========================================================= */

.dropdown::after {
    content: "";

    position: absolute;

    left: -30px;
    right: -30px;

    bottom: -10px;

    height: 18px;

    background: transparent;
}


/* =========================================================
   DESKTOP OPEN
========================================================= */

@media (min-width: 992px) {

    .dropdown:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform: translateY(0);
    }
}


/* =========================================================
   MEGA MENU ARROW
========================================================= */

.mega-menu::before {
    content: "";

    position: absolute;

    top: -8px;
    right: 85px;

    width: 15px;
    height: 15px;

    background: #ffffff;

    border-left: 1px solid #dbeafe;
    border-top: 1px solid #dbeafe;

    transform: rotate(45deg);
}


/* =========================================================
   MEGA ITEM
========================================================= */

.mega-item {
    position: relative;

    min-width: 0;

    display: flex;
    align-items: flex-start;

    gap: 12px;

    padding: 13px;

    background: #ffffff;

    border-radius: 13px;

    text-decoration: none;

    overflow: hidden;

    transition:
        background .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}

.mega-item:hover {
    background: #f3f7ff;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(37, 99, 235, .08);
}


/* =========================================================
   BLUE SIDE LINE
========================================================= */

.mega-item::before {
    content: "";

    position: absolute;

    left: 0;
    top: 10px;

    width: 3px;
    height: 0;

    border-radius: 0 10px 10px 0;

    background: #2563eb;

    transition:
        height .3s ease;
}

.mega-item:hover::before {
    height: calc(100% - 20px);
}


/* =========================================================
   MEGA ICON
========================================================= */

.mega-icon {
    width: 40px;
    height: 40px;

    min-width: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: #eff6ff;
    color: #2563eb;

    font-size: 17px;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.mega-item:hover .mega-icon {
    background: #2563eb;
    color: #ffffff;

    transform: scale(1.05);
}


/* =========================================================
   MEGA CONTENT
========================================================= */

.mega-content {
    min-width: 0;
    flex: 1;
}

.mega-content h4 {
    margin: 0 0 4px;

    color: #173a7c;

    font-family: 'Montserrat', sans-serif;

    font-size: 13px;
    font-weight: 700;

    line-height: 1.35;
}

.mega-content p {
    margin: 0;

    color: #64748b;

    font-size: 10.5px;

    line-height: 1.45;
}

.mega-item:hover .mega-content h4 {
    color: #2563eb;
}


/* =========================================================
   MEGA FOOTER
========================================================= */

.mega-footer {
    grid-column: 1 / -1;

    margin-top: 5px;

    padding-top: 15px;

    text-align: center;

    border-top: 1px solid #e5e7eb;
}

.mega-footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 9px 20px;

    border-radius: 25px;

    background: #2563eb;
    color: #ffffff;

    text-decoration: none;

    font-size: 12px;
    font-weight: 600;

    transition:
        background .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}

.mega-footer a:hover {
    background: #1d4ed8;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(37, 99, 235, .25);
}


/* =========================================================
   HEADER CTA
========================================================= */

.header-btn {
    display: inline-flex !important;

    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 11px 19px;

    border-radius: 30px;

    background: #2563eb;
    color: #ffffff !important;

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    white-space: nowrap;

    box-shadow:
        0 8px 20px rgba(37, 99, 235, .18);

    transition:
        background .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}

.header-btn:hover {
    background: #1d4ed8;

    color: #ffffff !important;

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(37, 99, 235, .28);
}

.header-btn::after {
    display: none !important;
}


/* =========================================================
   MOBILE HAMBURGER
========================================================= */

.mobile-menu {
    display: none;

    width: 46px;
    height: 46px;

    border: none;
    outline: none;

    border-radius: 12px;

    background: #2563eb;
    color: #ffffff;

    cursor: pointer;

    align-items: center;
    justify-content: center;

    font-size: 25px;

    flex-shrink: 0;

    box-shadow:
        0 8px 22px rgba(37, 99, 235, .25);

    transition:
        background .3s ease,
        transform .3s ease;
}

.mobile-menu:hover {
    background: #1d4ed8;

    transform: translateY(-2px);
}


/* =========================================================
   MOBILE CLOSE BUTTON
   IMPORTANT:
   Hidden on desktop.
   Visible ONLY inside mobile sidebar.
========================================================= */

.mobile-close {
    display: none;

    position: absolute;

    top: 20px;
    right: 20px;

    width: 42px;
    height: 42px;

    border: none;
    outline: none;

    border-radius: 11px;

    background: #eff6ff;
    color: #2563eb;

    align-items: center;
    justify-content: center;

    font-size: 18px;

    cursor: pointer;

    z-index: 20;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.mobile-close:hover {
    background: #2563eb;
    color: #ffffff;

    transform: rotate(90deg);
}


/* =========================================================
   MOBILE OVERLAY
========================================================= */

.mobile-overlay {
    position: fixed;

    inset: 0;

    background: rgba(15, 23, 42, .48);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    z-index: 6500;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}

.mobile-overlay.show {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1200px) {

    .main-header {
        padding: 0 4%;
    }

    .top-bar {
        padding: 0 4%;
    }

    .navbar {
        gap: 17px;
    }

    .navbar > a:not(.header-btn),
    .service-btn {
        font-size: 13px;
    }

    .header-btn {
        padding: 10px 15px;
        font-size: 12px;
    }
}

/* =========================================================
   HIDE HAMBURGER WHEN SIDEBAR IS OPEN
========================================================= */

@media (max-width: 991px) {

    .mobile-menu.menu-active {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: scale(.8);
    }

}
/* =========================================================
   MOBILE / TABLET
========================================================= */

@media (max-width: 991px) {


    /* =====================================================
       TOP BAR
    ====================================================== */

    .top-bar {
        height: 40px;

        padding: 0 18px;
    }

    .top-left {
        gap: 14px;
    }

    .top-left > span {
        font-size: 10px;
    }

    .top-right {
        display: none;
    }


    /* =====================================================
       MAIN HEADER
    ====================================================== */

    .main-header {
        top: 40px;

        height: 76px;

        padding: 0 18px;

        z-index: 8000;
    }


    /* =====================================================
       LOGO
    ====================================================== */

    .logo-section img {
        width: 62px;
        height: 62px;
    }

    .logo-text h3 {
        font-size: 20px;
    }

    .logo-text p {
        display: none;
    }


    /* =====================================================
       HAMBURGER
    ====================================================== */

    .mobile-menu {
        display: flex;

        position: relative;

        z-index: 8100;
    }


    /* =====================================================
       MOBILE SIDEBAR
    ====================================================== */

    .navbar {
        position: fixed;

        top: 0;
        left: -100%;

        width: 360px;
        max-width: 88vw;

        height: 100vh;

        padding:
            85px
            25px
            35px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        justify-content: flex-start;

        gap: 0;

        overflow-y: auto;
        overflow-x: hidden;

        background: #ffffff;

        box-shadow:
            15px 0 45px rgba(15, 23, 42, .20);

        z-index: 7000;

        transition:
            left .4s cubic-bezier(.4, 0, .2, 1);
    }


    /* =====================================================
       SIDEBAR OPEN
    ====================================================== */

    .navbar.show {
        left: 0;
    }


    /* =====================================================
       CLOSE BUTTON
       ONLY HERE
    ====================================================== */

    .navbar .mobile-close {
        display: flex;
    }


    /* =====================================================
       NORMAL LINKS
    ====================================================== */

    .navbar > a:not(.header-btn) {
        width: 100%;

        min-height: 52px;

        height: auto;

        padding: 15px 5px;

        display: flex;
        align-items: center;

        border-bottom: 1px solid #e5e7eb;

        color: #1f2937;

        text-decoration: none;

        font-size: 15px;
    }

    .navbar > a:not(.header-btn)::after {
        display: none;
    }


    /* =====================================================
       SERVICES
    ====================================================== */

    .dropdown {
        width: 100%;

        height: auto;

        display: block;

        border-bottom: 1px solid #e5e7eb;
    }

    .dropdown::after {
        display: none;
    }


    /* =====================================================
       SERVICE BUTTON
    ====================================================== */

    .service-btn {
        width: 100%;

        height: 52px;

        padding: 0 5px;

        display: flex;

        align-items: center;
        justify-content: space-between;

        background: transparent !important;

        border: none;
        outline: none;

        box-shadow: none;

        color: #1f2937;

        font-size: 15px;

        cursor: pointer;
    }

    .service-btn:hover {
        color: #2563eb;
    }

    .service-btn:focus,
    .service-btn:active,
    .service-btn:focus-visible {
        outline: none !important;

        background: transparent !important;

        box-shadow: none !important;
    }


    /* =====================================================
       SERVICE ACTIVE
    ====================================================== */

    .dropdown.active .service-btn {
        color: #2563eb;
    }


    /* =====================================================
       SERVICE ARROW
    ====================================================== */

    .service-btn i {
        color: #2563eb;

        font-size: 12px;

        transition:
            transform .3s ease;
    }

    .dropdown.active .service-btn i {
        transform: rotate(180deg);
    }


    /* =====================================================
       MOBILE MEGA MENU
    ====================================================== */

    .mega-menu {
        position: static !important;

        width: 100% !important;
        max-width: none !important;

        margin: 7px 0 10px !important;

        padding: 8px !important;

        display: none !important;

        grid-template-columns: 1fr !important;

        gap: 5px !important;

        background: #f8fafc !important;

        border: 1px solid #dbeafe !important;

        border-radius: 13px !important;

        box-shadow: none !important;

        opacity: 1 !important;
        visibility: visible !important;

        pointer-events: auto !important;

        transform: none !important;
    }


    /* =====================================================
       DISABLE DESKTOP HOVER
    ====================================================== */

    .dropdown:hover .mega-menu {
        display: none !important;
    }


    /* =====================================================
       OPEN MOBILE SERVICES
    ====================================================== */

    .dropdown.active .mega-menu {
        display: grid !important;

        animation:
            mobileServicesOpen .25s ease;
    }


    @keyframes mobileServicesOpen {

        from {
            opacity: 0;
            transform: translateY(-7px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }


    /* =====================================================
       REMOVE MEGA ARROW
    ====================================================== */

    .mega-menu::before {
        display: none;
    }


    /* =====================================================
       MOBILE SERVICE ITEM
    ====================================================== */

    .mega-item {
        width: 100%;

        min-height: 60px;

        display: flex;

        align-items: center;

        gap: 10px;

        padding: 10px !important;

        background: #ffffff !important;

        border: 1px solid transparent;

        border-radius: 10px;

        transform: none !important;

        box-shadow: none !important;
    }

    .mega-item:hover {
        background: #eff6ff !important;

        border-color: #dbeafe;
    }

    .mega-item::before {
        display: none;
    }


    /* =====================================================
       SERVICE ICON
    ====================================================== */

    .mega-icon {
        width: 38px !important;
        height: 38px !important;

        min-width: 38px !important;

        border-radius: 10px;

        background: #eff6ff !important;

        color: #2563eb !important;

        font-size: 15px;

        flex-shrink: 0;
    }


    /* =====================================================
       SERVICE CONTENT
    ====================================================== */

    .mega-content {
        min-width: 0;

        flex: 1;
    }

    .mega-content h4 {
        margin: 0 0 3px;

        color: #173a7c;

        font-size: 12px;

        line-height: 1.3;
    }

    .mega-content p {
        margin: 0;

        color: #64748b;

        font-size: 9.5px;

        line-height: 1.4;
    }


    /* =====================================================
       MEGA FOOTER
    ====================================================== */

    .mega-footer {
        grid-column: 1;

        margin-top: 5px;

        padding-top: 10px;
    }

    .mega-footer a {
        font-size: 11px;

        padding: 8px 17px;
    }


    /* =====================================================
       CTA
    ====================================================== */

    .header-btn {
        display: flex !important;

        width: 100%;

        min-height: 46px;

        margin-top: 20px;

        padding: 12px;

        justify-content: center;

        font-size: 13px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 576px) {

    .top-bar {
        height: 48px;

        padding: 4px 12px;
    }

    .top-left {
        width: 100%;

        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        gap: 2px;
    }

    .top-left > span {
        font-size: 9px;

        line-height: 1;
    }

    .top-left > span:nth-child(2) {
        display: none;
    }


    /* =====================================================
       HEADER
    ====================================================== */

    .main-header {
        top: 48px;

        height: 70px;

        padding: 0 13px;
    }


    /* =====================================================
       LOGO
    ====================================================== */

    .logo-section {
        gap: 8px;
    }

    .logo-section img {
        width: 54px;
        height: 54px;
    }

    .logo-text h3 {
        font-size: 18px;
    }


    /* =====================================================
       HAMBURGER
    ====================================================== */

    .mobile-menu {
        width: 43px;
        height: 43px;

        border-radius: 10px;

        font-size: 23px;
    }


    /* =====================================================
       SIDEBAR
    ====================================================== */

    .navbar {
        width: 100%;
        max-width: 100%;

        padding:
            80px
            18px
            30px;
    }


    /* =====================================================
       CLOSE
    ====================================================== */

    .navbar .mobile-close {
        top: 18px;
        right: 17px;

        width: 38px;
        height: 38px;

        display: flex;
    }


    /* =====================================================
       SERVICE ITEM
    ====================================================== */

    .mega-item {
        min-height: 56px;

        padding: 9px 8px !important;
    }


    /* =====================================================
       SERVICE ICON
    ====================================================== */

    .mega-icon {
        width: 34px !important;
        height: 34px !important;

        min-width: 34px !important;

        font-size: 14px;
    }


    /* =====================================================
       TEXT
    ====================================================== */

    .mega-content h4 {
        font-size: 11.5px;
    }

    .mega-content p {
        font-size: 9px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .logo-section img {
        width: 50px;
        height: 50px;
    }

    .logo-text h3 {
        font-size: 16px;
    }

    .mobile-menu {
        width: 41px;
        height: 41px;
    }

    .navbar {
        padding-left: 15px;
        padding-right: 15px;
    }

    .mega-content h4 {
        font-size: 11px;
    }
}


/* =========================================================
   NAVBAR SCROLLBAR
========================================================= */

.navbar::-webkit-scrollbar {
    width: 5px;
}

.navbar::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.navbar::-webkit-scrollbar-thumb {
    background: #2563eb;
    border-radius: 10px;
}

.navbar {
    scrollbar-width: thin;
    scrollbar-color: #2563eb #f1f5f9;
}