:root {
    --color-bg-dark: #0a0e14;
    --color-bg-deep: #05070a;
    --color-primary: #0088ff;
    --color-primary-neon: #00f2ff;
    --color-accent: #ff6600;
    --color-text-white: #ffffff;
    --color-text-dim: rgba(255, 255, 255, 0.7);
    --font-main: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important;
    /* Hide default cursor */
}

body.custom-cursor {
    cursor: none;
}

/* Engineering Crosshair */
.ch-line {
    position: fixed;
    background-color: var(--color-primary-neon);
    pointer-events: none;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
    will-change: transform;
}

#cursor-ch-h {
    width: 60px;
    height: 1px;
}

#cursor-ch-v {
    width: 1px;
    height: 60px;
}

#cursor-dot {
    position: fixed;
    width: 4px;
    height: 4px;
    background-color: var(--color-primary-neon);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.1s ease;
}

.cursor-hover #cursor-ch-h {
    width: 100px;
    background-color: var(--color-accent);
}

.cursor-hover #cursor-ch-v {
    height: 100px;
    background-color: var(--color-accent);
}

.cursor-hover #cursor-dot {
    background-color: var(--color-accent);
    transform: scale(1.5);
}


/* Network Background Canvas */
#network-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-white);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-deep);
    z-index: 20000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.preloader-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-primary-neon);
    margin-bottom: 20px;
    font-weight: 600;
}

.preloader-bar-wrapper {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.preloader-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--color-primary-neon);
    animation: loading-bar 2s cubic-bezier(0.65, 0.05, 0.36, 1) infinite;
    transform-origin: left;
}

@keyframes loading-bar {
    0% {
        transform: scaleX(0);
    }

    50% {
        transform: scaleX(1);
    }

    100% {
        transform: scaleX(0);
        transform-origin: right;
    }
}

.preloader-status {
    font-size: 0.6rem;
    color: var(--color-text-dim);
    margin-top: 10px;
    letter-spacing: 2px;
}

/* Magnetic Support */
.magnetic {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Background Texture */
.bg-texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, #111a24 0%, var(--color-bg-deep) 100%);
    opacity: 0.8;
}

.bg-texture::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 30px 0;
    background: linear-gradient(to bottom, rgba(10, 14, 20, 0.8), transparent);
    backdrop-filter: blur(10px);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    font-weight: 800;
    letter-spacing: 2px;
    text-decoration: none;
    color: inherit;
}

.logo-text {
    font-size: 1.5rem;
    color: var(--color-text-white);
    display: flex;
    gap: 10px;
}

.logo-text::after {
    content: '';
    display: inline-block;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.sound-toggle {
    background: transparent;
    border: 1px solid rgba(0, 242, 255, 0.2);
    color: var(--color-primary-neon);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    margin-left: 10px;
}

.sound-toggle:hover {
    background: rgba(0, 242, 255, 0.1);
    border-color: var(--color-primary-neon);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
    transform: scale(1.05);
}

.sound-toggle.muted {
    color: var(--color-text-dim);
    border-color: rgba(255, 255, 255, 0.1);
}

.nav-link {
    text-decoration: none;
    color: var(--color-text-dim);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--color-text-white);
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}

.btn-outline {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 4px;
}

.btn-outline:hover {
    border-color: var(--color-primary-neon);
    background: rgba(0, 242, 255, 0.05);
    color: var(--color-primary-neon);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 242, 255, 0.1);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-primary-neon);
    margin-bottom: 20px;
    display: block;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.hero-title-main {
    display: inline-block;
    min-height: 1.2em;
    border-right: 2px solid var(--color-primary-neon);
    white-space: normal;
    animation: blink 0.7s infinite;
    vertical-align: bottom;
}

@keyframes blink {
    0% {
        border-color: transparent;
    }

    50% {
        border-color: var(--color-primary-neon);
    }

    100% {
        border-color: transparent;
    }
}

.hero-title .highlight {

    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    text-shadow: 0 0 30px rgba(0, 242, 255, 0.2);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-text-dim);
    max-width: 550px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--color-primary);
    color: white;
    border: 1px solid var(--color-primary);
    box-shadow: 0 10px 30px rgba(0, 136, 255, 0.3);
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--color-primary-neon);
    color: var(--color-primary-neon);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 242, 255, 0.3);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-secondary:hover {
    background: rgba(0, 242, 255, 0.05);
    border-color: var(--color-primary-neon);
    color: var(--color-primary-neon);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.1);
}

.hero-stats {
    display: flex;
    gap: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-primary-neon);
}

.stat-label {
    font-size: 0.7rem;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 1;
}

.visual-wrapper {
    position: relative;
    width: 100%;
    perspective: 1000px;
}

.main-visual {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(0, 242, 255, 0.1);
    transform: rotateY(-10deg) rotateX(10deg);
    transition: var(--transition);
}

.visual-wrapper:hover .main-visual {
    transform: rotateY(0deg) rotateX(0deg);
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(45deg, rgba(0, 242, 255, 0.05), transparent);
    border-radius: 20px;
}

/* Decorative Elements */
.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--color-primary-neon), transparent);
    height: 1px;
    z-index: 5;
    opacity: 0.6;
}

.line-1 {
    width: 150%;
    top: 20%;
    left: -25%;
    transform: rotate(-15deg);
}

.line-2 {
    width: 150%;
    bottom: 30%;
    right: -25%;
    transform: rotate(10deg);
}

.point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--color-accent);
    z-index: 6;
}

.point-1 {
    top: 15%;
    right: 20%;
}

.point-2 {
    bottom: 25%;
    left: 10%;
}

/* Services Section */
.services {
    padding: 120px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 16px;
    transition: var(--transition);
}

.service-card:hover {
    background: rgba(0, 242, 255, 0.03);
    border-color: var(--color-primary-neon);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.2rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    color: var(--color-primary-neon);
    height: 70px;
}

.svg-schematic {
    width: 60px;
    height: 60px;
    transition: var(--transition);
}

.service-card:hover .svg-schematic {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(0, 242, 255, 0.4));
}

.svg-bg {
    opacity: 0.3;
}

.pulse {
    animation: svg-pulse 2s infinite;
}

@keyframes svg-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.5;
    }
}

.rotate {
    animation: svg-rotate 10s linear infinite;
    transform-origin: center;
}

@keyframes svg-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.svg-trace {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    transition: stroke-dashoffset 1s ease;
}

.service-card:hover .svg-trace {
    stroke-dashoffset: 0;
}

.svg-flow {
    animation: flow 3s linear infinite;
}

.svg-flow-rev {
    animation: flow 3s linear infinite reverse;
}

@keyframes flow {
    from {
        stroke-dashoffset: 20;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.svg-check {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    transition: stroke-dashoffset 0.5s ease 0.3s;
}

.service-card:hover .svg-check {
    stroke-dashoffset: 0;
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 15px;
    color: var(--color-primary-neon);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--color-text-dim);
    line-height: 1.5;
}

/* Portfolio Section */
.portfolio {
    padding: 120px 0;
    position: relative;
    background: rgba(10, 14, 20, 0.5);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-subtitle {
    color: var(--color-text-dim);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary-neon);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.portfolio-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
        filter 0.4s ease,
        opacity 0.4s ease;
    filter: invert(1) hue-rotate(180deg) brightness(0.8) contrast(1.4);
    mix-blend-mode: screen;
    opacity: 0.7;
    will-change: transform;
}

.portfolio-item:hover .portfolio-img img {
    filter: invert(0.9) hue-rotate(180deg) brightness(1) contrast(1.2);
    transform: scale(1.15) rotate(1deg);
    opacity: 1;
}

/* Enhanced visibility for Plan item */
.portfolio-item.plan-item .portfolio-img img {
    filter: invert(1) contrast(2) brightness(1.1);
    mix-blend-mode: screen;
}

.portfolio-item.plan-item:hover .portfolio-img img {
    filter: invert(1) contrast(2.5) brightness(1.3);
    transform: scale(1.15) rotate(1deg);
}


.portfolio-item {
    cursor: pointer;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0, 242, 255, 0.2);
    filter: invert(1) hue-rotate(180deg) brightness(1) contrast(1.2);
    mix-blend-mode: screen;
}

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    color: var(--color-text-white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--color-primary-neon);
    transform: rotate(90deg);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Animations */
.hero-content {
    animation-delay: 0.2s;
}

.hero-visual {
    animation-delay: 0.4s;
}

/* Stagger animation for grid items */
.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}

.service-card:nth-child(7) {
    animation-delay: 0.7s;
}

.service-card:nth-child(8) {
    animation-delay: 0.8s;
}

.portfolio-item:nth-child(1) {
    animation-delay: 0.2s;
}

.portfolio-item:nth-child(2) {
    animation-delay: 0.3s;
}

.portfolio-item:nth-child(3) {
    animation-delay: 0.4s;
}

.portfolio-item:nth-child(4) {
    animation-delay: 0.5s;
}

/* Process Section Styling */
.process {
    padding: 120px 0;
    position: relative;
}

.process-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-progress-line {
    position: absolute;
    left: 50%;
    top: 50px;
    bottom: 50px;
    width: 2px;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(-50%);
    z-index: 0;
}

.process-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--color-primary-neon);
    box-shadow: 0 0 15px var(--color-primary-neon);
    transition: height 0.3s ease-out;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 100px;
    position: relative;
    z-index: 1;
}

.process-step {
    position: relative;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: var(--transition);
}

.process-step:hover {
    background: rgba(0, 242, 255, 0.03);
    border-color: var(--color-primary-neon);
    transform: translateY(-5px);
}

/* Zebra layout for steps */
.process-step:nth-child(even) {
    margin-top: 80px;
}

.process-step:nth-child(odd) {
    margin-bottom: 80px;
}


.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0, 242, 255, 0.1);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.process-step h3 {
    font-size: 1.2rem;
    color: var(--color-primary-neon);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--color-text-dim);
    position: relative;
    z-index: 2;
}


.portfolio-info {
    padding: 25px;
}

.portfolio-info h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--color-primary-neon);
}

.portfolio-info p {
    font-size: 0.9rem;
    color: var(--color-text-dim);
    line-height: 1.5;
}

/* Contact Section */
.contact {
    padding: 120px 0;
}

.contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 40px;
    border-radius: 24px;
    text-align: center;
    backdrop-filter: blur(20px);
}

.contact-title {
    font-size: 3rem;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.contact-text {
    font-size: 1.2rem;
    color: var(--color-text-dim);
    max-width: 600px;
    margin: 0 auto 50px;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px 40px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--color-text-white);
    font-weight: 600;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.contact-link:hover {
    background: rgba(0, 242, 255, 0.05);
    border-color: var(--color-primary-neon);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.1);
}

.contact-link .icon {
    font-size: 1.5rem;
    color: var(--color-primary-neon);
}

.tg-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

/* Partners Section */
.partners {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.2);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.partner-logo {
    height: 100px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    filter: grayscale(1);
    opacity: 0.4;
    transition: all 0.5s ease;
    transform: translateY(20px);
}

.partner-logo span {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    background: rgba(0, 242, 255, 0.05);
    border-color: var(--color-primary-neon);
    color: var(--color-primary-neon);
}

.partner-logo.visible {
    opacity: 0.4;
    transform: translateY(0);
}

.partner-logo.visible:hover {
    opacity: 1;
}

/* Responsive Updates */

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header {
        padding: 15px 0;
    }

    .nav {
        flex-direction: column;
        gap: 15px;
    }

    .nav-list {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .btn-outline {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .hero {
        padding-top: 180px;
        text-align: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        margin: 0 auto 30px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-stats {
        justify-content: center;
        gap: 30px;
    }

    .section-title,
    .contact-title {
        font-size: 2.2rem;
    }

    .contact-card {
        padding: 60px 20px;
    }

    .contact-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .nav-list {
        gap: 10px;
    }

    .btn-outline {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
}