﻿:root {
    --primary-color: #512e80;
    --secondary-color: #2f8b48;
    --white-color: #ffffff;
    --dark-color: #101014;
    --text-color: #222222;
    --muted-color: #6c757d;
    --light-bg: #ffffff;
    --dark-bg: #111118;
    --border-color: rgba(81, 46, 128, 0.15);
    --transition-normal: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'thmany';
    src: url('../Fonts/thmanyahsans-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'thmany';
    src: url('../Fonts/thmanyahsans-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

html[dir="ltr"] body {
    font-family: 'thmany', system-ui, sans-serif;
}

html[dir="rtl"] body {
    font-family: 'thmany', system-ui, sans-serif;
}

body {
    margin: 0;
    background-color: var(--light-bg);
    color: var(--text-color);
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

/* Navbar */
.proapps-navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    padding: 14px 0;
    transition: all var(--transition-normal);
    z-index: 999;
}

/*.proapps-logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
}*/

.brand-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

    .brand-logo:hover {
        transform: scale(1.03);
    }

.logo-main {
    color: var(--primary-color);
}

.logo-second {
    color: var(--secondary-color);
}

.nav-center .nav-link {
    color: var(--text-color);
    font-size: 15px;
    font-weight: 600;
    margin: 0 10px;
    position: relative;
    transition: color var(--transition-normal);
}

    .nav-center .nav-link::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 2px;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        transform: translateX(-50%);
        transition: width var(--transition-normal);
    }

    .nav-center .nav-link:hover,
    .nav-center .nav-link.active {
        color: var(--primary-color);
    }

        .nav-center .nav-link:hover::after,
        .nav-center .nav-link.active::after {
            width: 70%;
        }

.nav-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-icon-btn {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    background-color: var(--white-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all var(--transition-normal);
}

    .nav-icon-btn:hover {
        color: var(--white-color);
        background: var(--primary-color);
        transform: translateY(-3px);
        box-shadow: 0 10px 22px rgba(81, 46, 128, 0.25);
    }

/* =========================
   FOOTER
========================= */

.proapps-footer {
    position: relative;
    overflow: hidden;
    padding: 80px 0 30px;
    background: linear-gradient( 135deg, #f5f7ff 0%, #eef2ff 45%, #f3fff7 100% );
    border-top: 1px solid rgba(81, 46, 128, 0.08);
}

    /* Background Glow */
    .proapps-footer::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient( circle at top left, rgba(81, 46, 128, 0.08), transparent 30% ), radial-gradient( circle at bottom right, rgba(47, 139, 72, 0.08), transparent 30% );
        pointer-events: none;
    }

    /* Footer Content */
    .proapps-footer .container {
        position: relative;
        z-index: 2;
    }

/* Logo */
.footer-logo-wrapper {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.footer-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.footer-description {
    font-size: 15px;
    line-height: 1.9;
    color: #5f6773;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

/* Titles */
.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 22px;
    color: var(--primary-color);
}

/* Links */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .footer-links a {
        color: #4f5661;
        text-decoration: none;
        transition: all 0.3s ease;
        font-weight: 500;
    }

        .footer-links a:hover {
            color: var(--primary-color);
            transform: translateX(4px);
        }

/* Social */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

    .footer-social a {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background-color: rgba(81, 46, 128, 0.08);
        color: var(--primary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 18px;
        transition: all 0.3s ease;
    }

        .footer-social a:hover {
            background: linear-gradient( 135deg, var(--primary-color), var(--secondary-color) );
            color: #ffffff;
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(81, 46, 128, 0.25);
        }

/* Divider */
.footer-divider {
    margin: 45px 0 25px;
    border-color: rgba(81, 46, 128, 0.12);
}

/* Bottom */
.footer-bottom {
    font-size: 14px;
    color: #727b88;
}

.footer-company-link {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .footer-company-link:hover {
        color: var(--secondary-color);
    }

body.dark-mode .footer-company-link {
    color: #ffffff;
}

/* =========================
   DARK MODE FOOTER
========================= */

body.dark-mode .proapps-footer {
    background: linear-gradient( 135deg, #12141c 0%, #171925 45%, #102017 100% );
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body.dark-mode .footer-title {
    color: #ffffff;
}

body.dark-mode .footer-description {
    color: rgba(255,255,255,.72);
}

body.dark-mode .footer-links a {
    color: rgba(255,255,255,.75);
}

    body.dark-mode .footer-links a:hover {
        color: #ffffff;
    }

body.dark-mode .footer-social a {
    background-color: rgba(255,255,255,.08);
    color: #ffffff;
}

body.dark-mode .footer-divider {
    border-color: rgba(255,255,255,.1);
}

body.dark-mode .footer-bottom {
    color: rgba(255,255,255,.65);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .footer-description {
        margin: auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links {
        align-items: center;
    }
}
/* Scroll To Top */
.scroll-top-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: linear-gradient( 135deg, var(--primary-color), var(--secondary-color) );
    color: #ffffff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.35s ease;
    z-index: 999;
    box-shadow: 0 10px 25px rgba(81, 46, 128, 0.35);
}

    .scroll-top-btn.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .scroll-top-btn:hover {
        transform: translateY(-6px) scale(1.05);
        box-shadow: 0 16px 35px rgba(47, 139, 72, 0.4);
    }

    .scroll-top-btn i {
        line-height: 0;
    }

/* Mobile */
@media (max-width: 768px) {

    .scroll-top-btn {
        width: 46px;
        height: 46px;
        right: 18px;
        bottom: 18px;
        font-size: 24px;
    }
}
/* =========================
   HERO SECTION
========================= */

.hero-section {
    min-height: 100vh;
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: linear-gradient( 135deg, #f4f7ff 0%, #eef2ff 35%, #f8fffb 100% );
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(81, 46, 128, 0.10), transparent 35%), radial-gradient(circle at bottom right, rgba(47, 139, 72, 0.10), transparent 35%);
    z-index: 2;
}

/* =========================
   HERO CONTENT
========================= */

.hero-content {
    position: relative;
    z-index: 5;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 18px;
    margin-bottom: 28px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(81, 46, 128, 0.12);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(81, 46, 128, 0.08);
    backdrop-filter: blur(12px);
}

.hero-kicker-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--secondary-color);
}

.hero-title {
    max-width: 800px;
    margin: 0 auto 28px;
    color: #111827;
    font-size: clamp(46px, 7vw, 72px);
    font-weight: 650;
    line-height: 1.25;
    letter-spacing: -4.5px;
}

.hero-description {
    max-width: 850px;
    margin: 0 auto 40px;
    color: #4d5562;
    font-size: 20px;
    line-height: 1.85;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 38px;
}

.hero-btn-primary,
.hero-btn-secondary {
    padding: 14px 34px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 800;
    transition: all 0.35s ease;
}

.zatca-highlight {
    color: var(--secondary-color);
    font-weight: 700;
}

.hero-btn-primary {
    color: #ffffff;
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 14px 32px rgba(81, 46, 128, 0.28);
}

    .hero-btn-primary:hover {
        color: #ffffff;
        background-color: #3f2464;
        border-color: #3f2464;
        transform: translateY(-4px);
        box-shadow: 0 18px 42px rgba(81, 46, 128, 0.34);
    }

.hero-btn-secondary {
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.65);
    border: 2px solid rgba(81, 46, 128, 0.22);
}

    .hero-btn-secondary:hover {
        color: #ffffff;
        background-color: var(--secondary-color);
        border-color: var(--secondary-color);
        transform: translateY(-4px);
        box-shadow: 0 18px 42px rgba(47, 139, 72, 0.28);
    }

.hero-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4d5562;
    font-size: 15px;
    font-weight: 600;
}

    .hero-trust-item i {
        color: var(--secondary-color);
        font-size: 17px;
    }

/* =========================
   DARK MODE HERO CONTENT
========================= */

body.dark-mode .hero-kicker {
    background-color: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.14);
    color: #ffffff;
    box-shadow: none;
}

body.dark-mode .hero-title {
    color: #ffffff;
}

body.dark-mode .hero-description {
    color: rgba(255,255,255,.78);
}

body.dark-mode .hero-btn-secondary {
    color: #ffffff;
    background-color: transparent;
    border-color: rgba(255,255,255,.32);
}

    body.dark-mode .hero-btn-secondary:hover {
        color: #ffffff;
        background-color: var(--secondary-color);
        border-color: var(--secondary-color);
    }

body.dark-mode .hero-trust-item {
    color: rgba(255,255,255,.78);
}

/* =========================
   RESPONSIVE HERO CONTENT
========================= */

@media (max-width: 768px) {

    .hero-kicker {
        flex-direction: column;
        gap: 6px;
        border-radius: 24px;
    }

    .hero-kicker-dot {
        display: none;
    }

    .hero-title {
        font-size: clamp(38px, 12vw, 56px);
        letter-spacing: -1.5px;
    }

    .hero-description {
        font-size: 17px;
        line-height: 1.8;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        max-width: 280px;
    }

    .hero-trust-row {
        flex-direction: column;
        gap: 12px;
    }
}

/* Hero Logo */
.hero-logo-wrapper {
    margin-bottom: 34px;
}

.hero-logo-icon {
    width: 120px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 40px rgba(81, 46, 128, 0.18));
    animation: heroFloat 5s ease-in-out infinite;
}

@keyframes heroFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Dark Mode */
body.dark-mode .hero-logo-icon {
    filter: drop-shadow(0 18px 40px rgba(81, 46, 128, 0.35));
}

/* Mobile */
@media (max-width: 768px) {

    .hero-logo-icon {
        width: 92px;
    }
}

/* =========================
   HERO CERTIFICATIONS
========================= */

.hero-certifications {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    margin-bottom: 42px;
    padding: 18px 28px;
    border-radius: 24px;
    background-color: rgba(255,255,255,.72);
    border: 1px solid rgba(81, 46, 128, 0.08);
    box-shadow: 0 18px 40px rgba(81, 46, 128, 0.08);
    backdrop-filter: blur(12px);
}

.hero-certification-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-certification-logo {
    height: 54px;
    width: auto;
    object-fit: contain;
}

.hero-certification-divider {
    width: 1px;
    height: 42px;
    background-color: rgba(81, 46, 128, 0.12);
}

/* Dark Mode */
body.dark-mode .hero-certifications {
    background-color: rgba(255,255,255,.96);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 18px 45px rgba(0,0,0,.28);
    backdrop-filter: blur(12px);
}

body.dark-mode .hero-certification-divider {
    background-color: rgba(0,0,0,.08);
}

body.dark-mode .hero-certification-logo {
    filter: contrast(1.02) saturate(1.02);
}

.zatca-logo {
    height: 78px;
}

/* Responsive */
@media (max-width: 768px) {

    .hero-certifications {
        flex-direction: column;
        gap: 18px;
        padding: 20px;
    }

    .hero-certification-divider {
        width: 60px;
        height: 1px;
    }

    .hero-certification-logo {
        height: 44px;
    }
}

/* =========================
   STARS BACKGROUND
========================= */

.stars-layer {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.stars-small,
.stars-medium,
.stars-large {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
}

/* Small Stars */
.stars-small {
    width: 3px;
    height: 3px;
    background: transparent;
    box-shadow: 50px 80px rgba(81,46,128,.55), 120px 220px rgba(47,139,72,.55), 180px 420px rgba(81,46,128,.5), 260px 140px rgba(47,139,72,.55), 340px 320px rgba(81,46,128,.5), 420px 90px rgba(47,139,72,.5), 520px 260px rgba(81,46,128,.55), 620px 120px rgba(47,139,72,.5), 720px 360px rgba(81,46,128,.5), 840px 160px rgba(47,139,72,.55), 960px 420px rgba(81,46,128,.5), 1080px 200px rgba(47,139,72,.5), 1200px 480px rgba(81,46,128,.55), 1320px 260px rgba(47,139,72,.55), 1440px 120px rgba(81,46,128,.5), 1560px 340px rgba(47,139,72,.5), 1680px 220px rgba(81,46,128,.55), 1800px 420px rgba(47,139,72,.5), 1920px 180px rgba(81,46,128,.55), 80px 620px rgba(47,139,72,.5), 240px 760px rgba(81,46,128,.5), 420px 920px rgba(47,139,72,.55), 640px 820px rgba(81,46,128,.5), 860px 1040px rgba(47,139,72,.55), 1080px 860px rgba(81,46,128,.5), 1300px 980px rgba(47,139,72,.5), 1540px 760px rgba(81,46,128,.55), 1760px 920px rgba(47,139,72,.55);
    animation: starsMove 100s linear infinite;
}

    .stars-small::after {
        content: "";
        position: absolute;
        top: 2000px;
        width: 2px;
        height: 2px;
        box-shadow: inherit;
    }

/* Medium Stars */
.stars-medium {
    width: 4px;
    height: 4px;
    background: transparent;
    box-shadow: 140px 180px rgba(81,46,128,.75), 340px 420px rgba(47,139,72,.7), 580px 220px rgba(81,46,128,.75), 820px 520px rgba(47,139,72,.7), 1040px 280px rgba(81,46,128,.75), 1280px 620px rgba(47,139,72,.7), 1520px 360px rgba(81,46,128,.75), 1760px 540px rgba(47,139,72,.7), 260px 920px rgba(81,46,128,.75), 620px 1120px rgba(47,139,72,.7), 980px 840px rgba(81,46,128,.75), 1420px 1040px rgba(47,139,72,.7);
    animation: starsMove 150s linear infinite;
}

    .stars-medium::after {
        content: "";
        position: absolute;
        top: 2000px;
        width: 3px;
        height: 3px;
        box-shadow: inherit;
    }

/* Large Stars */
.stars-large {
    width: 5px;
    height: 5px;
    background: transparent;
    box-shadow: 220px 320px rgba(255,255,255,.9), 620px 520px rgba(255,255,255,.9), 1020px 220px rgba(255,255,255,.9), 1420px 620px rgba(255,255,255,.9), 1820px 360px rgba(255,255,255,.9), 420px 1020px rgba(255,255,255,.9), 920px 1320px rgba(255,255,255,.9), 1520px 1120px rgba(255,255,255,.9);
    filter: blur(.3px);
    animation: starsMove 220s linear infinite;
}

    .stars-large::after {
        content: "";
        position: absolute;
        top: 2000px;
        width: 4px;
        height: 4px;
        box-shadow: inherit;
    }

/* Animation */
@keyframes starsMove {

    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-2000px);
    }
}

/* =========================
   DARK MODE
========================= */

body.dark-mode .hero-section {
    background: radial-gradient( ellipse at bottom, #1b2735 0%, #090a0f 100% );
}

body.dark-mode .hero-overlay {
    background: radial-gradient(circle at center, rgba(81, 46, 128, 0.22), transparent 45%), linear-gradient( 135deg, rgba(81, 46, 128, 0.25), rgba(47, 139, 72, 0.12) );
}

body.dark-mode .hero-badge {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: none;
}

body.dark-mode .hero-title {
    background: linear-gradient( 135deg, #ffffff 0%, #d8c9ff 45%, #75d391 100% );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.dark-mode .hero-description {
    color: rgba(255, 255, 255, 0.82);
}

body.dark-mode .hero-btn-outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.45);
    background-color: transparent;
}

    body.dark-mode .hero-btn-outline:hover {
        color: var(--primary-color);
        background-color: #ffffff;
        border-color: #ffffff;
    }

body.dark-mode .stars-small,
body.dark-mode .stars-medium,
body.dark-mode .stars-large {
    opacity: 1;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .hero-section {
        min-height: 92vh;
        padding: 135px 0 80px;
    }

    .hero-title {
        letter-spacing: 2px;
    }

    .hero-description {
        font-size: 17px;
        line-height: 1.8;
    }

    .hero-btn-primary,
    .hero-btn-outline {
        width: 100%;
        max-width: 280px;
    }
}
/* =========================
   ABOUT SECTION
========================= */

.about-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background-color: #ffffff;
}

    /* Soft Background */
    .about-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient( circle at top left, rgba(81, 46, 128, 0.05), transparent 30% ), radial-gradient( circle at bottom right, rgba(47, 139, 72, 0.05), transparent 30% );
        pointer-events: none;
    }

/* Tag */
.section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    margin-bottom: 24px;
    border-radius: 50px;
    color: var(--primary-color);
    background-color: rgba(81, 46, 128, 0.08);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Title */
.about-title {
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 28px;
    color: #111827;
}

    .about-title span {
        background: linear-gradient( 135deg, var(--primary-color), var(--secondary-color) );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

/* Description */
.about-description {
    font-size: 18px;
    line-height: 1.9;
    color: #5d6674;
    margin-bottom: 22px;
}
/* About Vision & Mission */
.about-statements {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.about-statement-card {
    padding: 40px 34px;
    border-radius: 28px;
    background-color: #ffffff;
    border: 1px solid rgba(81, 46, 128, 0.08);
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    transition: all 0.35s ease;
}

    .about-statement-card:hover {
        transform: translateY(-10px);
        border-color: rgba(81, 46, 128, 0.18);
        box-shadow: 0 24px 50px rgba(81, 46, 128, 0.12);
    }

.about-statement-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: 22px;
    background-color: var(--primary-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 16px 35px rgba(81, 46, 128, 0.22);
}

.about-statement-card:hover .about-statement-icon {
    background-color: var(--secondary-color);
}

.about-statement-card h4 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #111827;
}

.about-statement-card p {
    margin: 0;
    color: #667180;
    line-height: 1.8;
    font-size: 16px;
}

/* Dark Mode */
body.dark-mode .about-statement-card {
    background-color: #171925;
    border-color: rgba(255,255,255,.06);
    box-shadow: none;
}

    body.dark-mode .about-statement-card h4 {
        color: #ffffff;
    }

    body.dark-mode .about-statement-card p {
        color: rgba(255,255,255,.68);
    }

    body.dark-mode .about-statement-card:hover {
        border-color: rgba(255,255,255,.14);
    }

/* Responsive */
@media (max-width: 991px) {
    .about-statements {
        grid-template-columns: 1fr;
    }
}

/* =========================
   DARK MODE
========================= */

body.dark-mode .about-section {
    background-color: #0f1118;
}

body.dark-mode .about-title {
    color: #ffffff;
}

body.dark-mode .about-description {
    color: rgba(255,255,255,.72);
}

body.dark-mode .section-tag {
    background-color: rgba(255,255,255,.08);
    color: #ffffff;
}

body.dark-mode .about-feature-item {
    background-color: #171925;
    border-color: rgba(255,255,255,.06);
}

    body.dark-mode .about-feature-item h5 {
        color: #ffffff;
    }

    body.dark-mode .about-feature-item p {
        color: rgba(255,255,255,.68);
    }

    body.dark-mode .about-feature-item:hover {
        border-color: rgba(255,255,255,.12);
    }

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .about-section {
        padding: 90px 0;
    }

    .about-description {
        font-size: 16px;
    }
}
/* =========================
   PRODUCTS SECTION
========================= */

.products-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient( 135deg, #f8f9ff 0%, #ffffff 50%, #f6fff9 100% );
}

    .products-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient( circle at top right, rgba(81, 46, 128, 0.06), transparent 30% ), radial-gradient( circle at bottom left, rgba(47, 139, 72, 0.06), transparent 30% );
        pointer-events: none;
    }

    .products-section .container {
        position: relative;
        z-index: 2;
    }

.products-title {
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #111827;
}

    .products-title span {
        background: linear-gradient( 135deg, var(--primary-color), var(--secondary-color) );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.products-description {
    max-width: 760px;
    margin: 0 auto;
    color: #5d6674;
    font-size: 18px;
    line-height: 1.9;
}

.products-grid {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    position: relative;
    padding: 38px 30px;
    border-radius: 28px;
    background-color: #ffffff;
    border: 1px solid rgba(81, 46, 128, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    transition: all 0.35s ease;
    overflow: hidden;
}

    .product-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, rgba(81, 46, 128, 0.08), rgba(47, 139, 72, 0.08) );
        opacity: 0;
        transition: all 0.35s ease;
    }

    .product-card:hover {
        transform: translateY(-10px);
        border-color: rgba(81, 46, 128, 0.18);
        box-shadow: 0 24px 55px rgba(81, 46, 128, 0.13);
    }

        .product-card:hover::before {
            opacity: 1;
        }

    .product-card > * {
        position: relative;
        z-index: 2;
    }

.product-icon {
    width: 74px;
    height: 74px;
    margin-bottom: 26px;
    border-radius: 24px;
    background: var(--primary-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 31px;
    box-shadow: 0 16px 35px rgba(81, 46, 128, 0.22);
}

.product-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #111827;
}

.product-card p {
    margin: 0;
    color: #667180;
    line-height: 1.8;
    font-size: 15.5px;
}
/* =========================
   PRODUCTS CTA
========================= */

.products-cta-box {
    position: relative;
    max-width: 980px;
    margin: 80px auto 0;
    padding: 50px;
    border-radius: 36px;
    background-color: #ffffff;
    border: 1px solid rgba(81, 46, 128, 0.08);
    box-shadow: 0 24px 60px rgba(81, 46, 128, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    overflow: hidden;
}

    .products-cta-box::before {
        content: "";
        position: absolute;
        top: -120px;
        right: -120px;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: radial-gradient( circle, rgba(81, 46, 128, 0.08), transparent 70% );
    }

.products-cta-content {
    position: relative;
    z-index: 2;
}

.products-cta-tag {
    display: inline-flex;
    padding: 10px 18px;
    margin-bottom: 20px;
    border-radius: 999px;
    background-color: rgba(81, 46, 128, 0.08);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
}

.products-cta-content h3 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 18px;
    color: #111827;
}

.products-cta-content p {
    max-width: 560px;
    margin: 0;
    color: #667180;
    line-height: 1.9;
    font-size: 17px;
}

.products-cta-actions {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-shrink: 0;
}

.products-cta-primary,
.products-cta-secondary {
    min-width: 220px;
    padding: 15px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    transition: all 0.35s ease;
}

.products-cta-primary {
    color: #ffffff;
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 14px 35px rgba(81, 46, 128, 0.2);
}

    .products-cta-primary:hover {
        color: #ffffff;
        background-color: #412466;
        border-color: #412466;
        transform: translateY(-4px);
    }

.products-cta-secondary {
    color: var(--primary-color);
    background-color: transparent;
    border: 2px solid rgba(81, 46, 128, 0.16);
}

    .products-cta-secondary:hover {
        color: #ffffff;
        background-color: var(--secondary-color);
        border-color: var(--secondary-color);
        transform: translateY(-4px);
    }

/* Dark Mode */
body.dark-mode .products-cta-box {
    background-color: #171925;
    border-color: rgba(255,255,255,.06);
    box-shadow: none;
}

body.dark-mode .products-cta-content h3 {
    color: #ffffff;
}

body.dark-mode .products-cta-content p {
    color: rgba(255,255,255,.7);
}

body.dark-mode .products-cta-tag {
    background-color: rgba(255,255,255,.08);
    color: #ffffff;
}

body.dark-mode .products-cta-secondary {
    color: #ffffff;
    border-color: rgba(255,255,255,.18);
}

/* Responsive */
@media (max-width: 991px) {

    .products-cta-box {
        max-width: 720px;
        flex-direction: column;
        text-align: center;
        padding: 42px 30px;
        border-radius: 30px;
    }

    .products-cta-content p {
        max-width: 100%;
    }

    .products-cta-actions {
        width: 100%;
        align-items: center;
    }

    .products-cta-primary,
    .products-cta-secondary {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 576px) {

    .products-cta-box {
        margin-top: 55px;
        padding: 36px 22px;
        border-radius: 26px;
    }

    .products-cta-content h3 {
        font-size: 30px;
    }

    .products-cta-content p {
        font-size: 15.5px;
    }
}
/* =========================
   PRODUCTS CTA
========================= */

.products-cta-box {
    position: relative;
    max-width: 980px;
    margin: 80px auto 0;
    padding: 50px;
    border-radius: 36px;
    background-color: #ffffff;
    border: 1px solid rgba(81, 46, 128, 0.08);
    box-shadow: 0 24px 60px rgba(81, 46, 128, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    overflow: hidden;
}

    .products-cta-box::before {
        content: "";
        position: absolute;
        top: -120px;
        right: -120px;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: radial-gradient( circle, rgba(81, 46, 128, 0.08), transparent 70% );
    }

.products-cta-content {
    position: relative;
    z-index: 2;
}

.products-cta-tag {
    display: inline-flex;
    padding: 10px 18px;
    margin-bottom: 20px;
    border-radius: 999px;
    background-color: rgba(81, 46, 128, 0.08);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
}

.products-cta-content h3 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 18px;
    color: #111827;
}

.products-cta-content p {
    max-width: 560px;
    margin: 0;
    color: #667180;
    line-height: 1.9;
    font-size: 17px;
}

.products-cta-actions {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-shrink: 0;
}

.products-cta-primary,
.products-cta-secondary {
    min-width: 220px;
    padding: 15px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    transition: all 0.35s ease;
}

.products-cta-primary {
    color: #ffffff;
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 14px 35px rgba(81, 46, 128, 0.2);
}

    .products-cta-primary:hover {
        color: #ffffff;
        background-color: #412466;
        border-color: #412466;
        transform: translateY(-4px);
    }

.products-cta-secondary {
    color: var(--primary-color);
    background-color: transparent;
    border: 2px solid rgba(81, 46, 128, 0.16);
}

    .products-cta-secondary:hover {
        color: #ffffff;
        background-color: var(--secondary-color);
        border-color: var(--secondary-color);
        transform: translateY(-4px);
    }

/* Dark Mode */
body.dark-mode .products-cta-box {
    background-color: #171925;
    border-color: rgba(255,255,255,.06);
    box-shadow: none;
}

body.dark-mode .products-cta-content h3 {
    color: #ffffff;
}

body.dark-mode .products-cta-content p {
    color: rgba(255,255,255,.7);
}

body.dark-mode .products-cta-tag {
    background-color: rgba(255,255,255,.08);
    color: #ffffff;
}

body.dark-mode .products-cta-secondary {
    color: #ffffff;
    border-color: rgba(255,255,255,.18);
}

/* Responsive */
@media (max-width: 991px) {

    .products-cta-box {
        max-width: 720px;
        flex-direction: column;
        text-align: center;
        padding: 42px 30px;
        border-radius: 30px;
    }

    .products-cta-content p {
        max-width: 100%;
    }

    .products-cta-actions {
        width: 100%;
        align-items: center;
    }

    .products-cta-primary,
    .products-cta-secondary {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 576px) {

    .products-cta-box {
        margin-top: 55px;
        padding: 36px 22px;
        border-radius: 26px;
    }

    .products-cta-content h3 {
        font-size: 30px;
    }

    .products-cta-content p {
        font-size: 15.5px;
    }
}

/* =========================
   DARK MODE
========================= */

body.dark-mode .products-cta-box {
    background-color: #171925;
    border-color: rgba(255,255,255,.06);
    box-shadow: none;
}

body.dark-mode .products-cta-content h3 {
    color: #ffffff;
}

body.dark-mode .products-cta-content p {
    color: rgba(255,255,255,.7);
}

body.dark-mode .products-cta-tag {
    background-color: rgba(255,255,255,.08);
    color: #ffffff;
}

body.dark-mode .products-cta-secondary {
    color: #ffffff;
    border-color: rgba(255,255,255,.18);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .products-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .products-cta-actions {
        width: 100%;
    }

    .products-cta-primary,
    .products-cta-secondary {
        width: 100%;
    }
}
/* =========================
   DARK MODE PRODUCTS
========================= */

body.dark-mode .products-section {
    background: linear-gradient( 135deg, #0f1118 0%, #12141c 50%, #0d1711 100% );
}

body.dark-mode .products-title {
    color: #ffffff;
}

body.dark-mode .products-description {
    color: rgba(255,255,255,.72);
}

body.dark-mode .product-card {
    background-color: #171925;
    border-color: rgba(255,255,255,.06);
    box-shadow: none;
}

    body.dark-mode .product-card h3 {
        color: #ffffff;
    }

    body.dark-mode .product-card p {
        color: rgba(255,255,255,.68);
    }

    body.dark-mode .product-card:hover {
        border-color: rgba(255,255,255,.14);
        box-shadow: 0 24px 55px rgba(0, 0, 0, 0.28);
    }

/* =========================
   RESPONSIVE PRODUCTS
========================= */

@media (max-width: 991px) {

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .products-section {
        padding: 90px 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        margin-top: 50px;
    }

    .products-description {
        font-size: 16px;
    }
}
/* =========================
   FEATURES SECTION
========================= */

.features-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background-color: #ffffff;
}

    .features-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top left, rgba(81, 46, 128, 0.05), transparent 30%), radial-gradient(circle at bottom right, rgba(47, 139, 72, 0.05), transparent 30%);
        pointer-events: none;
    }

    .features-section .container {
        position: relative;
        z-index: 2;
    }

.features-title {
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #111827;
}

    .features-title span {
        background: linear-gradient( 135deg, var(--primary-color), var(--secondary-color) );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.features-description {
    max-width: 760px;
    margin: 0 auto;
    color: #5d6674;
    font-size: 18px;
    line-height: 1.9;
}

.features-grid {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    position: relative;
    padding: 36px 28px;
    border-radius: 28px;
    background-color: #ffffff;
    border: 1px solid rgba(81, 46, 128, 0.08);
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    transition: all 0.35s ease;
    overflow: hidden;
    text-align: center;
}

    .feature-card:hover {
        transform: translateY(-10px);
        border-color: rgba(81, 46, 128, 0.18);
        box-shadow: 0 24px 55px rgba(81, 46, 128, 0.13);
    }

.feature-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 24px;
    border-radius: 24px;
    background: var(--primary-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 31px;
    box-shadow: 0 16px 35px rgba(81, 46, 128, 0.22);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 14px;
    color: #111827;
}

.feature-card p {
    margin: 0;
    color: #667180;
    line-height: 1.8;
    font-size: 15.5px;
}
/* Features List UI */
.features-list {
    max-width: 980px;
    margin: 70px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 26px;
    border-radius: 24px;
    background-color: #ffffff;
    border: 1px solid rgba(81, 46, 128, 0.08);
    box-shadow: 0 14px 35px rgba(0,0,0,0.04);
    transition: all 0.35s ease;
}

    .feature-row:hover {
        transform: translateY(-6px);
        border-color: rgba(81, 46, 128, 0.18);
        box-shadow: 0 22px 48px rgba(81, 46, 128, 0.11);
    }

.feature-row-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 18px;
    background-color: rgba(81, 46, 128, 0.08);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.feature-row:hover .feature-row-icon {
    background-color: var(--primary-color);
    color: #ffffff;
}

.feature-row-content h3 {
    font-size: 20px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
}

.feature-row-content p {
    margin: 0;
    color: #667180;
    line-height: 1.8;
    font-size: 15.5px;
}

/* Dark Mode */
body.dark-mode .feature-row {
    background-color: #171925;
    border-color: rgba(255,255,255,.06);
    box-shadow: none;
}

body.dark-mode .feature-row-content h3 {
    color: #ffffff;
}

body.dark-mode .feature-row-content p {
    color: rgba(255,255,255,.68);
}

body.dark-mode .feature-row-icon {
    background-color: rgba(255,255,255,.08);
    color: #ffffff;
}

body.dark-mode .feature-row:hover {
    border-color: rgba(255,255,255,.14);
}

/* Responsive */
@media (max-width: 991px) {
    .features-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .feature-row {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* Dark Mode */
body.dark-mode .features-section {
    background-color: #0f1118;
}

body.dark-mode .features-title {
    color: #ffffff;
}

body.dark-mode .features-description {
    color: rgba(255,255,255,.72);
}

body.dark-mode .feature-card {
    background-color: #171925;
    border-color: rgba(255,255,255,.06);
    box-shadow: none;
}

    body.dark-mode .feature-card h3 {
        color: #ffffff;
    }

    body.dark-mode .feature-card p {
        color: rgba(255,255,255,.68);
    }

    body.dark-mode .feature-card:hover {
        border-color: rgba(255,255,255,.14);
        box-shadow: 0 24px 55px rgba(0,0,0,.28);
    }

/* Responsive */
@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 90px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        margin-top: 50px;
    }

    .features-description {
        font-size: 16px;
    }
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient( 135deg, #f8f9ff 0%, #ffffff 50%, #f6fff9 100% );
}

    .contact-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient( circle at top right, rgba(81, 46, 128, 0.06), transparent 30% ), radial-gradient( circle at bottom left, rgba(47, 139, 72, 0.06), transparent 30% );
        pointer-events: none;
    }

    .contact-section .container {
        position: relative;
        z-index: 2;
    }

/* Title */
.contact-title {
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #111827;
}

    .contact-title span {
        background: linear-gradient( 135deg, var(--primary-color), var(--secondary-color) );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.contact-description {
    max-width: 760px;
    margin: 0 auto;
    color: #5d6674;
    font-size: 18px;
    line-height: 1.9;
}

/* Grid */
.contact-grid {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Card */
.contact-card {
    position: relative;
    padding: 40px 30px;
    border-radius: 28px;
    background-color: #ffffff;
    border: 1px solid rgba(81, 46, 128, 0.08);
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    text-align: center;
    transition: all 0.35s ease;
}

    .contact-card:hover {
        transform: translateY(-10px);
        border-color: rgba(81, 46, 128, 0.18);
        box-shadow: 0 24px 55px rgba(81, 46, 128, 0.13);
    }

/* Icon */
.contact-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 24px;
    border-radius: 24px;
    background: var(--primary-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 16px 35px rgba(81, 46, 128, 0.22);
}

/* Text */
.contact-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 14px;
    color: #111827;
}

.contact-card p {
    margin-bottom: 18px;
    color: #667180;
    line-height: 1.8;
    font-size: 15.5px;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

    .contact-card a:hover {
        color: var(--secondary-color);
    }

/* =========================
   DARK MODE
========================= */

body.dark-mode .contact-section {
    background: linear-gradient( 135deg, #0f1118 0%, #12141c 50%, #0d1711 100% );
}

body.dark-mode .contact-title {
    color: #ffffff;
}

body.dark-mode .contact-description {
    color: rgba(255,255,255,.72);
}

body.dark-mode .contact-card {
    background-color: #171925;
    border-color: rgba(255,255,255,.06);
    box-shadow: none;
}

    body.dark-mode .contact-card h3 {
        color: #ffffff;
    }

    body.dark-mode .contact-card p {
        color: rgba(255,255,255,.68);
    }

    body.dark-mode .contact-card a {
        color: #ffffff;
    }

    body.dark-mode .contact-card:hover {
        border-color: rgba(255,255,255,.14);
        box-shadow: 0 24px 55px rgba(0,0,0,.28);
    }

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .contact-section {
        padding: 90px 0;
    }

    .contact-description {
        font-size: 16px;
    }
}
/* =========================
   CONTACT FORM
========================= */

.contact-form {
    padding: 45px;
    border-radius: 32px;
    background-color: #ffffff;
    border: 1px solid rgba(81, 46, 128, 0.08);
    box-shadow: 0 24px 60px rgba(81, 46, 128, 0.08);
}

    .contact-form .form-label {
        font-weight: 700;
        color: #111827;
        margin-bottom: 8px;
    }

    .contact-form .form-control {
        min-height: 54px;
        border-radius: 16px;
        border: 1px solid rgba(81, 46, 128, 0.12);
        padding: 12px 18px;
        color: #111827;
        background-color: #ffffff;
        box-shadow: none;
        transition: all 0.3s ease;
    }

    .contact-form textarea.form-control {
        min-height: 160px;
        resize: none;
        padding-top: 16px;
    }

    .contact-form .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 4px rgba(81, 46, 128, 0.08);
    }

.contact-submit-btn {
    min-width: 220px;
    padding: 15px 32px;
    border-radius: 999px;
    color: #ffffff;
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-size: 15px;
    font-weight: 800;
    transition: all 0.35s ease;
}

    .contact-submit-btn:hover {
        color: #ffffff;
        background-color: #412466;
        border-color: #412466;
        transform: translateY(-4px);
    }

.contact-status-message {
    display: block;
    margin-top: 14px;
    font-weight: 700;
}

/* =========================
   DARK MODE
========================= */

body.dark-mode .contact-form {
    background-color: #171925;
    border-color: rgba(255,255,255,.06);
    box-shadow: none;
}

    body.dark-mode .contact-form .form-label {
        color: #ffffff;
    }

    body.dark-mode .contact-form .form-control {
        color: #ffffff;
        background-color: #10121a;
        border-color: rgba(255,255,255,.1);
    }

        body.dark-mode .contact-form .form-control::placeholder {
            color: rgba(255,255,255,.45);
        }

        body.dark-mode .contact-form .form-control:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 4px rgba(47, 139, 72, 0.12);
        }

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .contact-form {
        padding: 30px 22px;
        border-radius: 26px;
    }

    .contact-submit-btn {
        width: 100%;
    }
}
