:root {
    --glass-bg: rgba(255, 255, 255, 0.12);
    /* رنگ و شفافیت شیشه */
    --glass-border: rgba(255, 255, 255, 0.22);
    --glass-blur: 10px;
    /* مقدار بلور (backdrop-filter) */
    --card-radius: 16px;
    --card-padding: 24px;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

html {
    font-size: 100%;
    overflow-y: scroll;
}

body {
    margin: 0;
    background-color: var(--e-global-color-17764f1);
    transition: background 1.5s ease;
}

/* Light Theme */
body.theme-light {
    background-color: var(--e-global-color-b1c61f7);
}

.light-text .elementor-heading-title,
.light-text .elementor-widget-text-editor {
    color: var(--e-global-color-b1c61f7);
    transition: color 0.5s ease;
}

body.theme-light .light-text .elementor-heading-title,
body.theme-light .light-text .elementor-widget-text-editor {
    color: var(--e-global-color-17764f1);
}

body .elementor-button {
    background-color: var(--e-global-color-b1c61f7);
    color: var(--e-global-color-17764f1);
    transition: background 0.5s ease, color 0.5s ease;
}

body.theme-light .elementor-button {
    background-color: var(--e-global-color-17764f1);
    color: var(--e-global-color-b1c61f7);
}


h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

a {
    color: var(--e-global-color-accent);
}

a:hover {
    color: var(--e-global-color-text);
}

button {
    cursor: pointer;
}

.e-con:not(.e-con-full) {
    --padding-left: 3rem;
    --padding-right: 3rem;
}

@media (min-width: 2400px) {
    html {
        font-size: 112%;
    }
}

@media (max-width: 1366px) {
    html {
        font-size: 95%;
    }
}


@media (max-width:1024px) {
    html {
        font-size: 90%;
    }

    .e-con:not(.e-con-full) {
        --padding-left: 2rem;
        --padding-right: 2rem;
    }
}

@media (max-width:767px) {
    html {
        font-size: 85%;
    }
}

/* Icon */
.elementor-icon-wrapper {
    line-height: 0;
}


/* Logo */
body .elementor-widget-theme-site-logo {
    filter: brightness(0) invert(1);
}

/* Menu Wrapper */
.menu-wrapper .text-part {
    /* position: relative; */
    /* background-color: white; */
    /* border-radius: 50px;
    padding: 0 25px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 80px;
    transition: width 0.6s cubic-bezier(0.77, 0, 0.175, 1),
        transform 0.6s cubic-bezier(0.77, 0, 0.175, 1); */
    height: 32px;
    align-items: center;
    overflow: hidden;
    width: 80px;
    transition: width .6s cubic-bezier(.77, 0, .175, 1), transform .6s cubic-bezier(.77, 0, .175, 1);
}

.menu-wrapper.active .text-part {
    width: 360px;
    transform: translateX(32px);
}

.menu-wrapper .menu-text,
.menu-wrapper .nav-links {
    position: absolute;
    white-space: nowrap;
}

.menu-wrapper .menu-text {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s cubic-bezier(0.77, 0, 0.175, 1),
        transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.menu-wrapper.active .menu-text {
    opacity: 0;
    transform: translateY(20px);
}

.menu-wrapper .nav-links a {
    opacity: 0;
    transform: translateY(-20px);
    transition: color 0.3s ease,
        opacity 0.5s cubic-bezier(0.77, 0, 0.175, 1),
        transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.menu-wrapper.active .nav-links a {
    opacity: 1;
    transform: translateY(0);
}

.menu-wrapper.active .nav-links a:nth-child(1) {
    transition-delay: 0.05s;
}

.menu-wrapper.active .nav-links a:nth-child(2) {
    transition-delay: 0.1s;
}

.menu-wrapper.active .nav-links a:nth-child(3) {
    transition-delay: 0.15s;
}

.menu-wrapper.active .nav-links a:nth-child(4) {
    transition-delay: 0.2s;
}

.menu-wrapper .icon-part {
    width: 32px;
    height: 32px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-shrink: 0;
    transition: opacity 0.5s cubic-bezier(0.77, 0, 0.175, 1),
        transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.menu-wrapper .initial-icon {
    order: 2;
    transform: scale(1);
    opacity: 1;
}

.menu-wrapper.active .initial-icon {
    opacity: 0;
    transform: translateX(-15px) scale(0);
}

.menu-wrapper .hover-icon {
    position: absolute;
    left: 0;
    top: 0;
    transform: scale(0);
    opacity: 0;
}

.menu-wrapper.active .hover-icon {
    opacity: 1;
    transform: scale(1);
}

/*glass*/
.elementor-widget-off-canvas .e-off-canvas__content {
    display: flex;
    align-items: center;
    /*height: 500px;*/
    /*border-radius: var(--card-radius);*/
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    backdrop-filter: blur(var(--glass-blur)) saturate(1.15);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.15);
    box-shadow: 0 6px 20px rgba(2, 6, 23, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

/* Footer Social Icons */
.footer-social-icons .elementor-social-icon i {
    transition: all 0.3s ease;
}

.footer-social-icons .elementor-social-icon-otters-icon-whatsapp:hover i {
    color: #00ff90;
    text-shadow: 0 0 10px #00ff90,
        0 0 20px #00ff90,
        0 0 40px #00ff90;
}

.footer-social-icons .elementor-social-icon-otters-icon-telegram:hover i {
    color: #00aaff;
    text-shadow: 0 0 10px #00aaff,
        0 0 20px #00aaff,
        0 0 40px #00aaff;
}

.footer-social-icons .elementor-social-icon-otters-icon-facebook:hover i {
    color: #1877F2;
    text-shadow: 0 0 10px #1877F2,
        0 0 20px #1877F2,
        0 0 40px #1877F2;
}

.footer-social-icons .elementor-social-icon-otters-icon-linkedin:hover i {
    color: #0A66C2;
    text-shadow: 0 0 10px #0A66C2,
        0 0 20px #0A66C2,
        0 0 40px #0A66C2;
}

.footer-social-icons .elementor-social-icon-otters-icon-instagram:hover i {
    color: #E1306C;
    text-shadow: 0 0 10px #E1306C,
        0 0 20px #E1306C,
        0 0 40px #E1306C;
}

.footer-social-icons .elementor-social-icon-otters-icon-youtube:hover i {
    color: #FF0000;
    text-shadow: 0 0 10px #FF0000,
        0 0 20px #FF0000,
        0 0 40px #FF0000;
}