.carousel-container {
    /* background-color: #f8f9fa;  */
    /* background-color: yellow; */
    /* background: #f4f4f4; */
    overflow: hidden;
    white-space: nowrap;
}

.carousel-track {
    display: inline-flex;
    animation: scroll 15s linear infinite;
}

.logo {
    max-width: 100%;
    height: auto;
    margin: 10px 10px 0px 10px;
}

/* Animation to scroll the logos */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}


.specialty-title {
    font-size: 36px;
    color: #333;
    
    /* margin-bottom: 30px; */
    font-weight: bold;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    animation: slideIn 1.2s ease-in-out;
}



/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .specialty-title {
        font-size: 17px; /* Reduced font size for mobile */
    }
}





.specialty-section1 {
    padding: 50px;
    /* background: #f4f4f4; */
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); */
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;
    border-radius: 12px;
    max-width: 100%;
    margin: auto;
    /* background: #fff url('https://www.transparenttextures.com/patterns/gplay.png'); */
    /* Patterned background */
}