.bg-primary {
    background-color: #B8860B !important;
}

.text-primary {
    --bs-text-opacity: 1;
    color: #B8860B !important;
}



/* Floating Video Container (Left Side) */
.floating-video {
    position: fixed;
    left: 20px;
    /* Left side */
    bottom: 80px;
    width: 200px;
    /* Adjust Width */
    height: 400px;
    /* Adjust Height */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    /* Ensure it stays above other elements */
    background-color: #000;
    /* Prevent transparency */
}

.floating-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Proper Fit */
    border-radius: 10px;
}

/* Close Button Styling */
.close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 20px;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 50%;
    z-index: 1001;
}

.close-btn:hover {
    background: rgb(92, 91, 91);
}