@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body, html {
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, black, #00020c);
    color: white;
    text-align: center;
    height: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: linear-gradient(to bottom, #000A31, #00000075);
    backdrop-filter: blur(5px);
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.mobile-only {
    display: none;
}

.desktop-logo {
    display: block;
    width: 200px;
    height: auto;
}

/* Menu mobile logo */
.hamburger-logo {
    display: none;
}

.navbar a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    margin-left: 35px;
    transition: 0.3s;
}

.navbar a:hover {
    color: #f00;
}

.mobile-menu {
    display: none;
    cursor: pointer;
    padding-right: 10px;
}

.mobile-menu div {
    width: 32px;
    height: 2px;
    background: #fff;
    margin: 8px;
    transition: 0.3s;
}

.cta-button-header {
    background-color: #4f46e5;
    color: white;
    padding: 6px 20px;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    margin-right: 30px;
}

.cta-button-header:hover {
    background-color: #2a20e6;
}

.cta-button-header-getstart {
    background-color: transparent;
    color: white;
    padding: 5px 20px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ffffff;
    cursor: pointer;
    margin-right: 30px;
}
.cta-button-header-getstart:hover {
    border: 1px solid #4f46e5;
    
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-dropdown .dropdown-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding-bottom: 3px;
    transition: border-bottom 0.3s ease;
}

.language-dropdown .dropdown-btn img {
    vertical-align: middle;
    width: 35px;
    height: 25px;
    margin-right: 20px;
}

.language-dropdown .dropdown-content img {
    width: 30px;
    height: 20px;
    margin-right: 5px;
}

.language-dropdown .dropdown-content {
    display: none;
    position: absolute;
    left: 35%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    min-width: 70px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
    padding: 5px 0;
    margin-top: 15px;
}

.language-dropdown .dropdown-content a {
    color: white;
    padding: 5px 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    border-radius: 5px;
}

.language-dropdown .dropdown-content a:hover {
    background-color: rgba(77, 77, 77, 0.5);
}

.language-dropdown .dropdown-content.show {
    display: block;
}

.hamburger-menu-content {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    background-color: #161616;
    z-index: 101;
    padding: 20px;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.4);
    transition: 0.3s ease;
}

.hamburger-menu-content.active {
    display: block;
}

.hamburger-menu-content a {
    display: block;
    padding: 15px 0;
    font-size: 14px;
    color: #bbb;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.hamburger-menu-content a:hover {
    color: #fff;
}

.cta-buttons {
    margin-top: 50px;
    margin-bottom: 60px;
}

.cta-buttons button {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 15px;
    border: none;
    border-radius: 5px;
    background-color: #4f46e5;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    color: white;
    cursor: pointer;
}

.video-container {
  width: 100%;
  margin-top: 20px;
}
.video-container video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 3px solid rgb(110, 110, 110);
  
}
.video-container:hover video {
    box-shadow: 0 0 20px rgb(0, 255, 255);
    border: 3px solid rgb(0, 255, 255);
}


.main-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 150px 0 100px;
}

.left-content {
    text-align: left;
    width: 50%;
}

.left-content h1 {
    color: white;
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 55px;
}

.subtitle {
    color: white;
    font-size: 20px;
    margin-bottom: 10px;
}

.description {
    color: #00e1ff;
    font-size: 14px;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #4f46e5;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    width: 80%;
}

.cta-button:hover {
    background-color: #2a20e6;
}

.right-content {
    width: 50%;
    text-align: right;
}

.right-content video {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.content-section {
    position: relative;
    margin-top: 100px;
    text-align: center;
}

.overlay-text {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%; 
    color: white;
}

.overlay-text h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.overlay-text .subtitle {
    color: #00e1ff;
    font-size: 18px;
    margin-bottom: 10px;
}

.overlay-text .description {
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
}

.content-image {
    position: relative;
    text-align: center;
}

.new-feature-img {
    max-width: 100%;
    border-radius: 10px;
    margin-top: 50px;
}

.cta-button {
    margin-top: 10px;
    width: 400px;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #1c1c1c;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgba(128, 128, 128, 0.247);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4f46e5;
}

.scrollbar {
    scrollbar-width: thin;
    scrollbar-color: #4f46e5 #1c1c1c;
}


@media (max-width: 768px) {

    .mobile-menu {
        display: block;
    }

    .cta-button-header {
        display: none;
    }

    .hamburger-menu-content {
        width: 100%;
    }

    .cta-buttons button {
        margin-bottom: 10px;
    }

    .hamburger-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .overlay-text h1 {
        font-size: 27px;
    }

    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .hamburger-logo {
        display: block;
        width: 150px;
        height: auto;
    }

    .mobile-logo {
        width: 50px;
        height: auto;
        margin-left: 10px;
    }

    .main-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .left-content,
    .right-content {
        width: 100%;
    }
    
    .left-content h1{
        font-size: 30px;
    }

    .right-content {
        text-align: center;
    }

    .cta-button {
        max-width: 310px;
        align-items: center;
    }

    .video-container {
        margin-top: -50px;
    }
    .right-content {
        margin-top: 20px;
    }

    .new-feature-img {
        margin-top: 80px;
    }
    .content-section {
        margin-top: 50px;
    }


}