body {
    margin: 0;
    padding: 0;
    background-image: linear-gradient(to bottom, #008EFE, #005598);
    background-repeat: no-repeat;
    font-family: "Poppins", sans-serif;
    background-attachment: fixed;
    box-sizing: border-box;
}

header {
    width: 100%;
    background-color: #ffffff;
    padding: 10px 0;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.logoimage {
    width: 150px;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 20px;
    padding: 0;
}

.navbar ul li {
    font-size: 18px;
}

.navbar ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    margin-left: auto; /* Pushes the hamburger to the far right */
    padding-right: 20px; 
}


.video1{
    display: flex;
    flex-direction: column;
}

.content{
    justify-content: center;
    align-items: center;
    width: 1000px;
}
.video-placeholder{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1000px;
    height: 500px;
    background-color: #000;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    border-radius: 10px;
}

.videoContainer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
    background-color: #ececec;
    padding: 20px;
    border-radius: 10px;
    width: 1000px;
    margin-top: 30px;
    margin-bottom: 30px;
}

Video{
    width: 100%;
    height: 500px;
    border-radius: 10px;
}

.productContainer{
    display: flex;
    justify-content: center;
}

/* Dropdown styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none; /* Hide dropdown by default */
    position: absolute;
    background-color: #ffffff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 5px;
    z-index: 1000;
    top: 100%; /* Position below the dropdown button */
    left: 0;
    min-width: 150px;
}

.dropdown-content a {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

.dropdown-content a:hover {
    background-color: #f0f0f0;
}

/* Show dropdown when active */
.dropdown.active .dropdown-content {
    display: block;
}

/*responsive*/
@media screen and (max-width: 800px) {
    .navbar ul {
        flex-direction: column;
        gap: 10px;
    }

    .productContainer{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .content{
        width: 90%;
    }

    .videoContainer{
        width: 80%;
    }

    .video-placeholder{
        width: 90%;
    }

    .video1{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .navbar ul {
        display: none; /* Hide the menu by default */
        flex-direction: column;
        background-color: #ffffff;
        position: absolute;
        top: 60px;
        right: 20px;
        width: 200px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        padding: 10px;
        border-radius: 5px;
    }

    .navbar ul.active {
        display: flex; /* Show the menu when active */
    }

    .hamburger {
        display: block; /* Show the hamburger button */
    }
}