/*@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;700&display=swap');*/

/*body {*/
/*    font-family: 'Noto Sans', sans-serif;*/
/*}*/

/*@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@400;500;700&display=swap');*/

/*body {*/
/*    font-family: 'Libre Franklin', sans-serif;*/
/*}*/



/*@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;500;800&display=swap');*/

/*body {*/
/*    font-family: 'Nunito Sans', sans-serif;*/
/*}*/

/* nunito-sans-regular - cyrillic_cyrillic-ext_latin_latin-ext_vietnamese */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 400;
    src: url('/wp-content/uploads/fonts/nunito-sans-v19-cyrillic_cyrillic-ext_latin_latin-ext_vietnamese-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* nunito-sans-500 - cyrillic_cyrillic-ext_latin_latin-ext_vietnamese */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 500;
    src: url('/wp-content/uploads/fonts/nunito-sans-v19-cyrillic_cyrillic-ext_latin_latin-ext_vietnamese-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* nunito-sans-800 - cyrillic_cyrillic-ext_latin_latin-ext_vietnamese */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 800;
    src: url('/wp-content/uploads/fonts/nunito-sans-v19-cyrillic_cyrillic-ext_latin_latin-ext_vietnamese-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

body {
    font-family: 'Nunito Sans', sans-serif;
}


body.admin-bar .navbar.fixed-top {
    margin-top: 32px;
}


@media screen and (max-width: 782px) {
    body.admin-bar .navbar.fixed-top {
        margin-top: 46px;
    }
}

@media screen and (max-width: 782px) {
    .nav-item{
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

#ast-scroll-top{
    display: none !important;
}

:root {
    --primary_blue: #2563eb;
    --dark_blue: #1e40af;
    --light_blue: #eff6ff;
    --text_dark: #1f2937;
    --text_light: #6b7280;
    --bg_white: #ffffff;

}

body {
    color: var(--text_dark);
    background-color: var(--bg_white);
    overflow-x: hidden;
}


.hero_section {
    padding-top: 50px;
    padding-bottom: 50px;
    background: linear-gradient(135deg, var(--light_blue) 0%, #ffffff 100%);
    position: relative;
}

.hero_title {

    color: #354255;
}

.hero_subtitle {
    font-size: 1.25rem;
    color: var(--text_light);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.btn_custom_primary {
    background-color: var(--primary_blue);
    color: white;
    padding: 12px 32px;
    border-radius: 5px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn_custom_primary:hover {
    background-color: var(--dark_blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
    color: white;
}

.feature_card {
    padding: 2rem;
    border-radius: 6px;
    background: white;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
}

.feature_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--primary_blue);
}

.feature_image {
    width: 100%;

    object-fit: cover;
    border-radius: 7px;
    margin-bottom: 1.5rem;
}

.feature_image_placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--light_blue) 0%, #dbeafe 100%);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.feature_title {
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.feature_text {
    color: var(--text_light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.step_number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary_blue);
    line-height: 1;
    margin-bottom: 1rem;
    font-family: sans-serif;
}

.step_card {
    position: relative;
    z-index: 1;
}

.code_block {
    background-color: #1e293b;
    color: #e2e8f0;
    padding: 1.5rem;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    position: relative;
}



.cta_title {
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.btn_custom_white {
    background-color: white;
    color: var(--primary_blue);
    padding: 12px 32px;
    border-radius: 5px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn_custom_white:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: var(--primary_blue);
}


.navbar-brand {
    font-weight: 800;
    color: var(--primary_blue) !important;
    font-size: 1.5rem;
}


html {
    scroll-behavior: smooth;
}

.footer {
    background-color: var(--dark_blue);
    color: white;
    padding: 40px 0;

}


.pricing_section {
    background-color: #f8fafc;
    padding: 100px 0;
}

.pricing_card {
    background: white;
    border-radius: 6px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--primary_blue);
}

.pricing_badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--light_blue);
    color: var(--primary_blue);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price_amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text_dark);
    margin-bottom: 0.5rem;
}

.price_period {
    color: var(--text_light);
    font-size: 1rem;
}

.pricing_features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing_features li {
    margin-bottom: 1rem;
    color: var(--text_light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.check_icon {
    color: var(--primary_blue);
    flex-shrink: 0;
}
.logo_text_white{
    color: #fff;
}
.logo_text_dark{
    color: #333;
}
.logo_text_blue{
    color: #0c61f7;
}
.logo{
    width: 36px;
    height: 36px;
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

#page {
    display: flex;
    flex-direction: column;
    flex: 1; /* fills remaining body height below admin bar */
}

#content {
    flex: 1; /* pushes footer down even if empty */
}




.cta-block {
    background: var(--primary_blue);
    border-radius: 16px;
    padding: 60px 40px;
    color: white;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
    background-image: url('https://translatejs.com/wp-content/uploads/images/dotted_map_light.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.cta-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}
.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 30px;
    line-height: 1.6;
}
.cta-features {
    margin: 30px 0;
}
.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}
.feature-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}
.cta-button {
    background: white;
    color: #667eea;
    font-weight: 600;
    padding: 15px 40px;
    /*border-radius: 50px;*/
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);

    background: #1c2e85;
    color: white;
}
.cta-note {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.85;
}

/*article{*/
/*    padding-top: 40px !important;*/
/*}*/

.cta_section {
    background-color: var(--primary_blue);
    color: white;

    text-align: center;
}
.call_to_action{
    padding: 80px 0;
    width:100%;


    background-image:url('https://translatejs.com/wp-content/uploads/images/dotted_map.png');
    background-repeat:no-repeat;
    background-position:center;
    background-size:contain;
}

.ast-blog-single-element a {
    text-decoration: none !important;
}

b,code, strong {
    margin-left: 5px !important;
    margin-right: 5px !important;
}

.admin_avatar{
    display: inline-block;
    width: 32px;
    height: 32px;
    background-image:url('https://translatejs.com/wp-content/uploads/images/admin_avatar.jpg');
    background-repeat:no-repeat;
    background-position:center;
    background-size:contain;
}
.custom-author-info{
    font-size: 0.8rem;
    color: #888;
}

.bg-wrapper {
    position: relative;
    width: 100%;
    padding-top: 80%; /* 5:4 ratio → (4 / 5) × 100 */
}

.bg-box {
    position: absolute;
    inset: 0;

    background-image: url("https://translatejs.com/wp-content/uploads/images/seo.jpg");
    background-size: cover;
    background-position: center;

    padding: 2rem;
    display: flex;
    align-items: center;
}