.videosection {
    padding: 20px 0;
}

.videotitle {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

.videotitle span {
    color: #17a2b8;
}

.fullvideodi {
    width: 100%;
    overflow: hidden;
}

.videoslider {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 15px 10px;
    scrollbar-width: none;
}

.videoslider::-webkit-scrollbar {
    display: none;
}

.videoframe {
    min-width: 230px;    /* same size as reels */
    height: 320px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    scroll-snap-align: start;
    border: 1px solid #e5e5e5;
}

.videoframe video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media (max-width: 500px) {
    .videoframe {
    min-width: 190px;    /* same size as reels */
    height: 260px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    scroll-snap-align: start;
    border: 1px solid #e5e5e5;
    }


    .blogcard{
    min-width: 250px;
    height: 250px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    scroll-snap-align: start;
    border: 1px solid #e5e5e5;
    text-decoration: none;
    color: #000;
    display: flex;
    flex-direction: column;
    }
}




/* blogs csss */


.blogsection {
    padding: 20px 0;
}

.blogtitle {
    font-size: 24px;
    font-weight: 700;
}

.blogtitle span {
    color: #17a2b8;
}

.blogslider {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-top: 10px;
    margin-bottom: 15px;
    scrollbar-width: none;
}

.blogslider::-webkit-scrollbar {
    display: none;
}

.blogcard {
    min-width: 260px;
    height: 280px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    scroll-snap-align: start;
    border: 1px solid #0e3696;
    text-decoration: none;
    color: #000;
    display: flex;
    flex-direction: column;
}

.blogimgbox {
    width: 100%;
    height: 55%;
    overflow: hidden;
}

.blogimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bloginfo {
    padding: 12px;
}

.bloginfo h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.bloginfo p {
    font-size: 14px;
    margin: 0;
    color: #555;
}


@media (max-width:500px) {
    .nitrodiv{
        justify-content: space-between;
    }
}