/* Additional Video Styling */
.about-video-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.about-video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(0, 123, 255, 0.2), transparent);
    pointer-events: none;
    border-radius: 10px;
}

/* Video loading indicator */
.about-video-container::before {
    content: 'SMOO';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-color);
    z-index: 3;
    opacity: 0.7;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transition: opacity 0.5s;
}

.about-video-container.video-loaded::before {
    opacity: 0;
}

#aboutVideo {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s ease;
    background-color: #000;
}

#aboutVideo:hover {
    transform: scale(1.02);
}

/* Video branding overlay */
.video-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    color: var(--primary-color);
    font-size: 16px;
    opacity: 0.7;
    transition: opacity 0.3s;
    z-index: 4;
    pointer-events: none;
}

.about-video-container:hover .video-overlay {
    opacity: 1;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-play-btn i {
    font-size: 40px;
    color: var(--primary-color);
}

.about-video-container:hover .video-play-btn {
    opacity: 1;
}

.video-fullscreen-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    z-index: 3;
    font-size: 12px;
    transition: all 0.3s;
    opacity: 0; /* Hidden by default */
}

.video-fullscreen-btn:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}
