:root {
    --navy: #081a3a;
    --navy-soft: #0d234d;
    --sky: #5ec8ff;
    --sky-light: #dff5ff;
    --white: #ffffff;
    --text: #1f2a44;
    --muted: #7e8aa8;
    --border: rgba(255, 255, 255, 0.1);
    --shadow: 0 20px 60px rgba(7, 27, 66, 0.15);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    direction: rtl;
}

body {
    font-family: "Montserrat", "Segoe UI", sans-serif;
    background: #f6faff;
    color: var(--text);
    overflow-x: hidden;
    text-align: start;
}

body.rtl {
    font-family: 'Cairo', sans-serif;
    text-align: right;
}

body.ltr {
    font-family: 'Montserrat', sans-serif;
    text-align: left;
}

body.ltr .hero-title,
body.ltr .hero-text,
body.ltr .section-title,
body.ltr .section-text,
body.ltr .feature-card,
body.ltr .plan-card,
body.ltr .footer-section {
    direction: ltr;
}

a {
    text-decoration: none;
}

.section-padding {
    padding: 100px 0;
}

.saree3-navbar {
    background: rgba(8, 26, 58, 0.75);
    backdrop-filter: blur(12px);
    transition: 0.3s ease;
    padding: 16px 0;
}

.saree3-navbar.scrolled {
    background: rgba(8, 26, 58, 0.96);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    padding: 12px 0;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.85);
    margin-inline: 8px;
    font-weight: 500;
}

.navbar .nav-link:hover {
    color: var(--sky);
}

.brand-badge {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sky), #89ddff);
    color: var(--navy);
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(94, 200, 255, 0.35);
}

.btn-sky {
    background: linear-gradient(135deg, var(--sky), #93e2ff);
    color: var(--navy);
    font-weight: 700;
    border: none;
}

.btn-sky:hover {
    background: linear-gradient(135deg, #78d7ff, #b1ebff);
    color: var(--navy);
}

.hero-section {
    background:
        radial-gradient(circle at top right, rgba(94, 200, 255, 0.25), transparent 25%),
        radial-gradient(circle at left center, rgba(94, 200, 255, 0.12), transparent 30%),
        linear-gradient(135deg, #07152f 0%, #0b2350 100%);
    color: var(--white);
    position: relative;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.4;
}

.hero-shape-1 {
    width: 320px;
    height: 320px;
    background: rgba(94, 200, 255, 0.15);
    top: -80px;
    left: -80px;
}

.hero-shape-2 {
    width: 380px;
    height: 380px;
    background: rgba(94, 200, 255, 0.1);
    bottom: -120px;
    right: -120px;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.08);
    color: #dff7ff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 14px;
    text-align: start;
}

.hero-title {
    font-size: 3.2rem;
    line-height: 1.3;
    font-weight: 800;
    text-align: start;
}

.text-gradient {
    background: linear-gradient(135deg, #8de3ff, #46bfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.9;
    max-width: 620px;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 14px 28px;
    border-radius: 16px;
    font-weight: 700;
    transition: 0.3s ease;
    border: none;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--sky), #9ee6ff);
    color: var(--navy);
    box-shadow: 0 15px 35px rgba(94, 200, 255, 0.3);
}

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

.btn-hero-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.stat-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 18px 12px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-card h4 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--sky);
}

.stat-card p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.hero-dashboard-card {
    max-width: 560px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 18px;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(18px);
    position: relative;
}

.dashboard-topbar {
    margin-bottom: 18px;
}

.dashboard-topbar span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    display: inline-block;
}

.dashboard-content {
    display: flex;
    gap: 16px;
}

.dashboard-sidebar {
    width: 78px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sidebar-item {
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
}

.sidebar-item.active {
    background: linear-gradient(135deg, rgba(94, 200, 255, 0.8), rgba(94, 200, 255, 0.35));
}

.dashboard-main {
    flex: 1;
}

.dashboard-widget {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 18px;
    color: var(--white);
}

.large-widget {
    margin-bottom: 16px;
}

.widget-title {
    font-size: 14px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.72);
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 10px;
    height: 120px;
}

.chart-bars span {
    flex: 1;
    border-radius: 12px 12px 6px 6px;
    background: linear-gradient(180deg, #8ce3ff, #2497ff);
    animation: barFloat 3s ease-in-out infinite;
}

.chart-bars span:nth-child(1) {
    height: 50%;
    animation-delay: 0s;
}

.chart-bars span:nth-child(2) {
    height: 80%;
    animation-delay: 0.2s;
}

.chart-bars span:nth-child(3) {
    height: 60%;
    animation-delay: 0.4s;
}

.chart-bars span:nth-child(4) {
    height: 95%;
    animation-delay: 0.6s;
}

.chart-bars span:nth-child(5) {
    height: 70%;
    animation-delay: 0.8s;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.small-widget strong {
    font-size: 1.5rem;
    color: var(--sky);
}

.floating-badge {
    position: absolute;
    background: var(--white);
    color: var(--navy);
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: var(--shadow);
}

.badge-1 {
    top: 65px;
    left: -20px;
}

.badge-2 {
    bottom: 35px;
    right: -18px;
}

.section-heading {
    max-width: 760px;
    margin-inline: auto;
}

.section-badge {
    display: inline-block;
    background: #e8f7ff;
    color: #0c61a8;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 15px;
}

.section-text {
    color: var(--muted);
    font-size: 1.03rem;
    line-height: 1.9;
}

.features-section {
    background: #f6faff;
}

.feature-card {
    background: var(--white);
    border-radius: 24px;
    padding: 30px 24px;
    box-shadow: 0 15px 45px rgba(10, 39, 89, 0.08);
    border: 1px solid rgba(8, 26, 58, 0.05);
    transition: 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(10, 39, 89, 0.12);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, #dff4ff, #b8e8ff);
    color: #0a5d9d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
}

.feature-card h4 {
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 12px;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.plans-section {
    background:
        linear-gradient(180deg, #f6faff 0%, #eef8ff 100%);
}

.plan-card {
    background: var(--white);
    border-radius: 28px;
    padding: 34px 26px;
    box-shadow: 0 20px 55px rgba(8, 26, 58, 0.08);
    border: 1px solid rgba(8, 26, 58, 0.06);
    position: relative;
    transition: 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-8px);
}

.plan-card.featured {
    background: linear-gradient(180deg, #0b2350 0%, #0c2f67 100%);
    color: var(--white);
    border: 1px solid rgba(94, 200, 255, 0.25);
    transform: scale(1.03);
}

.plan-card.featured .plan-header p,
.plan-card.featured .plan-features li,
.plan-card.featured .period {
    color: rgba(255, 255, 255, 0.78);
}

.plan-card.featured .amount,
.plan-card.featured .currency {
    color: var(--sky);
}

.popular-tag {
    position: absolute;
    top: 18px;
    inset-inline-end: 18px;
    background: linear-gradient(135deg, var(--sky), #9be7ff);
    color: var(--navy);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.plan-header h4 {
    font-weight: 800;
    margin-bottom: 8px;
}

.plan-header p {
    color: var(--muted);
    margin-bottom: 22px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 25px;
}

.currency {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
}

.amount {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    color: var(--navy);
}

.period {
    color: var(--muted);
    font-size: 15px;
}

.plan-features li {
    padding: 10px 0;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features i {
    color: #24b0ff;
}

.btn-plan {
    margin-top: 18px;
    border-radius: 16px;
    padding: 14px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--navy), #123c80);
    color: var(--white);
    border: none;
    margin-block-end: auto;
}

.btn-plan:hover {
    color: var(--white);
    opacity: 0.95;
}

.plan-card.featured .btn-plan {
    background: linear-gradient(135deg, var(--sky), #8fe3ff);
    color: var(--navy);
}

.final-cta-section {
    padding: 40px 0 100px;
    background: #eef8ff;
}

.final-cta-box {
    background: linear-gradient(135deg, #07152f 0%, #0c2e67 100%);
    color: var(--white);
    border-radius: 32px;
    padding: 60px 30px;
    box-shadow: 0 25px 60px rgba(8, 26, 58, 0.18);
}

.final-cta-box h2 {
    font-weight: 800;
    font-size: 2rem;
}

.final-cta-box p {
    color: rgba(255, 255, 255, 0.78);
    max-width: 750px;
    margin-inline: auto;
    line-height: 1.9;
}

.footer-section {
    background: #07152f;
    color: var(--white);
    padding: 70px 0 30px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.9;
}

.footer-links a,
.footer-social a {
    color: rgba(255, 255, 255, 0.78);
    transition: 0.3s ease;
}

.footer-links a:hover,
.footer-social a:hover {
    color: var(--sky);
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 30px 0 20px;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.58);
}

@keyframes barFloat {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 0.9;
    }

    50% {
        transform: scaleY(1.08);
        opacity: 1;
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.7s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .hero-dashboard-card {
        max-width: 100%;
    }

    .badge-1 {
        left: 10px;
    }

    .badge-2 {
        right: 10px;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 75px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .dashboard-content {
        flex-direction: column;
    }

    .dashboard-sidebar {
        width: 100%;
        flex-direction: row;
    }

    .sidebar-item {
        flex: 1;
        height: 42px;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .final-cta-box {
        padding: 40px 20px;
    }

    .final-cta-box h2 {
        font-size: 1.5rem;
    }
}