@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css');

.nav {
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass {
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(1.8px);
    -webkit-backdrop-filter: blur(1.8px);
}

.marquee-section {
    position: relative;
    background-color: #072E63;
    padding: 2px 0;
    z-index: 5;
    margin: 0;
    /* border-radius: 0 0 40px 40px; */
    overflow: hidden;
    /* Ensures smooth looping */
    bottom: 60px;
    padding: 20px;
}

.marquee-section .inner-container {
    max-width: 1820px;
    margin: 0 auto;
    overflow: hidden;
}

.marquee-section .marquee {
    display: flex;
    gap: 0px;
    /* No extra gap */
    overflow: hidden;
    white-space: nowrap;
    user-select: none;
    width: max-content;
    animation: scroll-loop 30s linear infinite;
}

/* ✅ Duplicate text for seamless scrolling */
.marquee-section .marquee-block {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 30px;
    /* Adjust spacing */
    flex-shrink: 0;
    white-space: nowrap;
}

/* Reduce text spacing for compact view */
.marquee-section .marquee-block .content-box {
    padding: 5px 10px;
}

.marquee-section .marquee-block .content-box .title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* ✅ Smooth Infinite Scrolling Without Delay */
@keyframes scroll-loop {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* text */




.container {
    width: 60%;
    margin: auto;
}

.h {
    text-align: left;
    font-size: 24px;
    margin-bottom: 20px;
}

.timeline {
    position: relative;
}

.step {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 40px;
}

.step::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 50px;
    height: 100%;
    width: 2px;
    background: #ff8000;
    /* background-image: url('../Public/images/download.png'); */
    z-index: -1;
}

.step:last-child::before {
    display: none;
}

.icon {
    width: 40px;
    height: 40px;
    background: #B0D4EB;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    margin-right: 20px;
    position: relative;
    z-index: 2;
    border: 3px solid white;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
}

.content {
    background: white;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    max-width: 500px;
}

.h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    .step {
        flex-direction: column;
        align-items: flex-start;
    }

    .icon {
        margin-bottom: 10px;
    }


}