.title-head {
    font-size: 1.5rem;
    /* approx h3 size */
    font-weight: 600;
    line-height: 1.4;
}

.heading-bx ul li {
    margin-bottom: 8px;
    font-size: 15px;
}

.custom-img-radius {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.marquee-container {
    overflow: hidden;
    position: relative;
}

.marquee-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.marquee-card {

    border-radius: 10px;
    padding: 30px 20px;
    text-align: left;
    font-size: 16px;
    color: #1e293b;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    min-width: 300px;
    margin: 0 10px;
    flex: 0 0 auto;
}

.nav-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    font-size: 24px;
    background-color: white;
    width: 40px;              
    height: 40px;              
    padding: 0;                
    text-align: center;        
    line-height: 40px;        
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.nav-left {
    left: 10px;
}

.nav-right {
    right: 10px;
}