@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 3.5rem;

    /*========== Colors ==========*/
    --first-color: hsl(218, 94%, 45%);
    --second-color: hsl(200, 85%, 64%);
    --title-color: hsl(218, 48%, 22%);
    --text-color: hsl(218, 8%, 36%);
    --text-color-light: hsl(218, 8%, 54%);
    --white-color: hsl(218, 100%, 98%);
    --white-color-light: hsl(218, 48%, 80%);
    --dark-color: hsl(218, 68%, 18%);
    --gray-color: hsl(0, 0%, 92%);
    --body-color: hsl(0, 0%, 100%);
    --primary-color: #164985;
    --text-color: #1a2b50;
    --bg-light: #eef7ff;
    --primary-blue: #164985;
    --main-blue: #2b41e3;
    --text-dark: #1a2b50;
    --bg-color: #f4f9ff;

    /*========== Font and typography ==========*/
    --body-font: "IBM Plex Sans Arabic", sans-serif;
    --biggest-font-size: 2.25rem;
    --bigger-font-size: 1.75rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;

    /*========== Font weight ==========*/
    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;

    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
    :root {
        --biggest-font-size: 3.5rem;
        --bigger-font-size: 3rem;
        --h1-font-size: 2.25rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
    }
}

/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
    transition: background-color .4s;
}

h1,
h2,
h3,
h4 {
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/*========== HEADER SECTION START ==========*/
.container {
    max-width: 1120px;
    margin-inline: 1.5rem;
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: var(--body-color);
    z-index: var(--z-fixed);
    box-shadow: 0 8px 28px rgba(22, 73, 133, .10);

    transition: background-color .4s, box-shadow .4s;
}

.nav {
    position: relative;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__log {
    width: 40px;
    display: flex;
    align-items: center;
    column-gap: .25rem;
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
    transition: color .4s;
}

/*=============== LANGUAGE BUTTON ===============*/
.nav__language {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    color: #164985;
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: .3s ease;
}

.nav__language i {
    font-size: 22px;
    font-weight: 400;

    color: #164985;

    line-height: 1;
}

.nav__language span {
    font-size: 16px;
    font-weight: 600;

    line-height: 1;
}

.nav__language:hover,
.nav__language:hover i,
.nav__language:hover span {
    color: var(--second-color);
}

/*=============== NAV BUTTONS ===============*/
.nav__toggle,
.nav__close {
    display: inline-flex;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--title-color);
    transition: color .4s;
}

.nav__toggle:hover,
.nav__close:hover {
    color: var(--first-color);
}

.nav__button {
    display: flex;
    align-items: center;
    column-gap: 1rem;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1150px) {
    .nav__menu {
        position: fixed;
        top: -120%;
        left: 0;
        width: 100%;
        background-color: var(--body-color);

        /* شادو القائمة في الموبايل */
        box-shadow: 0 12px 35px rgba(22, 73, 133, .14);

        padding-block: 5rem;
        transition: top .4s;
    }
}

.nav__list {
    text-align: center;
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
}

.nav__link {
    position: relative;
    font-weight: var(--font-semi-bold);
    color: #164985;
    transition: color .3s ease;
}

.nav__link::after {
    content: "";
    position: absolute;
    right: 50%;
    bottom: -8px;
    width: 0%;
    height: 2.5px;
    background-color: var(--second-color);
    border-radius: 999px;
    transform: translateX(50%);
    transition: width .35s ease;
}

.nav__link:hover {
    color: #0f3563;
}

.nav__link:hover::after {
    width: 100%;
}

.nav__close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

/* Show menu */
.show-menu {
    top: 0;
}

@media screen and (min-width: 1150px) {
    .container {
        margin-inline: auto;
    }

    .section {
        padding-block: 7rem 2rem;
    }

    .section__title {
        margin-bottom: 1.5rem;
    }

    .nav {
        height: calc(var(--header-height) + 2rem);
    }

    .nav__toggle,
    .nav__close {
        display: none;
    }
}

@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section {
        margin-top: 60px;
        min-height: 80vh;
    }

    h1 {
        font-size: 1.8rem;
    }

    .features {
        flex-direction: column;
        gap: 10px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
    }

    p {
        font-size: 0.9rem;
        line-height: 1.6;
        text-align: justify;
        text-align-last: center;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (min-width: 1150px) {
    .container {
        margin-inline: auto;
    }

    .section {
        padding-block: 7rem 2rem;
    }

    .section__title {
        margin-bottom: 1.5rem;
    }

    .nav {
        height: calc(var(--header-height) + 2rem);
    }

    .nav__toggle,
    .nav__close {
        display: none;
    }

    .nav__list {
        flex-direction: row;
        column-gap: 4rem;
    }
}

/*========== HEADER SECTION END ==========*/
/*========== HERO SECTION START ==========*/

.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 150px 20px 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        radial-gradient(circle at 15% 20%, hsl(200 85% 64% / 0.28), transparent 28%),
        radial-gradient(circle at 85% 80%, hsl(200 85% 64% / 0.18), transparent 30%),
        linear-gradient(135deg, #0d2f66 0%, #164985 48%, #0b1f4d 100%);
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.8;
    pointer-events: none;
}


.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    pointer-events: none;
}

.hero-glow-one {
    width: 320px;
    height: 320px;
    top: -120px;
    left: -100px;
    background: hsl(200 85% 64% / 0.16);
}

.hero-glow-two {
    width: 260px;
    height: 260px;
    bottom: -100px;
    right: -80px;
    background: rgba(255, 255, 255, 0.08);
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 950px;
    width: 100%;
    margin: auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 9px 20px;
    margin-bottom: 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(8px);
}

.hero-content h1 {
    color: #ffffff;
    font-size: clamp(2rem, 5vw, 3.8rem);
    line-height: 1.25;
    margin-bottom: 22px;
    font-weight: 800;
    max-width: 900px;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    line-height: 1.9;
    max-width: 780px;
    margin-bottom: 38px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    width: 220px;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;

    transition: 0.3s ease;
}

.hero-btn.primary {
    background: #ffffff;
    color: #164985;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}

.hero-btn:hover {
    transform: translateY(-4px);
}

.hero-features {
    margin-top: 32px;
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;

    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

/* English */
body.lang-en .hero-content {
    align-items: center;
    text-align: center;
}

body.lang-en .hero-content h1 {
    font-size: clamp(1.5rem, 3.5vw, 2.7rem);
    text-align: center;
    margin-inline: auto;
}

body.lang-en .hero-content p {
    max-width: 950px;
    margin-inline: auto;
    text-align: center;
    font-size: 17px;
    line-height: 2;
    letter-spacing: .2px;
}

/* Mobile */
@media (max-width: 768px) {
    body.lang-en .hero-content h1 {
        white-space: normal;
        font-size: 1.30rem;
        max-width: 95%;
    }

    body.lang-en .hero-content p {

        max-width: 680px;
        margin-inline: auto;
        text-align: center;
        text-align-last: center;
        font-size: 16px;
        line-height: 2;
        text-wrap: pretty;
    }

    .hero-section {
        min-height: 90vh;
        padding: 110px 28px 80px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }

    .hero-content h1 {
        font-size: 1.9rem;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-features {
        flex-direction: column;
        gap: 10px;
        font-size: 13px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-content p {
        font-size: 14px;
    }
}

/*==========HERO-SECTION  END  ==========*/
/*========== OUR PROGRAMS-SECTION START ==========*/
.solutions-section {
    background-color: var(--bg-color);
    padding: 80px 20px;
    /* direction: rtl; */
}

.container2 {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.solutions-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 55px;
}


.solutions-header h1 {
    color: #164985;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.solutions-header p {
    color: #5f6b7a;
    font-size: 18px;
    line-height: 1.8;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.solution-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    text-align: center;
}

.card-image-container {
    background-color: #f0f4f8;
    border-radius: 20px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 20px;
    padding: 20px;
}

.card-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.card-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.card-content {
    padding: 20px;
    text-align: center;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.card-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.link-btn {
    display: inline-block;
    background-color: var(--primary-blue);
    color: #ffffff !important;
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 10px;
    border: 2px solid var(--primary-blue);
    width: 80%;
}

.link-btn:hover {
    background-color: transparent;
    color: var(--primary-blue) !important;
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .card-image {
        height: 220px;
    }
}

/* @media (max-width: 600px) {
    .card-image {
        height: 180px;
    }
} */

 /*========== OUR PROGRAMS-SECTION END ==========*/
/*========== FEATURES SECTION START ==========*/

.features {
    margin-top: 30px;
    display: flex;
    gap: 30px;
    justify-content: center;
    color: #ccc;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .hero-section {
        margin-top: 60px;
        min-height: 80vh;
    }

    h1 {
        font-size: 1.8rem;
    }

    .features {
        flex-direction: column;
        gap: 10px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
    }

    p {
        font-size: 0.9rem;
        line-height: 1.6;
        text-align: justify;
        text-align-last: center;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (min-width: 1150px) {
    .container {
        margin-inline: auto;

    }

    .section {
        padding-block: 7rem 2rem;
    }

    .section__title {
        margin-bottom: 1.5rem;
    }

    .nav {
        height: calc(var(--header-height) + 2rem);
    }

    .nav__toggle,
    .nav__close {
        display: none;

    }

    .nav__list {
        flex-direction: row;
        column-gap: 4rem;
    }

    /* .dark-them .nav__menu{
        box-shadow: none;
    } */
}

/*===================features============================*/
.features-modern {
    width: 85%;
    margin: auto;
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
    direction: rtl;
    padding: 80px 8%;
}

.features-container {
    max-width: 1200px;
    margin: auto;
}

.features-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 55px;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 172, 0, 0.15);
    color: #ffac00;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

.features-header h1 {
    color: #164985;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

/* .features-header h1::after {
    content: "";
    width: 90px;
    height: 4px;
    background: #ffac00;
    border-radius: 20px;
    display: block;
    margin: 15px auto 0;
} */

.features-header p {
    color: #5f6b7a;
    font-size: 18px;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 15px;
}

.feature-card {
    background: #ffffff;
    padding: 18px 12px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(22, 73, 133, 0.08);
    box-shadow: 0 12px 35px rgba(22, 73, 133, 0.08);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    max-width: 240px;
    margin: auto;
    padding: 20px 16px;
    min-height: 210px;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #164985, #1d5fa8);
    opacity: 0;
    transition: 0.35s ease;
    z-index: 0;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(22, 73, 133, 0.22);
}

.feature-card * {
    position: relative;
    z-index: 1;
}

.feature-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 20px;
    border-radius: 22px;
    background: rgba(54, 171, 225, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--second-color);
    font-size: 32px;
    transition: 0.35s ease;
}

.feature-card:hover .feature-icon {
    background: #ffac00;
    color: #164985;
    transform: rotate(-4deg) scale(1.05);
}

.feature-card h3 {
    color: #164985;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: #5f6b7a;
    font-size: 14px;
    line-height: 1.6;
}

.feature-card:hover h3,
.feature-card:hover p {
    color: #ffffff;
}

/* English direction */
body.lang-en .features-modern {
    direction: ltr;
}

/* Responsive */
@media (max-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px) {
    .features-modern {
        padding: 70px 6%;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .features-header h1 {
        font-size: 32px;
    }
}

@media (max-width: 520px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 28px 20px;
    }
}

/*========== FEATURES SECTION END ==========*/
/*==========  CTA SECTION START ==========*/

.cta-section {
    padding: 90px 0;
    text-align: center;
    color: #fff;

    background: linear-gradient(135deg,
            #133d7a 0%,
            #164985 50%,
            #1f5fa3 100%);

    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: hsl(200 85% 64% / 0.2);
    border-radius: 50%;
    top: -120px;
    right: -100px;
}

.cta-section::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: hsl(200 85% 64% / 0.15);
    border-radius: 50%;
    bottom: -80px;
    left: -80px;
}

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
    padding: 0 20px;
}

.cta-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 14px;
    margin-bottom: 20px;
}

 
.cta-section h2 {
    color: #ffffff;
    font-size: 40px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cta-section h2 span {
    color: var(--second-color);
}

.cta-section p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    border-radius: 14px;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn.primary {
    background: #ffffff;
    color: #164985;
    font-weight: 600;
}

.btn.primary:hover {
    transform: translateY(-3px);
}

.btn.outline {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
}

.btn.outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ================= CTA RESPONSIVE ================= */

@media (max-width: 768px) {

    .cta-section {
        padding: 70px 0;
    }

    .cta-section h2 {
        font-size: 30px;
        line-height: 1.4;
    }

    .cta-section p {
        font-size: 15px;
        line-height: 1.8;
        padding: 0 10px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

@media (max-width: 480px) {

    .cta-section {
        padding: 60px 0;
    }

    .cta-section h2 {
        font-size: 26px;
    }

    .cta-section p {
        font-size: 14px;
    }

    .cta-badge {
        font-size: 12px;
        padding: 7px 16px;
    }

    .btn {
        padding: 13px 22px;
        font-size: 14px;
        border-radius: 12px;
    }
}

/*==========  CTA SECTION END ==========*/
/*==========  CONTENT SECTION START ==========*/
.system-content-modern {
    width: 100%;
    margin: auto;
    padding: 100px 8%;
    background-color: var(--bg-color);
    direction: rtl;
    position: relative;
}

.system-content-container {
    width: 85%;
    max-width: 1200px;
    margin: auto;
}

.system-content-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.system-content-header h2 {
    color: #164985;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 14px;
}

.system-content-header p {
    color: #5f6b7a;
    font-size: 18px;
    line-height: 1.8;
}

.system-content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.system-content-card {
    background: #f7f9fc;
    padding: 26px 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(22, 73, 133, 0.08);
    box-shadow: 0 8px 20px rgba(22, 73, 133, 0.07);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.system-content-card::before {
    content: "";
    position: absolute;
    bottom: 12px;
    left: 16px;
    right: 16px;
    height: 4px;
    background: #164985;
    border-radius: 50px;
    transition: all 0.35s ease;
}

.system-content-card:hover::before {
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    border-radius: 20px;
    z-index: 0;
}

.system-content-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(22, 73, 133, 0.18);
}

.system-content-card * {
    position: relative;
    z-index: 1;
}

.system-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--second-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    transition: 0.3s;
}

.system-content-card:hover .system-icon {
    background: #ffac00;
    color: #164985;
    transform: scale(1.05);
}

.system-content-card h3 {
    color: #164985;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.system-content-card p {
    color: #5f6b7a;
    font-size: 14px;
    line-height: 1.7;
}

.system-content-card:hover h3,
.system-content-card:hover p {
    color: #ffffff;
}

body.lang-en .system-content-modern {
    direction: ltr;
}

@media (max-width: 1000px) {
    .system-content-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .system-content-modern {
        padding: 70px 6%;
    }

    .system-content-header h2 {
        font-size: 30px;
    }

    .system-content-grid {
        grid-template-columns: 1fr;
    }
}

/*==========  CONTENT SECTION END ==========*/
/*==========  OFFERS SECTION  START ==========*/
.offers-modern {
    width: 100%;
    padding: 90px 8%;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
    direction: rtl;
}

.offers-container {
    max-width: 1200px;
    margin: auto;
}

.offers-header {
    text-align: center;
    margin-bottom: 45px;
}

.offers-header h2 {
    color: #164985;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.offers-header p {
    color: #5f6b7a;
    font-size: 18px;
}

.offers-slider {
    position: relative;
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: #0d57ad;
    /* نفس لون التصميم */
    box-shadow: 0 18px 45px rgba(22, 73, 133, 0.14);
}

.offer-slide {
    display: none;
    width: 100%;
}

.offer-slide.active {
    display: block;
    animation: offerFade 0.6s ease;
}

.offer-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
}

@keyframes offerFade {
    from {
        opacity: 0.4;
        transform: scale(1.01);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.offer-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #164985;
    font-size: 18px;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
    transition: 0.3s ease;
}

.offer-arrow:hover {
    background: #ffac00;
    color: #164985;
    transform: translateY(-50%) scale(1.08);
}

.offer-prev {
    right: 22px;
}

.offer-next {
    left: 22px;
}

.offers-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
}

.offer-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(22, 73, 133, 0.25);
    cursor: pointer;
    transition: 0.3s ease;
}

.offer-dot.active {
    width: 32px;
    border-radius: 20px;
    background: #164985;
}

.offers-action {
    text-align: center;
    margin-top: 28px;
}

.offers-action a {
    display: inline-block;
    background: #164985;
    color: #ffffff;
    padding: 13px 66px;
    border-radius: 20px;
    font-size: 17px;
    font-weight: 600;
    transition: 0.3s ease;
}

.offers-action a:hover {
    background: #ffac00;
    color: #164985;
    transform: translateY(-3px);
}

body.lang-en .offers-modern {
    direction: ltr;
}

@media (max-width: 900px) {
    .offers-modern {
        padding: 70px 6%;
    }

    .offers-header h2 {
        font-size: 34px;
    }

    .offer-slide img {
        width: 100%;
        height: auto;
    }

    .offer-arrow {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}

@media (max-width: 600px) {
    .offer-slide img {
        height: 100%;
        object-fit: contain;
        background: #ffffff;
    }

    .offers-slider {
        border-radius: 18px;
        aspect-ratio: 1200 / 430;
        border-radius: 18px;
    }

    .offer-prev {
        right: 10px;
    }

    .offer-next {
        left: 10px;
    }

    .offer-arrow {
        width: 36px;
        height: 36px;
    }

    .offers-action a {
        font-size: 15px;
        padding: 11px 26px;
    }
}

/*==========  OFFERS SECTION END ==========*/
/*==========  ACCOUNTING  SECTION START ==========*/
.mini-accounting-section {
    width: 100%;
    padding: 70px 8%;
    background: linear-gradient(135deg,
            #133d7a 0%,
            #164985 50%,
            #1f5fa3 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mini-accounting-section::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -120px;
    right: -80px;
}

.mini-accounting-header,
.mini-accounting-subtitle,
.mini-accounting-cards,
.mini-accounting-buttons {
    position: relative;
    z-index: 2;
}

.mini-accounting-header h2 {
    color: #ffffff;
    font-size: 40px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.mini-accounting-header h2 span {
    color: var(--second-color);
}


.mini-accounting-subtitle {
    max-width: 700px;
    margin: 0 auto 35px;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.8;
}

.mini-accounting-cards {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.mini-card {
    width: 180px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 22px 15px;
    transition: 0.4s ease;
    cursor: pointer;
}

.mini-card i {
    font-size: 30px;
    color: #fff;
    margin-bottom: 15px;
    transition: 0.4s ease;
}

.mini-card h3 {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    line-height: 1.6;
    transition: 0.4s ease;
}

.mini-card:hover {
    transform: translateY(-8px);
    border-color: #ffac00;
    background: rgba(255, 255, 255, 0.13);
}

.mini-card:hover i {
    color: #ffac00;
}

.mini-card:hover h3 {
    color: #ffffff
}

.mini-accounting-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.mini-btn {
    display: inline-block;
    padding: 13px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.4s ease;
}

.primary-btn {
    background: #fff;
    color: #164985;
}

.secondary-btn {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.primary-btn:hover,
.secondary-btn:hover {


    transform: translateY(-4px);
}

.secondary-btn:hover {

    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .mini-accounting-section {
        padding: 60px 6%;
    }

    .mini-accounting-header h1 {
        font-size: 30px;
    }

    .mini-accounting-subtitle {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .mini-card {
        width: 155px;
        padding: 18px 12px;
    }

    .mini-card i {
        font-size: 26px;
    }

    .mini-card h3 {
        font-size: 14px;
    }

    .mini-btn {
        padding: 12px 26px;
        font-size: 15px;
    }
}

/*==========  ACCOUNTING  SECTION END ==========*/
/*========== OUR CLIENTS SECTION START ==========*/

.clients {
    direction: rtl;
    background-color: var(--bg-color, #f4f8fc);
    padding: 90px 0;
    overflow: hidden;
}

.clients .rowww {
    text-align: center;
    margin-bottom: 25px;
}

.clients .heading-primary {
    color: #164985;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
}

.clients-subtitle {
    color: #5f6b7a;
    font-size: 18px;
    line-height: 1.7;
    text-align: center;
    margin: 0 auto 35px;
}

.logos {
    width: 85%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    direction: ltr;
}

.logos::before,
.logos::after {
    content: "";
    position: absolute;
    top: 0;
    width: 140px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logos::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color, #f4f8fc), transparent);
}

.logos::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color, #f4f8fc), transparent);
}

.logos-track {
    display: flex;
    align-items: center;
    /* gap: 30px; */
    flex: 0 0 auto;
    animation: clients-scroll 100s linear infinite;
}

.logos-slide {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-inline-end: 30px;
    flex: 0 0 auto;
    animation: clients-scroll 100s linear infinite;
}

body.lang-en .logos-slide {
    animation-direction: reverse;
}

.logos:hover .logos-slide {
    animation-play-state: paused;
}

.logos-slide img {
    width: 230px;
    height: 150px;
    padding: 14px;
    border-radius: 22px;
    object-fit: contain;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(22, 73, 133, 0.10);
    flex: 0 0 auto;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logos-slide img:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(22, 73, 133, 0.16);
}

@keyframes clients-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .clients {
        padding: 70px 0;
    }

    .logos {
        width: 92%;
    }

    .logos::before,
    .logos::after {
        width: 55px;
    }

    .logos-slide {
        gap: 16px;
        animation-duration: 60s;
    }

    .logos-slide img {
        width: 115px;
        height: 78px;
        padding: 10px;
        border-radius: 14px;
    }
}

/*========== OUR CLIENTS SECTION END ==========*/
/*==========  CILENTS OPINION SECTION START ==========*/
.opinions {
    padding: 50px 0;
    background-color: var(--bg-color);
}

.opinions-container {
    direction: rtl;
    max-width: 1170px;
    margin: auto;
    padding: 0 15px;
}

body.lang-en .opinions-container {
    direction: ltr;
}

.section-header {
    text-align: center;
    margin-bottom: 45px;
}

.section-header .title {
    font-size: 35px;
    font-weight: 600;
    color: #164985;
    line-height: 1.2;
}

.opinions-content {
    width: 100%;
}

.opinion-item {
    background-color: #ffffff;
    height: auto;
    min-height: 250px;
    padding: 22px 26px;
    border-radius: 22px;
    /* max-width: 480px; */
    margin: auto;
}

.opinion-item .info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.opinion-item img {
    width: 65px;
    height: 65px;
    max-width: 65px;
    border-radius: 50%;
    object-fit: cover;
    vertical-align: middle;
}

.opinion-item .textbox {
    flex: 1;
}

.opinion-item .name {
    font-size: 19px;
    text-transform: capitalize;
    font-weight: 600;
    color: #000000;
    line-height: 1.2;
    margin: 0;
}

.opinion-item .rating {
    margin-top: 14px;
    font-size: 13px;
    color: hsl(36, 100%, 50%);
}

.opinion-item p {
    margin-top: 18px;
    color: hsl(0, 0%, 40%);
    font-size: 15px;
    line-height: 1.8;
}

.opinions .swiper-pagination {
    position: relative;
    margin-top: 35px;
    bottom: auto;
}

.opinions .swiper-pagination-bullet {
    height: 11px;
    width: 11px;
    background-color: #164985;
}

/* للموبايل */
@media screen and (max-width: 767px) {
    .section-header .title {
        font-size: 28px;
    }

    .opinion-item {
        max-width: 100%;
        padding: 20px;
        border-radius: 20px;
    }

    .opinion-item img {
        width: 55px;
        height: 55px;
        max-width: 55px;
    }

    .opinion-item .name {
        font-size: 17px;
    }

    .opinion-item p {
        font-size: 14px;
    }
}

/*==========  CILENTS OPINION SECTION END ==========*/
/*==========  TARGET DOMAIN SECTION START ==========*/
.targetdomains {
    width: 100%;
    padding: 50px 0;
    background-color: #ffffff;
}

.target-container {
    max-width: 1100px;
    margin: auto;
    padding: 0 10px;
}

.targetdomains .section-header {
    text-align: center;
    margin-bottom: 30px;
}

.targetdomains .title {
    display: inline-block;
    font-size: 28px;
    font-weight: 600;
    color: #164985;
    position: relative;
    margin-bottom: 15px;
}

.section-header p {
    color: #5f6b7a;
    font-size: 18px;
    line-height: 1.8;
}

.domains-grid {
    display: grid;
    grid-template-columns: repeat(4, 180px);
    justify-content: center;
    gap: 18px;
}

.domain-card {
    background-color: #ffffff;
    height: 110px;
    padding: 10px;
    border-radius: 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 18px rgba(22, 73, 133, 0.07);
    border: 1px solid rgba(22, 73, 133, 0.05);
}
.domain-card i {
    font-size: 28px;
    color: var(--second-color);
    margin-bottom: 8px;
    transition: all 0.25s ease;
}

.domain-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    line-height: 1.3;
    margin: 0;
}

.domain-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(22, 73, 133, 0.12);
}

.domain-card:hover i {
    color: #ffac00;
}

@media screen and (max-width: 991px) {
    .domains-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .domains-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .domain-card {
        min-height: 100px;
        padding: 14px 8px;
    }

    .domain-card i {
        font-size: 24px;
    }

    .domain-card h3 {
        font-size: 13px;
    }
}
/*==========  TARGET DOMAIN SECTION END ==========*/
/*========== CONTACT SECTION START ==========*/
.contact {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #164985 0%, #1f5fa3 50%, #164985 100%);
}

.contact::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: hsl(200 85% 64% / 0.25);
    border-radius: 50%;
    top: -90px;
    left: -90px;
}

.contact::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: hsl(200 85% 64% / 0.2);
    border-radius: 50%;
    bottom: -70px;
    right: -70px;
}

.contact-container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: auto;
    padding: 0 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 45px;
}

.contact-header h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 10px;
}

.contact-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.75fr;
    gap: 36px;
    align-items: stretch;
}

.contact-info {
    position: relative;
    padding: 34px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
}

.contact-info::before {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    background: hsl(200 85% 64% / 0.18);
    border-radius: 50%;
    top: -70px;
    left: -70px;
}

.contact-info::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    background: hsl(200 85% 64% / 0.16);
    border-radius: 50%;
    bottom: -60px;
    right: -60px;
}

.info-item {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: 0.3s;
}

.info-item:hover {
    transform: translateX(-4px);
    background: rgba(255, 255, 255, 0.18);
}

.info-item i {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #ffffff;
    color: var(--second-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 20px;
}

.info-item h4 {
    margin: 0 0 5px;
    color: #fff;
    font-size: 16px;
}

.info-item p,
.info-item a {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.contactform {
    background: #ffffff;
    border-radius: 26px;
    padding: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.contactform iframe { 
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 18px;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contactform {
        min-height: 700px;
    }

    .contactform iframe {
        height: 700px;
    }

    .contact-info {
          min-height: 500px;
        min-height: auto;
    }
}

@media (max-width: 600px) {
    .contact {
        padding: 70px 0;
    }

    .contact-header h2 {
        font-size: 28px;
    }

    .contact-header p {
        font-size: 14px;
    }

    .contactform {
        min-height: 700px;
        padding: 12px;
        border-radius: 24px;
    }

    .contactform iframe {
        height: 700px;
    }

    .contact-info {
        min-height: 400px;
        padding: 22px;
        border-radius: 24px;
        gap: 16px;
    }

    .info-item {
        padding: 15px;
    }
}

/*========== CONTACT SECTION END ==========*/
/*==========  FOOTER  SECTION START ==========*/
.footer {
    background: #ffffff;
    padding: 55px 0 25px;
    border-top: 1px solid rgba(22, 73, 133, 0.08);
}

.footer-container {
    max-width: 1180px;
    margin: auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.4fr;
    gap: 45px;
    align-items: flex-start;
}

.footer h3 {
    font-size: 30px;
    color: #164985;
    margin-bottom: 12px;
}

.footer h4 {
    display: inline-block;
    font-size: 18px;
    color: #164985;
    margin-bottom: 18px;
    position: relative;
}

.footer h4::after {
    content: "";
    width: 42px;
    height: 3px;
    background: var(--second-color);
    position: absolute;
    bottom: -8px;
    border-radius: 20px;
}

/* عربي */
body.lang-ar .footer h4::after {
    right: 0;
}

/* إنجليزي */
body.lang-en .footer h4::after {
    left: 0;
}
.footer-brand p {
    color: #555;
    font-size: 15px;
    line-height: 1.9;
    max-width: 290px;
}

.footer-links ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer a {
    color: #444;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer a:hover {
    color: var(--second-color);
}

.footer-contact p {
    color: #444;
    font-size: 15px;
    margin-bottom: 13px;

    display: flex;
    align-items: center;
    gap: 9px;
}

.footer-contact i {
    color: var(--second-color);
    font-size: 18px;
}

.footer-social {
    min-width: 260px;
}

.footer .social {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    align-items: center;
}

.footer .social a {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background-color: #f5f8fb;
    color: #164985;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    transition: 0.3s ease;
}

.footer .social a:hover {
    background: var(--second-color);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1180px;
    margin: 35px auto 0;
    padding: 20px 20px 0;
    border-top: 1px solid rgba(22, 73, 133, 0.08);

    text-align: center;
    color: #888;
    font-size: 14px;
}

@media (max-width: 1000px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .footer-social {
        min-width: auto;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 45px 0 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand p {
        margin: auto;
    }

    .footer h4::after {
        right: 50%;
        transform: translateX(50%);
    }

    .footer-contact p {
        justify-content: center;
    }

    .footer .social {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/*==========  FOOTER   SECTION END ==========*/
/*==========  WHATSAPP FLOATING BUTTON START ==========*/
.whatsapp-float {
    position: fixed;
    left: 22px;
    right: auto;
    bottom: 22px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-text {
    background: #ffffff;
    color: #222;
    padding: 9px 14px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.whatsapp-btn {
    position: relative;

    width: 56px;
    height: 56px;
    border-radius: 50%;

    background: #25D366;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 27px;
    text-decoration: none;

    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
    transition: 0.3s ease;
}

.whatsapp-btn::before {
    content: "";
    position: absolute;
    inset: -9px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.20);
    animation: whatsappGlow 2s infinite;
    z-index: -1;
}

.whatsapp-btn::after {
    content: "";
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.10);
    animation: whatsappGlowLarge 2s infinite;
    z-index: -2;
}

.whatsapp-btn:hover {
    transform: scale(1.06);
}

@keyframes whatsappGlow {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.22);
        opacity: 0;
    }

    100% {
        transform: scale(0.9);
        opacity: 0;
    }
}

@keyframes whatsappGlowLarge {
    0% {
        transform: scale(0.8);
        opacity: 0.45;
    }

    70% {
        transform: scale(1.3);
        opacity: 0;
    }

    100% {
        transform: scale(0.8);
        opacity: 0;
    }
}

/* الموبايل: الأيقونة فقط */
@media (max-width: 768px) {
    .whatsapp-float {
        left: 16px;
        right: auto;
        bottom: 16px;
    }

    .whatsapp-text {
        display: none;
    }

    .whatsapp-btn {
        width: 52px;
        height: 52px;
        font-size: 25px;
    }
}

body.lang-en .whatsapp-float {
    right: 22px;
    left: auto;
}

@media (max-width: 768px) {

    body.lang-en .whatsapp-float {
        right: 16px;
        left: auto;
    }
}

/*==========  WHATSAPP FLOATING BUTTON END ==========*/