@font-face {
    font-family: 'Montserrat-SemiBold';
    src: url('../font/Montserrat/static/Montserrat-SemiBold.ttf') format('truetype');
    font-weight: 500 1000;
    font-stretch: 25% 151%;
}

@font-face {
    font-family: 'Montserrat-Bold';
    src: url('../font/Montserrat/static/Montserrat-Bold.ttf') format('truetype');
    font-weight: 500 1000;
    font-stretch: 25% 151%;
}

@font-face {
    font-family: 'Montserrat-Medium';
    src: url('../font/Montserrat/static/Montserrat-Medium.ttf') format('truetype');
    font-stretch: 25% 151%;
}

@font-face {
    font-family: 'Montserrat-ExtraBold';
    src: url('../font/Montserrat/static/Montserrat-ExtraBold.ttf') format('truetype');
    font-weight: 900 1000;
    font-stretch: 25% 151%;
}

@font-face {
    font-family: 'Montserrat-Regular';
    src: url('../font/Montserrat/static/Montserrat-Regular.ttf') format('truetype');
    font-weight: 100 1000;
    font-stretch: 25% 151%;
}

body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #3aada9;
}

/* Header Section */
.header-container {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 100px;
    background-color: white;
    border-bottom: solid;
    position: relative; /* Needed for the mobile menu toggle */
    font-family: 'Montserrat-SemiBold', sans-serif;
}

.language-section{
    display: flex;
    width: 60px;
    justify-content: space-around;
}

.language-link {
    color: #14453d;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
}

.nav-link {
    color: #14453d;
    font-size: 16px;
    text-decoration: none;
    margin-right: 20px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.left-logo-container{
    position: absolute;
    width: 50px;
    height: 30px;
    background-color: white;
    border-bottom: solid;
    z-index: 2; /* ensure the containers appear above the logo */
    margin-top: -26px;
    margin-right: 235px;
    transform: rotate(45deg);
}

.right-logo-container{
    position: absolute;
    width: 50px;
    height: 29px;
    background-color: white;
    border-bottom: solid;
    z-index: 2; /* ensure the containers appear above the logo */
    margin-top: -24px;
    margin-left: 235px;
    transform: rotate(-45deg);
}

.logo-container {
    text-align: center;
    width: 222px;
    height: 61px;
    margin-top: -30px;
    background-color: white;
    border-bottom: solid;
    z-index: 3;
}

.logo-container img {
    max-width: 200px; /* Adjust size as needed */
}

.nav-container {
    display: flex;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    display: inline-block;
    margin-left: 20px;
}

nav a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

.language-selected{
    font-family: 'Montserrat-Bold', sans-serif;
}

.login-logo{
    width: 20px;
}
.nav-item {
    float: right; 
}

.nav-link {
    display: flex; /* Use flexbox to center the content */
    align-items: center; /* Align items vertically */
    justify-content: center; /* Center the content horizontally */
    width: 100%; /* Allow the anchor tag to take up the full width of the list item */
}

.login-text {
    margin-left: 8px; /* Add some space between the logo and the text */
}

.mobile-menu-toggle{
    display: none;
}

.mobile-view-disable {
    display: flex;
}

.mobile-view-enabled {
    display: none;
}

.logo-mobile-container{
    text-align: center;
    background-color: white;
}

.logo-mobile-container img {
    max-width: 230px; /* Adjust size as needed */
}

/* Show the mobile menu when active */
.nav-container.active {
    display: block;
}

/* Body Section */
.container {
    display: flex;
}

.left-sections {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-left: 80px;
}

.left-section-1 {
    padding-top: 10px;
    font-family: 'Montserrat-Bold', sans-serif;
}

.left-section-1 h1{
    font-size: 5.2vw;
    margin: 0;
    color: rgb(18,53,36);
    letter-spacing: -5px;
    margin-top: 60px;
}

.left-section-2 {
    font-family: 'Montserrat-Bold', sans-serif;
}

.left-section-2 h1{
    font-size: 8.6vw;
    margin: 0;
    color: white;
    letter-spacing: -1px;
    line-height: 0.8;
}

.left-section-3 {
    font-family: 'Montserrat-Medium', sans-serif;
    padding-top: 20px;
    padding-left: 10px;
}

.left-section-3 p {
    font-size: 2vw;
    margin: 0;
    color: #14453d;
}

.left-section-4 {
    padding-top: 45px;
    text-align: center;
    justify-content: center;
}

.left-section-4 button {
    font-family: 'Montserrat-ExtraBold', sans-serif;
    font-size: 2vw;
    border: 2px solid white;
    
    background-color: rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 30px;
    padding-left: 35px;
    letter-spacing: 5px;
}

.right-section {
  flex: 1;
  position: relative;
}

.right-section img{
    width: 38vw;
}


.try-now-button{
    cursor: pointer;
}

.try-now-button:hover{
    background-color: rgba(255, 255, 255, 0.5);
}

.trynow-redirect{
    color: white;
    text-decoration: none;
}

.background-image{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-75%, 230%);
    z-index: -1;
}

.background-image img{
    width: 35vw;
}

.nav-icon{
    width: 25px;
}

.footer {
    padding: 20px;
    position: fixed;
    right: 0;
    bottom: 0;
}

.footer a {
    margin-left: 20px;
    text-decoration: none;
    color: #14453d;
    font-size: 16px;
    font-family: 'Montserrat-Regular', sans-serif;
}

.footer a:hover {
    text-decoration: underline;
}

#tutorial_video{
    width: 6.5vw;
}

.video-container {
    position: absolute;
    cursor: pointer;
    left: 38vw;
}

.close-button {
    cursor: pointer;
    position: absolute;
    color: #14453d;
    top: 0px;
    right: 6px;
    font-size: 25px;
}

@media screen and (max-width: 1400px) {

    .left-section-1 h1 {
        margin-top: 20px;
    }

    .left-section-4{
        padding-top: 25px;
    }

    .background-image{
        transform: translate(-77%, 250%);
    }
}

@media screen and (max-width: 1200px) {
    .background-image{
        transform: translate(-77%, 260%);
    }
}

/* Mobile View */
@media (max-width: 1000px) {
    .header-container {
        padding-top: 20px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 5px;
        border-bottom: 1px solid;
    }

    .logo-wrapper{
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
    }

    .nav-container {
        position: fixed;
        right: 0;
        top: 0;
        height: 100%;
        background: white;
        width: 200px;
        flex-direction: column;
        align-items: flex-start;
        display: none; /* Hidden by default */
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease-in-out;
        z-index: 2;
    }
    
    .nav-wrapper{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }


    .nav-container ul {
        display: flex;
        margin-top: 80px;
    }

    .nav-item {
        display: block;
        margin: 10px 0;
    }

    .nav-link {
        margin-right: 0px;
    }

    .logo-mobile-container {
        position: relative;
    }

    .logo-mobile-container img {
        max-width: 40vw;
        position: absolute;
        margin-bottom: 10px;
        margin-right: 15px;
    }

    .container {
        display: flex;
        flex-direction: column;
    }

    .mobile-view-disable {
        display: none;
    }
    
    .mobile-view-enabled {
        display: flex;
    }

    .left-sections {
        padding-left: unset;
    }

    .left-section-1{
        text-align: center;
    }

    .left-section-1 h1 {
        font-size: 11.5vw;
    }

    .left-section-2 {
        text-align: center;
    }

    .left-section-2 h1 {
        font-size: 17vw;
    }

    .left-section-3 {
        padding-top: unset;
        text-align: center;
        margin-top: 5px;
    }

    .left-section-3 p {
        font-size: 4.5vw;
        padding-right: 5px;
        letter-spacing: -1px;
    }

    .right-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .right-section img {
        width: 80vw;
    }

    .right-section button {
        font-size: 6vw;
    }

    .footer {
        position: relative;
        display: flex;
        justify-content: space-evenly;
        text-align: unset;
        margin-right: unset;
        padding: 30px;
    }

    .footer a {
        font-size: 14px;
        margin-left: unset;
    }

    #tutorial_video{
        width: 15vw;
    }
    
    .video-container {
        left: unset;
        right: 0;
        margin-right: 20px;
        top: 0;
        margin-top: 30px;
    }

    
    .close-button {
        right: 3px;
        font-size: 11px;
    }
}