@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100%; /* Ensure full height */
    overflow: hidden; /* Prevent scrolling */
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the video covers the entire screen */
    z-index: -1; /* Position the video behind the content */
}

.btn{
    height: 35px;
    background: green;
    border: 0;
    border-radius: 5px;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: all .3s;
    padding: 0px 10px;
}
.btn:hover{
    opacity: 0.82;
}
.submit{
    width: 100%;
}
.link{
    margin-bottom: 15px;
}

/*** home ***/

.nav {
    display: flex;
    justify-content: space-between; /* Ensures logo is on the left and buttons are on the right */
    align-items: center;
    background-color: white;
    padding: 10px 5%;
    height: 60px; /* Fixed height for proper alignment */
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    width: 50px; /* Adjust the size of the logo */
    height: auto;
    object-fit: contain;
}
.right-links {
    display: flex;
    align-items: center;
    gap: 15px; /* Adds spacing between buttons */
}


@media only screen and (max-width:840px){
    .main-box .top{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .top .box{
        margin: 10px 10px;
    }
    .bottom{
        margin-top: 0;
    }
}