.background-video-container {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: -30px; /* Add this line to move the video up */
    height: 80vh;
    overflow: hidden;
    z-index: 1;
}

.background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);   /* This creates the dark overlay was 0.4*/ 
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.video-content {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.video-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Paragraph text: white */

.video-content p {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.video-buttons {
    display: flex;
    display: flex !important;
    gap: 1rem !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 2rem !important;
}

.video-buttons .btn {
    padding: 10px 25px !important;
    font-size: 1.1rem !important;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s, transform 0.1s, filter 0.3s !important;
    margin: 0 10px !important;
    min-width: 150px !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.video-buttons .btn i {
    margin-right: 8px;
    font-size: 20px;
    color: inherit;
    vertical-align: middle;
}

.btn-primary1 {
    background:  #FF0015 !important;
    border: none !important;
    color: #fff !important;
}

.btn-secondary2 {
    background:  #FFA500 !important;
    border: none !important;
    color: #fff !important;
}

.btn-tertiary3 {
    background:#9932CC !important;
    border: none !important;
    color: #fff !important;
}

/* Hover states */
.background-video-container .video-buttons .btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: scale(1.05);
    
  /*  transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2) !important;  */
}

/* Click effect: shrink and keep text color white */
.background-video-container .video-buttons .btn:active {
    transform: scale(0.95);
    color: #fff;
}

.delivery-icon {
    width: 20px; /* Adjust the width as needed */
    height: 20px; /* Adjust the height as needed */
    vertical-align: middle; /* Align the icon with the text */
    margin-right: 5px; /* Add some spacing to the right of the icon */
    filter: invert(100%); /* Makes black white */
}

.schedule-icon {
    width: 20px; /* Adjust the width as needed */
    height: 20px; /* Adjust the height as needed */
    vertical-align: middle; /* Align the icon with the text */
    margin-right: 5px; /* Add some spacing to the right of the icon */
    filter: invert(100%); /* Makes black white */
}

.professional-icon {
    width: 20px; /* Adjust the width as needed */
    height: 20px; /* Adjust the height as needed */
    vertical-align: middle; /* Align the icon with the text */
    margin-right: 5px; /* Add some spacing to the right of the icon */
    filter: invert(100%); /* Makes black white */
}




.bgvbutton-text {
    padding-left: 8px; /* Adjust as needed */
}

@media (max-width: 768px) {
    .background-video-container {
        height: 60vh;
    }

    .video-content h1 {
        font-size: 2.5rem;
    }

    .video-content p {
        font-size: 1.2rem;
    }

    .video-buttons {
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center !important;
        
    }
    .video-buttons .btn {
        width: 70% !important;
        margin: 5px 0 !important;
    }
}
