.marquee-parent {
    position: relative;
    overflow: hidden;
    height: 30px;
}

.marquee-child {
    display: block;
    width: 100%;
    /* width of your text div */
    height: 30px;
    /* height of your text div */
    position: absolute;
    font-weight: bold;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    /* change 5s value to your desired speed */
}

.marquee-child:hover {
    animation-play-state: paused;
    cursor: pointer;
}

@keyframes marquee {
    0% {
        left: 100%;
    }

    100% {
        left: -2500px;
        /* same as your text width */
    }
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 30px;
    padding-top: 5px;
    background-color: white;
    color: white;
    text-align: center;
}

.rounded-5,
.form-control {
    border-radius: 5px !important;
}

.esptpd-btn {
    background: linear-gradient(135deg, #a1c3f7 0%, #5b82ef 100%);
    color: #ffffff;
    border-color: #a1c3f7;
    width: 100%;
    border-radius: .75rem;
}

.feature-icon-link {
    width: 120px;
    height: 120px;
    margin-bottom: 1.5rem;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
    height: 100%;
    width: 75%;
    line-height: 1.6;
}