.hero-section h1 {
    line-height: 1.2;
}

/* -------------------------------------- */
/* Data Flow Animation for Hero Section */
/* -------------------------------------- */

.hero-section {
    /* Ensure your dark gradient background is still active here */
    background: linear-gradient(135deg, #001f3f 0%, #0a0a0a 100%) no-repeat center center;
    background-size: cover;
    min-height: 80vh;
}

.data-flow-visual {
    position: relative;
    /* Make the visual container semi-transparent to blend */
    background: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden; /* Contains the dots */
    height: 350px; /* Define a fixed height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.data-flow-line {
    width: 80%;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    margin: 15px 0;
}

.data-flow-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--bs-warning); /* Use your warning color (#ffc107) */
    border-radius: 50%;
    transform: translateX(-100%);
    animation: flow 4s infinite linear;
}

.dot-1 {
    top: 25%;
    animation-delay: 0s;
}
.dot-2 {
    top: 50%;
    animation-delay: 1.5s;
}
.dot-3 {
    top: 75%;
    animation-delay: 3s;
}

@keyframes flow {
    0% {
        transform: translateX(-100%);
        opacity: 0.2;
    }
    50% {
        transform: translateX(100%);
        opacity: 1;
    }
    100% {
        transform: translateX(200%);
        opacity: 0.2;
    }
}

.data-flow-icon {
    /* Add a subtle glow for extra impressiveness */
    text-shadow: 0 0 15px rgba(255, 193, 7, 0.8);
}

