:root {
    /* Colors */
    --primary-color: #5f3e94;
    --primary-color-hover: #4b3272;
    --secondary-color: #22a4e1;
    --footer-color: #0f0d33;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --text-dark: #333;
    --text-muted: #666;
    /* Shadows & Effects */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 12px 30px rgba(0, 0, 0, 0.1);
    --transition-default: 0.3s ease;
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
    --header-height: 60px;
    /* Gradients */
    --gradient-primary: linear-gradient(95.92deg, #f1eef8 -111.89%, #5f3e94 41.87%);
    --gradient-primary-hover: linear-gradient(189.92deg, #f1eef8 -111.89%, #5f3e94 41.87%);

    /* Titles (h1, h2) */
    --title-font-size: 32px; /* Large screens */
    --title-font-size-mobile: 18px;

    /* Body text, paragraphs */
    --text-font-size: 20px; /* Large screens */
    --text-font-size-mobile: 16px;

    /* Supporting small text (badges, etc) */
    --text-small: 16px; /* 14px */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html,
body {
    overflow-x: hidden;
    background: #fcfbfd;
}

@font-face {
    font-family: 'RB Regular';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../../../fonts/RB_Regular/RB\ Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'RB Regular';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../../../fonts/RB_Regular/RB\ Regular.ttf') format('truetype');
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
body {
    font-family: 'RB Regular', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
}

.reveal,
.reveal.active {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.btn:hover,
.nav-list a:hover,
.footer-links a:hover,
.social-icons a:hover,
.app-btn:hover {
    transform: none;
    transition: none;
}

.swiper-slide,
.swiper-wrapper,
.swiper-container {
    transition: none !important;
}

.mobile-nav,
.mobile-toggle span,
.website-header,
.header-top {
    transition: none !important;
}

.btn-primary,
.btn-login,
.btn-primary:hover {
    transition: none;
    transform: none;
}
.bi-check2-circle::before {
    content: none !important;
    display: none !important;
}

li i.bi-check2-circle {
    display: none !important;
}
/* ===============================
    1. navbar CSS
================================== */

.website-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #fcfbfd;
    /* box-shadow: 0px 1px 8.6px -2px #00000033; */
    padding: 10px 0;
    transition: box-shadow 0.3s ease;
}

.website-header.scrolled {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 8.6px -2px;
}
.header-top {
    /* height: var(--header-height); */
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 16px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 12px;
}

.logo {
    flex-shrink: 0;
    margin-left: 0;
}

.logo img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

/* Desktop Navigation */
.desktop-nav {
    flex-grow: 1;
}

.nav-list {
    display: flex;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.nav-list li {
    margin-left: 12px;
}

.nav-list a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 9px;
    transition: all 0.3s;
    display: block;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.header-buttons {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 12px;
}
.header-buttons .rs-right-btn-inner a,
.nav-list .menu-item-changeLanguage a {
    color: var(--primary-color);
    transition: all 0.3s ease;
}
.header-buttons .rs-right-btn-inner a:hover,
.nav-list .menu-item-changeLanguage a:hover {
    /* color: var(--secondary-color); */
    transition: all 0.3s ease;
}
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}
/* .btn:hover {
    transform: translateY(-2px);
} */
.btn-primary {
    background: var(--linear-gradient);
    color: var(--white);
    border: 1px solid #9333ea !important;
    border-radius: 8px;
    padding: 8px 16px;
    background: linear-gradient(95.92deg, #f1eef8 -111.89%, #5f3e94 41.87%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.btn-primary:hover {
    background: linear-gradient(189.92deg, #f1eef8 -111.89%, #5f3e94 41.87%);
}

.btn-login {
    background-color: transparent;
    color: var(--primary-color);

    padding: 8px 16px;
    border: none;
}

.btn-login:hover {
    background-color: #f0f0f0;
    color: var(--primary-color);
    border-radius: 8px;
}
.nav-list li.active a {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
}

.nav-list li a:active {
    color: var(--primary-color);
}

.nav-list li a:hover {
    color: var(--primary-color);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--primary-color);
    /* border-radius: 3px; */
    transition: all 0.3s;
}

.mobile-toggle span:nth-child(1) {
    top: 0;
}

.mobile-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-toggle span:nth-child(3) {
    bottom: 0;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    background: #fcfbfd;
    /* box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); */
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 999;
}

.mobile-nav.active {
    max-height: 500px;
    padding: 20px 0;
}

.mobile-nav .nav-list {
    flex-direction: column;
    padding: 0;
}

.mobile-nav .nav-list li {
    margin: 0;
    text-align: right;
}

.mobile-nav .nav-list a {
    padding: 12px 15px;
    border-bottom: 1px solid var(--white);
    display: flex;
    align-items: center;
    gap: 4px;
}

.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 15px;
}

.mobile-toggle {
    width: 22px;
    height: 17px !important;
}

/* Desktop Navigation */
.nav-list a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 9px;
    transition: all 0.3s;
    display: block;
    position: relative;
}

/* .nav-list a:hover {
    color: var(--primary-color);
}


.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #8A2BE2;
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 80%;
} */
/* Responsive Styles */
@media (max-width: 1024px) {
    .nav-list a {
        padding: 8px 3px;
    }
}
@media (max-width: 992px) {
    .desktop-nav,
    .header-buttons {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }
    .website-header {
        padding: 0px;

        box-shadow: none;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .header-top {
        height: var(--header-height);
        /* box-shadow:0px 1px 8.6px -2px #00000033; */
    }
}

@media (min-width: 993px) {
    .mobile-nav {
        display: none;
    }
}

@media (max-width: 576px) {
    .logo img {
        height: 24px;
    }
}

/* ===============================
    1. end navbar CSS
================================== */

/* ===============================
    2. footer CSS
================================== */
.footer {
    background: linear-gradient(90deg, #e9e1fa 0%, #f6f2fe 100%);

    color: var(--white);
    padding: 40px 0 10px;
    margin-top: auto;
}

.footer-section {
    margin-bottom: 30px;
}

.footer-title {
    font-weight: bold;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 10px;
    font-size: 1.4rem;
    color: var(--primary-color);
}
/*
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
} */

.footer-links a {
    color: #000;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s;
}
.footer-section p {
    color: #000;
}
.footer-links a:hover {
    color: var(--primary-color);
    /* padding-right: 5px; */
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #000;
}

.footer-contact i {
    margin-left: 10px;
    color: var(--primary-color);
}

.app-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.app-btn {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    padding: 8px 15px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-btn:hover {
    background-color: #f0f0f0;
    color: var(--primary-color);
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    display: inline-block;
    color: var(--primary-color);
    font-size: 16px;
    margin-left: 14px;
    transition: color 0.3s;
    background: #283056;
    padding: 7px 13px;
    /* border-radius: 2px; */
    background: rgba(253, 253, 251, 1);
    border-radius: 8px;
    /* border-radius: 2px; */
    margin-right: 0;
}
html[dir='ltr'] .social-icons a {
    margin-left: 0;
    margin-right: 14px;
}
.social-icons a:hover {
    color: #4dabf7;
}

.footer-about {
    border-top: 1px solid #444;
    padding-top: 20px;
    margin-top: 30px;
}

.footer-about {
    font-size: 14px;
    color: #aaa;
    margin: 0;
}
.footer-about .text-color {
    text-align: end;
}
.footer-about p {
    color: #000000;
    text-decoration: none;
}
.terms-link {
    color: #000000;
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: none;
    color: var(--primary-color);
}
.app-button {
    display: flex;
}
.footer-contact a {
    color: inherit;
}

.footer-contact a:hover {
    color: var(--primary-color);
}
@media (max-width: 768px) {
    .footer-title::after {
        right: 50%;
        transform: translateX(50%);
    }

    .app-buttons {
        justify-content: center;
    }
    .footer-contact {
        text-align: center;
        display: inline-block;
    }

    .footer-about,
    .footer-about .text-color {
        text-align: center;
    }
    .footer-title {
        font-size: 1rem;
    }
}
@media (max-width: 576px) {
    .qr-store {
        display: none;
    }
}

/* ===============================
    2. end footer CSS
================================== */

/* ----------------------------------------------- */
/*  GLOBAL TITLE STYLES (H1 & H2)                 */
/* ----------------------------------------------- */
.hero-title,
.section-title {
    font-size: var(--title-font-size);
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 16px;
}

/* ----------------------------------------------- */
/*  GLOBAL PARAGRAPH STYLES                       */
/* ----------------------------------------------- */

.p-title {
    font-size: var(--text-font-size);
    line-height: 1.6;
    color: var(--text-muted);
}
.hero-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}
.feature-card p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-muted);
}
/* ----------------------------------------------- */
/*  HERO SECTION                                   */
/* ----------------------------------------------- */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 133px 0 0;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 8px;
    border-radius: 8px;
    background: #f1eef8;
    color: var(--primary-color);
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 8px;
}

.hero-title {
    color: var(--footer-color);
    font-size: 24px;
}

.hero-description {
    max-width: 650px;
    margin: 8px auto 24px auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-btn {
    text-decoration: none;
    font-size: var(--text-small);
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all var(--transition-default);
}

.hero-btn-primary {
    background: linear-gradient(95.92deg, #f1eef8 -111.89%, #5f3e94 41.87%);
    color: var(--white);
}

.hero-btn-primary:hover {
    background: var(--gradient-primary-hover);
    transform: translateY(-2px);
}

.hero-btn-secondary {
    /* background: rgba(95, 62, 148, 0.08); */
    color: var(--primary-color);
    /* border: 1px solid rgba(95, 62, 148, 0.15); */
}

.hero-btn-secondary:hover {
    background-color: #f0f0f0;
    color: var(--primary-color);
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.hero-image {
    width: 100%;
    max-width: 950px;
    height: auto;
    display: block;
}

/* ----------------------------------------------- */
/*  FEATURES SECTION                               */
/* ----------------------------------------------- */
.features-section {
    padding: 80px 0;
}
.features-section .featurese {
    margin-bottom: 40px;
    text-align: center;
}
.section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 8px;
    border-radius: 8px;
    background: #f1eef8;
    color: var(--primary-color);
    font-size: var(--text-small);
    font-weight: 700;
    margin-bottom: 8px;
}

.section-title {
    color: var(--text-dark);
}

.section-title .highlight {
    color: var(--primary-color);
}

.p-title {
    text-align: center;
    margin-bottom: 24px;
}

.p-title .purple {
    color: var(--primary-color);
    font-weight: 500;
}

.p-title .blue {
    color: var(--secondary-color);
    font-weight: 500;
}

/* Feature Cards */
.feature-card {
    background: #fcfbfd;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-default);
    height: 100%;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

/* Top colored bars */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 8px;
}
html[dir='rtl'] .feature-card::before {
    left: auto;
    right: 0;
}
html[dir='ltr'] .feature-card::before {
    left: 0;
    right: auto;
}

html[dir='rtl'] .top-blue::before {
    background: linear-gradient(270deg, #22a4e1, #def2fe);
}
html[dir='rtl'] .top-purple::before {
    background: linear-gradient(270deg, #7850bb, #f1eef8);
}
html[dir='rtl'] .top-red::before {
    background: linear-gradient(270deg, #eb1517, #ffe9e5);
}
html[dir='rtl'] .top-green::before {
    background: linear-gradient(270deg, #009951, #c9ffd7);
}
html[dir='ltr'] .top-blue::before {
    background: linear-gradient(270deg, #def2fe, #22a4e1);
}
html[dir='ltr'] .top-purple::before {
    background: linear-gradient(270deg, #f1eef8, #7850bb);
}
html[dir='ltr'] .top-red::before {
    background: linear-gradient(270deg, #ffe9e5, #eb1517);
}
html[dir='ltr'] .top-green::before {
    background: linear-gradient(270deg, #c9ffd7, #009951);
}
.icon-box {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 20px;
}

.icon-box.blue {
    background: #def2fe;
    color: #22a4e1;
}
.icon-box.purple {
    background: #f1eef8;
    color: #7850bb;
}
.icon-box.red {
    background: #ffe9e5;
    color: #eb1517;
}
.icon-box.green {
    background: #c9ffd7;
    color: #009951;
}

.feature-card h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

/* ----------------------------------------------- */
/*  RESPONSIVE (MOBILE FIRST ADJUSTMENTS)         */
/* ----------------------------------------------- */
@media (max-width: 992px) {
    .hero-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .feature-card {
        padding: 16px;
    }
    .icon-box {
        margin-bottom: 8px;
    }
    .feature-card h5 {
        font-size: 14px;
        margin-bottom: 4px;
    }
    .feature-card p {
        margin-bottom: 0px;
    }
    .feature-card::before {
        height: 4px;
    }
}

@media (max-width: 576px) {
    /* Titles: 18px on mobile */
    .hero-title,
    .section-title {
        font-size: var(--title-font-size-mobile);
    }

    /* Paragraphs: 16px on mobile */
    .hero-description,
    .p-title,
    .feature-card p {
        font-size: 12px;
    }

    /* Other mobile adjustments */
    .hero-section {
        padding: 80px 0 0;
    }

    .hero-title {
        margin-bottom: 16px;
        padding: 0 10px;
    }
    .hero-buttons {
        gap: 8px;
        margin-bottom: 12px;
    }
    .hero-btn {
        padding: 10px 18px;
        font-size: 13px;
        border-radius: 8px;
    }
    .hero-description {
        margin: 15px auto 25px;
        padding: 0 15px;
    }
    .hero-image-wrapper {
        margin-top: 0;
    }
    .hero-image {
        width: 100%;
        max-width: none;
    }
    .section-title {
        font-size: var(--title-font-size-mobile);
    }
    .p-title {
        font-size: var(--text-font-size-mobile);
    }
}
/* ----------------------------------------------- */
/* tools-section SECTION                               */
/* ----------------------------------------------- */

.tools-section {
    padding: 80px 0;
}

.page-wrap {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.badge-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 8px;
    border-radius: 8px;
    background: #f1eef8;
    color: var(--primary-color);
    font-size: var(--text-small);
    font-weight: 700;
    margin-bottom: 8px;
}

.page-title {
    font-size: var(--title-font-size);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 80px;
}

/* ===================================
   VARIABLES للتحكم
=================================== */

:root {
    --avatar-size: 132px;
    --avatar-top-24px: -100px;
    --avatar-right: -27px;
    --content-top: 0px;
    --content-right: 0px;
}

/* ===================================
   ORBIT
=================================== */

.orbit {
    position: relative;
    width: 950px;
    height: 620px;
    margin: auto;
}

.orbit::before {
    content: '';
    position: absolute;
    width: 560px;
    height: 480px;
    border: 2px dashed #d4c5ff;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* ===================================
   CENTER ICON
=================================== */

.orbit-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    width: 95px;
    height: 95px;

    border-radius: 50%;
    background: rgba(120, 80, 187, 0.3);

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

    box-shadow:
        0 0 0 15px rgba(95, 62, 148, 0.08),
        0 0 40px rgba(95, 62, 148, 0.25);
    backdrop-filter: blur(30.100000381469727px);

    z-index: 5;
}

.orbit-center img {
    width: 42px;
}

/* ===================================
   CARD
=================================== */

.ocard {
    position: absolute;

    width: 320px;
    min-height: 150px;

    background: #fff;
    border-radius: 40px;

    padding: 10px 12px;

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

    gap: 16px;

    box-shadow: 0px 4px 49px rgba(120, 80, 187, 0.18);
}

/* ===================================
   TEXT
=================================== */

.cinfo {
    flex: 1;
    position: relative;
    top: var(--content-top);
    right: var(--content-right);
}

.ctitle {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.csub {
    font-size: 14px;
    color: #777;
    margin-bottom: 12px;
}

.btn-try {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-weight: bold;

    background: linear-gradient(95.92deg, #f1eef8 -111.89%, #5f3e94 41.87%);
}
.btn-try:hover {
    background: linear-gradient(273.92deg, #5f3e94 111.5%, #f1eef8 41.87%);
}
/* ===================================
   IMAGE
=================================== */

.av-wrap {
    position: relative;
    width: var(--avatar-size);
    height: var(--avatar-size);
    flex-shrink: 0;
    top: -15px;
}

.av-wrap::before {
    content: '';
    position: absolute;
    inset: -9px;
    border-radius: 50%;
    border-top: 2px solid #8a68c6;
    border-right: 0px solid #8a68c6;
    border-left: 10px solid transparent;
    /* border-bottom: 3px solid transparent; */
    transform: rotate(33deg);
}

.av {
    width: 157px;
    height: 117%;
    object-fit: contain;
}

/* ===================================
   POSITIONS
=================================== */

.c-admin {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.c-manager {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.c-teacher {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.c-student {
    right: 70px;
    bottom: 0;
}

.c-parent {
    left: 70px;
    bottom: 0;
}
html[dir='rtl'] .cinfo {
    text-align: right;
}

html[dir='ltr'] .cinfo {
    text-align: left;
}
html[dir='rtl'] .av-wrap {
    right: var(--avatar-right);
    left: auto;
}

html[dir='ltr'] .av-wrap {
    left: var(--avatar-right);
    right: auto;
}

html[dir='rtl'] .c-manager {
    right: 0;
    left: auto;
}

html[dir='rtl'] .c-teacher {
    left: 0;
    right: auto;
}

html[dir='rtl'] .c-student {
    right: 70px;
    left: auto;
}

html[dir='rtl'] .c-parent {
    left: 70px;
    right: auto;
}
html[dir='ltr'] .c-manager {
    left: 0;
    right: auto;
}

html[dir='ltr'] .c-teacher {
    right: 0;
    left: auto;
}

html[dir='ltr'] .c-student {
    left: 70px;
    right: auto;
}

html[dir='ltr'] .c-parent {
    right: 70px;
    left: auto;
}
html[dir='ltr'] .orbit::before {
    transform: translate(-50%, -50%) scaleX(-1);
}
html[dir='rtl'] .btn-try {
    text-align: right;
}

html[dir='ltr'] .btn-try {
    text-align: left;
}
html[dir='ltr'] .av-wrap::before {
    content: '';
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    border-top: 0px solid #8a68c6;
    border-left: 2px solid #8a68c6;
    border-right: 3px solid transparent;
    border-bottom: 1px solid transparent;
    transform: rotate(32deg);
}
/* ===================================
   RESPONSIVE
=================================== */

.av {
    position: relative;
    z-index: 1;
    width: 157px;
    height: 117%;
    object-fit: contain;
}
/* RTL */
html[dir='rtl'] .av-wrap::after {
    content: '';
    position: absolute;
    width: 162px;
    height: 165px;
    background: #d8d1e3;
    border-radius: 50%;
    top: -1px;
    left: 40%;
    transform: translateX(-50%);
    z-index: 0;
}

/* LTR */
html[dir='ltr'] .av-wrap::after {
    content: '';
    position: absolute;
    width: 162px;
    height: 165px;
    background: #d8d1e3;
    border-radius: 50%;
    top: -1px;
    left: 60%;
    transform: translateX(-50%);
    z-index: 0;
}
.ocard {
    transition: box-shadow 0.3s ease;
}

.ocard:hover {
    box-shadow: 0 15px 45px rgba(120, 80, 187, 0.25);
}

.ocard:hover .av-wrap,
.ocard:hover .cinfo {
    transform: scale(1.05);
}

.av-wrap,
.cinfo {
    transition: transform 0.3s ease;
}
.c-admin:hover {
    transform: translateX(-50%) scale(1.05);
}

.c-teacher:hover {
    transform: translateY(-50%) scale(1.05);
}

.c-manager:hover {
    transform: translateY(-50%) scale(1.05);
}

.c-student:hover {
    transform: scale(1.05);
}

.c-parent:hover {
    transform: scale(1.05);
}
.av-wrap {
    position: relative;
    width: var(--avatar-size);
    height: var(--avatar-size);
    flex-shrink: 0;
    top: -15px;
}

@media (max-width: 991px) {
    .orbit::before {
        display: block;
        width: 300px;
        height: 550px;
        border-radius: 150px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
}
@media (max-width: 991px) {
    .orbit {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 28px;
        position: relative;
        padding: 3px;
    }

    .orbit::before {
        display: block;
        width: 434px;
        height: 633px;
        border-radius: 150px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .orbit-center {
        display: none;
    }

    .c-admin,
    .c-teacher,
    .c-manager,
    .c-student,
    .c-parent {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;

        width: 85%;
        max-width: 320px;
    }
    .c-admin {
        order: 1;
        align-self: flex-start;
    }
    .c-manager {
        order: 2;
        align-self: flex-end;
    }
    .c-teacher {
        order: 3;
        align-self: flex-start;
    }
    .c-student {
        order: 4;
        align-self: flex-end;
    }
    .c-parent {
        order: 5;
        align-self: flex-start;
    }
}
@media (max-width: 576px) {
    :root {
        --avatar-size: 140px;
        --avatar-top: -10px;
        --avatar-right: -8px;
    }

    .ocard {
        width: 92%;
        padding: 0px;
    }
    .av-wrap {
        top: 6px;
    }
    .av {
        width: 141px;
        height: 96%;
        object-fit: contain;
    }
    .av-wrap::before {
        display: none;
    }
    .ctitle {
        font-size: 14px;
    }

    .csub {
        font-size: 12px;
    }
    .page-title {
        font-size: 18px;
        font-weight: 800;
        line-height: 1.3;
        margin-bottom: 40px;
    }
}

/* ----------------------------------------------- */
/*  pricing-plan SECTION                               */
/* ----------------------------------------------- */

.pricing-section-home {
    overflow: hidden;
    padding: 80px 0;
}

.pricing-section-home .pricing-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 8px;
    border-radius: 8px;
    background: #f1eef8;
    /* border: 1px solid rgba(95, 62, 148, 0.15); */
    color: var(--primary-color);
    font-size: var(--text-small);
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-section-home .pricing-title {
    font-size: var(--title-font-size);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 8px;
}

.pricing-section-home .pricing-logo img {
    max-width: 260px;
}

.pricing-section-home .pricing-description {
    color: #666;
    font-size: 18px;
    line-height: 1.9;
    max-width: 700px;
    margin-bottom: 24px;
}
.pricing-section-home .pricing-b {
    margin-bottom: 40px;
    gap: 24px;
}
.pricing-section-home .pricing-b-btn {
    text-decoration: none;
    font-size: var(--text-small);
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all var(--transition-default);
}
.pricing-section-home .btn-primary {
    text-decoration: none;
    font-size: var(--text-small);
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all var(--transition-default);
    background: var(--gradient-primary);
    border: none !important;
    display: flex;
    align-items: center;
}

.pricing-section-home .btn-primary:hover {
    background: var(--gradient-primary-hover);
}

.pricing-section-home .btn-outline-primary {
    /* background: rgba(95, 62, 148, 0.08); */
    color: var(--primary-color);
    text-decoration: none;
    font-size: var(--text-small);
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all var(--transition-default);
}

.pricing-section-home .btn-outline-primary:hover {
    background-color: #f0f0f0;
    color: var(--primary-color);
}

.pricing-section-home .pricing-card {
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0px -3px 26.95px 0px #7850bb !important;
}

.pricing-section-home .pricing-card.featured {
    transform: translateY(-12px);
    border: 1px solid rgba(95, 62, 148, 0.25) !important;
}

.pricing-section-home .pricing-card::after {
    content: '';
    position: absolute;
    left: 0px;
    bottom: -5px;
    width: 90px;
    height: 90px;
    background-image: url('/websiteeduxpert/images/icon-pricing-box-1.png');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.pricing-section-home .pricing-list li {
    padding: 4px 0;
    border-bottom: 1px dashed #eee;
}

.pricing-section-home .pricing-list li:last-child {
    border-bottom: 0;
}

.pricing-section-home .pricing-cards-row .col-md-4 {
    display: flex;
}

.pricing-section-home .pricing-card {
    width: 100%;
    border-radius: 8px;
    background: #fafafa;
    border: 1px solid #efefef !important;
    box-shadow: none !important;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-section-home .pricing-card .card-body {
    padding: 18px;
    position: relative;
    z-index: 2;
}

.pricing-section-home .pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-section-home .pricing-card.featured {
    background: #fff;
    border: 2px solid #d9c9ff !important;
    transform: translateY(0);
}

/* Package Name */
.pricing-section-home .pricing-card .fw-bold.text-primary {
    color: #6a44a5 !important;
    font-size: 14px;
    margin-bottom: 4px;
}

/* Students Count */
.pricing-section-home .pricing-card small {
    font-size: 13px;
    color: #000000 !important;
}

/* Price */
.pricing-section-home .pricing-card .display-6 {
    font-size: 36px;
    font-weight: 800 !important;
    color: #5f3e94;
    line-height: 1;
}

.pricing-section-home .pricing-card .fs-5 {
    color: #5f3e94;
}

.pricing-section-home .pricing-card .text-muted.small.mb-3 {
    font-size: 13px;
    color: #999 !important;
}

/* Features */
.pricing-section-home .pricing-list {
    margin-top: 15px;
}

.pricing-section-home .pricing-list li {
    border: none !important;
    padding: 6px 0;
    color: #666;
    font-size: 14px;
    position: relative;
    padding-right: 18px;
}

.pricing-section-home .pricing-list li::before {
    content: '✓';
    position: absolute;
    right: 0;
    top: 5px;
    color: #7a5ab5;
    font-weight: bold;
}

/* Featured Card */
.pricing-section-home .pricing-card.featured .display-6 {
    color: #5f3e94;
}

.pricing-section-home .pricing-card.featured::before {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #faf0fd;
    color: #5f3e94;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 30px;
}

@media (max-width: 991px) {
    /* .pricing-title,
        .pricing-description {
            text-align: center;
        } */
    .pricing-section-home .pricing-description {
        max-width: auto;
    }

    .pricing-section-home .pricing-logo {
        display: flex;
    }

    .pricing-section-home .pricing-logo img {
        max-width: 160px;
    }

    .pricing-section-home .pricing-card.featured {
        transform: none;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .pricing-section-home .pricing-card {
        margin-bottom: 15px;
    }

    .pricing-section-home .pricing-card .display-6 {
        font-size: 34px;
    }
    .pricing-section-home .pricing-list li {
        font-size: 12px;
    }

    .pricing-section-home .pricing-b {
        margin-bottom: 24px;
        gap: 8px;
    }

    html[dir='rtl'] .av-wrap::after {
        content: '';
        /* top: 11px; */
        width: 160px;
        height: 163px;
        background: #d8d1e3;
        border-radius: 50%;
        top: -17px;
        left: 49%;
    }

    /* LTR */
    html[dir='ltr'] .av-wrap::after {
        content: '';
        /* top: 11px; */
        width: 160px;
        height: 163px;
        background: #d8d1e3;
        border-radius: 50%;
        top: -17px;
        left: 49%;
    }
}

@media (max-width: 767px) {
    .pricing-section-home .pricing-title {
        font-size: 18px;
    }

    .pricing-section-home .pricing-logo img {
        max-width: 130px;
    }

    .pricing-section-home .pricing-description {
        font-size: 16px;
    }
    .pricing-section-home .btn-primary {
        padding: 10px 18px;
        font-size: 13px;
        border-radius: 8px;
    }
    .pricing-section-home .btn-outline-primary {
        padding: 10px 18px;
        font-size: 13px;
        border-radius: 8px;
    }
}

/* ----------------------------------------------- */
/*  pricing-plan SECTION                               */
/* ----------------------------------------------- */
.pricing-section {
    padding: 133px 0 0;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 8px;
    border-radius: 8px;
    background: #f1eef8;
    color: var(--primary-color);
    font-size: var(--text-small);
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-title {
    font-size: var(--title-font-size);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 8px;
}

.pricing-title .highlight {
    color: var(--primary-color);
}

.pricing-section .pricing-description {
    color: #666;
    font-size: 18px;
    line-height: 1.9;
    max-width: 700px;
    margin: auto;
}

.pricing-switch-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.pricing-label {
    color: #666;
    font-size: 18px;
    font-weight: 600;
}

.pricing-switch {
    position: relative;
    width: 52px;
    height: 28px;
}

.pricing-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricing-switch .slider {
    position: absolute;
    inset: 0;
    background: #ccc;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-default);
}

.pricing-switch .slider::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    top: 3px;
    right: 3px;
    background: #fff;
    border-radius: 50%;
    transition: var(--transition-default);
}

.pricing-switch input:checked + .slider {
    background: #6a44a5;
}

.pricing-switch input:checked + .slider::before {
    transform: translateX(-24px);
}

.pricing-card {
    width: 100%;
    border-radius: 8px;
    background: #fafafa;
    border: 1px solid #efefef !important;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
    border: 1.3px solid var(--Stroke-Primary-primary, #9f8dcc) !important;
    background: #fff;
}

.pricing-card.featured::before {
    position: absolute;
    top: 14px;
    background: #faf0fd;
    color: #6a44a5;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

.pricing-card .card-body {
    padding: 30px 22px;
}

.pricing-plan {
    font-size: 14px;
    color: #333;
    font-weight: 700;
}

.pricing-price {
    margin: 12px 0 4px;
    display: flex;
    gap: 2px;
    align-items: baseline;
}

.decimal-part {
    font-size: 0.55em;
}
.currency {
    font-size: 21px;
    color: #6a44a5;
    font-weight: 600;
}

.amount {
    font-size: 38px;
    font-weight: 600;
    color: #6a44a5;
    line-height: 1;
}

.pricing-subtitle {
    color: #aaa;
    font-size: 12px;
    line-height: 1.5;
}

.pricing-btn {
    display: block;
    width: 100%;
    background: #6a44a5;
    color: #fff;
    text-decoration: none;
    padding: 8px;
    border-radius: 16px;
    margin: 18px 0 16px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
}

.pricing-btn:hover {
    color: #fff;
    background: #57348e;
}

.pricing-btn.btn-outline {
    background: #fafafa;
    color: #6a44a5;
    border: 1px solid var(--Stroke-Primary-primary, #9f8dcc);
}

.pricing-btn.btn-outline:hover {
    background: #f3eeff;
    color: #6a44a5;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-list li {
    border: none !important;
    padding: 6px 0;
    color: #666;
    font-size: 13px;
    position: relative;
}

.pricing-list li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: #7a56d8;
    font-weight: 900;
}

.pricing-card::after {
    content: '';
    position: absolute;
    left: 0px;
    bottom: -5px;
    width: 110px;
    height: 130px;
    background-image: url(/websiteeduxpert/images/icon-pricing-box-1.png);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

html[dir='rtl'] .pricing-list {
    text-align: right;
}

html[dir='ltr'] .pricing-list {
    text-align: left;
}
html[dir='rtl'] .pricing-list li::before {
    right: 0;
    left: auto;
}

html[dir='ltr'] .pricing-list li::before {
    left: 0;
    right: auto;
}
html[dir='rtl'] .pricing-card.featured::before {
    left: 14px;
    right: auto;
}

html[dir='ltr'] .pricing-card.featured::before {
    right: 14px;
    left: auto;
}
html[dir='rtl'] .pricing-list li::before {
    right: 0;
    left: auto;
}

html[dir='ltr'] .pricing-list li::before {
    left: 0;
    right: auto;
}
html[dir='rtl'] .pricing-list li {
    padding-right: 18px;
    padding-left: 0;
}

html[dir='ltr'] .pricing-list li {
    padding-left: 18px;
    padding-right: 0;
}
@media (max-width: 991px) {
    .pricing-card.featured {
        transform: none;
    }

    .pricing-title {
        font-size: 26px;
    }

    .amount {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 80px 0 0;
    }

    .pricing-section .pricing-description,
    .pricing-label {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .pricing-title {
        font-size: var(--title-font-size-mobile);
    }

    .pricing-section .pricing-description,
    .pw-desc {
        font-size: var(--text-font-size-mobile);
    }
}

/* ----------------------------------------------- */
/*  DOWNLOAD APP SECTION                           */
/* ----------------------------------------------- */
.download-app-section {
    padding: 80px 0;
    background: #ece8f2;
}

.download-wrapper {
    background: #ece8f2;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 140px;
    position: relative;
    overflow: hidden;
}

/* Image side */
.download-image {
    flex: 1;
    position: relative;
    z-index: 2;
}

.download-image img {
    width: 100%;
    max-width: 500px;
    display: block;
}
html[dir='ltr'] .download-image img {
    transform: scaleX(-1);
}

/* Content side */
.download-content {
    flex: 1;
    z-index: 2;
}

.download-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 8px;
    border-radius: 8px;
    background: #f1eef8;
    color: var(--primary-color);
    font-size: var(--text-small);
    font-weight: 700;
    margin-bottom: 8px;
}

.download-title {
    font-size: var(--title-font-size);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.download-title span {
    color: var(--primary-color);
}

.download-description {
    font-size: var(--text-font-size);
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 450px;
    margin-bottom: 16px;
}

/* Store buttons + QR columns (Desktop) */
.store-buttons {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.store-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.store-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--white);
    color: #000;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid var(--Stroke-Primary-primary, #9f8dcc);
    transition: var(--transition-default);
    width: 100%;
}

.store-btn:hover {
    background-color: #f0f0f0;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* QR codes */
.qr-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
}

.qr-item img {
    width: 95px;
    height: 95px;
    object-fit: contain;
}

/* ----------------------------------------------- */
/*  RESPONSIVE                                     */
/* ----------------------------------------------- */
@media (max-width: 991px) {
    .download-wrapper {
        text-align: center;
        gap: 30px;
        padding: 30px 20px;
    }

    .download-content {
        text-align: center;
    }

    .download-description {
        margin-left: auto;
        margin-right: auto;
    }

    .store-buttons {
        justify-content: center;
    }

    .download-image img {
        max-width: 350px;
        margin: auto;
    }
}

@media (max-width: 776px) {
    .download-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .download-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 30px 20px;
    }
    .download-title {
        font-size: var(--title-font-size-mobile);
    }
    .download-description {
        font-size: var(--text-font-size-mobile);
    }
    .download-image img {
        max-width: 260px;
        margin: auto;
    }

    /* On mobile: button + QR side by side, stacked rows */
    .store-buttons {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        width: 100%;
    }

    .store-item {
        flex-direction: row;
        justify-content: center;
        width: 100%;
        gap: 0px;
    }

    .store-btn {
        width: 100%;
        flex: 0 1 auto;
    }

    .qr-item img {
        width: 70px;
        height: 70px;
    }
    .qr-item {
        background: none !important;
    }
}
html[dir='ltr'] .pricing-price .currency {
    order: 2;
}
html[dir='ltr'] .pricing-price .amount {
    order: 1;
}
html[dir='ltr'] .pricing-price .price-period {
    order: 3;
}

html[dir='rtl'] .pricing-price .currency {
    order: 1;
}
html[dir='rtl'] .pricing-price .amount {
    order: 2;
}
html[dir='rtl'] .pricing-price .price-period {
    order: 3;
}

/* ----------------------------------------------- */
/*  faq SECTION                               */
/* ----------------------------------------------- */
.faq-section {
    padding: 80px 0;
}

.faq-title {
    font-size: var(--title-font-size);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.4;
    text-align: center;
}

.faq-tabs {
    display: flex;
    justify-content: space-between;
    background: var(--white);
    border-radius: 12px;
    padding: 5px;
    max-width: 700px;
    margin: auto;
    margin-bottom: 40px;
    box-shadow: 0px 4px 15.6px 0px #0000001f;

    gap: 6px;
}

.tab {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px;
    cursor: pointer;
    border-radius: 10px;
    color: var(--text-muted);
    transition: var(--transition-default);
}

.tab.active {
    color: var(--primary-color);
    font-weight: 600;
    background: #f3eeff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.faq-accordion {
    max-width: 700px;
    margin: auto;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0px 4px 24px 0px #9333ea14;

    transition: var(--transition-default);
}

.faq-item.active {
    background: #f1eef8;
    color: #333;
    border: 1px solid #9f8dcc;
}

.faq-question {
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.icon {
    font-size: 18px;
    line-height: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: 0.3s;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 10px 20px 20px;
}
@media (max-width: 768px) {
    .faq-title {
        font-size: var(--title-font-size-mobile);
    }
    .faq-question {
        font-size: 12px;
    }

    .tab {
        text-align: center;
        padding: 7px;
        font-size: 14px;
    }

    .faq-answer {
        font-size: 10px;
    }
    .faq-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        margin-bottom: 16px;
        padding: 5px;
        gap: 8px;
    }

    .faq-tabs::-webkit-scrollbar {
        display: none; /* Chrome & Safari */
    }

    .faq-tabs .tab {
        flex: 0 0 auto;
        min-width: max-content;
        padding: 10px 18px;
    }
    .tab {
        flex: 0 0 auto;
    }
    .faq-item {
        margin-bottom: 8px;
    }
}

/* ----------------------------------------------- */
/*  faq SECTION                               */
/* ----------------------------------------------- */
.contact-us {
    padding: 80px 0;
}

.contact-us .contact-form {
    border-radius: 12px;
    background: #fcfbfd;

    border: 1px solid var(--Stroke-Neutral-primary, #e3e2e3);
}

.contact-us .form-control {
    height: 45px;
    border-radius: 6px;
    font-size: 14px;
}

.contact-us textarea.form-control {
    height: auto;
}

/* BUTTON */
.contact-us .btn-primary {
    background: linear-gradient(95.92deg, #f1eef8 -111.89%, #5f3e94 41.87%);
    border: none;
}
.form-control {
    background: #fcfbfd !important;
}
.contact-us .btn-primary:hover {
    background: var(--gradient-primary-hover);
}

/* RIGHT SIDE */
.contact-us .contact-info {
    padding: 10px;
}

.contact-us .contact-title {
    font-size: var(--title-font-size);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.contact-us .contact-desc {
    color: #666;
    font-size: 18px;
    line-height: 1.9;
    max-width: 700px;
    margin-bottom: 16px;
}

/* BADGE */
.contact-us .badge-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 8px;
    border-radius: 8px;
    background: #f1eef8;
    /* border: 1px solid rgba(95, 62, 148, 0.15); */
    color: var(--primary-color);
    font-size: var(--text-small);
    font-weight: 700;
    margin-bottom: 8px;
}

/* INFO ITEMS */
.contact-us .info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px;
    border: 2px solid #eee;
    border-radius: 32px;
    margin-bottom: 12px;
    background: #fff;
    width: fit-content;
}

.contact-us .info-item .icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(180deg, #7850bb 0%, #8776a4 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-us .info-item .title {
    font-weight: 600;
    display: block;
}

.contact-us .info-item .text {
    font-size: 14px;
    color: var(--text-muted);
}
.contact-us .form-control:focus {
    border-color: #9333ea;
    outline: none;
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
    background: #fff;
}
.contact-info .info-item a {
    color: inherit;
}

.contact-info .info-item a:hover {
    color: var(--primary-color);
}
@media (max-width: 768px) {
    .contact-us {
        padding: 40px 0;
    }
    .contact-us .contact-title {
        font-size: var(--title-font-size-mobile);
    }
    .contact-us .contact-desc {
        font-size: var(--text-font-size-mobile);
    }

    .contact-us .download-image img {
        max-width: 100%;
        margin: auto;
    }
}

/* ----------------------------------------------- */
/*  pricing SECTION                               */
/* ----------------------------------------------- */
.pw-section {
    padding: 80px 0;
}

.pw-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 8px;
    border-radius: 8px;
    background: #f1eef8;
    color: var(--primary-color);
    font-size: var(--text-small);
    font-weight: 700;
    margin-bottom: 8px;
}

.pw-title {
    font-size: var(--title-font-size);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 8px;
}

.pw-desc {
    color: var(--text-muted);
    font-size: var(--text-font-size);
    line-height: 1.9;
    max-width: 750px;
    margin: auto;
}

.pw-card {
    width: 100%;
    border-radius: 10px;
    background: var(--light-gray);
    border: 1px solid #efefef !important;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-default);
}

.pw-card:hover {
    transform: translateY(-5px);
}

.pw-card.pw-feat {
    background: var(--white);
    border: 1.3px solid var(--Stroke-Primary-primary, #9f8dcc) !important;
}

.pw-card.pw-feat:hover {
    transform: translateY(-14px);
}

.pw-card::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 110px;
    height: 130px;
    background-image: url(/websiteeduxpert/images/icon-pricing-box-1.png);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.pw-body {
    padding: 10px 17px;
}

.pw-rec-badge {
    display: inline-block;
    position: absolute;
    top: 18px;
    background: #faf0fd;
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 8px;
}

.pw-plan-name {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
    margin-top: 10px;
}

.pw-price-wrap {
    display: flex;

    gap: 3px;
    margin: 8px 0 4px;
}

.pw-x {
    font-size: 50px;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.pw-curr {
    font-size: 22px;
    color: var(--primary-color);
    font-weight: 800;
    line-height: 1.5;
}

.pw-sub {
    color: #aaa;
    font-size: 14px;
    line-height: 1.5;
}

.pw-hint {
    color: #aaa;
    font-size: 12px;
    margin: 2px 0;
}

.pw-btn {
    display: block;
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    padding: 8px;
    border-radius: 16px;
    margin: 14px 0 8px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: background var(--transition-default);
}

.pw-btn:hover {
    background: var(--primary-color-hover);
    color: var(--white);
}

.pw-btn.pw-btn-out {
    background: #fafafa;
    color: var(--primary-color);
    border: 1px solid var(--Stroke-Primary-primary, #9f8dcc);
}

.pw-btn.pw-btn-out:hover {
    background: #f3eeff;
    color: var(--primary-color);
}

.pw-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
}

.pw-list li {
    padding: 6px 0;
    color: #555;
    font-size: 13px;
    position: relative;
    border: none !important;
}

.pw-list li::before {
    content: '✓';
    position: absolute;
    color: var(--primary-color);
    font-weight: 900;
}

/* RTL */
html[dir='rtl'] .pw-list {
    text-align: right;
}

html[dir='rtl'] .pw-list li {
    padding-right: 20px;
    padding-left: 0;
}

html[dir='rtl'] .pw-list li::before {
    right: 0;
    left: auto;
}

html[dir='rtl'] .pw-rec-badge {
    left: 14px;
    right: auto;
}

/* LTR */
html[dir='ltr'] .pw-list {
    text-align: left;
}

html[dir='ltr'] .pw-list li {
    padding-left: 20px;
    padding-right: 0;
}

html[dir='ltr'] .pw-list li::before {
    left: 0;
    right: auto;
}

html[dir='ltr'] .pw-rec-badge {
    right: 0px;
    left: auto;
    font-size: 8px;
}

@media (max-width: 991px) {
    .pw-card.pw-feat {
        transform: none;
    }

    .pw-title {
        font-size: var(--title-font-size-mobile);
    }
}

@media (max-width: 768px) {
    .contact-us,
    .faq-section,
    .download-app-section,
    .pw-section,
    .features-section,
    .pricing-section-home,
    .tools-section {
        padding: 80px 0 0;
    }
    .pricing-section .pricing-description,
    .pw-desc {
        font-size: var(--text-font-size-mobile);
    }
    .pw-badge,
    .pricing-badge {
        font-size: 12px;
        padding: 5px 14px;
        margin-bottom: 8px;
    }
}
@media (max-width: 576px) {
    .contact-us .badge-contact,
    .download-badge,
    .pricing-section-home .pricing-badge,
    .multi-role-section .section-badge,
    .badge-label,
    .section-badge {
        font-size: 12px;
        padding: 5px 14px;
        margin-bottom: 16px;
    }
    .hero-badge {
        font-size: 20px;
        padding: 5px 14px;
        margin-bottom: 16px;
    }
}

/* ===============================
    3.  termsCSS
================================== */
.terms-header {
    border-bottom: 1px solid #ddd;
    position: relative;
    overflow: hidden;
}

.terms-header h2 {
    position: relative;
    z-index: 1;
    color: var(--primary-color);
}

.terms-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.terms-content p {
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
    padding-right: 1.5rem;
}

.terms-content ul {
    list-style: none;
    padding-right: 1.5rem;
}

.terms-content ul li {
    position: relative;
    padding-right: 1.5rem;
    margin-bottom: 0.75rem;
}

.terms-content ul li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0.5rem;
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .terms-header h2 {
        font-size: 1.5rem;
    }
    .terms-content {
        padding: 1rem;
    }
}

.users-section p {
    font-size: 1.25rem;
}
/* ===============================
    3.  end termsCSS
================================== */

/* ===============================
    3. reg-bg section
================================== */
.reg-bg {
    background-color: #f8f6fc;
    padding: 120px 0 60px 0;
}

.reg-bg .reg-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #ece9f5;
    padding: 40px 32px;
    margin: 0 auto;
    box-shadow: 0px 1px 52.3px 0px #0000001f;
}

/* الهيدر */
.reg-bg .flex-container-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.reg-bg .text-content {
    flex: 1;
    min-width: 250px;
}

.reg-bg .image-content {
    flex: 1;
}

.reg-bg .image-content img {
    max-width: 100%;
    height: auto;
}

.reg-bg .text-content h2 {
    font-size: var(--title-font-size);
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 18px;
}

.reg-bg .text-content p {
    font-size: var(--text-font-size);
    color: var(--text-muted);
    line-height: 1.7;
}

.reg-bg .reg-title {
    color: #333333;
    font-weight: 700;
    margin-bottom: 35px;
    text-align: center;
    font-size: 22px;
}

.reg-bg .form-label {
    font-size: 13px;
    font-weight: 600;
    color: #777777;
    margin-bottom: 8px;
    display: block;
}

.reg-bg .form-control-custom {
    /* background-color: #FBFBFB; */
    border: 1px solid #e2e0e6;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    color: #444444;
    width: 100%;
    transition: all 0.3s;
}

.reg-bg .form-control-custom::placeholder {
    color: #b0aeb7;
    opacity: 2;
}

.reg-bg .form-control-custom:focus {
    border-color: #6c56a3;
    outline: none;
    box-shadow: 0 0 0 2px rgba(108, 86, 163, 0.1);
}

.reg-bg .phone-group {
    display: flex;
    border: 1px solid #e2e0e6;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fbfbfb;
}

.reg-bg .phone-group:focus-within {
    border-color: #6c56a3;
    box-shadow: 0 0 0 2px rgba(108, 86, 163, 0.1);
}

.reg-bg .phone-group .country-code {
    background: #f1eff5;
    padding: 12px 15px;
    font-size: 14px;
    color: #666666;
    border-right: 1px solid #e2e0e6;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 85px;
    justify-content: center;
}

.reg-bg .phone-group .form-control-custom {
    border: none;
    background: transparent;
    padding-left: 10px;
}

.reg-bg .btn-submit {
    background-color: #6c56a3;
    color: #ffffff;
    border: none;
    padding: 12px 35px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    transition: background 0.3s;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.reg-bg .btn-submit:hover {
    background-color: #584487;
    color: #ffffff;
}

.reg-bg .privacy-text {
    font-size: 18px;
    margin: 0;
}

.reg-bg .brand-text {
    color: #6c56a3;
}

.reg-bg .flex-container-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.faq-content-wrapper {
    position: relative;
    transition: min-height 0.2s ease;
}
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}
.faq-content-wrapper {
    display: grid;
}

.tab-content {
    grid-area: 1 / 1;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.tab-content.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
/* Responsive */
@media (max-width: 768px) {
    .reg-bg .flex-container-header {
        flex-direction: column;
    }

    .reg-bg .text-content h2 {
        font-size: var(--title-font-size-mobile);
        margin-bottom: 16px;
        padding: 0 10px;
    }

    .reg-bg .text-content p {
        font-size: var(--text-font-size-mobile);
        padding: 0 10px;
    }

    .reg-bg .image-content {
        justify-content: center;
        display: flex;
        margin-bottom: 16px;
    }

    .reg-bg .image-content img {
        max-width: 80%;
    }

    .reg-bg .privacy-text {
        font-size: 14px;
        margin-bottom: 16px;
    }
}
