.banner1.container {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
    text-align: center;
}


.banner1.container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.landingvideo, iframe{
    width:100%;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 10px;
    padding: 5px;
    box-shadow: 0px 0px 8px gray;
}

.langingvideo, .col-lg-5 img {
    border-radius: 15px;
    margin-bottom: 10px;
}

.searchcourse {
    position: relative;

    .search-box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-radius: 50px;
        padding: 0px 15px;
        background: white;
        transition: all 0.3s ease-in-out;

        input {
            border: none;
            outline: none;
            box-shadow: none; // Ensures no border highlight
            width: 100%;
            padding: 8px;
            font-size: 16px;
            background: transparent;
            color: #333; // Ensure text is visible

            &::placeholder {
                color: #888; // Lighter gray for placeholder text
            }

            &:focus {
                border: none;
                outline: none;
                box-shadow: none; // Remove any focus effect
            }
        }

        span {
            border: none;
            background: none;
            cursor: pointer;
            color: #007bff;
            font-size: 18px;
            display: flex;
            justify-content: center;
            transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;

            &:hover {
                color: #0056b3;
                transform: scale(1.2);
            }
        }
    }

    .suggestions-list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 1000;
    max-height: 300px; /* Set max-height to control the visible area */
    overflow-y: auto;  /* This makes it scrollable */
}

.suggestions-list li {
    padding: 5px 10px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    color: #333;
}

.suggestions-list li:hover {
    background: #f2f2f2;
    color: blue;
}


}


@media (max-width: 768px) {
    .banner1.container {
        padding: 10px;
        
    }
    
    .banner1.container img {
        border-radius: 5px;
        
    }
    
    .landingvideo, iframe{
        margin-top: 15px;
        box-shadow: 0px 0px 5px gray;
    }
}