/* CSS Variables */
:root {
    --bg-primary: #0a0a0a;
    --text-primary: #FFFFFF;
    --text-secondary: #a0a0a0;
    --accent: #0044FF; /* Blu elettrico */
    --accent-hover: #0033cc;
    --card-bg: #111111;
    --border-color: #222222;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Evita che la navbar copra il titolo della sezione */
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--accent);
    color: white;
    border: 2px solid var(--accent);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 68, 255, 0.3);
}

.btn-large {
    font-size: 1.125rem;
    padding: 1.25rem 2.5rem;
}

.btn i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(5px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 1rem 0;
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    text-decoration: none;
    color: var(--text-primary);
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-cta {
    background: var(--text-primary);
    color: var(--bg-primary) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
}

.nav-cta:hover {
    background: var(--accent);
    color: white !important;
}

/* 1. Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px; /* Altezza della sfumatura */
    background: linear-gradient(to bottom, transparent 0%, var(--bg-primary) 100%);
    z-index: 0;
    pointer-events: none;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.75); /* Scuro per far risaltare il testo chiaro */
}

.hero-content {
    max-width: 900px;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    line-height: 1.05;
}

/* Pixel Text Effect */
.pixel-text-container {
    position: relative;
    display: inline-block;
}

#pixel-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
    display: none; /* Shown via JS on desktop */
}

@media (min-width: 769px) {
    .pixel-text-container.canvas-active #hero-title {
        opacity: 0;
    }
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* 2. Services Section */
.services {
    padding: 8rem 0;
    background-color: var(--bg-primary);
}

.services-wrapper {
    position: relative;
    width: 100%;
}

.horizontal-line {
    position: absolute;
    top: 78px; /* Centro esatto delle icone */
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent);
    z-index: 0;
    transition: width 1.5s cubic-bezier(0.5, 0, 0, 1);
}

.horizontal-line.active {
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem; /* Spazio aumentato tra le card come richiesto */
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    background: #1a1a1a;
    border-color: var(--accent);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(0, 68, 255, 0.1);
    color: var(--accent);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s;
}

.service-card:hover .icon-wrapper {
    background: var(--accent);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.service-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
}

.service-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s;
}

.service-link:hover {
    color: var(--accent);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Impact Stats Section */
.impact-stats {
    padding: 6rem 0;
    background: #0d0d0d;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* New Layout for About Section */
.about-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

.about-left {
    flex: 1.5 1 550px;
}

.about-right {
    flex: 1 1 350px;
    display: flex;
    justify-content: center;
}

.about-image {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (max-width: 992px) {
    .about-layout {
        flex-direction: column-reverse;
        align-items: stretch;
    }
    .about-left, .about-right {
        width: 100%;
    }
}

@media (max-width: 768px) {
    #about .container {
        width: 100%;
        padding: 0 1rem;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-card {
        min-height: 280px;
    }
    .stat-card-front, .stat-card-back {
        padding: 1.5rem 1rem;
    }
    .stat-value {
        font-size: 2.2rem;
    }
    .stat-label {
        font-size: 0.95rem;
    }
    .stat-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
}

/* Flip Card CSS */
.stat-card {
    background: transparent;
    perspective: 1000px;
    cursor: pointer;
    min-height: 320px;
}

.stat-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

.stat-card-front {
    transform: rotateY(0deg) translateZ(1px);
    -webkit-transform: rotateY(0deg) translateZ(1px);
    z-index: 2;
}

.stat-card.flipped .stat-card-inner {
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
}

.stat-card-front, .stat-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.stat-card:hover .stat-card-inner {
    transform: translateY(-5px);
}
.stat-card.flipped:hover .stat-card-inner {
    transform: rotateY(180deg) translateY(-5px);
}

.stat-card:hover .stat-card-front, .stat-card:hover .stat-card-back {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 68, 255, 0.15);
}

.stat-card-back {
    transform: rotateY(180deg) translateZ(1px);
    -webkit-transform: rotateY(180deg) translateZ(1px);
    padding: 2rem;
    text-align: center;
}

.stat-card-back p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.stat-value {
    font-size: 3.2rem;
    font-family: var(--font-heading);
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.stat-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0; /* Will be animated via JS */
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    border-radius: 10px;
    transition: width 2.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 3. Portfolio & Clienti Grid Section */
.portfolio-grid-section {
    padding: 8rem 0;
    background: var(--bg-primary);
    overflow: hidden;
}

.client-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.client-card {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border-color);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.6);
    transition: background 0.4s ease;
    z-index: 1;
}

.client-card:hover .card-overlay {
    background: rgba(10, 10, 10, 0.85);
}

.card-logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: all 0.4s ease;
    width: 80%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.revenue-badge {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    transition: opacity 0.3s ease;
    text-shadow: none;
    background: var(--accent);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 68, 255, 0.4);
    white-space: nowrap;
}

.client-card:hover .revenue-badge {
    opacity: 0;
}

.card-logo {
    max-width: 150px;
    max-height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.4s ease;
}

.elegant-logo-text {
    font-family: 'Georgia', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
}

.client-card:hover .card-logo-container {
    transform: translate(-50%, -80%);
    opacity: 0.8;
}

.card-info {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    padding: 0 2rem;
    z-index: 3;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.client-card:hover .card-info {
    opacity: 1;
    transform: translateY(0);
}

.info-row {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.info-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.result-row .info-text {
    font-size: 1.25rem;
    font-weight: 700;
}

.highlight {
    color: var(--accent) !important;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    border-color: var(--accent);
}

/* 4. Client Marquee Section */
.client-marquee-section {
    padding: 4rem 0;
    background: var(--bg-primary);
    border-top: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
}

/* Gradient fades on edges */
.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary) 0%, transparent 100%);
}
.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary) 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    align-items: center;
    animation: scroll-marquee 30s linear infinite;
}

.marquee-logo {
    height: 60px;
    object-fit: contain;
    margin: 0 4rem;
    filter: brightness(0) invert(1) opacity(0.5);
    transition: filter 0.3s ease;
}

.marquee-logo:hover {
    filter: brightness(0) invert(1) opacity(1);
}

.marquee-logo.elegant-text {
    font-family: 'Georgia', serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    opacity: 0.5;
    filter: none;
}
.marquee-logo.elegant-text:hover {
    opacity: 1;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .marquee-logo {
        height: 40px;
        margin: 0 2rem;
    }
    .marquee-container::before,
    .marquee-container::after {
        width: 50px;
    }
}

/* 5. Footer */
footer {
    background: #050505;
    color: white;
    padding: 8rem 0 2rem;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-title {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.footer-email {
    font-size: 2rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
}

.footer-email::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

.footer-email:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.footer-social {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
}

.footer-social a {
    color: white;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    color: rgba(255,255,255,0.5);
    width: 90%;
    max-width: 1200px;
}

/* Scroll Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-content p {
        font-size: 1.125rem;
    }
    .section-header h2 {
        font-size: 2.5rem;
    }
    .massive-quote blockquote {
        font-size: 2rem;
    }
    .footer-title {
        font-size: 2.5rem;
    }
    .footer-email {
        font-size: 1.5rem;
    }
    .case-slide {
        width: 85vw;
    }
    .horizontal-line {
        display: none;
    }
}

/* Growth Chart Background */
.card-chart-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Changed from -1 so it stays above the card background */
    overflow: hidden;
    border-radius: 20px;
    opacity: 0.15;
    pointer-events: none;
}
.card-chart-bg svg {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: -10px;
    left: 0;
}
.chart-line {
    /* JavaScript controlla stroke-dasharray e stroke-dashoffset */
}

/* Logo Portal 3D Transition */
.logo-portal-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-primary);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1.2s ease;
}

.logo-portal-bg.active {
    opacity: 1;
}

.logo-portal-element {
    z-index: 9999;
    pointer-events: none;
    object-fit: contain;
    filter: brightness(0) invert(1);
    color: white;
    white-space: nowrap;
    
    transform-origin: center center;
    /* Transizione separata per l'opacità in modo che sfumi solo alla fine */
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease 0.8s;
}

/* Scroll Path Background Effect */
.scroll-path-container {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.scroll-path-container.visible {
    opacity: 1;
}
.scroll-path-container svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}
#scroll-path-line {
    fill: none;
    stroke: var(--accent);
    stroke-width: 8px;
    stroke-linecap: round;
    opacity: 0.15;
}
.train-icon {
    position: absolute;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    box-shadow: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    will-change: transform;
}

#about, #portfolio {
    position: relative;
    /* Rimosso z-index per evitare di creare un nuovo stacking context */
}
#about .container, #portfolio .container {
    position: relative;
    z-index: 2;
}

/* =========================================
   PROJECT.HTML STYLES (Case Study)
========================================= */
.case-study-container {
    max-width: 1000px;
    margin: 0 auto 100px;
    padding: 0 20px;
}
.case-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}
@media (max-width: 768px) {
    .case-grid {
        grid-template-columns: 1fr;
    }
}
.case-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}
.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}
.case-card h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}
.case-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}
.case-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    background: rgba(0, 68, 255, 0.1);
}
.challenge-icon {
    color: #ff4757;
    background: rgba(255, 71, 87, 0.1);
    box-shadow: 0 0 20px rgba(255, 71, 87, 0.2);
}
.solution-icon {
    color: #feca57;
    background: rgba(254, 202, 87, 0.1);
    box-shadow: 0 0 30px rgba(254, 202, 87, 0.4);
    text-shadow: 0 0 10px rgba(254, 202, 87, 0.8);
}
.results-card {
    text-align: center;
    padding: 50px;
}
.results-card h3 {
    font-size: 2rem;
}
.chart-container {
    margin-top: 3rem;
    text-align: left;
}
.chart-row {
    margin-bottom: 2rem;
}
.chart-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}
.highlight-label {
    color: var(--accent);
    font-weight: 600;
}
.bar-wrapper {
    width: 100%;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}
.bar-before {
    height: 100%;
    background: #4a4a4a;
    border-radius: 8px;
    transition: width 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.bar-after {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #00c3ff);
    border-radius: 8px;
    transition: width 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    box-shadow: 0 0 20px rgba(0, 68, 255, 0.5);
}
.bar-text {
    color: white;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}
