/* Header Styles */
.header {
    position: sticky;
    top: 0;
    z-index: 999;
    /*background: rgba(255, 255, 255, 0.95);*/
    /*backdrop-filter: blur(10px);*/
    padding: 22px;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 14px 24px 14px 16px;
    border-radius: 15px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), 0px 0px 24px rgba(0, 0, 0, 0.16);
}

.logo-container {
    width: 59px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-container a{display: block;height: 100%}
.logo-blue {
    width: 59px;
    height: 42px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    justify-content: flex-start;
    margin-left: 40px;
}

.nav-link {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #0093d8;
    text-decoration: none;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.nav-link:hover {
    opacity: 0.8;
}

.dropdown-arrow {
    font-size: 10px;
    transform: rotate(180deg);
}

.btn-request-demo {
    background: linear-gradient(to top, #259dd5, #66bae2);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 24px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 200px;
    justify-content: space-between;
    transition: 0.2s ease;
}


.btn-request-demo:after{content:'';width: 16px;height: 16px;display: inline-block;background: url(../img/button_arrow.svg) no-repeat 50% 50% / contain}
.btn-request-demo:hover {
    background: #fff;box-shadow: 0px 0px 24px 0px #00000029;color: #0093D8;
}
.btn-request-demo:hover:after{background: url(../img/button_arrow_blue.svg) no-repeat 50% 50% / contain}
.btn-request-demo.add_line:after{display: none}
.mlra{margin-left: auto;margin-right: auto}
.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.cart-icon-container {
    position: relative;
    cursor: pointer;
}

.cart-icon {
    position: relative;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0093d8;
    transition: color 0.3s ease;
}

.cart-icon:hover {
    color: #259dd5;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff6b6b;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
}

.language-icon {
    width: 32px;
    height: 32px;
}

.language-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.login-button {
    width: 48px;
    height: 48px;
}

.login-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #0093d8;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 8px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* Footer */
.footer {
    background: linear-gradient(to top, #259dd5, #66bae2);
    padding: 40px 96px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-logo {
    width: 380px;
    height: 96px;
    object-fit: contain;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-end;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
}

.footer-nav-row {
    display: flex;
    gap: 16px;
    align-items: center;justify-content: center;width: 100%;
}

.footer-link {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: white;
    text-decoration: none;
    padding: 0 16px;
}

.footer-link:hover {
    opacity: 0.8;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
}

.social-row {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(to top, #ededed, #ffffff 69.609%);
    border-radius: 8px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: white;
    letter-spacing: 0.28px;
}

/* Responsive adjustments for Header and Footer */
@media (max-width: 768px) {
    .footer-left{width: 100%}
    .footer-left .footer-logo{display: block;margin: 0 auto}
    .social-icons{flex-direction: row;width: 100%;justify-content: center;margin-bottom: 20px}
    .cart-notification {
        top: 80px;
        right: 16px;
        left: 16px;
        max-width: none;
        font-size: 14px;
        padding: 12px 20px;
    }

    .cart-icon {
        width: 28px;
        height: 28px;
    }

    .cart-count {
        width: 18px;
        height: 18px;
        font-size: 11px;
        top: -6px;
        right: -6px;
    }
    .header-container {
        padding: 8px 32px 8px 16px;
        flex-wrap: wrap;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        margin-top: 15px;
        border-radius: 15px;
        margin-left: 0;
    }

    .nav-menu.active {
        display: flex;
        min-height: 100vh;
        background: linear-gradient(0deg, #259DD5 0%, #66BAE2 100%);
        border-radius: 0;
        margin-top: -95px;
        padding-top: 125px;
        z-index: -1;align-items: flex-start;
    }

    .nav-link {
        color: #fff;
    }

    .btn-request-demo {
        margin-top: 12px;
        width: 100%;
        justify-content: center;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-right {
        order: 2;
    }
    .mobile-menu-toggle{order: 0}
    .logo-container{order: 1}
    .login-button{width: 32px;height: 32px}
    .footer {
        padding: 40px 24px;
    }

    .footer-container {
        flex-direction: column;
        gap: 32px;
    }

    .footer-right {
        align-items: flex-start;
        width: 100%;
    }

    .footer-nav {
        align-items: flex-start;
    }

    .footer-nav-row {
        flex-wrap: wrap;
    }

    .footer-logo {
        width: 250px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 8px 12px;
    }

    .logo-container {
        width: 40px;
        height: 32px;
    }

    .logo-blue {
        width: 48px;
        height: 32px;
    }

    .footer {
        padding: 32px 16px;
    }

    .footer-logo {
        width: 200px;
    }

    .footer-link {
        font-size: 14px;
        padding: 8px;
    }
}

.tutorial_icon{position: fixed;bottom: 50px;right: 50px;width: 100px;height: 100px;cursor: pointer;z-index: 111111;
    border-radius: 50%;display: flex;align-items: center;justify-content: center;box-shadow: 0px 0px 31px 4px #0000001A;padding: 20px;background: #fff}
.tutorial_icon img{width: 100%;height: auto}
@media (max-width: 768px) {
    .tutorial_icon{bottom: 32px;right: 32px;width: 64px;height: 64px;padding: 12px}
}

/*popup*/
.black_layout { display: none; z-index: 100000; position: fixed; top: 0;
    left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, .80); }
.popup_wrapper { display: none; position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; z-index: 100001; padding: 0; overflow: auto; }

.popup_inner { display: flex; min-height: 100%; align-items: center; padding: 30px 20px;
    justify-content: center;  }
.popup { background: #FFF; padding: 25px; width: 100%; border-radius: 30px; max-width: 990px; position: relative; }
.close_popup { width: 22px; height: 22px; display: block; position: absolute; z-index: 5; top: 50px; right: 50px;
    background: url(../img/close_icon.svg) no-repeat 50% 50% / 22px auto; }

.popup_icon img { display: block; margin: auto; padding: 16px 0; }
.popup_body { width: 100%; margin: auto; }
.popup_body h4 { font-size: 36px; font-weight: bold; margin-bottom: 35px; }

.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1e1e1e;
}

.form-label.required::after {
    content: ' *';
    color: #ec1c24;
}

.form-input,
.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #259dd5;
}

.btn {
    flex: 1;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #259dd5;
    color: white;
}

.btn-primary:hover {
    background: #66bae2;
}
.under_form{font-size: 10px;color: #808080;margin-top: 20px;text-align: center;font-weight: 400}
