
:root {
   
    --theme-primary: #17145B;
    --theme-primary-dark: #0E0B43;
    --theme-blue: #00A8CC;
    --theme-blue-dark: #0087A6;
    --theme-blue-light: #19C1D8;
    --theme-background: #F7FCFE;
    --theme-background-light: #FFFFFF;
    --theme-background-soft: #EAF8FC;
    --theme-aqua-soft: #DDF5FA;
    --theme-text-dark: #17145B;
    --theme-text: #39445C;
    --theme-text-muted: #718096;
    --theme-text-white: #FFFFFF;
    --theme-white: #FFFFFF;
    --theme-dark-background: #0E0B43;
    --theme-dark-blue: #12104D;
    --theme-border: #D8EAF0;
    --theme-border-light: #E6F3F7;
    --theme-border-dashed: #C9E5EC;
    --theme-icon-muted: #8FB8C4;
    --theme-white-soft: rgba(255, 255, 255, 0.09);
    --theme-white-border: rgba(255, 255, 255, 0.20);
    --theme-white-border-soft: rgba(255, 255, 255, 0.33);
    --theme-white-text-muted: rgba(255, 255, 255, 0.68);
    --theme-shadow: rgba(23, 20, 91, 0.14);
    --theme-blue-glow: rgba(0, 168, 204, 0.25);
    --font-heading: "Sora", sans-serif;
    --font-body: "DM Sans", sans-serif;
    
}
/* =========================================================
   HEADER
========================================================= */

.navwrap {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid var(--theme-border);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.navwrap .navbar {
    min-height: 82px;
    padding: 0 !important;
}


/* =========================================================
   LOGO
========================================================= */

.navwrap .brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navwrap .brand > img {
    width: auto;
    height: 78px;
    display: block;
    object-fit: contain;
}


/* =========================================================
   MAIN NAVIGATION
========================================================= */

.navwrap .navbar-nav {
    gap: 2px;
    margin: 0;
    padding: 0;
}

.navwrap .navbar-nav > li {
    position: relative;
    list-style: none;
}

.navwrap .navbar-nav > li > a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 35px 21px !important;
    color: var(--theme-text-dark) !important;
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
    text-decoration: none !important;
    transition: color .3s ease;
}

.navwrap .navbar-nav > li > a > i {
    font-size: 8px;
    transition: transform .3s ease;
}

.navwrap .navbar-nav > li > a:hover{
    color: var(--theme-blue-dark) !important;
}


/* =========================================================
   NAV ACTIVE LINE
========================================================= */

.navwrap .navbar-nav > li > a::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 19px;
    height: 2px;
    border-radius: 20px;
    background: var(--theme-blue);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .3s ease;
}



/* =========================================================
   DROPDOWN ARROWS
========================================================= */

.navwrap .navbar-nav > li.about:hover > a > i,
.navwrap .navbar-nav > li.services:hover > a > i,
.navwrap .navbar-nav > li.products:hover > a > i {
    transform: rotate(180deg);
}


/* =========================================================
   ABOUT / SERVICES DROPDOWN
========================================================= */

.navwrap .navbar-nav > li.about,
.navwrap .navbar-nav > li.services {
    position: relative;
}

.navwrap .navbar-nav > li.about > ul.dropdown,
.navwrap .navbar-nav > li.services > ul.dropdown {
    position: absolute;
    top: calc(100% - 1px);
    left: 100%;
    width: 250px;
    margin: 0;
    padding: 9px;
    list-style: none;
    background: rgba(255, 255, 255, .99);
    border: 1px solid var(--theme-border);
    border-radius: 0 0 16px 16px;
    box-shadow: 0 22px 55px rgba(23, 20, 91, .14);
    transform: translate(-50%, 12px);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s ease;
}

.navwrap .navbar-nav > li.about:hover > ul.dropdown,
.navwrap .navbar-nav > li.services:hover > ul.dropdown {
    transform: translate(-50%, 0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}


/* =========================================================
   DROPDOWN ACCENT
========================================================= */

.navwrap .navbar-nav > li.about > ul.dropdown::before,
.navwrap .navbar-nav > li.services > ul.dropdown::before {
    content: "";
    position: absolute;
    top: 0;
    left: 22px;
    width: 48px;
    height: 3px;
    border-radius: 0 0 5px 5px;
    background: var(--theme-blue);
}


/* =========================================================
   DROPDOWN ITEMS
========================================================= */

.navwrap .navbar-nav > li.about > ul.dropdown > li,
.navwrap .navbar-nav > li.services > ul.dropdown > li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.navwrap .navbar-nav > li.about > ul.dropdown > li > a,
.navwrap .navbar-nav > li.services > ul.dropdown > li > a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
    padding: 13px 16px;
    border-radius: 9px;
    color: var(--theme-text-dark) !important;
    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;
    text-decoration: none !important;
    transition:
        background .25s ease,
        color .25s ease,
        padding-left .25s ease;
}

.navwrap .navbar-nav > li.about > ul.dropdown > li > a::before,
.navwrap .navbar-nav > li.services > ul.dropdown > li > a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 0;
    border-radius: 5px;
    background: var(--theme-blue);
    transform: translateY(-50%);
    transition: height .25s ease;
}

.navwrap .navbar-nav > li.about > ul.dropdown > li > a > i,
.navwrap .navbar-nav > li.services > ul.dropdown > li > a > i {
    color: var(--theme-icon-muted);
    font-size: 9px;
    transition: color .25s ease, transform .25s ease;
}

.navwrap .navbar-nav > li.about > ul.dropdown > li > a:hover,
.navwrap .navbar-nav > li.services > ul.dropdown > li > a:hover {
    padding-left: 21px;
    color: var(--theme-blue) !important;
    background: var(--theme-background-soft);
}

.navwrap .navbar-nav > li.about > ul.dropdown > li > a:hover::before,
.navwrap .navbar-nav > li.services > ul.dropdown > li > a:hover::before {
    height: 24px;
}

.navwrap .navbar-nav > li.about > ul.dropdown > li > a:hover > i,
.navwrap .navbar-nav > li.services > ul.dropdown > li > a:hover > i {
    color: var(--theme-blue);
    transform: translateX(4px);
}


/* =========================================================
   PRODUCTS PARENT
========================================================= */

.navwrap .navbar-nav > li.products {
    position: static !important;
}


/* =========================================================
   PREMIUM PRODUCTS MEGA MENU
========================================================= */

.navwrap .navbar-nav > li.products > .mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0;
    padding: 0;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, .99),
            rgba(248, 251, 255, .99)
        );

    border-top: 1px solid rgba(23, 20, 91, .08);
    border-bottom: 1px solid rgba(23, 20, 91, .08);
    border-radius: 0 0 22px 22px;

    box-shadow:
        0 30px 80px rgba(23, 20, 91, .16),
        0 8px 25px rgba(23, 20, 91, .06);

    overflow: hidden;

    visibility: hidden;
    opacity: 0;
    pointer-events: none;

    transform: translateY(15px);

    transition:
        opacity .3s ease,
        transform .3s ease,
        visibility .3s ease;
}


/* =========================================================
   MEGA MENU SHOW
========================================================= */

.navwrap .navbar-nav > li.products:hover > .mega-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}


/* =========================================================
   MEGA INNER
========================================================= */

.navwrap .navbar-nav > li.products > .mega-menu > .mega-inner {
    max-width: 1200px;
    margin: auto;
    padding: 10px 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}


/* =========================================================
   MEGA COLUMNS
========================================================= */

.navwrap .navbar-nav > li.products .mega-inner > ul.menu-list {
    position: relative;
    margin: 0;
    padding: 0 24px;
    list-style: none;
}

.navwrap .navbar-nav > li.products .mega-inner > ul.menu-list:first-child {
    padding-left: 0;
}

.navwrap .navbar-nav > li.products .mega-inner > ul.menu-list:last-child {
    padding-right: 0;
}

.navwrap .navbar-nav > li.products .mega-inner > ul.menu-list:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--theme-border),
        transparent
    );
}


/* =========================================================
   MEGA LIST ITEMS
========================================================= */

.navwrap .navbar-nav > li.products .mega-inner > ul.menu-list > li {
    margin: 0;
    padding: 0;
    list-style: none;
}


/* =========================================================
   MEGA PRODUCT LINKS
========================================================= */

.navwrap .navbar-nav > li.products .mega-inner > ul.menu-list > li > a {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;

    padding: 13px 13px 13px 14px;
    margin-bottom: 3px;

    border: 1px solid transparent;
    border-radius: 10px;

    color: var(--theme-text-dark) !important;

    font-family: var(--font-body);
    font-size: 11px;
    line-height: 1.4;
    font-weight: 600;

    text-decoration: none !important;

    transition:
        color .25s ease,
        background .25s ease,
        border-color .25s ease,
        transform .25s ease,
        padding-left .25s ease;
}


/* =========================================================
   PRODUCT HOVER LIGHT
========================================================= */

.navwrap .navbar-nav > li.products .mega-inner > ul.menu-list > li > a:hover {
    color: var(--theme-blue) !important;
    background: rgba(41, 153, 213, .055);
    border-color: rgba(41, 153, 213, .12);
    padding-left: 19px;
    transform: translateX(3px);
}


/* =========================================================
   PRODUCT LEFT ACCENT
========================================================= */

.navwrap .navbar-nav > li.products .mega-inner > ul.menu-list > li > a::before {
    content: "";

    position: absolute;
    left: 0;
    top: 50%;

    width: 3px;
    height: 0;

    border-radius: 10px;

    background: var(--theme-blue);

    transform: translateY(-50%);

    transition: height .25s ease;
}

.navwrap .navbar-nav > li.products .mega-inner > ul.menu-list > li > a:hover::before {
    height: 24px;
}


/* =========================================================
   PRODUCT ARROW
========================================================= */

.navwrap .navbar-nav > li.products .mega-inner > ul.menu-list > li > a > i {
    flex-shrink: 0;

    width: 24px;
    height: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--theme-border);
    border-radius: 50%;

    color: var(--theme-icon-muted);
    font-size: 8px;

    transition:
        color .25s ease,
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.navwrap .navbar-nav > li.products .mega-inner > ul.menu-list > li > a:hover > i {
    color: var(--theme-white);
    background: var(--theme-blue);
    border-color: var(--theme-blue);
    transform: translateX(3px);
}


/* =========================================================
   PREMIUM MEGA FOOT
========================================================= */

.navwrap .navbar-nav > li.products > .mega-menu > .mega-foot {
    position: relative;

    padding: 18px 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    background:
        linear-gradient(
            100deg,
            var(--theme-dark-background),
            rgba(23, 20, 91, .97)
        );

    border-top: 1px solid rgba(255, 255, 255, .08);
}


/* =========================================================
   FOOT DECORATION
========================================================= */

.navwrap .navbar-nav > li.products > .mega-menu > .mega-foot::before {
    content: "";

    position: absolute;
    left: 0;
    top: 0;

    width: 120px;
    height: 2px;

    background: var(--theme-blue);
}

.navwrap .navbar-nav > li.products > .mega-menu > .mega-foot::after {
    content: "";

    position: absolute;
    right: 0;
    bottom: 0;

    width: 180px;
    height: 1px;

    background: rgba(255, 255, 255, .12);
}


/* =========================================================
   MEGA INFO
========================================================= */

.navwrap .navbar-nav > li.products .mega-foot > .mega-info {
    display: flex;
    align-items: center;
    gap: 14px;
}


/* =========================================================
   MEGA ICON
========================================================= */

.navwrap .navbar-nav > li.products .mega-foot .mega-icon {
    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 12px;

    background: rgba(255, 255, 255, .05);

    color: var(--theme-blue-light);
    font-size: 14px;

    box-shadow:
        inset 0 0 20px rgba(255, 255, 255, .025);
}


/* =========================================================
   MEGA TITLE
========================================================= */

.navwrap .navbar-nav > li.products .mega-foot .mega-info strong {
    display: block;

    margin-bottom: 4px;

    color: var(--theme-white);

    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.3;
    font-weight: 700;
}


/* =========================================================
   MEGA DESCRIPTION
========================================================= */

.navwrap .navbar-nav > li.products .mega-foot .mega-info small {
    display: block;

    color: var(--theme-white-text-muted);

    font-family: var(--font-body);
    font-size: 9px;
    line-height: 1.5;
}


/* =========================================================
   MEGA ACTIONS
========================================================= */

.navwrap .navbar-nav > li.products .mega-foot > .mega-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}


/* =========================================================
   ACTION BUTTON
========================================================= */

.navwrap .navbar-nav > li.products .mega-foot > .mega-actions > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 11px 17px;

    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50px;

    color: var(--theme-white) !important;

    font-family: var(--font-body);
    font-size: 9px;
    line-height: 1;
    font-weight: 700;

    text-decoration: none !important;

    background: rgba(255, 255, 255, .04);

    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}


/* =========================================================
   ACTION ICON
========================================================= */

.navwrap .navbar-nav > li.products .mega-foot > .mega-actions > a > i {
    font-size: 9px;
    transition: transform .25s ease;
}


/* =========================================================
   ACTION HOVER
========================================================= */

.navwrap .navbar-nav > li.products .mega-foot > .mega-actions > a:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .3);
    transform: translateY(-2px);
}

.navwrap .navbar-nav > li.products .mega-foot > .mega-actions > a:hover > i {
    transform: translateX(3px);
}


/* =========================================================
   ENQUIRY BUTTON
========================================================= */

.navwrap .navbar-nav > li.products .mega-foot > .mega-actions > a.enquiry {
    background: var(--theme-blue);
    border-color: var(--theme-blue);

    box-shadow:
        0 8px 20px rgba(41, 153, 213, .22);
}

.navwrap .navbar-nav > li.products .mega-foot > .mega-actions > a.enquiry:hover {
    background: var(--theme-blue-dark);
    border-color: var(--theme-blue-dark);

    box-shadow:
        0 10px 25px rgba(41, 153, 213, .3);
}


/* =========================================================
   MOBILE BUTTON
========================================================= */

.navwrap .mobile-menu-btn {
    border: 0;
    padding: 8px;
    box-shadow: none !important;
   
}

.navwrap .mobile-menu-btn > span{
 font-size: 30px;
}

/* =========================================================
   MOBILE OFFCANVAS
========================================================= */

.mobile-offcanvas {
    --sidebar-transition: .3s ease;

    width: min(400px, 92vw) !important;
    max-width: 400px !important;
    height: 100vh !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-left: 1px solid var(--theme-border) !important;

    background: var(--theme-background) !important;

    box-shadow:
        -20px 0 55px rgba(23, 20, 91, .16) !important;

    overflow: hidden !important;
}


/* =========================================================
   HEADER
========================================================= */

.mobile-offcanvas .offcanvas-header {
    position: relative;

    min-height: 78px !important;
    padding: 12px 18px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    background:
        linear-gradient(
            135deg,
            var(--theme-white),
            var(--theme-background-soft)
        ) !important;

    border-bottom: 1px solid var(--theme-border) !important;
}

.mobile-offcanvas .offcanvas-header::before {
    content: "";

    position: absolute;
    top: 0;
    left: 18px;

    width: 65px;
    height: 2px;

    background: var(--theme-blue);
}


/* =========================================================
   LOGO
========================================================= */

.mobile-offcanvas .mobile-offcanvas-brand {
    display: flex;
    align-items: center;

    text-decoration: none !important;
}

.mobile-offcanvas .mobile-brand-logo {
    display: flex;
    align-items: center;
}

.mobile-offcanvas .mobile-brand-logo img {
    width: auto;
    height: 65px;

    display: block;

    object-fit: contain;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.mobile-offcanvas .mobile-close-btn {
    width: 36px !important;
    height: 36px !important;

    flex: 0 0 36px;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 1px solid var(--theme-border) !important;
    border-radius: 50% !important;

    background: var(--theme-white) !important;
    color: var(--theme-text-dark) !important;

    font-size: 11px;

    opacity: 1 !important;

    transition:
        background .3s ease,
        border-color .3s ease,
        color .3s ease,
        transform .3s ease;
}

.mobile-offcanvas .mobile-close-btn:hover {
    background: var(--theme-blue) !important;
    border-color: var(--theme-blue) !important;
    color: var(--theme-white) !important;

    transform: rotate(90deg);
}


/* =========================================================
   BODY
========================================================= */

.mobile-offcanvas .offcanvas-body {
    min-height: 0;

    padding: 14px 18px 18px !important;

    overflow-x: hidden !important;
    overflow-y: auto !important;

    background:
        linear-gradient(
            180deg,
            var(--theme-background),
            var(--theme-background-light)
        );

    scrollbar-width: thin;
    scrollbar-color: var(--theme-blue) transparent;
}

.mobile-offcanvas .offcanvas-body::-webkit-scrollbar {
    width: 3px;
}

.mobile-offcanvas .offcanvas-body::-webkit-scrollbar-track {
    background: transparent;
}

.mobile-offcanvas .offcanvas-body::-webkit-scrollbar-thumb {
    background: var(--theme-blue);
    border-radius: 20px;
}


/* =========================================================
   INTRO
========================================================= */

.mobile-menu-intro {
    position: relative;

    min-height: 48px;

    display: flex;
    align-items: center;
    gap: 11px;

    margin: 0 0 11px;
    padding: 8px 12px;

    border: 1px solid var(--theme-border);
    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            var(--theme-white),
            var(--theme-background-soft)
        );

    box-shadow:
        0 5px 16px rgba(23, 20, 91, .035);
}

.mobile-menu-intro::before {
    content: "";

    position: absolute;
    top: -1px;
    left: 15px;

    width: 38px;
    height: 2px;

    background: var(--theme-blue);
}

.mobile-menu-intro-icon {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--theme-border);
    border-radius: 50%;

    background: var(--theme-white);
    color: var(--theme-blue);

    font-size: 11px;
}

.mobile-menu-intro > div {
    display: flex;
    flex-direction: column;
}

.mobile-menu-intro small {
    display: block;

    margin-bottom: 3px;

    color: var(--theme-blue);

    font-family: var(--font-body);
    font-size: 6.5px;
    line-height: 1;
    font-weight: 800;

    letter-spacing: 1.3px;
}

.mobile-menu-intro strong {
    display: block;

    color: var(--theme-text-dark);

    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
}


/* =========================================================
   NAVIGATION
========================================================= */

.mobile-navigation {
    width: 100%;
    margin: 0;
    padding: 0;
}

.mobile-nav-item {
    position: relative;

    width: 100% !important;
    min-height: 51px;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    gap: 12px;

    margin: 0 !important;
    padding: 6px 2px !important;

    border: 0 !important;
    border-bottom: 1px solid var(--theme-border) !important;
    border-radius: 0 !important;

    background: transparent !important;
    color: var(--theme-text-dark) !important;

    font-family: var(--font-body);
    font-size: 11px;
    line-height: 1.2;
    font-weight: 700;

    text-align: left;
    text-decoration: none !important;

    box-shadow: none !important;
    outline: none !important;

    transition:
        color .3s ease,
        padding-left .3s ease,
        background .3s ease;
}

.mobile-navigation > .mobile-nav-item:first-child {
    border-top: 1px solid var(--theme-border) !important;
}

.mobile-nav-item:hover {
    padding-left: 5px !important;
    color: var(--theme-blue) !important;
}


/* =========================================================
   NAV LEFT
========================================================= */

.mobile-nav-left {
    display: flex !important;
    align-items: center !important;
    gap: 10px;
}


/* =========================================================
   NAV ICON
========================================================= */

.mobile-nav-icon {
    width: 33px;
    height: 33px;

    flex: 0 0 33px;

    display: flex !important;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--theme-border);
    border-radius: 9px;

    background: var(--theme-white);
    color: var(--theme-blue);

    font-size: 10px;

    box-shadow:
        0 3px 10px rgba(23, 20, 91, .035);

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.mobile-nav-item:hover .mobile-nav-icon {
    background: var(--theme-background-soft);
    border-color: var(--theme-blue);
    transform: scale(1.04);
}


/* =========================================================
   NAV TEXT
========================================================= */

.mobile-nav-text {
    display: block;
    color: inherit;
}


/* =========================================================
   NAV ARROW
========================================================= */

.mobile-nav-arrow {
    width: 25px;
    height: 25px;

    flex: 0 0 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--theme-icon-muted);

    font-size: 8px;

    transition:
        color .3s ease,
        transform .3s ease;
}

.mobile-nav-item:hover .mobile-nav-arrow {
    color: var(--theme-blue);
    transform: translateX(3px);
}


/* =========================================================
   SERVICES / PRODUCTS ACCORDION
========================================================= */

.mobile-services-accordion {
    width: 100%;
    border-bottom: 1px solid var(--theme-border);
}

.mobile-services-toggle::after {
    display: none !important;
}

.mobile-services-toggle {
    cursor: pointer;
}

.mobile-services-toggle[aria-expanded="true"] {
    color: var(--theme-blue) !important;

    background:
        linear-gradient(
            90deg,
            rgba(41, 153, 213, .055),
            transparent
        ) !important;
}


/* =========================================================
   ACCORDION CHEVRON
========================================================= */

.mobile-services-chevron {
    width: 25px;
    height: 25px;

    flex: 0 0 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--theme-blue);

    font-size: 8px;

    transition:
        transform .3s ease,
        color .3s ease;
}

.mobile-services-toggle[aria-expanded="true"] .mobile-services-chevron {
    transform: rotate(180deg);
}


/* =========================================================
   SERVICE PANEL
========================================================= */

.mobile-services-panel {
    margin: 0 0 7px 0px;
    padding: 4px 0 2px;

    border-left: 1px solid var(--theme-border);
}


/* =========================================================
   VIEW ALL BUTTON
========================================================= */

.mobile-all-services {
    min-height: 39px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    margin: 0 6px 5px;
    padding: 7px 9px;

    border: 1px solid var(--theme-border);
    border-radius: 9px;

    background: var(--theme-white);
    color: var(--theme-blue) !important;

    font-family: var(--font-body);
    font-size: 8.5px;
    line-height: 1.2;
    font-weight: 800;

    text-decoration: none !important;

    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.mobile-all-services:hover {
    background: var(--theme-background-soft);
    border-color: var(--theme-blue);
    transform: translateX(2px);
}

.mobile-all-services span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.mobile-all-services span i,
.mobile-all-services > i {
    color: var(--theme-blue);
    font-size: 8px;
}


/* =========================================================
   SERVICE CATEGORY
========================================================= */

.mobile-service-category {
    width: 100%;
    margin: 0;
    padding: 0;
}

.mobile-category-toggle {
    width: 100%;

    min-height: 49px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 8px;

    margin: 0;
    padding: 6px 7px !important;

    border: 0 !important;
    border-bottom: 1px dashed var(--theme-border) !important;

    border-radius: 0 !important;

    background: transparent !important;
    color: var(--theme-text-dark);

    font-family: var(--font-body);
    text-align: left;

    box-shadow: none !important;
    outline: none !important;

    cursor: pointer;
}

.mobile-category-toggle:hover,
.mobile-category-toggle[aria-expanded="true"] {
    color: var(--theme-blue);
}


/* =========================================================
   CATEGORY LEFT
========================================================= */

.mobile-category-left {
    display: flex;
    align-items: center;
    gap: 8px;
}


/* =========================================================
   CATEGORY ICON
========================================================= */

.mobile-category-icon {
    width: 29px;
    height: 29px;

    flex: 0 0 29px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--theme-border);
    border-radius: 8px;

    background: var(--theme-background-soft);
    color: var(--theme-blue);

    font-size: 8px;

    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.mobile-category-toggle:hover .mobile-category-icon,
.mobile-category-toggle[aria-expanded="true"] .mobile-category-icon {
    background: var(--theme-white);
    border-color: var(--theme-blue);
    transform: scale(1.03);
}


/* =========================================================
   CATEGORY CONTENT
========================================================= */

.mobile-category-content {
    display: flex;
    flex-direction: column;
}

.mobile-category-content strong {
    display: block;

    color: var(--theme-text-dark);

    font-family: var(--font-body);
    font-size: 9px;
    line-height: 1.2;
    font-weight: 800;
}

.mobile-category-toggle[aria-expanded="true"] .mobile-category-content strong {
    color: var(--theme-blue);
}

.mobile-category-content small {
    display: block;

    margin-top: 2px;

    color: var(--theme-text-muted);

    font-family: var(--font-body);
    font-size: 6.5px;
    line-height: 1.2;
}


/* =========================================================
   CATEGORY CHEVRON
========================================================= */

.mobile-category-chevron {
    width: 22px;
    height: 22px;

    flex: 0 0 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--theme-icon-muted);

    font-size: 7px;

    transition:
        transform .3s ease,
        color .3s ease;
}

.mobile-category-toggle[aria-expanded="true"] .mobile-category-chevron {
    color: var(--theme-blue);
    transform: rotate(180deg);
}


/* =========================================================
   SERVICE LINKS
========================================================= */

.mobile-service-links {
    padding: 2px 6px 5px 8px;
}

.mobile-service-link {
    position: relative;

    min-height: 34px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 8px;

    padding: 12px 7px 12px 13px;

    border-bottom: 1px dashed var(--theme-border);

    color: var(--theme-text-muted) !important;

    font-family: var(--font-body);
    font-size: 11px;
    line-height: 1.3;
    font-weight: 600;

    text-decoration: none !important;

    transition:
        color .25s ease,
        padding-left .25s ease;
}

.mobile-service-link:last-child {
    border-bottom: 0;
}

.mobile-service-link::before {
    content: "";

    position: absolute;
    left: 1px;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: var(--theme-blue);

    transition:
        transform .25s ease,
        background .25s ease;
}

.mobile-service-link > i {
    color: var(--theme-icon-muted);
    font-size: 7px;

    transition:
        color .25s ease,
        transform .25s ease;
}

.mobile-service-link:hover {
    padding-left: 17px;
    color: var(--theme-blue) !important;
}

.mobile-service-link:hover::before {
    background: var(--theme-blue);
    transform: scale(1.3);
}

.mobile-service-link:hover > i {
    color: var(--theme-blue);
    transform: translateX(3px);
}


/* =========================================================
   PRODUCTS GRID
========================================================= */

.mobile-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;

    padding: 3px 6px 7px;
}

.mobile-product-link {
    position: relative;

    min-height: 41px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 6px;

    padding: 7px 7px 7px 10px;

    border: 1px solid var(--theme-border);
    border-radius: 8px;

    background: var(--theme-white);

    color: var(--theme-text-dark) !important;

    font-family: var(--font-body);
    font-size: 11px;
    line-height: 1.35;
    font-weight: 600;

    text-decoration: none !important;

    transition:
        background .25s ease,
        border-color .25s ease,
        color .25s ease,
        transform .25s ease;
}

.mobile-product-link:hover {
    background: var(--theme-background-soft);
    border-color: var(--theme-blue);
    color: var(--theme-blue) !important;
    transform: translateY(-1px);
}

.mobile-product-link i {
    flex-shrink: 0;

    color: var(--theme-icon-muted);
    font-size: 7px;

    transition:
        color .25s ease,
        transform .25s ease;
}

.mobile-product-link:hover i {
    color: var(--theme-blue);
    transform: translateX(2px);
}


/* =========================================================
   ENQUIRY CARD
========================================================= */

.mobile-enquiry-card {
    position: relative;

    width: 100%;

    margin-top: 14px;
    padding: 17px;

    overflow: hidden;

    border: 1px solid rgba(41, 153, 213, .35);
    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            var(--theme-dark-background),
            var(--theme-blue-dark)
        );

    box-shadow:
        0 14px 30px rgba(23, 20, 91, .14);
}

.mobile-enquiry-decoration {
    position: absolute;

    width: 130px;
    height: 130px;

    top: -70px;
    right: -55px;

    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
}

.mobile-enquiry-decoration::before {
    content: "";

    position: absolute;
    inset: 18px;

    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
}

.mobile-enquiry-label {
    position: relative;
    z-index: 2;

    display: block;

    margin-bottom: 6px;

    color: var(--theme-blue-light);

    font-family: var(--font-body);
    font-size: 6.5px;
    line-height: 1;
    font-weight: 800;

    letter-spacing: 1.35px;
}

.mobile-enquiry-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 7px;

    color: var(--theme-white);

    font-family: var(--font-heading);
    font-size: 19px;
    line-height: 1.2;
    font-weight: 600;
}

.mobile-enquiry-card h3 em {
    color: var(--theme-blue-light);
    font-style: normal;
}

.mobile-enquiry-card p {
    position: relative;
    z-index: 2;

    margin: 0 0 13px;

    color: var(--theme-white-text-muted);

    font-family: var(--font-body);
    font-size: 8px;
    line-height: 1.6;
}

.mobile-enquiry-button {
    position: relative;
    z-index: 3;

    min-height: 35px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 8px 14px;

    border: 1px solid var(--theme-white);
    border-radius: 50px;

    background: var(--theme-white);
    color: var(--theme-dark-background) !important;

    font-family: var(--font-body);
    font-size: 8.5px;
    line-height: 1;
    font-weight: 800;

    text-decoration: none !important;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}

.mobile-enquiry-button:hover {
    background: var(--theme-blue);
    border-color: var(--theme-blue);
    color: var(--theme-white) !important;

    transform: translateY(-2px);
}

.mobile-enquiry-button i {
    font-size: 7px;

    transition: transform .25s ease;
}

.mobile-enquiry-button:hover i {
    transform: translateX(3px);
}


/* =========================================================
   FOOTER
========================================================= */

.mobile-offcanvas-footer {
    flex-shrink: 0;

    padding: 9px 13px 12px;

    background: var(--theme-white);

    border-top: 1px solid var(--theme-border);

    box-shadow:
        0 -6px 18px rgba(23, 20, 91, .035);
}

.mobile-contact-actions {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 7px;
}

.mobile-contact-action {
    min-height: 46px;

    display: flex;
    align-items: center;

    gap: 7px;

    padding: 6px 8px;

    border: 1px solid var(--theme-border);
    border-radius: 10px;

    background: var(--theme-background-soft);

    color: var(--theme-text-dark) !important;

    text-decoration: none !important;

    transition:
        transform .25s ease,
        border-color .25s ease,
        background .25s ease;
}

.mobile-contact-action:hover {
    transform: translateY(-2px);

    border-color: var(--theme-blue);
    background: var(--theme-white);
}

.mobile-contact-action-icon {
    width: 29px;
    height: 29px;

    flex: 0 0 29px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--theme-white);

    font-size: 9px;
}

.mobile-call-action .mobile-contact-action-icon {
    background: var(--theme-dark-background);
}

.mobile-whatsapp-action .mobile-contact-action-icon {
    background: #25d366;
}

.mobile-contact-action > span:last-child {
    display: flex;
    flex-direction: column;
}

.mobile-contact-action small {
    display: block;

    margin-bottom: 2px;

    color: var(--theme-text-muted);

    font-family: var(--font-body);
    font-size: 6px;
    line-height: 1.1;
}

.mobile-contact-action strong {
    display: block;

    color: var(--theme-text-dark);

    font-family: var(--font-body);
    font-size: 7.5px;
    line-height: 1.2;
    font-weight: 800;
}


/* =========================================================
   BACKDROP
========================================================= */

.offcanvas-backdrop {
    background-color: var(--theme-dark-background) !important;
}

.offcanvas-backdrop.show {
    opacity: .48 !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .mobile-offcanvas .offcanvas-header {
        min-height: 72px !important;
        padding: 11px 15px !important;
    }

    .mobile-offcanvas .mobile-brand-logo img {
        height: 65px;
    }

    .mobile-offcanvas .offcanvas-body {
        padding: 12px 15px 16px !important;
    }

    .mobile-menu-intro {
        margin-bottom: 9px;
    }

    .mobile-nav-item {
        min-height: 49px;
    }

    .mobile-product-grid {
        gap: 4px;
    }

    .mobile-product-link {
        font-size: 7.2px;
    }

    .mobile-enquiry-card {
        margin-top: 12px;
        padding: 15px;
    }

    .mobile-enquiry-card h3 {
        font-size: 18px;
    }

}