@import url('https://fonts.googleapis.com/css2?family=Overpass+Mono:wght@300..700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');


:root {
    --primary-color: #077FFF;
    --primary-dark: #021C8B;
    --dark-bg: #0f1115;
    --darker-bg: #08090b;
    --lighter-bg: #F1F1F1;
    --card-bg: #161920;
    --text-grey: #a0a0a0;
    --txt-cyan: #348AA7;
    --txt-blue: #0790E8;

    --primary-blue: #3A66FF;
    --primary-blue-dark: #243FB8;
    --primary-blue-light: #5FA8FF;
    --accent: #1EC8FF;
    --accent-dark: #00B4F5;
}



.txt-accent {
    color: var(--accent);
}

.txt-gradient {
    color: #2773a0;
    background-image: linear-gradient(45deg, #2773a0, #05c9ee 50%, #01a74c 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

body {
    font-family: 'Sora', sans-serif;
    letter-spacing: 1px;
    font-size: clamp(0.9rem, 1vw, 1rem);
    font-weight: 200;
    background-color: var(--dark-bg);
    color: #fff;
    overflow-x: hidden;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Sora', sans-serif;
}

body {
    font-size: clamp(12px, 12.5px + 0.3vw, 14px);
    line-height: 1.6;
    font-weight: 200 !important;
}

h1 {
    font-size: clamp(40px, 28px + 2.5vw, 72px);
    line-height: 1.2;
    font-weight: 100 !important;
}

h2 {
    font-size: clamp(32px, 24px + 2vw, 56px);
    line-height: 1.25;
    font-weight: 100 !important;
}

h3 {
    font-size: clamp(26px, 20px + 1.6vw, 44px);
    line-height: 1.3;
    font-weight: 200 !important;
}

h4 {
    font-size: clamp(22px, 18px + 1.2vw, 34px);
    line-height: 1.35;
    font-weight: 200 !important;
}

h5 {
    font-size: clamp(18px, 16px + 0.9vw, 26px);
    line-height: 1.4;
    font-weight: 200 !important;
}

h6 {
    font-size: clamp(16px, 14px + 0.6vw, 20px);
    line-height: 1.45;
    font-weight: 200 !important;
}

.lead {
    font-size: 1rem !important;
}

.txt-cyan {
    color: #7ACDFF;
}

/* Page Hero */
.page-hero {
    position: relative;
    padding: 10rem 0 5rem;
    background:
        radial-gradient(50% 60% at 50% 0%, rgba(52, 138, 167, 0.18) 0%, rgba(52, 138, 167, 0) 72%),
        linear-gradient(180deg, #0f141c 0%, #090d14 100%);
}

/* Policy Pages */
.policy-content .policy-title {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: clamp(18px, 16px + 0.9vw, 26px);
}

.policy-content .policy-subtitle {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: clamp(16px, 14px + 0.6vw, 20px);
}

.policy-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.policy-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.policy-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.policy-content address {
    font-style: normal;
    line-height: 1.8;
}

/* Buttons */
.btn-primary {
    font-family: "Overpass Mono", monospace;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    background-color: var(--primary-blue-dark);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    /* background-color: var(--primary-blue-dark); */
    box-shadow: 1px 1px 10px 1px rgba(192, 247, 255, 0.75);
    -webkit-box-shadow: 1px 1px 10px 1px rgba(192, 247, 255, 0.75);
    -moz-box-shadow: 1px 1px 10px 1px rgba(192, 247, 255, 0.75);
}

.btn-white-outline {
    font-family: "Overpass Mono", monospace;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    transition: all 0.3s ease;
}

.btn-white-outline:hover {
    box-shadow: 1px 1px 10px 1px rgba(192, 247, 255, 0.75);
    -webkit-box-shadow: 1px 1px 10px 1px rgba(192, 247, 255, 0.75);
    -moz-box-shadow: 1px 1px 10px 1px rgba(192, 247, 255, 0.75);
}



/* Header / Logo Cutout */
.logo-container {
    border-bottom-right-radius: 30px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

/* Navbar adjustments */
.navbar {
    background: transparent !important;
    /* padding: 10px 5px 10px 5px; */
    box-shadow: none !important;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.navbar.scrolled {
    background: #000;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
    transition: all 0.3s ease;
    margin-top: 0px;
    margin-bottom: 0px;
    filter: drop-shadow(0px 0.5px 1px #a9a9a9);
}

.logo-scrolled {
    display: none;
}

.navbar.scrolled .logo-default {
    display: none;
}

.navbar.scrolled .logo-scrolled {
    display: block;
}

.navbar-brand {
    width: 200px;
}

.navbar-brand h3 {
    font-family: "Overpass Mono", monospace;
    font-weight: 500;
    font-size: 25px;
    letter-spacing: 5.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8) !important;
    transition: color 0.3s;
}

.navbar-nav {
    padding: 10px 10px 5px 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 20px;
}

/* Navbar toggler icon styling */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.toggler-icon-open,
.toggler-icon-close {
    transition: opacity 0.3s ease;
}

.toggler-icon-close {
    display: none;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon-open {
    display: none;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon-close {
    display: inline-block;
}

.navbar-toggler img {
    filter: brightness(0) invert(1);
}

/* ── MOBILE OFF-CANVAS NAV ── */
.mobile-nav-btn {
    background: transparent;
    border: none;
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
    cursor: pointer;
    line-height: 1;
}

.mobile-nav-btn span {
    font-family: "Overpass Mono", monospace;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}


.mobile-nav-btn img {
    filter: brightness(0) invert(1);
}

.mobile-nav-offcanvas {
    width: min(440px, 100vw) !important;
    background: rgba(8, 10, 18, 0.72);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-offcanvas .offcanvas-header {
    padding: 0.5rem 1.75rem;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav-close {
    background: transparent;
    border: none;
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
    cursor: pointer;
    line-height: 1;
}
.mobile-nav-close span {
    font-family: "Overpass Mono", monospace;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}
.mobile-nav-close img {
    filter: brightness(0) invert(1);
}

.mobile-nav-close1 {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    width: 2.3rem;
    height: 2.3rem;
    min-width: 2.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    padding: 0;
    margin-left: auto;
}

.mobile-nav-close1:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.mobile-nav-offcanvas .offcanvas-body {
    padding: 0 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow-y: auto;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 0 1.5rem;
    width: 100%;
}

.mobile-nav-item {
    font-family: "Overpass Mono", monospace;
    font-size: clamp(2.2rem, 9vw, 3.2rem);
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    padding: 0.95rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s ease;
    display: block;
    text-align: center;
    position: relative;
    isolation: isolate;
    border-radius: 20px;
}

.mobile-nav-item::before {
    content: '';
    position: absolute;
    inset: 3px 0;
    border-radius: 18px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.14) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        inset 0 -1px 0 rgba(255, 255, 255, 0.06),
        0 10px 28px rgba(0, 0, 0, 0.18);
    transform: scale(0.78);
    opacity: 0;
    transition:
        transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
        opacity 0.22s ease;
    z-index: -1;
    pointer-events: none;
}

.mobile-nav-item:hover::before {
    transform: scale(1);
    opacity: 1;
}

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

.mobile-nav-item:hover {
    color: #fff;
    opacity: 1;
}

.mobile-nav-item.active {
    color: var(--primary-color);
}

.mobile-nav-sublabel {
    font-family: "Overpass Mono", monospace;
    font-size: 0.95rem;
    font-weight: 200;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 0.75rem;
    margin-top: 0;
    text-align: center;
    width: 100%;
}

.mobile-nav-pill {
    display: inline-block;
    padding: 0.28rem 0.7rem;
    border: 1.5px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    font-family: "Overpass Mono", monospace;
    font-size: 0.77rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.mobile-nav-pill:hover {
    background-color: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.25);
}

.mobile-nav-services {
    width: 100%;
}

.mobile-nav-services .d-flex {
    justify-content: center;
}

.mobile-nav-cta {
    padding-top: 2rem;
    margin-top: auto;
    width: 100%;
}

/* Mobile menu styling */
@media (max-width: 991.98px) {
    .navbar-nav {
        text-align: center;
        padding: 20px 10px;
    }

    .nav-link {
        font-size: 16px !important;
        padding: 12px 10px !important;
    }
}

.nav-link {
    font-family: "Overpass Mono", monospace;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8) !important;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
    border-bottom: 2px solid var(--primary-color);
    background-color: #181b22;
    padding: 5px 10px 5px 10px;
    border-radius: 15px;
}

.hero {
    margin-top: 15px;
    padding: 10px;
}

.hero-img img {
    --r: 20px;
    /* radius */
    --s: 20px;
    /* size of inner curve */
    --x: 50px;
    /* horizontal offset (no percentange) */
    --y: 50px;
    /* vertical offset (no percentange) */

    width: 100%;
    height: 94vh;
    object-fit: cover;
    border-radius: var(--r);

}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.hero-overlay .container {
    pointer-events: auto;
}

.hero-overlay h1 {
    font-size: clamp(2.5rem, 5vw, 6.5rem);
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    -webkit-text-stroke-width: 1.4px;
    -webkit-text-stroke-color: var(--aigence-white, #FFFFFF);
}

/* End of Curved Notch CSS*/
.curve div {
    --r: 20px;
    /* radius */
    --s: 15px;
    /* size of inner curve */
    --x: 15px;
    /* horizontal offset (no percentange) */
    --y: 15px;
    /* vertical offset (no percentange) */

    /* width: 100%; */
    height: auto;
    object-fit: cover;
    border-radius: var(--r);
}

.custom-img img {
    --r: 20px;
    /* radius */
    --s: 15px;
    /* size of inner curve */
    --x: 15px;
    /* horizontal offset (no percentange) */
    --y: 15px;
    /* vertical offset (no percentange) */

    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--r);
}


.top-left {
    --_m: /calc(2*var(--r)) calc(2*var(--r)) radial-gradient(#000 70%, #0000 72%);
    --_g: conic-gradient(at var(--r) var(--r), #000 75%, #0000 0);
    --_d: (var(--s) + var(--r));
    mask:
        calc(var(--_d) + var(--x)) 0 var(--_m),
        0 calc(var(--_d) + var(--y)) var(--_m),
        radial-gradient(var(--s) at 0 0, #0000 99%, #000 calc(100% + 1px)) calc(var(--r) + var(--x)) calc(var(--r) + var(--y)),
        var(--_g) calc(var(--_d) + var(--x)) 0,
        var(--_g) 0 calc(var(--_d) + var(--y));
    mask-repeat: no-repeat;
    /* background-color: #00f2fe; */
}

.top-right {
    --_m: /calc(2*var(--r)) calc(2*var(--r)) radial-gradient(#000 70%, #0000 72%);
    --_g: conic-gradient(at calc(100% - var(--r)) var(--r), #0000 25%, #000 0);
    --_d: (var(--s) + var(--r));
    mask:
        calc(100% - var(--_d) - var(--x)) 0 var(--_m),
        100% calc(var(--_d) + var(--y)) var(--_m),
        radial-gradient(var(--s) at 100% 0, #0000 99%, #000 calc(100% + 1px)) calc(-1*var(--r) - var(--x)) calc(var(--r) + var(--y)),
        var(--_g) calc(-1*var(--_d) - var(--x)) 0,
        var(--_g) 0 calc(var(--_d) + var(--y));
    mask-repeat: no-repeat;
}

.bottom-left {
    --_m: /calc(2*var(--r)) calc(2*var(--r)) radial-gradient(#000 70%, #0000 72%);
    --_g: conic-gradient(from 180deg at var(--r) calc(100% - var(--r)), #0000 25%, #000 0);
    --_d: (var(--s) + var(--r));
    mask:
        calc(var(--_d) + var(--x)) 100% var(--_m),
        0 calc(100% - var(--_d) - var(--y)) var(--_m),
        radial-gradient(var(--s) at 0 100%, #0000 99%, #000 calc(100% + 1px)) calc(var(--r) + var(--x)) calc(-1*var(--r) - var(--y)),
        var(--_g) calc(var(--_d) + var(--x)) 0,
        var(--_g) 0 calc(-1*var(--_d) - var(--y));
    mask-repeat: no-repeat;
}

.bottom-right {
    --_m: /calc(2*var(--r)) calc(2*var(--r)) radial-gradient(#000 70%, #0000 72%);
    --_g: conic-gradient(from 90deg at calc(100% - var(--r)) calc(100% - var(--r)), #0000 25%, #000 0);
    --_d: (var(--s) + var(--r));
    mask:
        calc(100% - var(--_d) - var(--x)) 100% var(--_m),
        100% calc(100% - var(--_d) - var(--y)) var(--_m),
        radial-gradient(var(--s) at 100% 100%, #0000 99%, #000 calc(100% + 1px)) calc(-1*var(--r) - var(--x)) calc(-1*var(--r) - var(--y)),
        var(--_g) calc(-1*var(--_d) - var(--x)) 0,
        var(--_g) 0 calc(-1*var(--_d) - var(--y));
    mask-repeat: no-repeat;
}

.top-left-right {
    --_m: /calc(2*var(--r)) calc(2*var(--r)) radial-gradient(#000 70%, #0000 72%);
    --_d: (var(--s) + var(--r));

    /* Conic gradients for fillers */
    --_g_tl: conic-gradient(at var(--r) var(--r), #000 75%, #0000 0);
    --_g_tr: conic-gradient(at calc(100% - var(--r)) var(--r), #0000 25%, #000 0);

    mask:
        /* --- LEFT HALF --- */
        radial-gradient(var(--s) at 0 0, #0000 99%, #000 calc(100% + 1px)) calc(var(--r) + var(--x)) calc(var(--r) + var(--y)) / 51% 100% no-repeat,
        calc(var(--_d) + var(--x)) 0 var(--_m) no-repeat,
        0 calc(var(--_d) + var(--y)) var(--_m) no-repeat,
        var(--_g_tl) calc(var(--_d) + var(--x)) 0 / 51% 100% no-repeat,
        var(--_g_tl) 0 calc(var(--_d) + var(--y)) / 51% 100% no-repeat,

        /* --- RIGHT HALF --- */
        radial-gradient(var(--s) at 100% 0, #0000 99%, #000 calc(100% + 1px)) right calc(var(--r) + var(--x)) top calc(var(--r) + var(--y)) / 51% 100% no-repeat,
        right calc(var(--_d) + var(--x)) top 0 var(--_m) no-repeat,
        right 0 top calc(var(--_d) + var(--y)) var(--_m) no-repeat,
        var(--_g_tr) right calc(var(--_d) + var(--x)) top 0 / 51% 100% no-repeat,
        var(--_g_tr) right 0 top calc(var(--_d) + var(--y)) / 51% 100% no-repeat;
}

.bottom-left-right {
    --_m: /calc(2*var(--r)) calc(2*var(--r)) radial-gradient(#000 70%, #0000 72%);
    --_d: (var(--s) + var(--r));

    /* Conic gradients for fillers */
    --_g_bl: conic-gradient(from 180deg at var(--r) calc(100% - var(--r)), #0000 25%, #000 0);
    --_g_br: conic-gradient(from 90deg at calc(100% - var(--r)) calc(100% - var(--r)), #0000 25%, #000 0);

    mask:
        /* --- LEFT HALF --- */
        radial-gradient(var(--s) at 0 100%, #0000 99%, #000 calc(100% + 1px)) calc(var(--r) + var(--x)) calc(-1*var(--r) - var(--y)) / 51% 100% no-repeat,
        calc(var(--_d) + var(--x)) 100% var(--_m) no-repeat,
        0 calc(100% - var(--_d) - var(--y)) var(--_m) no-repeat,
        var(--_g_bl) calc(var(--_d) + var(--x)) 0 / 51% 100% no-repeat,
        var(--_g_bl) 0 calc(-1*var(--_d) - var(--y)) / 51% 100% no-repeat,

        /* --- RIGHT HALF --- */
        radial-gradient(var(--s) at 100% 100%, #0000 99%, #000 calc(100% + 1px)) right calc(var(--r) + var(--x)) top calc(-1*var(--r) - var(--y)) / 51% 100% no-repeat,
        right calc(var(--_d) + var(--x)) bottom 0 var(--_m) no-repeat,
        right 0 top calc(100% - var(--_d) - var(--y)) var(--_m) no-repeat,
        var(--_g_br) right 0 top calc(-1*var(--_d) - var(--y)) / 51% 100% no-repeat;
}

.top-left-bottom-right {
    --_m: /calc(2*var(--r)) calc(2*var(--r)) radial-gradient(#000 70%, #0000 72%);
    --_d: (var(--s) + var(--r));

    /* Conic gradients for fillers */
    --_g_tl: conic-gradient(at var(--r) var(--r), #000 75%, #0000 0);
    --_g_br: conic-gradient(from 90deg at calc(100% - var(--r)) calc(100% - var(--r)), #0000 25%, #000 0);

    mask:
        /* --- LEFT HALF (Top-Left Notch) --- */
        /* Inner Curve */
        radial-gradient(var(--s) at 0 0, #0000 99%, #000 calc(100% + 1px)) calc(var(--r) + var(--x)) calc(var(--r) + var(--y)) / 51% 100% no-repeat,
        /* Top Edge */
        calc(var(--_d) + var(--x)) 0 var(--_m) no-repeat,
        /* Left Edge */
        0 calc(var(--_d) + var(--y)) var(--_m) no-repeat,
        /* Fillers */
        var(--_g_tl) calc(var(--_d) + var(--x)) 0 / 51% 100% no-repeat,
        var(--_g_tl) 0 calc(var(--_d) + var(--y)) / 51% 100% no-repeat,

        /* --- RIGHT HALF (Bottom-Right Notch) --- */
        /* Inner Curve */
        radial-gradient(var(--s) at 100% 100%, #0000 99%, #000 calc(100% + 1px)) right calc(var(--r) + var(--x)) top calc(-1*var(--r) - var(--y)) / 51% 100% no-repeat,
        /* Bottom Edge */
        right calc(var(--_d) + var(--x)) bottom 0 var(--_m) no-repeat,
        /* Right Edge */
        right 0 top calc(100% - var(--_d) - var(--y)) var(--_m) no-repeat,
        /* Fillers */
        var(--_g_br) right calc(var(--_d) + var(--x)) top 0 / 51% 100% no-repeat,
        var(--_g_br) right 0 top calc(-1*var(--_d) - var(--y)) / 51% 100% no-repeat;
}

.top-right-bottom-left {
    --_m: /calc(2*var(--r)) calc(2*var(--r)) radial-gradient(#000 70%, #0000 72%);
    --_d: (var(--s) + var(--r));

    /* Conic gradients for fillers */
    --_g_tr: conic-gradient(at calc(100% - var(--r)) var(--r), #0000 25%, #000 0);
    --_g_bl: conic-gradient(from 180deg at var(--r) calc(100% - var(--r)), #0000 25%, #000 0);

    mask:
        /* --- LEFT HALF (Bottom-Left Notch) --- */
        /* Inner Curve */
        radial-gradient(var(--s) at 0 100%, #0000 99%, #000 calc(100% + 1px)) calc(var(--r) + var(--x)) calc(-1*var(--r) - var(--y)) / 51% 100% no-repeat,
        /* Bottom Edge */
        calc(var(--_d) + var(--x)) 100% var(--_m) no-repeat,
        /* Left Edge */
        0 calc(100% - var(--_d) - var(--y)) var(--_m) no-repeat,
        /* Fillers */
        var(--_g_bl) calc(var(--_d) + var(--x)) 0 / 51% 100% no-repeat,
        var(--_g_bl) 0 calc(-1*var(--_d) - var(--y)) / 51% 100% no-repeat,

        /* --- RIGHT HALF (Top-Right Notch) --- */
        /* Inner Curve */
        radial-gradient(var(--s) at 100% 0, #0000 99%, #000 calc(100% + 1px)) right calc(var(--r) + var(--x)) top calc(var(--r) + var(--y)) / 51% 100% no-repeat,
        /* Top Edge */
        right calc(var(--_d) + var(--x)) top 0 var(--_m) no-repeat,
        /* Right Edge */
        right 0 top calc(var(--_d) + var(--y)) var(--_m) no-repeat,
        /* Fillers */
        var(--_g_tr) right calc(var(--_d) + var(--x)) top 0 / 51% 100% no-repeat,
        var(--_g_tr) right 0 top calc(var(--_d) + var(--y)) / 51% 100% no-repeat;
}

.tops-bottoms {
    --_m: /calc(2*var(--r)) calc(2*var(--r)) radial-gradient(#000 70%, #0000 72%);
    --_d: (var(--s) + var(--r));

    /* Conic gradients for fillers */
    --_g_tl: conic-gradient(at var(--r) var(--r), #000 75%, #0000 0);
    --_g_tr: conic-gradient(at calc(100% - var(--r)) var(--r), #0000 25%, #000 0);
    --_g_bl: conic-gradient(from 180deg at var(--r) calc(100% - var(--r)), #0000 25%, #000 0);
    --_g_br: conic-gradient(from 90deg at calc(100% - var(--r)) calc(100% - var(--r)), #0000 25%, #000 0);

    mask:
        /* --- LEFT HALF --- */
        /* Top-Left Notch (Top Half) */
        radial-gradient(var(--s) at 0 0, #0000 99%, #000 calc(100% + 1px)) left calc(var(--r) + var(--x)) top calc(var(--r) + var(--y)) / 51% 51% no-repeat,
        left calc(var(--_d) + var(--x)) top 0 var(--_m) no-repeat,
        left 0 top calc(var(--_d) + var(--y)) var(--_m) no-repeat,
        var(--_g_tl) left calc(var(--_d) + var(--x)) top 0 / 51% 51% no-repeat,
        var(--_g_tl) left 0 top calc(var(--_d) + var(--y)) / 51% 51% no-repeat,

        /* Bottom-Left Notch (Bottom Half) */
        radial-gradient(var(--s) at 0 100%, #0000 99%, #000 calc(100% + 1px)) left calc(var(--r) + var(--x)) bottom calc(var(--r) + var(--y)) / 51% 51% no-repeat,
        left calc(var(--_d) + var(--x)) bottom 0 var(--_m) no-repeat,
        left 0 bottom calc(var(--_d) + var(--y)) var(--_m) no-repeat,
        var(--_g_bl) left calc(var(--_d) + var(--x)) bottom 0 / 51% 51% no-repeat,
        var(--_g_bl) left 0 bottom calc(var(--_d) + var(--y)) / 51% 51% no-repeat,

        /* --- RIGHT HALF --- */
        /* Top-Right Notch (Top Half) */
        radial-gradient(var(--s) at 100% 0, #0000 99%, #000 calc(100% + 1px)) right calc(var(--r) + var(--x)) top calc(var(--r) + var(--y)) / 51% 51% no-repeat,
        right calc(var(--_d) + var(--x)) top 0 var(--_m) no-repeat,
        right 0 top calc(var(--_d) + var(--y)) var(--_m) no-repeat,
        var(--_g_tr) right calc(var(--_d) + var(--x)) top 0 / 51% 51% no-repeat,
        var(--_g_tr) right 0 top calc(var(--_d) + var(--y)) / 51% 51% no-repeat,

        /* Bottom-Right Notch (Bottom Half) */
        radial-gradient(var(--s) at 100% 100%, #0000 99%, #000 calc(100% + 1px)) right calc(var(--r) + var(--x)) bottom calc(var(--r) + var(--y)) / 51% 51% no-repeat,
        right calc(var(--_d) + var(--x)) bottom 0 var(--_m) no-repeat,
        right 0 bottom calc(var(--_d) + var(--y)) var(--_m) no-repeat,
        var(--_g_br) right calc(var(--_d) + var(--x)) bottom 0 / 51% 51% no-repeat,
        var(--_g_br) right 0 bottom calc(var(--_d) + var(--y)) / 51% 51% no-repeat;
}

/* End of Curved Notch CSS*/



/* Animations */
.animate-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */

/* IMAGE MASK NUMBER */
.mask-number {
    font-size: 145px;
    font-weight: 900;
    line-height: 1;
    /* margin-right: -35px; */

    /* background: url('/assets/images/text-mask.jpg') center/cover;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */

    color: transparent;
    background-image: url('/assets/images/mask-number.jpg');
    background-size: 200%;
    /* Enlarged for smooth animation */
    background-position: 0 50%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-background 25s infinite alternate linear;

}

@keyframes animate-background {
    0% {
        background-position: 0 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}




/* YEARS CROSS */
.years-cross {
    display: grid;
    grid-template-columns: repeat(5, 25px);
    grid-template-rows: repeat(5, 25px);
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-size: 19px;
    text-align: center;
    align-items: center;
    justify-items: center;
}

.years-cross img {
    display: block;
    margin: auto;
}

.bg-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.bg-darker {
    background-color: var(--darker-bg);
}

.about-shape-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.1) 0%, transparent 70%);
    z-index: -1;
}


/* Services Section */
.services-section {
    background:
        radial-gradient(65% 58% at 8% 10%, rgba(123, 170, 219, 0.2) 0%, rgba(123, 170, 219, 0) 70%),
        radial-gradient(44% 36% at 85% 82%, rgba(95, 127, 168, 0.18) 0%, rgba(95, 127, 168, 0) 74%),
        linear-gradient(180deg, #0d1119 0%, #080b11 100%);
}

.services-section .service-cards-row>[class*="col-"] {
    display: flex;
}

.service-item-wrapper {
    width: 100%;
    height: 100%;
}

.service-card {
    height: 100%;
}

.service-card div {
    --r: 20px;
    /* radius */
    --s: 25px;
    /* size of inner curve */
    --x: 25px;
    /* horizontal offset (no percentange) */
    --y: 25px;
    /* vertical offset (no percentange) */

    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--r);
    /* background-color: #0a58ca; */
    position: relative;
    /* From https://css.glass */
    /* background: rgba(0, 98, 255, 0.25); */
    border-radius: 16px;
    /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px); */
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)), rgba(12, 17, 27, 0.8);
    backdrop-filter: blur(12px) saturate(125%);
    -webkit-backdrop-filter: blur(12px) saturate(125%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 14px 30px rgba(0, 0, 0, 0.24);

    border: 1px solid rgba(0, 98, 255, 0.1);
}

.service-card div::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: radial-gradient(circle at 12% 12%, var(--service-accent) 0%, rgba(255, 255, 255, 0) 45%);
    opacity: 0.9;
}

.service-card-color--a {
    --service-accent: rgba(118, 178, 246, 0.44);
}

.service-card-color--b {
    --service-accent: rgba(146, 158, 252, 0.34);
}

.service-card-color--c {
    --service-accent: rgba(119, 214, 198, 0.34);
}

.service-card-color--d {
    --service-accent: rgba(255, 185, 110, 0.32);
}

.service-card-color--e {
    --service-accent: rgba(232, 145, 185, 0.34);
}

.service-card-color--f {
    --service-accent: rgba(132, 177, 224, 0.38);
}

.service-card h31 {
    font-size: 1.2rem;
}

.service-card small {
    font-size: 0.55rem;
    text-transform: uppercase;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    font-family: "Overpass Mono", monospace;
    font-size: 0.78rem;
    font-weight: 300;
    letter-spacing: 0.06rem;
    text-transform: uppercase;
    color: #9be3ff;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.service-card-link:hover {
    color: #ffffff;
    transform: translateX(2px);
}

.service-card-link i {
    font-size: 1rem;
    line-height: 1;
}

.service-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    z-index: 10;
    top: 0;
    right: 0;
    border-radius: 14px;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)), rgba(12, 17, 27, 0.8);
    backdrop-filter: blur(12px) saturate(125%);
    -webkit-backdrop-filter: blur(12px) saturate(125%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 14px 30px rgba(0, 0, 0, 0.24);

}

.service-icon:hover {
    background-color: #000;
    cursor: pointer;
}

.home-services-shell {
    position: relative;
    padding: 1.5rem;
    border-radius: 32px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
    overflow: hidden;
}

.home-services-shell::before {
    content: "";
    position: absolute;
    inset: auto -8% -20% auto;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    /* background: radial-gradient(circle, rgba(0, 199, 255, 0.18), transparent 68%); */
    pointer-events: none;
}

.home-services-tabs {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    height: 100%;
    position: relative;
    z-index: 1;
}

.home-service-tab {
    display: block;
    /* gap: 0.35rem; */
    width: 100%;
    padding: 0.6rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    color: #dce8ee;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.home-service-tab__media {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.home-service-tab__content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.home-service-tab__icon-wrap {
    width: 2rem;
    height: 2rem;
    border-radius: 0.65rem;
    flex: 0 0 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* border: 1px solid rgba(155, 227, 255, 0.28); */
    background: linear-gradient(160deg, rgba(155, 227, 255, 0.22), rgba(155, 227, 255, 0.06));
}

.home-service-tab:hover,
.home-service-tab:focus {
    transform: translateX(4px);
    /* border-color: rgba(155, 227, 255, 0.35); */
    background: rgba(155, 227, 255, 0.08);
}

.home-service-tab.active {
    /* border-color: rgba(155, 227, 255, 0.45); */
    background: linear-gradient(135deg, rgba(155, 227, 255, 0.18), rgba(8, 26, 42, 0.72));
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.24);
}

.home-service-tab__eyebrow {
    font-size: 0.55rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #0790E8;
}

.home-service-tab__title {
    display: block;
    font-size: 1.04rem;
    font-weight: 200;
    color: #ffffff;
}

.home-service-tab__icon {
    font-size: 1.2rem;
    color: #0790E8;
    line-height: 1;
}

.home-services-content {
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
}

.home-services-content .tab-pane {
    height: 100%;
    border-radius: inherit;
    overflow: hidden;
}

.home-service-panel {
    position: relative;
    isolation: isolate;
    min-height: 100%;
    padding: 1.5rem;
    /* border: 1px solid rgba(255, 255, 255, 0.08); */
    border-radius: 28px;
    /* background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)); */
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.home-service-panel__label {
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #9be3ff;
}

.home-service-panel h3 {
    color: #ffffff;
    font-size: clamp(1.7rem, 2vw, 2.35rem);
}

.home-service-panel p {
    color: rgba(220, 232, 238, 0.78);
}

.home-service-panel .img-card {
    --r: 10px;
    /* radius */
    --s: 15px;
    /* size of inner curve */
    --x: 15px;
    /* horizontal offset (no percentange) */
    --y: 15px;
    /* vertical offset (no percentange) */
}

.home-service-panel .img-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 10px;
    background: radial-gradient(circle at 12% 12%, var(--service-accent) 0%, rgba(255, 255, 255, 0) 45%);
    opacity: 0.9;
}

.home-service-panel .img-card img {
    border-radius: 10px;
}

@media (max-width: 991.98px) {
    .home-services-shell {
        padding: 1.25rem;
    }

    .home-services-tabs {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.35rem;
        margin-bottom: 0.5rem;
        scrollbar-width: none;
    }

    .home-services-tabs::-webkit-scrollbar {
        display: none;
    }

    .home-service-tab {
        min-width: 220px;
        flex: 0 0 auto;
    }

    .home-service-tab:hover,
    .home-service-tab:focus {
        transform: translateY(-2px);
    }
}

@media (max-width: 767.98px) {
    .home-services-shell {
        padding: 1rem;
        border-radius: 24px;
    }

    .home-services-tabs {
        gap: 0.4rem;
        overflow-x: hidden;
        padding-bottom: 0;
    }

    .home-service-tab {
        min-width: 0;
        flex: 1 1 0;
        padding: 0.55rem 0.35rem;
        border-radius: 14px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .home-service-tab__media {
        gap: 0;
    }

    .home-service-tab__content {
        display: none;
    }

    .home-service-tab__icon-wrap {
        width: 1.9rem;
        height: 1.9rem;
        border-radius: 0.55rem;
        flex: 0 0 1.9rem;
    }

    .home-service-tab__icon {
        font-size: 0.85rem;
    }

    .home-service-tab:hover,
    .home-service-tab:focus {
        transform: none;
    }

    .home-service-panel {
        padding: 1.15rem;
        border-radius: 22px;
    }

    .home-service-panel__media {
        aspect-ratio: 16 / 11;
    }
}

/* Contact Page */
.contact-hero {
    position: relative;
    padding: 10rem 0 5rem;
    background:
        radial-gradient(50% 60% at 50% 0%, rgba(52, 138, 167, 0.18) 0%, rgba(52, 138, 167, 0) 72%),
        linear-gradient(180deg, #0f141c 0%, #090d14 100%);
}

.contact-eyebrow {
    font-family: "Overpass Mono", monospace;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.contact-lead {
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.02rem;
}

/* Channel Cards */
.contact-channels-section {
    background: linear-gradient(180deg, #090d14 0%, #07090f 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-channel-card {
    padding: 2.25rem 1.5rem;
    text-align: center;
    position: relative;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.1667), transparent 50%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 300ms cubic-bezier(0.4, 0.0, 0.2, 1);
    cursor: pointer;
}

.contact-channel-card:hover {
    background: rgba(255, 255, 255, 0.13);
    transform: translateY(-4px);
    filter: none;
}

.contact-channel-icon {
    width: 3.2rem;
    height: 3.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 60%);
    background-color: rgba(122, 205, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
    color: #c2eeff;
    font-size: 1.15rem;
}

.contact-channel-label {
    font-family: "Overpass Mono", monospace;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.contact-channel-card strong {
    display: block;
    color: #fff;
    font-size: 0.92rem;
}

.contact-channel-card a {
    text-decoration: none;
    color: inherit;
    font-family: "DM Mono", monospace;
    font-weight: 500;
    font-size: 16px;
}

/* Form Section */
.contact-form-section {
    padding-top: 4rem;
    background: linear-gradient(180deg, #07090f 0%, #070a11 100%);
}

.contact-form-wrap {
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
        rgba(10, 14, 22, 0.84);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.contact-form-wrap h2 {
    color: #fff;
}

.contact-form-lead {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.contact-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08rem;
    color: rgba(255, 255, 255, 0.72);
}

.contact-input {
    min-height: 3.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
}

.contact-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.contact-input:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(122, 205, 255, 0.55);
    color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(52, 138, 167, 0.14);
}

.contact-textarea {
    min-height: 10rem;
    resize: vertical;
}

@media (max-width: 991.98px) {
    .contact-hero {
        padding-top: 8rem;
        padding-bottom: 4rem;
    }
}

@media (max-width: 767.98px) {
    .contact-hero {
        padding-top: 7.5rem;
        padding-bottom: 3.5rem;
    }

    .contact-form-wrap {
        padding: 1.75rem;
        border-radius: 1.15rem;
    }
}

/* Service Detail Page */
.service-detail-hero {
    position: relative;
    padding: 9rem 0 5rem;
    background:
        radial-gradient(55% 52% at 12% 8%, rgba(52, 138, 167, 0.24) 0%, rgba(52, 138, 167, 0) 72%),
        radial-gradient(42% 36% at 88% 88%, rgba(1, 167, 76, 0.16) 0%, rgba(1, 167, 76, 0) 76%),
        linear-gradient(180deg, #0f141c 0%, #090d14 100%);
}

.service-detail-eyebrow,
.service-detail-kicker {
    font-family: "Overpass Mono", monospace;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.service-detail-lead {
    max-width: 58ch;
    color: rgba(255, 255, 255, 0.78);
}

.service-detail-hero-card {
    border-radius: 1.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
        rgba(11, 16, 26, 0.84);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}



.service-detail-hero-card h3,
.service-feature-card h2,
.service-cta-panel h2 {
    color: #fff;
}

.service-detail-list {
    display: grid;
    gap: 0.7rem;
}

.service-detail-list li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(255, 255, 255, 0.78);
}

.service-detail-list i,
.service-feature-icon {
    color: #8dd9ff;
}

.service-detail-section {
    background: linear-gradient(180deg, #090d14 0%, #070a11 100%);
}

.service-feature-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    padding: 1.4rem;
    background: rgba(255, 255, 255, 0.03);
}

.service-feature-media {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-feature-card p,
.service-cta-panel p {
    color: rgba(255, 255, 255, 0.7);
}

.service-feature-icon {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 0.9rem;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    background: rgba(122, 205, 255, 0.14);
}

/* Service detail — 2-col feature layout */
.service-feature-visual {
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.service-features-panel {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: 100%;
}

.service-feature-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.35rem 0;
}

.service-feature-row+.service-feature-row {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.service-feature-row:first-child {
    padding-top: 0;
}

.service-feature-row:last-child {
    padding-bottom: 0;
}

.service-feature-row__icon {
    width: 2.8rem;
    height: 2.8rem;
    flex: 0 0 2.8rem;
    border-radius: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #8dd9ff;
    background: rgba(122, 205, 255, 0.14);
    border: 1px solid rgba(155, 227, 255, 0.18);
}


.service-feature-row__body p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.91rem;
}

.service-process-section {
    background: linear-gradient(180deg, #070a11 0%, #06080f 100%);
}

.service-process-intro {
    color: rgba(255, 255, 255, 0.72);
}

.service-process-section .row.g-4.justify-content-center>[class*="col-"] {
    display: flex;
}

.service-flow-card {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 160px;
    border-radius: 999px;
    border: 2px solid rgba(175, 205, 225, 0.34);
    background: rgba(255, 255, 255, 0.1);
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.1667), transparent 50%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 12px 44px rgba(10, 18, 40, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.55),
        inset 0 -1px 0 rgba(255, 255, 255, 0.15);
    transition: all 300ms cubic-bezier(0.4, 0.0, 0.2, 1);
    overflow: visible;
}

.service-flow-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(ellipse 78% 52% at 50% -8%, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 72%);
    pointer-events: none;
}

.service-flow-card:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(198, 224, 242, 0.52);
    transform: translateY(-4px);
}

.service-flow-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1.05rem 1.3rem 1.05rem 3.45rem;
}

.service-flow-badge {
    position: absolute;
    left: -14px;
    width: 60px;
    height: 60px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.9);
    background-image: linear-gradient(150deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 10px 24px rgba(11, 18, 40, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.62),
        inset 0 -1px 0 rgba(255, 255, 255, 0.16);
}

.service-flow-badge::before {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 999px;
    border: 3px solid transparent;
    border-left-color: currentColor;
    border-top-color: currentColor;
    opacity: 0.32;
}

.service-flow-badge span {
    font-family: "Overpass Mono", monospace;
    font-size: 2.2rem;
    line-height: 1;
    font-weight: 300;
    color: #000;
}

.service-flow-icon {
    width: 2.4rem;
    height: 2.4rem;
    flex: 0 0 2.4rem;
    color: rgba(255, 255, 255, 0.82);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.service-flow-kicker {
    font-family: "Overpass Mono", monospace;
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
}

.service-flow-title {
    margin: 0;
    color: #f8fbff;
    font-weight: 500;
    font-size: 1.4rem;
}

.service-flow-copy {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    line-height: 1.45;
}

.service-flow-card--1 {
    border-color: rgba(167, 191, 210, 0.48);
}

.service-flow-card--1 .service-flow-badge {
    /* color: #aac2d5; */
    color: #FFD400;
}

.service-flow-card--2 {
    border-color: rgba(169, 195, 210, 0.48);
}

.service-flow-card--2 .service-flow-badge {
    /* color: #aec4d2; */
    color: #05D9E8;
}

.service-flow-card--3 {
    border-color: rgba(160, 198, 216, 0.48);
}

.service-flow-card--3 .service-flow-badge {
    /* color: #a4cadc; */
    color: #FF2A6D;
}

.service-flow-card--4 {
    border-color: rgba(162, 206, 199, 0.48);
}

.service-flow-card--4 .service-flow-badge {
    /* color: #aad3cd; */
    color: #C724FF;
}

.service-flow-card--5 {
    border-color: rgba(175, 176, 210, 0.48);
}

.service-flow-card--5 .service-flow-badge {
    /* color: #b8b8d8; */
    color: #00FF9C;
}

.service-cta-panel {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.5rem;
    padding: 2.6rem 1.4rem;
    background:
        radial-gradient(42% 44% at 12% 12%, rgba(52, 138, 167, 0.2) 0%, rgba(52, 138, 167, 0) 74%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        rgba(8, 12, 19, 0.92);
}

@media (max-width: 991.98px) {
    .service-detail-hero {
        padding-top: 8rem;
    }
}

@media (max-width: 767.98px) {
    .service-detail-hero {
        padding-top: 7.25rem;
        padding-bottom: 3.75rem;
    }

    .service-detail-hero-image,
    .service-feature-media {
        height: 150px;
    }

    .service-flow-card {
        min-height: 132px;
        border-radius: 1.4rem;
    }

    .service-flow-inner {
        padding: 0.95rem 1rem 0.95rem 5.75rem;
    }

    .service-flow-badge {
        width: 88px;
        height: 88px;
        left: -11px;
    }

    .service-flow-badge span {
        font-size: 1.9rem;
    }

    .service-flow-copy {
        font-size: 0.78rem;
    }

    .service-detail-hero-card,
    .service-cta-panel {
        border-radius: 1.15rem;
    }
}


/* Footer */
.hover-white:hover {
    color: #fff !important;
}

.form-control:focus {
    background-color: var(--dark-bg);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: none;
}

/* About Section Custom Styles */
.text-pink {
    color: #ff0066;
    /* Adjust to match the pink in the image */
}

.btn-pink {
    background-color: #ff0066;
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

.btn-pink:hover {
    background-color: #d60056;
    color: #fff;
    transform: translateY(-2px);
}

.text-neon {
    color: #FFEB00;
}



.bg-dark-glass {
    background: rgba(20, 20, 30, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bi-check-circle.text-pink {
    font-size: 1.2rem;
}

/* Vertical text utility */
.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}


/* Workflow Section */
.workflow-section {
    background: radial-gradient(70% 55% at 50% 50%, #2a5d77 0%, #184058 18%, #0f2a43 34%, #0a1b30 50%, #071226 66%, #040d1c 80%, #020814 92%, #01040d 97%, #000309 100%), radial-gradient(160% 130% at 10% 10%, rgba(0, 0, 0, 0) 38%, #000309 76%, #000208 100%), radial-gradient(160% 130% at 90% 90%, rgba(0, 0, 0, 0) 38%, #000309 76%, #000208 100%);
}

.workflow-content-sticky {
    position: sticky;
    top: 120px;
}

.workflow-cards-container {
    padding-bottom: 80px;
}

.workflow-card {
    position: sticky;
    top: 120px;
    /* Base top position for stacking */

    border-radius: 20px;

    /* Slightly lighter than card-bg for contrast */
    transition: transform 0.3s ease;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    /* Shadow on top to separate stacked cards */
}

/* Stacking effect adjustments */
.workflow-card:nth-child(1) {
    top: 120px;
}

.workflow-card:nth-child(2) {
    top: 120px;
}

.workflow-card:nth-child(3) {
    top: 120px;
}

.workflow-card:nth-child(4) {
    top: 120px;
}

.workflow-card:nth-child(5) {
    top: 120px;
}

.workflow-step div.curve {
    --r: 15px;
    /* radius */
    --s: 15px;
    /* size of inner curve */
    --x: 25px;
    /* horizontal offset (no percentange) */
    --y: 25px;
    /* vertical offset (no percentange) */

    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--r);
    backdrop-filter: blur(32px);
    position: relative;

    /* background: rgba(0, 98, 255, 0.25); */
    background: rgba(255, 255, 255, 0.06);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.workflow-step small {
    font-size: 0.65em;
    text-transform: uppercase;
}


.workflow-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    font-size: 32px;
    width: 45px;
    height: 45px;
    /* background-color: #181b22; */
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(120, 180, 255, 0.25), transparent 70%), #000000;
    border-radius: 10px;
    z-index: 10;
    bottom: 0;
    right: 0;
}

.workflow-icon span {
    font-size: 41px;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--aigence-white, #FFFFFF);
}

.text-outline-light {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    color: transparent;
}

.bg-card {
    background-color: var(--card-bg);
}

/* Clients Slider Section */
.bg-pink {
    background-color: #ff0066;
    color: #fff;
}

.client-card {
    /* background: rgba(255, 255, 255, 0.03); */

    background: rgba(255, 255, 255, 0.02);

    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 80px;
    transition: all 0.3s ease;
}

.client-card img {
    max-width: 100%;
    max-height: 40px;
    filter: grayscale(100%) brightness(0.7);
    /* Muted logos */
    transition: all 0.3s ease;
    opacity: 0.6;
}

.client-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
}

.client-card:hover img {
    filter: grayscale(0%) brightness(1);
    /* Color on hover */
    opacity: 1;
}

/* Swiper Smooth Transition */
.clients-swiper .swiper-wrapper {
    transition-timing-function: linear;
}

.clients-swiper .swiper-slide {
    width: auto;
    /* Allow slides to size based on content */
}

.clients-swiper {
    position: relative;
}

.clients-swiper::before,
.clients-swiper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients-swiper::before {
    left: 0;
    background: linear-gradient(to right, var(--clients-bg-base), transparent);
}

.clients-swiper::after {
    right: 0;
    background: linear-gradient(to left, var(--clients-bg-base), transparent);
}

.clients-swiper-reverse {
    position: relative;
}

.clients-swiper-reverse .swiper-wrapper {
    transition-timing-function: linear;
}

.clients-swiper-reverse .swiper-slide {
    width: auto;
}

.clients-swiper-reverse::before,
.clients-swiper-reverse::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients-swiper-reverse::before {
    left: 0;
    background: linear-gradient(to right, var(--clients-bg-base), transparent);
}

.clients-swiper-reverse::after {
    right: 0;
    background: linear-gradient(to left, var(--clients-bg-base), transparent);
}






.list {
    display: flex;
    flex-direction: var(--direction);
    margin: 0;
    padding: 10px;
    list-style: none;
}

/* Scroller X */
.scroller-x {
    overflow: hidden;
}

.scroller-x[data-direction=right] {
    --_animation-direction: reverse;
}

.scroller-x[data-direction=left] {
    --_animation-direction: forwards;
}

.scroller-x[data-speed=fast] {
    --_animation-duration: 30s;
}

.scroller-x[data-speed=medium] {
    --_animation-duration: 45s;
}

.scroller-x[data-speed=slow] {
    --_animation-duration: 60s;
}

.scroller-x__list {
    width: -moz-max-content;
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll var(--_animation-duration, 60s) var(--_animation-direction, forwards) linear infinite;
    will-change: transform;
}

.scroller-x__list:hover {
    animation-play-state: paused;
}

.scroller-x__list>li {
    flex-shrink: 0;
}

.scroller-x--delayed .scroller-x__list {
    animation-delay: -30s;
}

/* Scroller Y */
.scroller-y {
    overflow: hidden;
}

.scroller-y[data-direction=bottom] {
    --_animation-direction: reverse;
}

.scroller-y[data-direction=top] {
    --_animation-direction: forwards;
}

.scroller-y[data-speed=fast] {
    --_animation-duration: 30s;
}

.scroller-y[data-speed=slow] {
    --_animation-duration: 120s;
}

.scroller-y__list {
    height: -moz-max-content;
    height: max-content;
    flex-wrap: nowrap;
    animation: scrollY var(--_animation-duration, 60s) var(--_animation-direction, forwards) linear infinite;
}

.scroller-y__list:hover {
    animation-play-state: paused;
}

.scroller-y__list>li {
    flex-shrink: 0;
}

/* New Section Styles */
.scroller-x {
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
    -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.logo-box {
    width: 100px;
    height: 100px;
    display: grid;
    place-content: center;
    border-radius: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    transition: background-color 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.logo-box img {
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.logo-box:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.fs-28 {
    font-size: 28px;
}

.gap-6 {
    gap: 1.5rem;
}

@keyframes scroll {
    to {
        transform: translateX(calc(-1 * var(--_scroll-distance, 50%)));
    }
}

.bg-black {
    background-color: #000 !important;
}

/* Site Footer */
.site-footer {
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(circle at 15% 10%, rgba(13, 110, 253, 0.2) 0%, rgba(13, 110, 253, 0) 40%),
        linear-gradient(180deg, #0a0d14 0%, #05070c 100%);
}

.footer-top {
    padding-bottom: 2rem;
}

.footer-title {
    font-family: "Overpass Mono", monospace;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: dashed;
}

.footer-links {
    font-family: "Overpass Mono", monospace;
    font-weight: 500;
    font-size: 0.80rem;
    text-transform: uppercase;
}

.footer-text {
    max-width: 32ch;
    color: rgba(255, 255, 255, 0.72);
    font-family: "Overpass Mono", monospace;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.65rem;
}

.footer-links a,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-links a:hover,
.footer-bottom a:hover {
    color: var(--txt-blue);
}

.footer-contact {
    font-family: "Overpass Mono", monospace;
    font-weight: 400;
    font-size: 0.80rem;
    text-transform: uppercase;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.72);
}

.footer-contact i {
    color: var(--primary-color);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-blue);
}

.footer-social a {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
    background-color: var(--primary-blue-dark);
}

/* ── PILL LINKS ── */
.footer-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.footer-pill {
    padding: 0.32rem 0.55rem 0.24rem 0.55rem;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    font-family: "Overpass Mono", monospace;
    font-size: 0.67rem;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    /* white-space: nowrap; */
    margin-bottom: 5px;
}

.footer-pill:hover {
    background-color: var(--primary-blue-dark);
    border-color: var(--primary-blue);
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.copyright {
    font-family: "DM Mono", monospace;
    font-weight: 300;
    font-size: 10px;
    text-transform: uppercase;
    color: dimgray;
}
.legal a {
    font-family: "DM Mono", monospace;
    font-weight: 300;
    font-size: 10px;
    color: dimgray;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: var(--primary-blue);
}


@media (max-width: 767.98px) {
    .site-footer {
        margin-top: 3.5rem;
    }

    .footer-top {
        padding-bottom: 1.25rem;
    }

    .footer-text {
        max-width: 100%;
    }

    .footer-contact li {
        justify-content: center;
    }
}

/* ========================================================================== 
   About Page
   ========================================================================== */

.section-pad-top {
    padding-top: 9rem;
}

.about-hero {
    position: relative;
    padding-bottom: 4rem;
    background: radial-gradient(circle at 20% 15%, rgba(13, 110, 253, 0.25) 0%, rgba(13, 110, 253, 0) 42%),
        radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 38%),
        linear-gradient(180deg, #0f1115 0%, #0b0d11 100%);
}

.eyebrow {
    letter-spacing: 0.18rem;
    text-transform: uppercase;
    font-family: "Overpass Mono", monospace;
    font-size: 0.78rem;
    font-weight: 300;
    /* color: rgba(255, 255, 255, 0.8); */
    color: #777777;
}

.hero-card {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.25rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(6px);
}

.hero-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.hero-card-badge {
    position: absolute;
    right: 1.25rem;
    bottom: 1.25rem;
    padding: 0.7rem 1rem;
    border-radius: 0.85rem;
    background: rgba(13, 110, 253, 0.92);
    color: #fff;
    text-align: center;
}

.metric-card {
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    padding: 1.5rem;
    background: #12151b;
}

.metric-card h2 {
    font-size: 2.2rem;
    margin-bottom: 0.7rem;
}

.metric-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
}

.about-story {
    background: linear-gradient(110deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
}

.value-card {
    height: 100%;
    border-radius: 1rem;
    padding: 1.5rem;
    background: #11141a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.value-card i {
    font-size: 1.6rem;
    color: #0d6efd;
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: rgba(13, 110, 253, 0.7);
}

.value-card p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
}

.cta-panel {
    border-radius: 1.25rem;
    padding: 3rem 1.5rem;
    background: linear-gradient(130deg, #0d6efd, #0a58ca);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.cta-panel p {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 991.98px) {
    .section-pad-top {
        padding-top: 7.5rem;
    }

    .hero-card img {
        height: 280px;
    }
}


/* Theme Toggle FAB */
.theme-toggle-fab {
    position: fixed;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.theme-toggle-circle-text {
    position: absolute;
    width: 82px;
    height: 82px;
    animation: rotateText 15s linear infinite;
    pointer-events: none;
    z-index: -1;
}

.theme-toggle-circle-text svg {
    width: 100%;
    height: 100%;
}

.circular-text {
    font-size: 8px;
    font-family: "DM Mono", monospace;
    fill: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
}

[data-theme="light"] .circular-text {
    fill: #181b22;
}

@keyframes rotateText {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.theme-toggle-fab:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.theme-toggle-fab:active {
    transform: translateY(-50%) scale(0.95);
}

@media (max-width: 767.98px) {
    .theme-toggle-fab {
        width: 48px;
        height: 48px;
        right: 1rem;
    }

    .theme-toggle-fab img {
        width: 20px;
        height: 20px;
    }
}

.theme-icon-light {
    display: none;
}

.theme-icon-dark {
    display: inline-block;
}

[data-theme="light"] .theme-icon-light {
    display: inline-block;
}

[data-theme="light"] .theme-icon-dark {
    display: none;
}


/* Logo visibility based on theme */
/* Light theme logos hidden by default */
.logo-light {
    display: none !important;
}

/* Show light theme logos when light theme active (general rule for footer etc.) */
[data-theme="light"] .logo-light {
    display: inline-block !important;
}

/* Hide dark theme logos when light theme active */
[data-theme="light"] .logo-dark {
    display: none !important;
}

/* Header-specific logo rules (need to handle scroll state) */
[data-theme="light"] .logo-light.logo-scrolled {
    display: none !important;
}

[data-theme="light"] .navbar.scrolled .logo-light.logo-scrolled {
    display: block !important;
}

[data-theme="light"] .navbar.scrolled .logo-light.logo-default {
    display: none !important;
}

/* From Uiverse.io by 20essentials */
.container-loader {
    --size: 300px;
    width: var(--size);
    height: var(--size);
    position: relative;
    zoom: 0.5;
    transform: translateX(100%);

    .ball {
        position: absolute;
        width: calc(var(--size) + var(--i));
        height: calc(var(--size) + var(--i));
        background-color: var(--color);
        border-radius: 50%;
        animation: move 5s linear infinite;
        transform-origin: var(--size);
        mix-blend-mode: hard-light;
        animation-duration: var(--d);
        filter: blur(58px);

        &:nth-child(even) {
            animation-direction: reverse;
        }
    }
}

@keyframes move {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(359deg);
    }
}