/* -------------------------------------------------------------
 * Digilance Laravel Unified Design System Stylesheet
 * ------------------------------------------------------------- */

:root {
    /* â”€â”€ Digilance Global Brand Palette â”€â”€ */
    --wgl-primary:        #0B2035;   /* navy  â€“ headers, nav, footer, headings */
    --wgl-primary-hover:  #0d2a47;   /* navy hover */
    --wgl-accent:         #D7AC4D;   /* gold  â€“ buttons, links, highlights */
    --wgl-accent-hover:   #bf9438;   /* gold hover */
    --wgl-gold:           #D7AC4D;   /* alias */
    --wgl-secondary:      #D7AC4D;   /* alias */

    /* Backgrounds */
    --wgl-bg-cream:       #FDFCFA;   /* cream â€“ page bg, light sections */
    --wgl-bg-white:       #FFFFFF;   /* pure white â€“ contrast sections */
    --wgl-dark-bg:        #0B2035;   /* navy dark sections */
    --wgl-dark-card:      #132d4a;   /* slightly lighter navy card */
    --wgl-light-bg:       #FDFCFA;   /* cream */
    --wgl-dark-border:    rgba(255, 255, 255, 0.10);

    /* Typography */
    --wgl-text-dark:      #0B2035;   /* navy text on light backgrounds */
    --wgl-text-body:      #3a4d62;   /* softer navy for body copy */
    --wgl-text-muted:     #6b7f96;   /* muted navy-grey */
    --wgl-text-light:     #FDFCFA;   /* cream text on dark backgrounds */

    /* Fonts */
    --wgl-font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --wgl-font-sub: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --wgl-font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Shape & Motion */
    --wgl-radius-sm: 20px;
    --wgl-radius-md: 20px;
    --wgl-radius-lg: 24px;
    --wgl-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --wgl-shadow-sm: 0 4px 15px rgba(11, 32, 53, 0.06);
    --wgl-shadow-md: 0 10px 30px rgba(11, 32, 53, 0.10);
    --wgl-shadow-lg: 0 20px 50px rgba(11, 32, 53, 0.15);
}

/* Reset & Global */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body.digilance-body {
    font-family: var(--wgl-font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--wgl-text-body);
    background-color: var(--wgl-bg-cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--wgl-font-heading);
    color: var(--wgl-text-dark);
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 { font-size: 38px; }
h2 { font-size: 29px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

a {
    color: inherit;
    text-decoration: none;
    transition: var(--wgl-transition);
}

a:hover {
    color: var(--wgl-accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.wgl-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.wgl-container-fluid {
    width: 100%;
    padding: 0 30px;
}

/* Buttons */
.wgl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 32px;
    font-family: var(--wgl-font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    background-color: var(--wgl-accent);
    color: var(--wgl-primary) !important;
    border: 2px solid var(--wgl-accent);
    cursor: pointer;
    transition: var(--wgl-transition);
    position: relative;
    overflow: hidden;
}

.wgl-btn:hover {
    background-color: var(--wgl-primary);
    color: #ffffff !important;
    border-color: var(--wgl-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(11, 32, 53, 0.30);
}

.wgl-btn-outline {
    background-color: transparent;
    color: var(--wgl-accent) !important;
    border-color: var(--wgl-accent);
    border-radius: 20px;
}

.wgl-btn-outline:hover {
    background-color: var(--wgl-accent);
    color: var(--wgl-primary) !important;
    border-color: var(--wgl-accent);
    box-shadow: 0 8px 25px rgba(215, 172, 77, 0.35);
}

.wgl-btn-header {
    padding: 10px 22px;
    font-size: 12px;
    border-radius: 20px;
}

/* From Uiverse.io by suda-code */
.btn-inquire,
button.btn-inquire {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    height: 42px;
    line-height: 42px;
    border: 0;
    border-radius: 100px;
    background-color: #2ba8fb;
    color: #ffffff !important;
    font-family: var(--wgl-font-heading);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;
    vertical-align: middle;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.btn-inquire:hover,
button.btn-inquire:hover {
    background-color: #6fc5ff;
    box-shadow: 0 0 20px #6fc5ff50;
    transform: scale(1.08);
    color: #ffffff !important;
}

.btn-inquire:active,
button.btn-inquire:active {
    background-color: #3d94cf;
    transition: all 0.25s;
    -webkit-transition: all 0.25s;
    box-shadow: none;
    transform: scale(0.98);
}

.text-primary { color: var(--wgl-accent) !important; }
.text-gold    { color: var(--wgl-accent) !important; }
.text-navy    { color: var(--wgl-primary) !important; }
.text-white   { color: #ffffff !important; }
.text-cream   { color: var(--wgl-bg-cream) !important; }
.text-muted   { color: var(--wgl-text-muted) !important; }
.font-weight-bold { font-weight: 700; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-25 { margin-bottom: 25px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.pt-100 { padding-top: 100px; }
.pb-100 { padding-bottom: 100px; }
.py-100 { padding-top: 100px; padding-bottom: 100px; }
.py-80 { padding-top: 80px; padding-bottom: 80px; }

/* Top Bar */
.wgl-top-bar {
    background-color: var(--wgl-primary);
    color: rgba(253, 252, 250, 0.80);
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(215, 172, 77, 0.2);
}

.wgl-top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-delimiter {
    color: rgba(255, 255, 255, 0.2);
}

.top-social-links {
    display: flex;
    gap: 12px;
}

.top-social-links .social-icon {
    color: rgba(253, 252, 250, 0.75);
    transition: var(--wgl-transition);
}

.top-social-links .social-icon:hover {
    color: var(--wgl-accent);
}

/* Header */
.wgl-theme-header {
    background-color: #ffffff;
    box-shadow: 0 2px 20px rgba(11, 32, 53, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--wgl-transition);
}

.wgl-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.header-logo-col {
    display: flex;
    align-items: center;
}

.header-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--wgl-font-sub);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #151515;
    text-decoration: none;
}

.header-brand-logo .logo-icon-wrap {
    font-size: 32px;
    color: var(--wgl-primary);
}

.header-brand-logo .logo-accent {
    color: var(--wgl-primary);
}

/* Digilance Global Image Logo */
.brand-logo-img {
    height: 46px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--wgl-font-sub);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #151515;
}

.logo-sub {
    font-family: var(--wgl-font-sub);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--wgl-gold);
    text-transform: uppercase;
}

.text-gold { color: var(--wgl-gold) !important; }

/* Footer brand logo variant */
.footer-brand-logo .logo-name {
    color: #ffffff;
}
.footer-brand-logo .brand-logo-img {
    filter: brightness(0) invert(1);
}

/* Desktop Main Menu */
.desktop-navigation {
    display: flex;
    align-items: center;
}

.main-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.main-menu .menu-item {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu .menu-item > a {
    font-family: var(--wgl-font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--wgl-text-dark);
    padding: 30px 4px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 0.3px;
}

.main-menu .menu-item:hover > a,
.main-menu .menu-item.current-menu-item > a {
    color: var(--wgl-accent);
}

.menu-arrow {
    font-size: 11px;
    transition: transform 0.2s ease;
}

.main-menu .menu-item:hover .menu-arrow {
    transform: rotate(180deg);
}

/* Submenu & Mega Menu Dropdown */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: #ffffff;
    box-shadow: 0 10px 40px rgba(11, 32, 53, 0.14);
    border-top: 3px solid var(--wgl-accent);
    list-style: none;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--wgl-transition);
    border-radius: 0 0 var(--wgl-radius-sm) var(--wgl-radius-sm);
    z-index: 100;
}

.main-menu .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li a {
    padding: 10px 24px;
    display: block;
    font-family: var(--wgl-font-sub);
    font-size: 14px;
    font-weight: 500;
    color: var(--wgl-text-dark);
}

.sub-menu li a:hover,
.sub-menu li.active a {
    background-color: rgba(215, 172, 77, 0.08);
    color: var(--wgl-accent);
    padding-left: 28px;
}

/* =========================================
   Rich Mega Menu System (About & Services)
   ========================================= */
.menu-item-has-mega {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: calc(100% - 4px);
    left: 50%;
    transform: translateX(-35%) translateY(14px);
    width: 860px;
    max-width: 90vw;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(11, 32, 53, 0.20);
    border: 1px solid rgba(11, 32, 53, 0.08);
    padding: 20px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1100;
}

.main-menu .menu-item-has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-35%) translateY(0);
}

/* Left Feature Dark Card */
.mega-menu-card {
    background: linear-gradient(145deg, #0B2035 0%, #132d4a 100%);
    border-radius: 16px;
    padding: 24px 20px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mega-menu-card::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(215, 172, 77, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.mega-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.mega-card-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(215, 172, 77, 0.2);
    color: var(--wgl-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.mega-card-brand {
    font-family: var(--wgl-font-heading);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--wgl-accent);
    text-transform: uppercase;
}

.mega-card-quote {
    font-family: var(--wgl-font-heading);
    font-size: 13px;
    line-height: 1.6;
    color: rgba(253, 252, 250, 0.9);
    margin-bottom: 20px;
    font-weight: 500;
}

.mega-card-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--wgl-font-heading);
    font-size: 12px;
    color: rgba(253, 252, 250, 0.8);
    font-weight: 600;
    margin-bottom: 22px;
}

.trust-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--wgl-accent);
    color: var(--wgl-primary);
    font-size: 10px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mega-card-btn {
    background: #ffffff;
    color: var(--wgl-primary) !important;
    padding: 10px 18px;
    border-radius: 100px;
    font-family: var(--wgl-font-heading);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.mega-card-btn:hover {
    background: var(--wgl-accent);
    color: var(--wgl-primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(215, 172, 77, 0.4);
}

/* Right Grid Items */
.mega-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    align-content: center;
}

.mega-menu-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
    background: transparent;
}

.mega-menu-item:hover {
    background: rgba(11, 32, 53, 0.04);
    transform: translateX(3px);
}

.mega-item-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(11, 32, 53, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--wgl-primary);
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.mega-menu-item:hover .mega-item-icon {
    background: var(--wgl-accent);
    color: var(--wgl-primary);
    transform: scale(1.06);
}

.mega-item-info {
    display: flex;
    flex-direction: column;
}

.mega-item-title {
    font-family: var(--wgl-font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--wgl-text-dark);
    line-height: 1.25;
    margin-bottom: 2px;
    transition: color 0.25s ease;
}

.mega-menu-item:hover .mega-item-title {
    color: var(--wgl-accent);
}

.mega-item-desc {
    font-size: 11px;
    line-height: 1.35;
    color: var(--wgl-text-muted);
    font-weight: 400;
}

/* Header Actions & Mobile Toggle */
.header-action-col {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}

.mobile-nav-toggle span {
    width: 26px;
    height: 3px;
    background-color: var(--wgl-text-dark);
    border-radius: 2px;
    transition: var(--wgl-transition);
}

/* Mobile Drawer */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--wgl-transition);
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -340px;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background-color: #ffffff;
    color: var(--wgl-text-dark);
    z-index: 9999;
    transition: var(--wgl-transition);
    overflow: hidden;
    padding: 0;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
}

.mobile-nav-drawer.active {
    right: 0;
}

.drawer-header {
    background: var(--wgl-primary);
    padding: 20px 22px;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.drawer-logo-img {
    height: 32px;
    width: auto;
}

.drawer-logo-text {
    display: flex;
    flex-direction: column;
}

.drawer-logo-name {
    color: #ffffff !important;
    font-family: var(--wgl-font-heading);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1.1;
}

.drawer-logo-sub {
    color: var(--wgl-accent) !important;
    font-family: var(--wgl-font-heading);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 2px;
}

.drawer-close-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    line-height: 1;
}

.drawer-close-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.35);
}

.drawer-body {
    padding: 22px 18px 28px;
    background: #ffffff;
    overflow-y: auto;
    flex: 1;
}

.mobile-menu-list {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-item {
    margin: 0;
    position: relative;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 10px;
    font-family: var(--wgl-font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--wgl-text-dark);
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-menu-link:hover {
    background: rgba(11, 32, 53, 0.04);
    color: var(--wgl-accent);
}

.mobile-menu-item.active-item > .mobile-menu-link,
.mobile-menu-item.active-item > .mobile-dropdown-header {
    background: rgba(215, 172, 77, 0.14);
    color: var(--wgl-primary);
    font-weight: 700;
    border-left: 3px solid var(--wgl-accent);
}

/* Mobile Dropdowns */
.mobile-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.mobile-dropdown-header:hover {
    background: rgba(11, 32, 53, 0.04);
}

.mobile-dropdown-header .mobile-menu-link {
    flex: 1;
}

.mobile-dropdown-toggle {
    background: none;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    color: #64748b;
    font-size: 14px;
    transition: transform 0.25s ease, color 0.25s ease;
}

.mobile-dropdown-toggle:hover {
    color: var(--wgl-accent);
}

.mobile-dropdown:hover .mobile-dropdown-toggle i,
.mobile-dropdown.open .mobile-dropdown-toggle i {
    transform: rotate(180deg);
    color: var(--wgl-accent);
}

.mobile-submenu {
    list-style: none;
    padding: 6px 0 6px 14px;
    margin: 4px 0 8px 12px;
    border-left: 2px solid var(--wgl-accent);
    display: none;
    background: rgba(11, 32, 53, 0.02);
    border-radius: 0 10px 10px 0;
}

.mobile-dropdown:hover .mobile-submenu,
.mobile-dropdown.open .mobile-submenu {
    display: block;
    animation: wglSubmenuFade 0.25s ease;
}

@keyframes wglSubmenuFade {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.mobile-submenu li {
    margin: 0;
}

.mobile-submenu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    font-size: 13.5px;
    color: var(--wgl-text-body);
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mobile-submenu li a:hover {
    background: rgba(215, 172, 77, 0.12);
    color: var(--wgl-primary);
    font-weight: 600;
    transform: translateX(3px);
}

.submenu-icon {
    font-size: 12px;
    color: var(--wgl-accent);
    width: 16px;
    text-align: center;
}

.menu-icon {
    font-size: 12px;
    color: #94a3b8;
}

.drawer-divider {
    height: 1px;
    background: #f1f5f9;
    margin: 16px 0;
}

.drawer-contact-info {
    padding: 2px 8px;
}

.drawer-contact-info p {
    font-size: 13.5px;
    color: #475569;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.drawer-contact-info i {
    font-size: 14px;
    width: 16px;
    text-align: center;
    color: var(--wgl-accent);
}

.drawer-social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.drawer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.drawer-social-btn:hover {
    background: var(--wgl-primary);
    color: #ffffff;
    border-color: var(--wgl-primary);
    transform: translateY(-2px);
}

/* Page Title Banner */
.page-title-banner {
    padding: 100px 0 80px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #ffffff;
}

.page-title-content {
    max-width: 800px;
}

.page-main-title {
    color: #ffffff;
    font-size: 48px;
    margin-bottom: 12px;
}

.page-sub-title {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.page-breadcrumbs .breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 10px;
    font-family: var(--wgl-font-sub);
    font-size: 14px;
}

.breadcrumb-list li + li:before {
    content: "/";
    padding-right: 10px;
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-list a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-list a:hover,
.breadcrumb-list .active {
    color: var(--wgl-accent);
}

/* Section Headings */
.section-header {
    margin-bottom: 50px;
}

.section-header.text-center {
    text-align: center;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--wgl-font-sub);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--wgl-accent);
    margin-bottom: 10px;
}

.section-title {
    font-size: 29px !important;
    font-family: var(--wgl-font-heading) !important;
    font-weight: 700;
    color: var(--wgl-text-dark);
    letter-spacing: -0.5px;
}

.section-title.text-white {
    color: #ffffff;
}

.section-desc {
    max-width: 680px;
    margin: 15px auto 0;
    color: var(--wgl-text-body);
}

/* =========================================
   Hero Section â€” Cinematic Editorial Slideshow
   ========================================= */
.hero-cinematic-section {
    position: relative;
    background: var(--wgl-primary);
    color: #ffffff;
    overflow: hidden;
    min-height: 680px;
    display: flex;
    align-items: center;
}

/* â”€â”€ Hero Slideshow â”€â”€ */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Atmospheric Background Image */
.hero-slide-bg {
    position: absolute;
    inset: -30px;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    filter: blur(3px) brightness(0.65);
    transform: scale(1.04);
    transition: transform 7s ease-out, filter 1.3s ease;
    z-index: 0;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1.10);
}

/* Cinematic Lateral Gradient Overlay (Left-Focused Contrast) */
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(11, 32, 53, 0.96) 0%,
        rgba(11, 32, 53, 0.88) 35%,
        rgba(11, 32, 53, 0.55) 65%,
        rgba(11, 32, 53, 0.30) 100%
    );
    z-index: 1;
}

/* Container & Content */
.hero-slide-container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 140px 20px 140px;
}

.hero-cinematic-content {
    max-width: 650px;
    text-align: left;
}

/* Title */
.hero-cinematic-title {
    font-family: var(--wgl-font-heading) !important;
    font-size: 50px;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    letter-spacing: -1px;
    margin-bottom: 22px;
}

.hero-topic-highlight {
    color: var(--wgl-accent);
    display: inline-block;
    position: relative;
}

/* Lead Paragraph */
.hero-cinematic-lead {
    font-family: var(--wgl-font-body);
    font-size: 16px;
    line-height: 1.8;
    color: rgba(253, 252, 250, 0.88);
    margin-bottom: 36px;
    max-width: 560px;
}

/* Action Buttons Group */
.hero-action-group {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

/* Primary Pill Button */
.wgl-pill-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    border-radius: 100px;
    background-color: var(--wgl-accent);
    color: var(--wgl-primary) !important;
    font-family: var(--wgl-font-heading);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--wgl-accent);
    box-shadow: 0 10px 25px rgba(215, 172, 77, 0.35);
    cursor: pointer;
    transition: var(--wgl-transition);
}

.wgl-pill-btn-primary:hover {
    background-color: var(--wgl-primary);
    color: var(--wgl-accent) !important;
    border-color: var(--wgl-accent);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(11, 32, 53, 0.5);
}

/* Ghost Pill Button */
.wgl-pill-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    border-radius: 100px;
    background: rgba(253, 252, 250, 0.08);
    color: #ffffff !important;
    font-family: var(--wgl-font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    transition: var(--wgl-transition);
}

.wgl-pill-btn-ghost:hover {
    background-color: #ffffff;
    color: var(--wgl-primary) !important;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Slide Dots */
.hero-dots {
    position: absolute;
    bottom: 35px;
    right: 40px;
    left: auto;
    transform: none;
    display: flex;
    gap: 10px;
    z-index: 15;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--wgl-accent);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: var(--wgl-accent);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(215, 172, 77, 0.7);
}

.hero-particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(215, 172, 77, 0.15);
    border: 1px solid rgba(215, 172, 77, 0.5);
    padding: 6px 18px;
    border-radius: 30px;
    color: var(--wgl-accent);
    font-family: var(--wgl-font-sub);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 56px;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 24px;
}

.hero-title span {
    color: var(--wgl-accent);
}

.hero-lead {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-interactive-globe {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#earth-canvas {
    width: 100% !important;
    height: 100% !important;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* =========================================
   Featured 3-Card Grid for Homepage
   ========================================= */
.home-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 45px;
}

@media (max-width: 991px) {
    .home-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.home-service-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 32, 53, 0.08);
    border: 1px solid rgba(11, 32, 53, 0.06);
    transition: var(--wgl-transition);
    display: flex;
    flex-direction: column;
}

.home-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(11, 32, 53, 0.14);
    border-color: rgba(114, 90, 193, 0.35);
}

.home-service-thumb {
    height: 220px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: var(--wgl-primary);
}

.home-service-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.home-service-card:hover .home-service-thumb img {
    transform: scale(1.08);
}

.home-service-body {
    padding: 28px 24px 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.home-service-title {
    font-family: var(--wgl-font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--wgl-text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.home-service-desc {
    font-family: var(--wgl-font-body);
    font-size: 14px;
    line-height: 1.7;
    color: var(--wgl-text-body);
    margin-bottom: 16px;
    flex-grow: 1;
}

.home-service-footer {
    padding-top: 15px;
    border-top: 1px solid rgba(11, 32, 53, 0.06);
    text-align: center;
}

/* From Uiverse.io by adamgiebl */ 
.btn-more-details,
button.btn-more-details {
    position: relative;
    display: inline-block;
    margin: 10px auto 0;
    padding: 12px 28px;
    text-align: center;
    font-size: 15px;
    font-family: var(--wgl-font-heading);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    color: #725AC1;
    background: transparent;
    cursor: pointer;
    transition: ease-out 0.5s;
    -webkit-transition: ease-out 0.5s;
    border: 2px solid #725AC1;
    border-radius: 10px;
    box-shadow: inset 0 0 0 0 #725AC1;
    box-sizing: border-box;
}

.btn-more-details:hover,
button.btn-more-details:hover {
    color: white !important;
    box-shadow: inset 0 -100px 0 0 #725AC1;
}

.btn-more-details:active,
button.btn-more-details:active {
    transform: scale(0.9);
}

.service-card {
    background-color: #ffffff;
    padding: 45px 35px;
    border-radius: var(--wgl-radius-md);
    box-shadow: var(--wgl-shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--wgl-transition);
    position: relative;
    overflow: hidden;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--wgl-accent);
    transition: var(--wgl-transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--wgl-shadow-lg);
    border-color: transparent;
}

.service-card:hover:before {
    width: 100%;
}

.service-icon-wrap {
    width: 75px;
    height: 75px;
    background: rgba(215, 172, 77, 0.10);
    border-radius: var(--wgl-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: var(--wgl-primary);
    margin-bottom: 25px;
    transition: var(--wgl-transition);
}

.service-card:hover .service-icon-wrap {
    background: var(--wgl-primary);
    color: #ffffff;
    transform: scale(1.05);
}

.service-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-desc {
    color: var(--wgl-text-body);
    font-size: 15px;
    margin-bottom: 20px;
}

.service-read-more {
    font-family: var(--wgl-font-sub);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--wgl-text-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* =========================================
   Creative & Professional About Section
   ========================================= */
.about-creative-section {
    position: relative;
}

.about-ambient-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
    z-index: 1;
}

.glow-top {
    width: 360px;
    height: 360px;
    background: rgba(215, 172, 77, 0.18);
    top: -60px;
    right: -40px;
}

.glow-bottom {
    width: 420px;
    height: 420px;
    background: rgba(11, 32, 53, 0.12);
    bottom: -100px;
    left: -80px;
}

.about-creative-grid {
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 991px) {
    .about-creative-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Visual Stack (Left) */
.about-visual-stack {
    position: relative;
    padding: 20px 15px 40px 10px;
}

.about-main-img-wrap {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 65px rgba(11, 32, 53, 0.16);
    position: relative;
    border: 4px solid #ffffff;
}

.about-main-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.about-main-img-wrap:hover .about-main-img {
    transform: scale(1.04);
}

.about-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 65%, rgba(11, 32, 53, 0.55) 100%);
    pointer-events: none;
}

/* Top Floating Glass Badge */
.about-float-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 12px 18px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(11, 32, 53, 0.12);
    border: 1px solid rgba(11, 32, 53, 0.08);
    z-index: 4;
}

.float-badge-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(215, 172, 77, 0.18);
    color: var(--wgl-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.float-badge-text {
    display: flex;
    flex-direction: column;
}

.float-badge-text .badge-title {
    font-family: var(--wgl-font-heading);
    font-size: 13px;
    font-weight: 800;
    color: var(--wgl-text-dark);
    line-height: 1.2;
}

.float-badge-text .badge-sub {
    font-size: 11px;
    color: var(--wgl-text-muted);
    font-weight: 500;
}

/* Bottom Achievement Card */
.about-achievement-card {
    position: absolute;
    bottom: 0px;
    left: -15px;
    background: linear-gradient(145deg, #0B2035 0%, #132d4a 100%);
    color: #ffffff;
    padding: 22px 24px;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(11, 32, 53, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 5;
    max-width: 300px;
}

.achievement-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.achievement-number {
    font-family: var(--wgl-font-heading);
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
}

.achievement-stars {
    font-size: 11px;
    letter-spacing: 2px;
}

.achievement-label {
    font-family: var(--wgl-font-heading);
    font-size: 12px;
    font-weight: 600;
    color: rgba(253, 252, 250, 0.9);
    display: block;
    margin-bottom: 12px;
    line-height: 1.4;
}

.achievement-footer {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.achievement-chip {
    background: rgba(255, 255, 255, 0.10);
    padding: 4px 9px;
    border-radius: 20px;
    font-size: 10px;
    color: rgba(253, 252, 250, 0.85);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Experience Pill */
.about-exp-pill {
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    background: #ffffff;
    padding: 9px 16px;
    border-radius: 30px;
    box-shadow: 0 12px 30px rgba(11, 32, 53, 0.12);
    border: 1px solid rgba(11, 32, 53, 0.06);
    font-family: var(--wgl-font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--wgl-text-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    z-index: 4;
}

/* Editorial Column (Right) */
.about-lead-desc {
    font-family: var(--wgl-font-body);
    font-size: 15px;
    line-height: 1.8;
    color: var(--wgl-text-body);
    margin-bottom: 25px;
}

/* Interactive 3 Pillars Stack */
.about-pillars-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.about-pillar-item {
    background: #ffffff;
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid rgba(11, 32, 53, 0.06);
    box-shadow: 0 4px 18px rgba(11, 32, 53, 0.03);
    transition: all 0.3s ease;
    position: relative;
}

.about-pillar-item:hover {
    transform: translateX(6px);
    border-color: var(--wgl-accent);
    box-shadow: 0 10px 30px rgba(11, 32, 53, 0.08);
}

.pillar-number {
    font-family: var(--wgl-font-heading);
    font-size: 13px;
    font-weight: 800;
    color: var(--wgl-accent);
    opacity: 0.9;
    margin-top: 2px;
    flex-shrink: 0;
}

.pillar-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(11, 32, 53, 0.05);
    color: var(--wgl-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.about-pillar-item:hover .pillar-icon-box {
    background: var(--wgl-accent);
    color: var(--wgl-primary);
    transform: scale(1.05);
}

.pillar-content {
    display: flex;
    flex-direction: column;
}

.pillar-title {
    font-family: var(--wgl-font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--wgl-text-dark);
    margin-bottom: 3px;
    line-height: 1.3;
}

.pillar-desc {
    font-family: var(--wgl-font-body);
    font-size: 13px;
    line-height: 1.55;
    color: var(--wgl-text-muted);
    margin: 0;
}

/* Philosophy Credo Card */
.about-credo-card {
    background: rgba(11, 32, 53, 0.04);
    border-left: 4px solid var(--wgl-accent);
    padding: 14px 18px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 26px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.credo-icon {
    color: var(--wgl-accent);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.credo-text {
    font-family: var(--wgl-font-heading);
    font-size: 13.5px;
    font-style: italic;
    font-weight: 600;
    color: var(--wgl-text-dark);
    line-height: 1.6;
    margin: 0;
}

.about-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* =========================================
   Statistics Counter Section (Clean Layout)
   ========================================= */
.stats-section {
    background: var(--wgl-primary);
    color: var(--wgl-bg-cream);
    padding: 70px 0;
    border-top: 3px solid var(--wgl-accent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 575px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-item {
    padding: 10px;
}

.stat-number {
    font-family: var(--wgl-font-heading);
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.stat-counter {
    display: inline-block;
    font-variant-numeric: tabular-nums;
}

.stat-suffix {
    font-size: 38px;
    font-weight: 800;
    color: var(--wgl-accent);
}

.stat-label {
    font-family: var(--wgl-font-heading);
    font-size: 15px;
    font-weight: 600;
    color: rgba(253, 252, 250, 0.85);
    letter-spacing: 0.5px;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.team-card {
    background: #ffffff;
    border-radius: var(--wgl-radius-md);
    overflow: hidden;
    box-shadow: var(--wgl-shadow-sm);
    transition: var(--wgl-transition);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--wgl-shadow-lg);
}

.team-image-wrap {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.team-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image-wrap img {
    transform: scale(1.06);
}

.team-social-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    padding: 12px;
    background: rgba(14, 16, 20, 0.85);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    gap: 15px;
    transition: var(--wgl-transition);
}

.team-card:hover .team-social-overlay {
    bottom: 0;
}

.team-social-overlay a {
    color: #ffffff;
    font-size: 15px;
}

.team-social-overlay a:hover {
    color: var(--wgl-accent);
}

.team-info {
    padding: 24px;
    text-align: center;
}

.team-name {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-position {
    color: var(--wgl-accent);
    font-family: var(--wgl-font-sub);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-card {
    background: #ffffff;
    border-radius: var(--wgl-radius-md);
    overflow: hidden;
    box-shadow: var(--wgl-shadow-sm);
    transition: var(--wgl-transition);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--wgl-shadow-lg);
}

.portfolio-thumb {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.portfolio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-thumb img {
    transform: scale(1.08);
}

.portfolio-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--wgl-accent);
    color: var(--wgl-primary);
    font-family: var(--wgl-font-sub);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.portfolio-content {
    padding: 24px;
}

.portfolio-title {
    font-size: 20px;
    margin-bottom: 10px;
}

/* =========================================
   User Testimonials (Reference Image Design)
   ========================================= */
.user-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

@media (max-width: 991px) {
    .user-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 65px;
    }
}

.user-testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(11, 32, 53, 0.08);
    padding: 68px 30px 40px;
    text-align: center;
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid rgba(11, 32, 53, 0.05);
}

.user-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(11, 32, 53, 0.14);
}

/* Middle featured blue card */
.user-testimonial-card.featured-blue-card {
    background: #2ba8fb;
    color: #ffffff;
    border: none;
    box-shadow: 0 20px 55px rgba(43, 168, 251, 0.35);
}

.user-testimonial-card.featured-blue-card:hover {
    box-shadow: 0 28px 70px rgba(43, 168, 251, 0.45);
}

/* Avatar Pop-out */
.user-avatar-wrap {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #ffffff;
    padding: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.user-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

/* Stars */
.user-testimonial-stars {
    color: #2ba8fb;
    font-size: 15px;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.featured-blue-card .user-testimonial-stars {
    color: #ffffff;
}

/* Author Name & Role */
.user-author-name {
    font-family: var(--wgl-font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--wgl-text-dark);
    margin-bottom: 4px;
    line-height: 1.2;
}

.featured-blue-card .user-author-name {
    color: #ffffff;
}

.user-author-role {
    font-family: var(--wgl-font-body);
    font-size: 13px;
    color: var(--wgl-text-muted);
    margin-bottom: 18px;
    font-weight: 500;
}

.featured-blue-card .user-author-role {
    color: rgba(255, 255, 255, 0.85);
}

/* Quote Mark */
.user-quote-mark {
    font-size: 28px;
    color: #2ba8fb;
    margin-bottom: 16px;
    line-height: 1;
}

.featured-blue-card .user-quote-mark {
    color: #ffffff;
}

/* Testimonial Text */
.user-testimonial-desc {
    font-family: var(--wgl-font-body);
    font-size: 14px;
    line-height: 1.75;
    color: #555555;
    margin: 0;
}

.featured-blue-card .user-testimonial-desc {
    color: rgba(255, 255, 255, 0.95);
}

/* Blog & Posts */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.blog-card {
    background: #ffffff;
    border-radius: var(--wgl-radius-md);
    overflow: hidden;
    box-shadow: var(--wgl-shadow-sm);
    transition: var(--wgl-transition);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--wgl-shadow-lg);
}

.blog-thumb {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-thumb img {
    transform: scale(1.06);
}

.blog-content {
    padding: 28px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: var(--wgl-text-muted);
    margin-bottom: 12px;
}

.blog-meta i {
    color: var(--wgl-accent);
    margin-right: 4px;
}

.blog-card-title {
    font-size: 21px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 15px;
    color: var(--wgl-text-body);
    margin-bottom: 20px;
}

/* Two-column Blog / Page Layout with Sidebar */
.page-layout-with-sidebar {
    display: grid;
    grid-template-columns: 2.3fr 1fr;
    gap: 50px;
}

.sidebar-widget {
    background: #ffffff;
    padding: 30px;
    border-radius: var(--wgl-radius-md);
    box-shadow: var(--wgl-shadow-sm);
    margin-bottom: 35px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-widget-title {
    font-size: 19px;
    padding-bottom: 12px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--wgl-primary);
}

.sidebar-list {
    list-style: none;
}

.sidebar-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    font-size: 15px;
}

.sidebar-list li a {
    color: var(--wgl-text-dark);
}

.sidebar-list li a:hover {
    color: var(--wgl-accent);
    padding-left: 5px;
}

/* Forms & Inputs */
.wgl-form-group {
    margin-bottom: 20px;
}

.wgl-label {
    display: block;
    font-family: var(--wgl-font-sub);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--wgl-text-dark);
}

.wgl-input, .wgl-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #dcdcdc;
    border-radius: var(--wgl-radius-sm);
    font-family: var(--wgl-font-body);
    font-size: 15px;
    color: #333333;
    outline: none;
    transition: var(--wgl-transition);
}

.wgl-input:focus, .wgl-textarea:focus {
    border-color: var(--wgl-accent);
    box-shadow: 0 0 0 3px rgba(215, 172, 77, 0.15);
}

/* =========================================
   Creative Bottom CTA Section & WhatsApp Button
   ========================================= */
.cta-creative-section {
    padding-top: 90px;
    padding-bottom: 0;
    position: relative;
}

.cta-creative-box {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: flex-end;
}

@media (max-width: 991px) {
    .cta-creative-box {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.cta-text-col {
    padding-bottom: 90px;
}

.cta-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 211, 102, 0.12);
    color: #128c7e;
    border: 1px solid rgba(37, 211, 102, 0.35);
    padding: 6px 16px;
    border-radius: 30px;
    font-family: var(--wgl-font-heading);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #25D366;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.cta-main-title {
    font-family: var(--wgl-font-heading);
    font-size: 38px;
    font-weight: 800;
    color: var(--wgl-text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.cta-desc {
    font-family: var(--wgl-font-body);
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--wgl-text-body);
    margin-bottom: 22px;
    max-width: 580px;
}

@media (max-width: 991px) {
    .cta-desc {
        margin: 0 auto 22px;
    }
}

.cta-quick-perks {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .cta-quick-perks {
        justify-content: center;
    }
}

.perk-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--wgl-font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--wgl-text-dark);
}

/* WhatsApp CTA Button */
.btn-whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #25D366 0%, #1ebe5d 100%);
    color: #ffffff !important;
    padding: 14px 30px;
    border-radius: 100px;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid #ffffff;
}

.btn-whatsapp-cta:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.60);
    background: linear-gradient(135deg, #1ebe5d 0%, #128c7e 100%);
    color: #ffffff !important;
}

.whatsapp-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn-whatsapp-cta:hover .whatsapp-icon-wrap {
    transform: rotate(15deg) scale(1.08);
}

.whatsapp-btn-labels {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.whatsapp-btn-sub {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.2;
}

.whatsapp-btn-main {
    font-family: var(--wgl-font-heading);
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

/* Agent Column */
.cta-agent-col {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.cta-agent-image {
    max-height: 480px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 20px 35px rgba(11, 32, 53, 0.15));
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.cta-agent-col:hover .cta-agent-image {
    transform: scale(1.02);
}

.agent-glow-bg {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(215, 172, 77, 0.25) 0%, transparent 70%);
   bottom: 30px;
    z-index: 1;
    pointer-events: none;
}

/* ===================================================
   Clients & Strategic Partners Infinite Marquee
   =================================================== */
.clients-marquee-section {
    position: relative;
    padding: 55px 0 45px;
    background: #ffffff;
}

.clients-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 12px 0;
    mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    padding: 8px 0;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.clients-marquee-track {
    display: flex;
    gap: 36px;
    align-items: center;
    width: max-content;
    animation: digilanceMarquee 28s linear infinite;
}

.clients-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes digilanceMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.client-marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid rgba(11, 32, 53, 0.08);
    border-radius: 14px;
    padding: 16px 22px;
    min-width: 165px;
    box-shadow: 0 4px 15px rgba(11, 32, 53, 0.03);
    transition: all 0.25s ease;
    user-select: none;
}

.client-marquee-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(11, 32, 53, 0.09);
    border-color: var(--wgl-accent);
}

.client-logo-badge {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--wgl-bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 8px;
    transition: all 0.25s ease;
}

.client-marquee-item:hover .client-logo-badge {
    background: var(--wgl-primary);
}

.client-marquee-item:hover .client-logo-badge i {
    color: var(--wgl-accent) !important;
}

.client-company-name {
    font-family: var(--wgl-font-heading);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--wgl-text-dark);
    margin-bottom: 2px;
    text-align: center;
    white-space: nowrap;
}

.client-industry-name {
    font-size: 11px;
    color: var(--wgl-text-muted);
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

/* Footer */
.wgl-footer {
    background: var(--wgl-primary);
    color: rgba(253, 252, 250, 0.75);
    padding-top: 80px;
    border-top: 3px solid var(--wgl-accent);
}

.wgl-footer-top {
    padding-bottom: 50px;
}

.footer-widgets-row {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 1.1fr 1.3fr;
    gap: 30px 40px;
}

.footer-widget-col.col-newsletter {
    grid-column: 4;
    margin-top: -15px;
}

@media (max-width: 991px) {
    .footer-widgets-row {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .footer-widget-col.col-newsletter {
        grid-column: 1 / -1;
        margin-top: 10px;
    }
}

.footer-brand-logo .brand-logo-img {
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
    height: 38px;
    width: auto;
}

.footer-brand-logo .logo-name {
    color: #ffffff !important;
    font-weight: 800;
}

.footer-brand-logo .logo-sub {
    color: var(--wgl-accent) !important;
    font-weight: 700;
}

.footer-widget-title {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--wgl-accent);
}

.footer-desc {
    font-size: 13.5px;
    line-height: 1.75;
    margin-bottom: 15px;
    color: rgba(253, 252, 250, 0.75);
}

.footer-menu {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 7px;
}

.footer-menu a {
    color: rgba(253, 252, 250, 0.75);
    font-size: 13.5px;
    line-height: 1.3;
    display: inline-block;
    transition: all 0.2s ease;
    text-decoration: none;
}

.footer-menu a:hover {
    color: var(--wgl-accent);
    transform: translateX(4px);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 13.5px;
    color: rgba(253, 252, 250, 0.85);
}

.footer-contact-item i {
    width: 18px;
    text-align: center;
    font-size: 15px;
    flex-shrink: 0;
}

/* =========================================
   Animated Social Icons (Instagram, LinkedIn, Pinterest, X)
   ========================================= */
.footer-social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

.social-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-icon-btn i {
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: #ffffff;
}

.social-icon-btn:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: transparent;
}

.social-icon-btn:hover i {
    transform: scale(1.15);
    color: #ffffff;
}

/* Instagram Gradient */
.social-icon-btn.social-instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0 8px 22px rgba(214, 36, 159, 0.55);
}

/* LinkedIn Blue */
.social-icon-btn.social-linkedin:hover {
    background: #0077b5;
    box-shadow: 0 8px 22px rgba(0, 119, 181, 0.55);
}

/* Pinterest Red */
.social-icon-btn.social-pinterest:hover {
    background: #e60023;
    box-shadow: 0 8px 22px rgba(230, 0, 35, 0.55);
}

/* X (Twitter) Dark */
.social-icon-btn.social-x:hover {
    background: #000000;
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.7);
}

/* =========================================
   Legal Pages (Privacy, Terms, Cookies)
   ========================================= */
.legal-page-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 55px;
    box-shadow: 0 15px 45px rgba(11, 32, 53, 0.07);
    border: 1px solid rgba(11, 32, 53, 0.06);
    max-width: 980px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .legal-page-card {
        padding: 30px 20px;
    }
}

.legal-header-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(11, 32, 53, 0.08);
    padding-bottom: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.legal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(215, 172, 77, 0.12);
    color: var(--wgl-accent);
    font-weight: 700;
    font-size: 13px;
    padding: 6px 16px;
    border-radius: 20px;
}

.legal-date {
    font-size: 13.5px;
    color: var(--wgl-text-muted);
    font-weight: 600;
}

.legal-content-body h2 {
    font-family: var(--wgl-font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--wgl-primary);
    margin-top: 36px;
    margin-bottom: 14px;
    border-left: 4px solid var(--wgl-accent);
    padding-left: 12px;
}

.legal-content-body h3 {
    font-family: var(--wgl-font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--wgl-primary);
    margin-top: 22px;
    margin-bottom: 10px;
}

.legal-content-body p {
    font-size: 15px;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 14px;
}

.legal-content-body ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-content-body li {
    font-size: 14.5px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 6px;
}

.legal-intro {
    font-size: 16.5px !important;
    font-weight: 500;
    color: var(--wgl-primary) !important;
    line-height: 1.8 !important;
}

.legal-note {
    background: rgba(215, 172, 77, 0.08);
    border-left: 4px solid var(--wgl-accent);
    padding: 14px 18px;
    border-radius: 0 8px 8px 0;
    font-size: 14.5px;
    color: #333333;
    margin-bottom: 24px;
}

.legal-contact-box {
    background: var(--wgl-bg-cream);
    border-radius: 12px;
    padding: 24px;
    margin-top: 20px;
    border: 1px solid rgba(11, 32, 53, 0.08);
}

.newsletter-input-group {
    display: flex;
    position: relative;
}

.newsletter-input {
    width: 100%;
    padding: 12px 50px 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--wgl-radius-sm);
    color: #fff;
    font-size: 14px;
    outline: none;
}

.newsletter-submit-btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 46px;
    background: var(--wgl-accent);
    border: none;
    color: var(--wgl-primary);
    border-radius: 0 var(--wgl-radius-sm) var(--wgl-radius-sm) 0;
    cursor: pointer;
    transition: var(--wgl-transition);
}

.newsletter-submit-btn:hover {
    background: var(--wgl-bg-cream);
    color: var(--wgl-primary);
}

.wgl-footer-bottom {
    background: rgba(0, 0, 0, 0.25);
    padding: 24px 0;
    border-top: 1px solid rgba(215, 172, 77, 0.15);
    font-size: 14px;
    color: rgba(253, 252, 250, 0.60);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
}

/* Scroll To Top */
.wgl-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background-color: var(--wgl-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 6px 20px rgba(193, 14, 14, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: var(--wgl-transition);
    z-index: 999;
}

.wgl-scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.wgl-scroll-top:hover {
    background-color: #111;
    transform: translateY(-4px);
    color: #fff;
}

/* Alert Notification Flash */
.wgl-alert-notification {
    padding: 15px 0;
    color: #ffffff;
}

.wgl-alert-success { background: #198754; }
.wgl-alert-error { background: #dc3545; }

.alert-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    font-weight: 500;
}

.alert-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

/* =========================================
   About Page: Who We Are Section (Desktop Base)
   ========================================= */
.about-who-section {
    background: var(--wgl-bg-white);
}

.about-who-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-who-lead {
    font-size: 16px;
    line-height: 1.8;
    color: var(--wgl-text-body);
}

.about-who-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--wgl-text-muted);
}

.about-who-img-wrap {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(11, 32, 53, 0.12);
}

.about-who-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-who-img-wrap:hover .about-who-img {
    transform: scale(1.04);
}

/* =========================================
   Contact Page: Contact Cards Grid (Desktop Base)
   ========================================= */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-info-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--wgl-shadow-sm);
    text-align: center;
    border-bottom: 3px solid var(--wgl-primary);
    border: 1px solid rgba(11, 32, 53, 0.05);
    transition: var(--wgl-transition);
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--wgl-shadow-md);
}

.contact-card-title {
    font-size: 19px;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-card-text {
    font-size: 14px;
    color: var(--wgl-text-body);
    margin-bottom: 0;
    line-height: 1.7;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .desktop-navigation { display: none; }
    .mobile-nav-toggle { display: flex; }
}

.newsletter-input {
    width: 100%;
    padding: 12px 50px 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--wgl-radius-sm);
    color: #fff;
    font-size: 14px;
    outline: none;
}

.newsletter-submit-btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 46px;
    background: var(--wgl-accent);
    border: none;
    color: var(--wgl-primary);
    border-radius: 0 var(--wgl-radius-sm) var(--wgl-radius-sm) 0;
    cursor: pointer;
    transition: var(--wgl-transition);
}

.newsletter-submit-btn:hover {
    background: var(--wgl-bg-cream);
    color: var(--wgl-primary);
}

.wgl-footer-bottom {
    background: rgba(0, 0, 0, 0.25);
    padding: 24px 0;
    border-top: 1px solid rgba(215, 172, 77, 0.15);
    font-size: 14px;
    color: rgba(253, 252, 250, 0.60);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
}

/* Scroll To Top */
.wgl-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background-color: var(--wgl-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 6px 20px rgba(193, 14, 14, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: var(--wgl-transition);
    z-index: 999;
}

.wgl-scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.wgl-scroll-top:hover {
    background-color: #111;
    transform: translateY(-4px);
    color: #fff;
}

/* Alert Notification Flash */
.wgl-alert-notification {
    padding: 15px 0;
    color: #ffffff;
}

.wgl-alert-success { background: #198754; }
.wgl-alert-error { background: #dc3545; }

.alert-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    font-weight: 500;
}

.alert-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

/* =========================================
   About Page: Who We Are Section (Desktop Base)
   ========================================= */
.about-who-section {
    background: var(--wgl-bg-white);
}

.about-who-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-who-lead {
    font-size: 16px;
    line-height: 1.8;
    color: var(--wgl-text-body);
}

.about-who-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--wgl-text-muted);
}

.about-who-img-wrap {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(11, 32, 53, 0.12);
}

.about-who-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-who-img-wrap:hover .about-who-img {
    transform: scale(1.04);
}

/* =========================================
   Contact Page: Contact Cards Grid (Desktop Base)
   ========================================= */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-info-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--wgl-shadow-sm);
    text-align: center;
    border-bottom: 3px solid var(--wgl-primary);
    border: 1px solid rgba(11, 32, 53, 0.05);
    transition: var(--wgl-transition);
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--wgl-shadow-md);
}

.contact-card-title {
    font-size: 19px;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-card-text {
    font-size: 14px;
    color: var(--wgl-text-body);
    margin-bottom: 0;
    line-height: 1.7;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .desktop-navigation { display: none; }
    .mobile-nav-toggle { display: flex; }
}

/* On mobile (â‰¤991px) the bottom dock IS the navigation â€”
   hide the hamburger toggle, the drawer overlay & drawer panel */
@media (max-width: 991px) {
    .mobile-nav-toggle { display: none !important; }
    .mobile-drawer-overlay,
    .mobile-nav-drawer { display: none !important; }
}
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-lead { margin: 0 auto 40px; }
    .hero-buttons { justify-content: center; }
    .footer-widgets-row { grid-template-columns: repeat(2, 1fr); }
    .page-layout-with-sidebar { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* 992â€“1024px: between bottom dock breakpoint and desktop nav breakpoint
   keep hamburger accessible until desktop nav kicks in */
@media (min-width: 992px) and (max-width: 1024px) {
    .mobile-nav-toggle { display: flex !important; }
    .uiverse-mobile-dock,
    .dl-nav { display: none !important; }
}

@media (max-width: 768px) {
    .wgl-top-bar { display: none; }
    .hero-title { font-size: 38px; }
    .footer-bottom-inner { flex-direction: column; gap: 15px; text-align: center; }

    /* â”€â”€ Social icons centered across all mobile sections â”€â”€ */
    .footer-social-links,
    .top-social-links,
    .drawer-social-links,
    .team-social-overlay {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
    }

    /* â”€â”€ Services: smaller cards on mobile â”€â”€ */
    .home-services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 28px;
    }
    .home-service-thumb { height: 160px; }
    .home-service-body { padding: 18px 16px 16px; }
    .home-service-title { font-size: 17px; margin-bottom: 8px; }
    .home-service-desc { font-size: 13px; margin-bottom: 12px; }

    /* â”€â”€ Who We Are section (About Us page) â€“ Centered & Professional â”€â”€ */
    .about-who-section {
        padding: 50px 0 60px !important;
    }
    .about-who-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
        text-align: center !important;
    }
    .about-who-text {
        text-align: center !important;
        max-width: 540px;
        margin: 0 auto;
    }
    .about-who-text .section-subtitle {
        display: inline-block;
        margin: 0 auto 8px;
        text-align: center;
    }
    .about-who-text .section-title {
        font-size: 23px !important;
        line-height: 1.3 !important;
        margin: 0 auto 16px !important;
        text-align: center !important;
    }
    .about-who-lead {
        font-size: 14px !important;
        line-height: 1.7 !important;
        color: var(--wgl-text-body) !important;
        margin-bottom: 12px !important;
    }
    .about-who-desc {
        font-size: 13.5px !important;
        line-height: 1.7 !important;
        color: var(--wgl-text-muted) !important;
        margin-bottom: 22px !important;
    }
    .about-who-img-col {
        display: flex;
        justify-content: center;
    }
    .about-who-img-wrap {
        max-width: 360px;
        width: 100%;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 12px 35px rgba(11, 32, 53, 0.12);
        border: 3px solid #ffffff;
    }
    .about-who-img {
        height: 210px !important;
        width: 100% !important;
        object-fit: cover !important;
    }

    /* â”€â”€ Team cards mobile â€“ Smaller & Professional (2-Col Grid) â”€â”€ */
    .team-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }
    .team-card {
        border-radius: 14px !important;
        box-shadow: 0 4px 15px rgba(11, 32, 53, 0.06) !important;
        border: 1px solid rgba(11, 32, 53, 0.06) !important;
        overflow: hidden;
        background: #ffffff;
    }
    .team-image-wrap {
        height: 155px !important;
    }
    .team-info {
        padding: 10px 8px 12px !important;
        text-align: center !important;
    }
    .team-name {
        font-size: 14px !important;
        font-weight: 700 !important;
        margin-bottom: 2px !important;
        line-height: 1.25 !important;
    }
    .team-position {
        font-size: 10.5px !important;
        font-weight: 600 !important;
        letter-spacing: 0.5px !important;
        color: var(--wgl-accent) !important;
        text-transform: uppercase;
    }
    .team-social-overlay {
        display: none !important;
    }

    /* â”€â”€ Contact cards mobile â€“ Smaller & Professional â”€â”€ */
    .contact-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        margin-bottom: 35px !important;
    }
    .contact-info-card {
        padding: 22px 18px !important;
        border-radius: 14px !important;
        box-shadow: 0 4px 16px rgba(11, 32, 53, 0.05) !important;
        border-bottom: 3px solid var(--wgl-primary) !important;
        background: #ffffff;
        text-align: center;
    }
    .contact-info-card .service-icon-wrap {
        width: 44px !important;
        height: 44px !important;
        font-size: 20px !important;
        margin: 0 auto 10px !important;
    }
    .contact-card-title {
        font-size: 16px !important;
        margin-bottom: 6px !important;
        font-weight: 700 !important;
    }
    .contact-card-text {
        font-size: 13px !important;
        line-height: 1.6 !important;
        margin-bottom: 0 !important;
    }

    /* â”€â”€ About section: compact on mobile â”€â”€ */
    .about-creative-section { padding: 50px 0 !important; }
    .about-creative-grid { gap: 30px; }
    .about-main-img { height: 240px; }
    .about-visual-stack { padding: 10px 8px 50px 8px; }
    .about-achievement-card {
        left: 0;
        max-width: 260px;
        padding: 16px 18px;
    }
    .achievement-number { font-size: 26px; }
    .about-heading-wrap h2 { font-size: 24px !important; }
    .about-lead-desc { font-size: 13.5px; }
    .about-pillars-stack { gap: 8px; margin-bottom: 16px; }
    .about-pillar-item { padding: 12px 14px; }
    .pillar-title { font-size: 13px; }
    .pillar-desc { font-size: 12px; }
    .about-credo-card { padding: 16px; }
    .credo-text { font-size: 13px; }

    /* â”€â”€ Stats: 2-on-top, 2-on-bottom (2Ã—2 grid) â”€â”€ */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .stat-number { font-size: 38px; }
    .stat-suffix { font-size: 28px; }
    .stat-label { font-size: 13px; }

    /* â”€â”€ Testimonials: smaller on mobile â”€â”€ */
    .user-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 70px;
        margin-top: 70px;
    }
    .user-testimonial-card { padding: 60px 20px 28px; }
    .user-avatar-wrap { width: 80px; height: 80px; top: -40px; }
    .user-author-name { font-size: 16px; }
    .user-author-role { font-size: 12px; margin-bottom: 12px; }
    .user-testimonial-desc { font-size: 13px; line-height: 1.65; }
    .user-testimonial-stars { font-size: 13px; margin-bottom: 10px; }
    .user-quote-mark { font-size: 22px; margin-bottom: 10px; }

    /* â”€â”€ Tech Insights / Blog: smaller on mobile â”€â”€ */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .blog-thumb { height: 180px; }
    .blog-content { padding: 18px; }
    .blog-card-title { font-size: 16px; margin-bottom: 8px; }
    .blog-excerpt { font-size: 13px; margin-bottom: 14px; }
    .blog-meta { font-size: 12px; }

    /* â”€â”€ Footer mobile: Quick Links, Solutions & Global Headquarters on the SAME LINE â”€â”€ */
    .footer-widgets-row {
        display: grid;
        grid-template-columns: 1fr 1fr 1.15fr;
        gap: 16px 10px;
    }
    .footer-widget-col.col-about {
        grid-column: 1 / -1;
        padding-bottom: 22px;
        margin-bottom: 4px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .footer-widget-col.col-links {
        grid-column: 1;
    }
    .footer-widget-col.col-practices {
        grid-column: 2;
    }
    .footer-widget-col.col-contact {
        grid-column: 3;
        text-align: left;
        padding-top: 0;
        border-top: none;
        margin-top: 0;
    }
    .footer-widget-col.col-contact .footer-widget-title::after {
        left: 0;
        transform: none;
    }
    .footer-widget-col.col-contact .footer-contact-item {
        justify-content: flex-start;
        font-size: 11.5px;
        gap: 6px;
        margin-bottom: 8px;
        line-height: 1.35;
    }
    .footer-widget-col.col-contact .footer-contact-item i {
        font-size: 11.5px;
        width: 14px;
    }
    .footer-widget-title {
        font-size: 13.5px !important;
        margin-bottom: 12px !important;
    }
    .footer-menu a {
        font-size: 11.5px !important;
        line-height: 1.35 !important;
    }
    .footer-widget-col.col-newsletter {
        grid-column: 1 / -1;
        margin-top: 6px;
        padding-top: 6px;
        border-top: none;
        text-align: center;
    }
    /* Newsletter â€“ centered and max-width constrained */
    .footer-newsletter {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    .footer-newsletter p {
        text-align: center;
        margin-bottom: 6px !important;
        font-size: 12px;
    }
    .newsletter-input-group {
        max-width: 290px;
        margin: 0 auto;
    }
    .newsletter-input { font-size: 13px; padding: 10px 44px 10px 14px; }
}

/* â”€â”€ Floating WhatsApp Button â”€â”€ */
.wgl-whatsapp-float {
    position: fixed;
    bottom: 88px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: wgl-whatsapp-pulse 2.5s infinite;
}

.wgl-whatsapp-float:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.6);
    color: #ffffff;
}

.wgl-whatsapp-float i {
    line-height: 1;
}

.wgl-whatsapp-tooltip {
    position: absolute;
    right: 68px;
    background: #1a1a2e;
    color: #fff;
    font-family: var(--wgl-font-heading);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    padding: 7px 14px;
    border-radius: 20px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.wgl-whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #1a1a2e;
    border-right: none;
}

.wgl-whatsapp-float:hover .wgl-whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes wgl-whatsapp-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===================================================
   AUTHENTICATION & APPLICATION DESIGN SYSTEM
   =================================================== */

/* Header User Profile Menu */
.header-user-menu {
    position: relative;
    display: inline-block;
}

.btn-user-profile {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 14px 6px 8px;
    border-radius: 30px;
    color: #ffffff;
    cursor: pointer;
    font-family: var(--wgl-font-heading);
    font-size: 13.5px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.btn-user-profile:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: var(--wgl-accent);
}

    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 10px !important;
    min-width: 140px;
    cursor: default;
    user-select: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.85;
}

.client-marquee-item:hover {
    transform: translateY(-4px) scale(1.05);
    opacity: 1;
}

.client-logo-img-wrap {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.client-logo-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.client-company-name {
    font-family: var(--wgl-font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--wgl-primary);
    margin-bottom: 2px;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.client-industry-name {
    font-size: 11px;
    color: var(--wgl-text-muted);
    font-weight: 500;
    display: block;
    filter: grayscale(15%);
    transition: filter 0.3s ease;
}

.client-marquee-item:hover .client-logo-real-img {
    filter: grayscale(0%);
}

/* Footer */

.btn-portal-login {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: var(--wgl-font-heading);
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.btn-portal-login:hover {
    background: rgba(215, 172, 77, 0.15);
    border-color: var(--wgl-accent);
    color: var(--wgl-accent);
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 240px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(11, 32, 53, 0.2);
    padding: 16px;
    z-index: 1000;
    display: none;
    border: 1px solid rgba(11, 32, 53, 0.08);
}

.user-dropdown-menu.active {
    display: block;
    animation: wglDropdownPop 0.2s ease;
}

@keyframes wglDropdownPop {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.user-dropdown-header {
    display: flex;
    flex-direction: column;
}

.user-name-full {
    font-family: var(--wgl-font-heading);
    font-size: 14.5px;
    font-weight: 700;
    color: var(--wgl-text-dark);
}

.user-email-full {
    font-size: 12px;
    color: var(--wgl-text-muted);
    word-break: break-all;
}

.dropdown-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 12px 0;
}

.dropdown-logout-btn {
    width: 100%;
    background: #fee2e2;
    color: #991b1b;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.dropdown-logout-btn:hover {
    background: #fecaca;
}

/* Mobile User Status Card */
.mobile-user-status-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 14px;
    border-radius: 12px;
}

.btn-mobile-logout {
    width: 100%;
    background: #fee2e2;
    color: #991b1b;
    border: none;
    padding: 8px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Dedicated Auth Page Container */
.auth-page-section {
    background: var(--wgl-bg-cream);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.auth-card-wrapper {
    max-width: 960px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(11, 32, 53, 0.08);
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    overflow: hidden;
    border: 1px solid rgba(11, 32, 53, 0.06);
}

.auth-brand-side {
    background: linear-gradient(145deg, #0B2035 0%, #071727 100%);
    color: #ffffff;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.auth-brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(215, 172, 77, 0.15);
    border: 1px solid rgba(215, 172, 77, 0.3);
    color: var(--wgl-accent);
    font-family: var(--wgl-font-heading);
    font-size: 11.5px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auth-brand-title {
    color: #ffffff;
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 16px;
}

.auth-brand-desc {
    color: rgba(253, 252, 250, 0.75);
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.auth-brand-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auth-brand-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: rgba(253, 252, 250, 0.9);
}

.auth-brand-features .feature-item i {
    color: var(--wgl-accent);
    font-size: 15px;
}

.auth-form-side {
    padding: 50px 45px;
}

.auth-form-header {
    margin-bottom: 24px;
}

.auth-form-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 6px;
}

.auth-form-subtitle {
    font-size: 14px;
    color: var(--wgl-text-muted);
    margin: 0;
}

.auth-switch-link {
    color: var(--wgl-accent);
    font-weight: 700;
    text-decoration: underline;
}

/* Google Auth Button */
.btn-google-auth {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #ffffff;
    border: 1px solid #dadce0;
    border-radius: 12px;
    padding: 12px 18px;
    font-family: var(--wgl-font-heading);
    font-size: 14.5px;
    font-weight: 700;
    color: #3c4043;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
}

.btn-google-auth:hover {
    background: #f8fafc;
    border-color: #c2c7ce;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.google-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Auth Divider */
.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 22px 0;
    color: var(--wgl-text-muted);
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e2e8f0;
}

.auth-divider span {
    padding: 0 14px;
}

.auth-checkbox-row {
    margin: 12px 0 20px;
}

.auth-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--wgl-text-body);
    cursor: pointer;
}

.auth-submit-btn {
    width: 100%;
    padding: 14px;
    justify-content: center;
}

.auth-error-box {
    background: #fee2e2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 13.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

/* ===================================================
   MODAL DIALOG OVERLAYS
   =================================================== */
.digilance-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 32, 53, 0.7);
    backdrop-filter: blur(8px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.digilance-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.digilance-modal {
    background: #ffffff;
    border-radius: 22px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    position: relative;
    transform: scale(0.95) translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.digilance-modal-overlay.active .digilance-modal {
    transform: scale(1) translateY(0);
}

.digilance-modal.modal-lg {
    max-width: 680px;
}

.modal-close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    border: none;
    color: #475569;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.modal-close-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.auth-modal-header {
    padding: 28px 30px 18px;
    border-bottom: 1px solid #f1f5f9;
}

.modal-brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(215, 172, 77, 0.12);
    color: var(--wgl-accent);
    font-family: var(--wgl-font-heading);
    font-size: 11px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 12px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-brand-badge .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--wgl-accent);
}

.modal-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 4px;
}

.modal-subtitle {
    font-size: 13.5px;
    color: var(--wgl-text-muted);
    margin: 0;
}

.auth-modal-tabs {
    display: flex;
    padding: 0 30px;
    border-bottom: 1px solid #f1f5f9;
    background: #fafbfc;
}

/* WhatsApp Inquire Button */
.btn-inquire,
button.btn-inquire {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 22px;
    height: 42px;
    line-height: 42px;
    border: 0;
    border-radius: 100px;
    background-color: #25D366;
    color: #ffffff !important;
    font-family: var(--wgl-font-heading);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;
    vertical-align: middle;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
}

.btn-inquire i {
    font-size: 17px;
    line-height: 1;
}

.btn-inquire:hover,
button.btn-inquire:hover {
    background-color: #20ba5a;
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.55);
    transform: translateY(-2px) scale(1.04);
    color: #ffffff !important;
}

.btn-inquire:active,
button.btn-inquire:active {
    background-color: #1da851;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.4);
    transform: scale(0.98);
}

.auth-tab-btn {
    flex: 1;
    padding: 12px 10px;
    background: none;
    border: none;
    font-family: var(--wgl-font-heading);
    font-size: 14px;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.auth-tab-btn.active {
    color: var(--wgl-primary);
    border-bottom-color: var(--wgl-accent);
    background: #ffffff;
}

.auth-modal-body {
    padding: 24px 30px 30px;
    overflow-y: auto;
}

/* ===================================================
   GOOGLE ONE-TAP / ACCOUNT PICKER MODAL
   =================================================== */
.google-account-picker-modal {
    background: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transform: scale(0.95);
    transition: transform 0.25s ease;
}

.digilance-modal-overlay.active .google-account-picker-modal {
    transform: scale(1);
}

.google-picker-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    border-bottom: 1px solid #e8eaed;
}

.google-icon-sm {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.google-picker-title-wrap {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.google-picker-title {
    font-family: 'Open Sans', Roboto, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #202124;
    line-height: 1.2;
}

.google-picker-sub {
    font-size: 12px;
    color: #5f6368;
}

.google-picker-close {
    background: none;
    border: none;
    font-size: 22px;
    color: #5f6368;
    cursor: pointer;
    padding: 0 4px;
}

.google-picker-body {
    padding: 20px;
}

.google-choose-text {
    font-size: 13px;
    color: #5f6368;
    margin-bottom: 14px;
}

.google-account-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.google-account-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #dadce0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.google-account-item:hover {
    background: #f1f3f4;
    border-color: #4285F4;
}

.google-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.google-account-info {
    display: flex;
    flex-direction: column;
}

.google-name {
    font-size: 13.5px;
    font-weight: 600;
    color: #202124;
}

.google-email {
    font-size: 12px;
    color: #5f6368;
}

.google-custom-input-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 14px;
}

.google-or-custom {
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    display: block;
    margin-bottom: 8px;
}

.google-custom-row {
    display: flex;
    gap: 8px;
}

.google-custom-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 13px;
    outline: none;
}

.google-custom-btn {
    background: #4285F4;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.google-picker-footer {
    font-size: 11px;
    color: #70757a;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 768px) {
    .auth-card-wrapper {
        grid-template-columns: 1fr;
    }
    .auth-brand-side {
        padding: 35px 25px;
    }
    .auth-form-side {
        padding: 35px 25px;
    }
    .auth-modal-header {
        padding: 22px 20px 14px;
    }
    .auth-modal-body {
        padding: 20px;
    }
    .auth-modal-tabs {
        padding: 0 20px;
    }
}

/* â”€â”€ Clients Marquee Real Image Styling â”€â”€ */
.client-logo-real-img {
    height: 80px !important;
    max-height: 80px !important;
    width: auto !important;
    max-width: 260px !important;
    object-fit: contain !important;
    display: block !important;
    filter: grayscale(8%) contrast(102%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.client-marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 8px !important;
    flex-shrink: 0;
    user-select: none;
}

.client-marquee-item:hover .client-logo-real-img {
    filter: grayscale(0%) contrast(100%);
    transform: scale(1.04);
}

/* =========================================
   Circular Services Button â€” Clean Design
   Outer ring: "ALL SERVICES" label
   Center white disc: arrow icon only
   ========================================= */
.button {
  cursor: pointer;
  border: none;
  background: #7808d0;
  color: #fff !important;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: visible;          /* Allow the pseudo-element ring label to be outside */
  position: relative;
  display: grid;
  place-content: center;
  margin: 0 auto;
  text-decoration: none !important;
  transition: background 300ms, transform 200ms, box-shadow 300ms;
  box-shadow: 0 10px 30px rgba(120, 8, 208, 0.28);
}

/* "ALL SERVICES" ring label â€” sits on the outer edge of the circle */
.button::before {
  content: "ALL SERVICES";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wgl-font-heading, 'Outfit', sans-serif);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  /* Sit at the very top of the circle using clip */
  padding-bottom: 90px;          /* push text to top arc area */
  background: transparent;
  pointer-events: none;
  transition: color 300ms;
}

/* White center disc â€” contains only the arrow */
.button__circle {
  position: relative;
  width: 68px;
  height: 68px;
  overflow: hidden;
  background: #fff;
  color: #7808d0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: all 300ms ease;
  z-index: 2;
}

.button__icon {
  width: 16px;
  height: 17px;
  display: block;
  transition: transform 0.3s ease-in-out;
}

.button__icon--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

/* Hover states */
.button:hover {
  background: #0b1a2b;
  transform: scale(1.06);
  box-shadow: 0 14px 35px rgba(11, 26, 43, 0.35);
}

.button:hover::before {
  color: rgba(255, 255, 255, 0.9);
}

.button:hover .button__circle {
  color: #0b1a2b;
}

.button:hover .button__icon:first-child {
  transform: translate(150%, -150%);
}

.button:hover .button__icon--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

/* Quick Recognition Pills */
.services-recognition-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 55px;
  gap: 22px;
  width: 100%;
}

.services-recognition-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 860px;
}

.recognition-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  background: #f4f6fa;
  border: 1px solid rgba(11, 32, 53, 0.09);
  border-radius: 30px;
  font-family: var(--wgl-font-heading, 'Outfit', sans-serif);
  font-size: 13px;
  font-weight: 600;
  color: var(--wgl-text-dark, #0b2035);
  text-decoration: none !important;
  transition: all 0.25s ease;
}

.recognition-pill i {
  font-size: 13px;
  color: #7808d0;
  transition: transform 0.25s ease;
}

.recognition-pill:hover {
  background: #7808d0;
  color: #ffffff !important;
  border-color: #7808d0;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(120, 8, 208, 0.25);
}

.recognition-pill:hover i {
  color: #ffffff;
  transform: scale(1.15);
}

.recognition-pill.pill-featured {
  background: rgba(120, 8, 208, 0.06);
  border-color: rgba(120, 8, 208, 0.20);
}

/* =========================================
   From Uiverse.io by adamgiebl â€” All Services Button
   ========================================= */
.cssbuttons-io-button {
  background: #a370f0;
  color: white;
  font-family: var(--wgl-font-heading, inherit);
  padding: 0.35em;
  padding-left: 1.2em;
  font-size: 17px;
  font-weight: 600;
  border-radius: 0.9em;
  border: none;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  box-shadow: inset 0 0 1.6em -0.6em #714da6;
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding-right: 3.3em;
  cursor: pointer;
  text-decoration: none !important;
  transition: background 300ms, transform 200ms;
}

.cssbuttons-io-button .icon {
  background: white;
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 0.7em;
  box-shadow: 0.1em 0.1em 0.6em 0.2em #7b52b9;
  right: 0.3em;
  transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
  width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon svg {
  width: 1.1em;
  transition: transform 0.3s;
  color: #7b52b9;
}

.cssbuttons-io-button:hover .icon svg {
  transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
  transform: scale(0.95);
}

/* =========================================
   Who We Are â€” Clean Value List
   ========================================= */
.about-values-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid rgba(11, 32, 53, 0.08);
  border-radius: 12px;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-value-item:hover {
  box-shadow: 0 6px 22px rgba(120, 8, 208, 0.1);
  border-color: rgba(120, 8, 208, 0.2);
}

.value-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: rgba(120, 8, 208, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #7808d0;
  margin-top: 2px;
  transition: background 0.25s ease;
}

.about-value-item:hover .value-icon {
  background: #7808d0;
  color: #fff;
}

.about-value-item div strong {
  display: block;
  font-family: var(--wgl-font-heading, 'Outfit', sans-serif);
  font-size: 15px;
  font-weight: 700;
  color: #0b2035;
  margin-bottom: 4px;
}

.about-value-item div p {
  font-size: 14px;
  line-height: 1.6;
  color: #5a6a7a;
  margin: 0;
}

/* =========================================
   From Uiverse.io by xueyuantan â€” Pill CTA Buttons
   ========================================= */
.uy-pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 9em;
  height: 3em;
  border-radius: 30em;
  font-size: 15px;
  font-family: var(--wgl-font-heading, inherit);
  font-weight: 600;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
  background: #f0f0f0;
  color: #0b2035;
  text-decoration: none !important;
  cursor: pointer;
  transition: color 0.3s ease;
}

.uy-pill-btn::before {
  content: '';
  width: 0;
  height: 3em;
  border-radius: 30em;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, #7808d0 0%, #a370f0 100%);
  transition: 0.4s ease;
  display: block;
  z-index: -1;
}

.uy-pill-btn:hover::before {
  width: 9em;
}

.uy-pill-btn:hover {
  color: #ffffff !important;
}

.about-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
}

/* =========================================
   Breadcrumb â€” remove ol numbering
   ========================================= */
.breadcrumb-list {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0;
}

/* =========================================
   Page CTA Section â€” bg image with overlay
   ========================================= */
.page-cta-section {
  position: relative;
  padding: 90px 0;
  background-image:
    linear-gradient(rgba(11, 26, 43, 0.78), rgba(11, 26, 43, 0.85)),
    url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1920&auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  overflow: hidden;
}

.page-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(120, 8, 208, 0.35) 0%, rgba(11, 26, 43, 0.5) 100%);
  pointer-events: none;
}

.page-cta-inner {
  position: relative;
  z-index: 2;
}

.page-cta-title {
  font-family: var(--wgl-font-heading, 'Outfit', sans-serif);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.page-cta-desc {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* Wide variant of the pill button for CTA sections */
.uy-pill-btn--wide {
  width: auto;
  padding: 0 2.2em;
  font-size: 16px;
  height: 3.2em;
}

.uy-pill-btn--wide::before {
  width: 0;
  height: 3.2em;
}

.uy-pill-btn--wide:hover::before {
  width: 100%;
}

/* =========================================
   Footer Background Image & Legibility
   ========================================= */
.wgl-footer {
  position: relative !important;
  background-color: #0b1a2b !important;
  background-image: 
    linear-gradient(rgba(11, 26, 43, 0.86), rgba(11, 26, 43, 0.93)),
    url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1920&auto=format&fit=crop&q=80') !important;
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
  border-top: 3px solid var(--wgl-accent) !important;
  color: rgba(255, 255, 255, 0.88) !important;
  overflow: hidden;
}

.footer-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(120, 8, 208, 0.28) 0%, rgba(11, 26, 43, 0.50) 100%);
  pointer-events: none;
  z-index: 1;
}

.wgl-footer-top,
.wgl-footer-bottom {
  position: relative;
  z-index: 2;
}

.footer-widget-title {
  color: #ffffff !important;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.footer-desc {
  color: rgba(255, 255, 255, 0.84) !important;
  font-size: 14px;
  line-height: 1.75;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.footer-menu li a {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 14px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  transition: all 0.2s ease;
}

.footer-menu li a:hover {
  color: var(--wgl-accent) !important;
  transform: translateX(4px);
}

.footer-contact-item {
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 14px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.footer-contact-item i {
  color: #f7b731 !important;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.6));
}

.social-icon-btn {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.social-icon-btn:hover {
  background: var(--wgl-accent) !important;
  border-color: var(--wgl-accent) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(120, 8, 208, 0.4);
}

.wgl-footer-bottom {
  background: rgba(6, 14, 24, 0.78) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.copyright-text {
  color: rgba(255, 255, 255, 0.82) !important;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.76) !important;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #ffffff !important;
}

/* =========================================
   Digilance Global Premium Error Pages Suite
   ========================================= */
.digi-error-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 20px;
    background: radial-gradient(circle at 50% 20%, rgba(37, 99, 235, 0.05) 0%, rgba(11, 26, 43, 0.02) 60%, transparent 100%), #f8fafc;
    position: relative;
    overflow: hidden;
}

.digi-error-ambient {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.digi-error-ambient-1 {
    top: -100px;
    left: -100px;
    background: #2563eb;
}

.digi-error-ambient-2 {
    bottom: -100px;
    right: -100px;
    background: #7c3aed;
}

.digi-error-card {
    position: relative;
    z-index: 2;
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 55px 45px;
    box-shadow: 0 25px 60px -15px rgba(11, 26, 43, 0.12), 0 0 0 1px rgba(11, 26, 43, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.digi-error-card:hover {
    transform: translateY(-2px);
}

.digi-error-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--wgl-font-sub);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 100px;
    margin-bottom: 22px;
}

/* Badge Themes */
.badge-theme-blue { background: rgba(37, 99, 235, 0.1); color: #1d4ed8; border: 1px solid rgba(37, 99, 235, 0.25); }
.badge-theme-red { background: rgba(220, 38, 38, 0.1); color: #b91c1c; border: 1px solid rgba(220, 38, 38, 0.25); }
.badge-theme-amber { background: rgba(217, 119, 6, 0.1); color: #b45309; border: 1px solid rgba(217, 119, 6, 0.25); }
.badge-theme-indigo { background: rgba(99, 102, 241, 0.1); color: #4f46e5; border: 1px solid rgba(99, 102, 241, 0.25); }
.badge-theme-teal { background: rgba(13, 148, 136, 0.1); color: #0f766e; border: 1px solid rgba(13, 148, 136, 0.25); }
.badge-theme-purple { background: rgba(124, 58, 237, 0.1); color: #6d28d9; border: 1px solid rgba(124, 58, 237, 0.25); }
.badge-theme-rose { background: rgba(225, 29, 72, 0.1); color: #be123c; border: 1px solid rgba(225, 29, 72, 0.25); }
.badge-theme-sky { background: rgba(2, 132, 199, 0.1); color: #0369a1; border: 1px solid rgba(2, 132, 199, 0.25); }

.digi-error-code {
    font-family: var(--wgl-font-heading);
    font-size: 108px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 15px;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.code-gradient-blue { background-image: linear-gradient(135deg, #0b1a2b 0%, #2563eb 100%); }
.code-gradient-red { background-image: linear-gradient(135deg, #7f1d1d 0%, #dc2626 100%); }
.code-gradient-amber { background-image: linear-gradient(135deg, #78350f 0%, #d97706 100%); }
.code-gradient-indigo { background-image: linear-gradient(135deg, #312e81 0%, #6366f1 100%); }
.code-gradient-teal { background-image: linear-gradient(135deg, #134e4a 0%, #0d9488 100%); }
.code-gradient-purple { background-image: linear-gradient(135deg, #4c1d95 0%, #7c3aed 100%); }
.code-gradient-rose { background-image: linear-gradient(135deg, #881337 0%, #e11d48 100%); }
.code-gradient-sky { background-image: linear-gradient(135deg, #0c4a6e 0%, #0284c7 100%); }

.digi-error-title {
    font-family: var(--wgl-font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--wgl-text-dark);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.digi-error-lead {
    font-family: var(--wgl-font-body);
    font-size: 16px;
    line-height: 1.75;
    color: var(--wgl-text-body);
    max-width: 580px;
    margin: 0 auto 28px;
}

.digi-error-reason-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px 20px;
    margin: 0 auto 32px;
    max-width: 580px;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #475569;
}

.digi-error-reason-box i {
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.digi-error-reason-box.reason-blue i { color: #2563eb; }
.digi-error-reason-box.reason-red i { color: #dc2626; }
.digi-error-reason-box.reason-amber i { color: #d97706; }
.digi-error-reason-box.reason-teal i { color: #0d9488; }
.digi-error-reason-box.reason-purple i { color: #7c3aed; }
.digi-error-reason-box.reason-rose i { color: #e11d48; }

.digi-error-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.digi-error-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 100px;
    background: #0b1a2b;
    color: #ffffff !important;
    font-family: var(--wgl-font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    border: 2px solid #0b1a2b;
    box-shadow: 0 10px 20px rgba(11, 26, 43, 0.2);
    transition: all 0.25s ease;
    cursor: pointer;
}

.digi-error-btn-primary:hover {
    background: #2563eb;
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.35);
}

.digi-error-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 100px;
    background: #ffffff;
    color: var(--wgl-text-dark) !important;
    font-family: var(--wgl-font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    border: 2px solid #e2e8f0;
    transition: all 0.25s ease;
    cursor: pointer;
}

.digi-error-btn-secondary:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
    transform: translateY(-2px);
}

.digi-error-quicklinks {
    padding-top: 25px;
    border-top: 1px solid #f1f5f9;
}

.digi-error-quicklinks-title {
    font-family: var(--wgl-font-sub);
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #94a3b8;
    margin-bottom: 12px;
    font-weight: 700;
}

.digi-error-nav-pills {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.digi-error-nav-pills a {
    font-family: var(--wgl-font-heading);
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    padding: 5px 14px;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    transition: all 0.2s ease;
}

.digi-error-nav-pills a:hover {
    color: #0b1a2b;
    background: #e2e8f0;
    border-color: #cbd5e1;
}

.digi-error-meta-footer {
    margin-top: 25px;
    font-size: 12px;
    color: #94a3b8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 767px) {
    .digi-error-card {
        padding: 40px 22px;
        border-radius: 18px;
    }
    .digi-error-code {
        font-size: 80px;
    }
    .digi-error-title {
        font-size: 25px;
    }
    .digi-error-actions {
        flex-direction: column;
        width: 100%;
    }
    .digi-error-btn-primary,
    .digi-error-btn-secondary {
        width: 100%;
    }
    .digi-error-meta-footer {
        flex-direction: column;
        text-align: center;
    }
}


/* â•”â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•—
   â•‘   Digilance Liquid Nav  v5.0                            â•‘
   â•‘   Flat bar at rest â†’ arch opens on hover                â•‘
   â•‘   Bubble inside bar (white for active) â†’ springs up     â•‘
   â•šâ•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Outer shell â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.dl-nav {
    position: fixed;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: none;
    width: 420px;
    max-width: calc(100vw - 20px);
    height: 64px;
    background: transparent;
    pointer-events: none;
    /* allow bubble & arch to overflow above bar */
    overflow: visible;
}

/* â”€â”€ SVG bar (flat â†’ arch via JS) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.dl-nav__bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: visible;
}

/* â”€â”€ Tab list â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.dl-nav__list {
    position: relative;
    display: flex;
    width: 100%; height: 100%;
    margin: 0; padding: 0;
    list-style: none;
    z-index: 5;
    pointer-events: all;
}

/* â”€â”€ Individual tab â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.dl-nav__item {
    position: relative;
    flex: 1;
    height: 100%;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dl-nav__link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; height: 100%;
    text-decoration: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    overflow: visible;
}

/* â”€â”€ Bubble â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ *
 *   At rest: centred inside bar                                *
 *     â€“ active   â†’ white circle, dark icon                    *
 *     â€“ inactive â†’ transparent, muted icon                    *
 *   On hover: springs UP above bar through the arch           *
 * â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.dl-nav__bubble {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    /* Rest: transparent, stays inside bar */
    background: transparent;
    color: rgba(255, 255, 255, 0.50);
    transform: translateY(0);
    transition:
        transform  0.40s cubic-bezier(0.34, 1.55, 0.64, 1),
        background 0.28s ease,
        color      0.28s ease,
        box-shadow 0.28s ease;
    z-index: 12;
    flex-shrink: 0;
}

.dl-nav__bubble svg {
    width: 22px;
    height: 22px;
    display: block;
    stroke: currentColor;
    fill: none;
    transition: transform 0.3s ease, stroke 0.3s ease;
}

/* â”€â”€ Active at rest: white circle inside bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.dl-nav__item.is-active .dl-nav__bubble {
    background: #ffffff;
    color: #0b1a2b;
    box-shadow:
        0 4px 14px rgba(0, 0, 0, 0.30),
        0 1px 4px  rgba(0, 0, 0, 0.20);
    /* stays translateY(0) â€” inside bar */
}

.dl-nav__item.is-active .dl-nav__bubble svg {
    stroke: #0b1a2b;
    transform: scale(1.06);
}

/* â”€â”€ Hover (any tab): bubble rises through the arch â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.dl-nav__item:hover .dl-nav__bubble {
    transform: translateY(-30px);
    background: #ffffff;
    color: #0b1a2b;
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.38),
        0 3px  10px rgba(0, 0, 0, 0.22);
}

.dl-nav__item:hover .dl-nav__bubble svg {
    stroke: #0b1a2b;
    transform: scale(1.10);
}

/* ── Label: hidden at rest, fades in inside bar on hover/active ─ */
.dl-nav__label {
    position: absolute;
    bottom: 7px;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.45px;
    color: rgba(255, 255, 255, 0.92);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity   0.22s ease,
        transform 0.26s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
    line-height: 1;
    z-index: 6;
}

.dl-nav__item:hover .dl-nav__label,
.dl-nav__item.is-active .dl-nav__label {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* â”€â”€ Entrance animation â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes dlNavSlideUp {
    from { transform: translateX(-50%) translateY(120%); opacity: 0; }
    to   { transform: translateX(-50%) translateY(0);    opacity: 1; }
}

/* â”€â”€ Mobile (â‰¤991 px) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 991px) {
    .dl-nav {
        display: block !important;
        animation: dlNavSlideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
    }

    body {
        padding-bottom: calc(86px + env(safe-area-inset-bottom, 0px));
    }

    .wgl-whatsapp-float {
        bottom: 88px !important;
        right:  14px !important;
        width:  46px !important;
        height: 46px !important;
        font-size: 22px !important;
    }

    .wgl-scroll-top {
        bottom: 88px !important;
        right:  68px !important;
    }

    .dl-floating-review-trigger {
        bottom: 98px !important;
    }
}

/* â”€â”€ Small screens (â‰¤380 px) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 380px) {
    .dl-nav {
        width: calc(100vw - 16px);
        height: 58px;
        bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    }
    .dl-nav__bubble     { width: 42px; height: 42px; }
    .dl-nav__bubble svg { width: 19px; height: 19px; }
    .dl-nav__item:hover .dl-nav__bubble {
        transform: translateY(-26px);
    }
}

/* â”€â”€ Landscape â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-height: 500px) and (max-width: 991px) {
    .dl-nav { height: 54px; bottom: calc(6px + env(safe-area-inset-bottom, 0px)); }
    .dl-nav__item:hover .dl-nav__bubble { transform: translateY(-22px); }
}
