     .video-thumbnail {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}

.card-body {
    height: 100px; /* Fixed height for each video card */
    overflow: hidden;
    position: relative; /* Added to position elements inside */
}

.card-text {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Limit to 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Style for the 'Watch Video' button */
.card-body .btn {
    position: absolute;
    bottom: 25px; /* 25px above the bottom line */
    left: 50%;
    transform: translateX(-50%); /* Center the button horizontally */
}

/* Search bar styling */
.search-bar {
    position: relative;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 80%;
    margin-top: 0px; /* ?? ???? ?????? ??? ??? ??? ???? ???? ???? ?? ?????? */
    background: linear-gradient(to right, #00c6ff, #0072ff); /* Blue gradient */
    border: none; /* Remove border */
    border-radius: 25px; /* Rounded corners */
}

.search-bar input {
    width: 100%;
    padding: 10px 20px;
    border: none;
    border-radius: 25px; /* Match the search bar radius */
    background: transparent; /* Remove default background */
    color: white; /* Text color */
    font-size: 16px;
    outline: none; /* Remove outline */
}
 footer {
            text-align: center;
            padding: 10px;
            background-color: #333;
            color: white;
            position: relative;
            width: 100%;
        }
footer p {
        margin-bottom: 0px; 
		line-height: 1.2; /* ?? ????? */
    }
	
	/* ?????? ?? ????? ??? ??? ??? ?? ?????? ????? ?? ???? */

/* ?? ????? ?? ??? ???? ???? ??? ?? adjust ???? */
main {
    margin-top: 0px; /* ?? ????? ???? ?? ???? ??? ??? ??? ?? ?????? */
}

.navbar {
    height: 80px; /* Keep navbar height */
    padding-top: 10px; /* Padding for navbar */
	z-index: 1050;
	position: relative;
}
/* Stylish Toggler Button */
.stylish-toggler {
    border: none;
    background: transparent;
    outline: none;
    transition: transform 0.3s ease-in-out;
}

.stylish-toggler:focus {
    transform: rotate(90deg);
}

/* Offcanvas Sidebar Custom Style */
.stylish-offcanvas {
    width: 250px;
    background: linear-gradient(to right, #232526, #414345);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
}

.stylish-offcanvas .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stylish-offcanvas .offcanvas-body {
    padding: 20px;
}

.stylish-offcanvas .nav-link {
    font-size: 18px;
    padding: 12px;
    color: #ffffff;
    transition: all 0.3s ease-in-out;
}

.stylish-offcanvas .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

/* Responsive Navbar */
@media (max-width: 992px) {
    .navbar .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}
