html, body {
    height: 100%;
    width: 100%;
}
.left img{
    width: 100px;
    height: 70px;
}
.container{
    max-width: 80vw;
    margin: auto;
}
nav ul li{
    list-style: none;
    padding: 0 12px;
    display: inline-block;
}
.right input{
    padding: auto 50px;
    margin: auto 70px;
    width: 300px;
}
.containers {
    box-shadow: 0 4px 8px rgba(196, 6, 6, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000; /* Ensures header stays above other content */
    background: #fff; /* Prevents transparency when scrolling */
}
.right input {
    height: 27px;
    padding: auto 50px;
    margin: auto 70px;
    width: 300px;
    border-radius: 2px; /* Makes the input rounded */
    border: none;
    background-color: rgb(223, 245, 236);
}

.right input:focus {
    background-color: #f0f5f4d8; /* Change to your desired color */
    outline: none;             /* Optional: removes default outline */
}
.mx-2 {
    display: flex;
    align-items: center;
    flex-direction: column; /* Aligns items vertically */
    cursor: pointer; /* Makes it clickable */
}
.mx-2 img {
    width: 20px;
    height: 20px;
    margin-right: 8px; /* Space between image and text */
    margin-bottom: 2px;
}
.slide {
    display: none;
    width: 100%;
    height: 350px;
    margin-top: 30px;
    object-fit: cover;
    cursor: pointer;
}

.slide.active {
    display: block;
}

.heading{
    padding: 50px 0 0 20px;
    text-align: left ;
    margin-top: 20px;
    font-size: 30px;
    color: #333;
    /* letter-spacing: 1ex; */
}

.section-1{
    overflow: hidden;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.kids-slider-track {
    display: flex;
    margin-top: 20px;
    gap: 10px;
    animation: kids-slide 20s linear infinite;
}

.slide-2 {
    width: 250px;
    height: 320px;
    object-fit: cover;
    margin-top: 10px;
    margin-bottom: 10px;
    flex-shrink: 0;
}

@keyframes kids-slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-60%);
    }
}


