.navbar-brand img {
    height: 40px;
    /* Adjust as needed */
}


.main-link {
    font-size: 16px;
    font-weight: 500;
    padding: 10px 15px;
}


.search-bar {
    max-width: 200px;
}

.account-icon {
    font-size: 20px;
    color: #333;
    margin-left: 15px;
    cursor: pointer;
}

.account-icon:hover {
    color: #007bff;

}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.video-placeholder,
video {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    transition: opacity 1s ease-in-out;
}

.flash-overlay-container {
    position: fixed;
    /* Stays in place even if you scroll */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    /* Black with 60% opacity */
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
    z-index: 9999;
    /* Sit on top of everything */
    animation: fadeIn 0.3s ease-in-out;
}

.flash-message-box {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 500px;
    width: 80%;
    border-top: 5px solid rgb(30, 188, 161);
    /* Green top border for success */
}

.flash-message-box h3 {
    margin-top: 0;
    color: #333;
}


.flash-message-box p {
    font-size: 18px;
    color: #555;
}

.flash-close-btn {
    background-color: rgb(30, 188, 161);
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.flash-close-btn:hover {
    background-color: rgb(23, 143, 123);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.spec-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.spec-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border-color: #008080; /* Matches your teal headers */
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 1000px) {
    .video-container {
        max-width: 100%;
        border-radius: 0;
        /* Optional: Remove rounding on full-bleed mobile view */
        box-shadow: none;
    }

    .video-hero-section {
        padding: 0;
        /* Remove padding so video touches the screen edges */
    }
}

.video-placeholder,
#lazyVideo {
    width: 100%;
    display: block;
}