        /* زر إنضم إلينا المركزي */
        .hero-join-center {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            margin-top: 30px;
            margin-bottom: 20px;
            position: relative;
            z-index: 20;
        }

        /* حجم صورة الهاتف في الهيرو */
        .hero-image-side .hero-phone-shot {
            width: 620px;
            height: auto;
            object-fit: contain;
            box-shadow: none;
            display: block;
            margin: 0 auto;
        }

        @media (max-width: 1200px) {
            .hero-image-side .hero-phone-shot {
                width: 480px;
            }
        }

        @media (max-width: 900px) {
            .hero-image-side .hero-phone-shot {
                width: 360px;
            }
        }

        @media (max-width: 600px) {
            .hero-image-side .hero-phone-shot {
                width: 260px;
            }
        }

        /* مكعب الشركاء في الهيرو */
        .hero-layout-wrapper {
            display: flex;
            flex-direction: row-reverse;
            align-items: center;
            justify-content: center;
            gap: 40px;
        }

        .hero-cube-side {
            flex: 1 1 340px;
            min-width: 260px;
            max-width: 440px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 0 10px;
        }

        .hero-image-side {
            flex: 1 1 340px;
            min-width: 260px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-text-side {
            flex: 2 1 400px;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        @media (max-width: 1100px) {
            .hero-layout-wrapper {
                flex-direction: column;
                gap: 24px;
            }

            .hero-cube-side,
            .hero-image-side,
            .hero-text-side {
                max-width: 100%;
                min-width: 0;
                width: 100%;
                justify-content: center;
                align-items: center;
            }

            .hero-text-side {
                align-items: center;
            }
        }

        @media (max-width: 768px) {
            .hero-layout-wrapper {
                flex-direction: column;
                gap: 18px;
            }

            .hero-cube-side,
            .hero-image-side,
            .hero-text-side {
                width: 100%;
                max-width: 100%;
                min-width: 0;
                justify-content: center;
                align-items: center;
            }

            .hero-text-side {
                align-items: center;
            }
        }

        /* ===============================================
           CSS ORGANIZATION
           ===============================================
           1. CSS Variables & Reset
           2. Typography & Base Styles
           3. Layout & Components
           4. Header & Navigation
           5. Hero Section & Buttons
           6. Services & Features
           7. Cards & Containers
           8. Utilities & Glassmorphism
           9. Responsive Design (Media Queries)
           10. Language-Specific Styles
           =============================================== */

        /* =============================================
           1. CSS VARIABLES & RESET
           ============================================= */
        :root {
            --primary-color: #00f5d4;
            --secondary-color: #0d253f;
            --accent-color: #00f5d4;
            --accent-transparent: rgba(0, 245, 212, 0.4);
            --text-dark: #1f2d3a;
            --text-light: #617487;
            --background-light: #f1f5f9;
            --background-white: #f8fafc;
            --border-color: #e2e8f0;
            --shadow-light: rgba(0, 0, 0, 0.08);
            --shadow-medium: rgba(0, 0, 0, 0.12);
            /* Glassmorphism Variables */
            --glass-bg: rgba(255, 255, 255, 0.25);
            --glass-bg-strong: rgba(255, 255, 255, 0.45);
            --glass-border: rgba(255, 255, 255, 0.3);
            --glass-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
            --glass-blur: blur(12px);
            /* Transition Variables */
            --transition-fast: all 0.3s ease;
            --transition-smooth: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            /* Cube Menu */
            --cube-size: 440px;
            --cube-half-size: 220px;
            --cube-menu-surface: rgba(10, 165, 151, 0.08);
            --cube-menu-text: #ffffff;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        /* Enhanced Glassmorphism Utility Classes */
        /* Note: .glass-effect and .glass-effect-light are defined in common.css */

        /* =============================================
           2. TYPOGRAPHY & BASE STYLES
           ============================================= */
        body {
            font-family: 'Tajawal', 'Almarai', sans-serif;
            margin: 0;
            padding: 0;
            background: #faf9f6;
            color: var(--text-dark);
            line-height: 1.7;
            direction: rtl;
            text-align: right;
            transition: all 0.3s ease;
            min-height: 100vh;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        html {
            overflow-x: hidden;
        }

        /* =============================================
           4. HEADER & NAVIGATION
           ============================================= */
        header {
            background: linear-gradient(180deg, #127a71 0%, #199a8e 80%, #faf9f6 100%);
            padding: 0;
            border-bottom: none;
            position: relative;
            width: 100%;
            z-index: 100;
            min-height: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow: visible;
        }

        header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 150px;
            background: linear-gradient(to bottom, transparent 0%, #faf9f6 100%);
            pointer-events: none;
            z-index: 0;
        }

        @media (max-width: 768px) {
            header::after {
                bottom: -280px;
                height: 280px;
            }

            header::before {
                background-size: 95% !important;
                background-position: center !important;
            }
        }

        @media (max-width: 480px) {
            header::after {
                bottom: -200px;
                height: 200px;
            }

            header::before {
                background-size: 95% !important;
                background-position: center !important;
                opacity: 0.5 !important;
            }
        }

        /* Parallax Background Layer - Image Design */
        header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../images/hero.jpg') center/95% no-repeat;
            transform: translateZ(0);
            will-change: transform;
            z-index: -1;
            opacity: 0.5;
            mix-blend-mode: screen;
            filter: contrast(1.1) brightness(1.1);
            -webkit-mask-image: linear-gradient(to bottom, black 0%, black 85%, transparent 100%);
            mask-image: linear-gradient(to bottom, black 0%, black 85%, transparent 100%);
        }

        [data-theme="dark"] header::after {
            background: linear-gradient(to bottom,
                    rgba(15, 23, 42, 0) 0%,
                    rgba(15, 23, 42, 0.1) 20%,
                    rgba(15, 23, 42, 0.3) 40%,
                    rgba(15, 23, 42, 0.6) 65%,
                    rgba(15, 23, 42, 0.85) 85%,
                    rgba(15, 23, 42, 1) 100%);
        }



        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px 15px;
            width: 100%;
            position: relative;
            background: transparent;
            z-index: 10000;
            transition: all 0.3s ease;
            gap: 20px;
        }

        .navbar.sticky {
            background: transparent;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            padding: 10px 15px;
            box-shadow: none;
            max-width: 100%;
            border-bottom: none;
        }

        .navbar.sticky .logo-img {
            height: 60px;
        }



        /* Navigation Links */
        .nav-links {
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 1;
            position: relative;
            z-index: 3000;
        }

        .nav-links ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .nav-links ul li {
            margin: 0;
            padding: 0;
        }

        .nav-links ul li a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            font-size: 15px;
            padding: 8px 12px;
            border-radius: 8px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 4px;
            position: relative;
            outline: 2px solid transparent;
            outline-offset: 2px;
        }

        .nav-links ul li a:focus {
            outline: 2px solid rgba(255, 255, 255, 0.6);
            background-color: rgba(255, 255, 255, 0.15);
        }

        .nav-links ul li a::after {
            content: '';
            position: absolute;
            right: 0;
            bottom: -8px;
            width: 0;
            height: 3px;
            background-color: rgba(255, 255, 255, 0.9);
            transition: width 0.4s ease;
            border-radius: 2px;
        }

        .nav-links ul li a:hover {
            color: #00f5d4;
            background-color: rgba(0, 245, 212, 0.12);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 245, 212, 0.25);
        }

        .nav-links ul li a:hover::after {
            width: 100%;
        }

        .nav-links ul li .active {
            font-weight: 700;
            color: white;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            border: 1px solid rgba(0, 128, 128, 0.15);
            border-radius: 8px;
            min-width: 180px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            z-index: 100;
            margin-top: 8px;
            list-style: none;
            padding: 8px 0;
            display: flex;
            flex-direction: column;
        }

        .nav-links ul li.dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu li {
            margin: 0;
            padding: 0;
        }

        .dropdown-menu li a {
            display: block;
            padding: 12px 16px;
            color: #000000 !important;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: all 0.3s ease;
            border-radius: 6px;
            margin: 4px 8px;
        }

        .dropdown-menu li a:focus {
            background-color: rgba(0, 128, 128, 0.15);
            outline: 2px solid rgba(0, 128, 128, 0.5);
        }

        .dropdown-menu li a:hover {
            background-color: rgba(0, 245, 212, 0.12);
            color: #0d253f !important;
            padding-left: 24px;
            transform: translateX(4px);
        }

        /* Keyboard Navigation Focus Visible */
        a:focus-visible,
        button:focus-visible {
            outline: 3px solid rgba(255, 255, 255, 0.7);
            outline-offset: 3px;
        }

        .nav-links ul li a:focus-visible::after {
            width: 100%;
        }

        /* Enhanced Link Underline Animation */
        .nav-links ul li a::after {
            transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        /* =============================================
           RESPONSIVE DESIGN - Tablet Large (max-width: 1024px)
           ============================================= */
        @media (max-width: 1024px) {
            .faq-cards-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .faq-card {
                padding: 28px 22px;
            }

            .faq-card-question {
                font-size: 1.15rem;
            }
        }

        /* =============================================
           6. RESPONSIVE DESIGN - CONSOLIDATED (max-width: 768px)
           ============================================= */
        @media (max-width: 768px) {

            /* Dropdown Menu Styles */
            .dropdown-menu {
                display: flex !important;
                position: static !important;
                background: transparent !important;
                border: none !important;
                box-shadow: none !important;
                padding: 0 !important;
                width: 100% !important;
                opacity: 1 !important;
                visibility: visible !important;
                transform: none !important;
                margin-top: 0 !important;
                flex-direction: column;
                gap: 0;
            }

            .dropdown-menu li {
                width: 100%;
                margin: 0;
                padding: 0;
            }

            .dropdown-menu li a {
                padding: 12px 16px;
                font-size: 15px;
                border-bottom: 1px solid rgba(0, 128, 128, 0.1);
                width: 100%;
                display: block;
            }

            .nav-links ul li.dropdown>a {
                pointer-events: auto;
            }

            .nav-links ul li.dropdown>a::after {
                display: none;
            }

            /* App Buttons Container */
            .app-buttons-container {
                flex-direction: column;
                gap: 15px;
            }

            .app-btn {
                width: 100%;
                max-width: 280px;
                padding: 12px 24px;
            }

            /* Header and Hero Styles */
            header {
                min-height: 600px;
                padding: 10px 0;
            }

            .header-hero-content {
                padding: 40px 20px 40px 20px;
            }

            .header-hero-content h1 {
                font-size: 36px;
                line-height: 1.3;
                margin-bottom: 20px;
            }

            .header-hero-content p {
                font-size: 16px;
            }

            /* Navbar Responsive */
            .navbar {
                padding: 0 10px;
            }

            .nav-links ul {
                display: none;
            }

            .nav-links.active ul {
                display: flex;
                flex-direction: column;
                position: fixed;
                top: 65px;
                left: 10px;
                right: 10px;
                width: calc(100% - 20px);
                max-width: 400px;
                background: var(--background-white);
                padding: 20px;
                box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
                border-radius: 12px;
                gap: 8px;
                z-index: 99999;
                max-height: 80vh;
                overflow-y: auto;
                margin: 0 auto;
            }

            /* Footer Responsive */
            .footer-content {
                flex-direction: column;
                gap: 20px;
            }

            .footer-logo,
            .footer-links,
            .footer-social {
                min-width: 100%;
            }

            /* FAQ Cards */
            .faq-cards-container {
                grid-template-columns: 1fr;
                gap: 18px;
                margin-top: 25px;
            }

            .faq-title {
                font-size: 1.8rem;
            }

            .faq-subtitle {
                font-size: 1rem;
                margin-bottom: 25px;
            }

            .faq-card {
                padding: 22px 18px;
                border-radius: 16px;
            }

            .faq-card-icon {
                width: 50px;
                height: 50px;
            }

            .faq-card-icon i {
                font-size: 20px;
            }

            .faq-card-question {
                font-size: 1.1rem;
            }

            .faq-card-answer {
                font-size: 0.875rem;
                line-height: 1.6;
            }

            .nav-links ul li a {
                padding: 8px 10px;
                font-size: 14px;
            }

            .social-icons-header {
                gap: 10px;
            }

            .social-icons-header a {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }

            /* Contact Section */
            .contact-section {
                padding: 60px 0;
            }
        }

        /* Dropdown Menu */
        .nav-links ul li.dropdown {
            position: relative;
        }

        .nav-links ul li.dropdown>a::after {
            content: '▼';
            font-size: 10px;
            margin-left: 4px;
            transition: transform 0.3s ease;
        }

        .nav-links ul li.dropdown:hover>a::after {
            transform: rotate(-180deg);
        }

        .logo {
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 28px;
            color: var(--primary-color);
            gap: 20px;
        }

        .logo img {
            height: 80px;
            border-radius: 12px;
        }

        .logo-link {
            display: flex;
            align-items: center;
            gap: 25px;
            text-decoration: none;
            color: white;
            padding: 4px 8px;
            border-radius: 12px;
            outline: 2px solid transparent;
            outline-offset: 2px;
            transition: all 0.3s ease;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-img {
            height: 80px;
            width: auto;
            border-radius: 12px;
            transition: all 0.3s ease;
            object-fit: contain;
        }

        .navbar.sticky .logo-img {
            height: 60px;
        }

        /* =============================================
           5. HERO SECTION & BUTTONS
           ============================================= */

        /* Header Hero Content */
        .header-hero-content {
            text-align: center;
            color: white;
            z-index: 10;
            position: relative;
            max-width: 900px;
            padding: 50px 30px 65px 30px;
            animation: fadeInUp 1s ease-out;
        }

        .header-hero-content h1 {
            font-size: 52px;
            font-weight: 700;
            margin: 0 0 45px 0;
            line-height: 1.35;
            color: #00f5d4;
            text-shadow: 0 0 15px rgba(0, 245, 212, 0.6), 0 3px 15px rgba(0, 0, 0, 0.4);
            letter-spacing: 0.5px;
            animation: fadeInDown 1.2s ease-out;
        }

        .header-hero-content h1::after {
            display: none;
        }

        .header-hero-content p {
            font-size: 21px;
            font-weight: 400;
            margin: 0 0 55px 0;
            line-height: 1.85;
            color: #b2fff5;
            text-shadow: 0 0 10px rgba(0, 245, 212, 0.4);
            letter-spacing: 0.3px;
            animation: fadeInUp 1.3s ease-out 0.2s backwards;
        }

        .hero-image-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 15;
            overflow: hidden;
        }

        .hero-doctor-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            opacity: 1;
        }

        .hero-doctor-image:hover {
            transform: scale(1.05);
        }

        .hero-store-links-wrapper {
            display: flex;
            flex-direction: column;
            gap: 25px;
            margin-top: 20px;
            align-items: center;
        }

        .store-group {
            display: flex;
            flex-direction: column;
            gap: 10px;
            align-items: center;
        }

        .group-label {
            font-size: 0.95rem;
            color: #0d253f;
            /* Dark Secondary Color */
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            opacity: 1;
            text-shadow: none;
            margin-bottom: 5px;
        }

        @media (max-width: 1100px) {

            .hero-store-links-wrapper,
            .store-group {
                align-items: center;
            }
        }

        .get-started-btn {
            display: inline-block;
            padding: 16px 50px;
            background: linear-gradient(145deg, #0d253f 0%, #0a1f35 52%, #00f5d4 100%);
            backdrop-filter: blur(20px) saturate(1.85) brightness(1.2);
            -webkit-backdrop-filter: blur(20px) saturate(1.85) brightness(1.2);
            color: #ffffff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 20px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.42);
            border: 2px solid #00f5d4;
            position: relative;
            overflow: hidden;
            outline: 2px solid transparent;
            outline-offset: 2px;
            animation: scaleIn 0.8s ease-out 0.4s backwards;
            z-index: 2;
        }

        .get-started-btn:focus {
            outline: 2px solid rgba(255, 255, 255, 0.8);
        }

        .get-started-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.3s ease;
        }

        .get-started-btn:hover {
            background: linear-gradient(145deg, #00f5d4 0%, #00d1b2 100%);
            color: #051425;
            transform: translateY(-6px) scale(1.05);
            box-shadow: 0 15px 45px rgba(0, 245, 212, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.5);
            border-color: #00f5d4;
        }

        .get-started-btn:hover::after {
            left: 100%;
        }

        .get-started-btn i {
            margin-right: 8px;
        }

        html[dir="ltr"] .get-started-btn i {
            margin-right: 0;
            margin-left: 8px;
        }

        /* Join Button Wrapper & Background */
        .join-button-wrapper {
            position: relative;
            display: inline-block;
            margin-bottom: 5px;
            z-index: 250;
            margin-top: 0px;
            margin-right: 0;
        }

        /* Join Text Styling */
        .join-text {
            color: white;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 18px;
            letter-spacing: 0.8px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
            animation: fadeInUp 1.2s ease-out 0.3s backwards;
        }

        .marquee-content {
            animation: scroll-marquee 6s linear infinite !important;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            flex-wrap: nowrap;
        }

        /* JN Background Decoration */
        .join-bg-decoration {
            position: absolute;
            top: 50%;
            left: auto;
            right: -100%;
            /* Moved slightly left */
            transform: translateY(-50%);
            /* Center vertically only */
            width: 100%;
            height: 150%;
            z-index: 1;
            /* Behind button */
            pointer-events: none;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0.8;
        }

        .bg-decoration-img {
            width: 100%;
            height: auto;
            object-fit: contain;
            max-width: 100%;
            display: block;
        }

        /* Hero Layout (Text + Device) */
        .hero-layout-wrapper {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            width: 100%;
            margin: 20px auto 0;
            padding: 20px;
            gap: 40px;
            position: relative;
            z-index: 10;
        }

        .hero-image-side,
        .hero-text-side {
            flex: 1;
            min-width: 300px;
        }

        .hero-image-side {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            transform: translateX(80px);
        }

        .hero-phone-shot {
            max-width: none;
            max-height: none;
            object-fit: contain;
            transition: filter 0.4s ease;
        }

        .hero-phone-shot:hover {
            filter:
                drop-shadow(0 40px 80px rgba(0, 0, 0, 0.32)) drop-shadow(0 15px 40px rgba(0, 128, 128, 0.30)) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.18));
        }

        /* ====== Floating Doctor Card ====== */
        .hero-phone-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 18px;
            position: relative;
        }

        /* ====== Glass Info Cards ====== */
        .info-card {
            position: relative;
            width: 250px;
            flex: 1 1 0;
            min-width: 220px;
            max-width: 280px;
            height: 400px;
            border-radius: 36px;
            direction: ltr;
            flex-shrink: 0;
            cursor: default;
            transition: transform 0.40s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.40s ease;
        }

        .info-card:hover {
            transform: translateY(-12px) scale(1.03);
        }

        .info-flip-inner {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .info-face {
            position: absolute;
            inset: 0;
            border-radius: 36px;
            overflow: hidden;
        }



        /* Top-left glass light reflection */
        .info-face::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg,
                    rgba(255, 255, 255, 0.22) 0%,
                    rgba(255, 255, 255, 0.07) 40%,
                    transparent 70%);
            z-index: 1;
            pointer-events: none;
            border-radius: inherit;
        }

        /* Bottom depth layer */
        .info-face::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 55%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.28) 0%, transparent 100%);
            z-index: 1;
            pointer-events: none;
        }

        /* Per-card glass gradients with colored glow */
        .info-card:nth-child(1) .info-face {
            background: linear-gradient(145deg, #064e3b 0%, #0d9488 50%, #2dd4bf 100%);
            box-shadow:
                0 32px 64px rgba(13, 148, 136, 0.45),
                0 8px 24px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.28),
                inset 0 -1px 0 rgba(0, 0, 0, 0.18);
        }

        .info-card:nth-child(2) .info-face {
            background: linear-gradient(145deg, #1e1b4b 0%, #1E40AF 50%, #3B82F6 100%);
            box-shadow:
                0 32px 64px rgba(30, 64, 175, 0.45),
                0 8px 24px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.28),
                inset 0 -1px 0 rgba(0, 0, 0, 0.18);
        }

        .info-card:nth-child(3) .info-face {
            background: linear-gradient(145deg, #052e16 0%, #166534 50%, #22C55E 100%);
            box-shadow:
                0 32px 64px rgba(22, 101, 52, 0.45),
                0 8px 24px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.28),
                inset 0 -1px 0 rgba(0, 0, 0, 0.18);
        }

        .info-card:nth-child(4) .info-face {
            background: linear-gradient(145deg, #2e1065 0%, #5B21B6 50%, #8B5CF6 100%);
            box-shadow:
                0 32px 64px rgba(91, 33, 182, 0.45),
                0 8px 24px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.28),
                inset 0 -1px 0 rgba(0, 0, 0, 0.18);
        }

        .cards-row-wrapper {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: center;
            align-items: stretch;
            gap: 24px;
            max-width: 1260px;
            width: 100%;
            margin: 40px auto 60px;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 1200px) {
            .info-card {
                width: calc(25% - 24px);
                min-width: 240px;
                height: auto;
            }
        }

        @media (max-width: 1024px) {
            .cards-row-wrapper {
                gap: 20px;
            }

            .info-card {
                width: calc(50% - 20px);
                min-width: 280px;
                height: auto;
            }
        }

        @media (max-width: 768px) {
            .cards-row-wrapper {
                gap: 16px;
                margin: 24px auto 40px;
                padding: 0 15px;
            }

            .info-card {
                width: calc(50% - 16px);
                min-width: 160px;
                height: auto;
            }
        }

        @media (max-width: 480px) {
            .cards-row-wrapper {
                gap: 10px;
                padding: 0 8px;
            }

            .info-card {
                width: calc(50% - 10px);
                min-width: 140px;
                height: auto;
            }
        }

        @media (max-width: 350px) {
            .info-card {
                width: 100%;
                min-width: 100%;
                height: 300px;
            }
        }



        .hero-text-side .header-hero-content {
            padding: 0;
            max-width: 100%;
            text-align: right;
            animation: none;
        }

        .hero-text-side .header-hero-content h1 {
            max-width: 18ch;
            margin: 0 0 18px 0;
            font-weight: 800;
            font-size: clamp(2rem, 3.1vw, 3rem);
            line-height: 1.45;
            letter-spacing: -0.01em;
            text-wrap: balance;
            color: #ffffff;
            text-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
        }

        .hero-text-side .header-hero-content p {
            max-width: 38ch;
            margin: 0;
            line-height: 1.9;
            color: #3f5568;
        }

        .hero-highlights {
            list-style: none;
            margin: 16px 0 0;
            padding: 0;
            display: grid;
            gap: 10px;
        }

        .hero-highlights li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            font-weight: 500;
            color: #244657;
            background: rgba(255, 255, 255, 0.56);
            border: 1px solid rgba(15, 143, 138, 0.18);
            border-radius: 999px;
            padding: 8px 14px;
            width: fit-content;
        }

        .hero-highlights li::before {
            content: '\f058';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--primary-color);
            font-size: 14px;
        }

        html[dir="ltr"] .hero-text-side .header-hero-content {
            text-align: left;
        }

        html[dir="ltr"] .hero-highlights li {
            width: fit-content;
        }

        .hero-text-side .header-hero-content h1,
        .hero-text-side .header-hero-content p {
            animation: none;
        }

        .hero-cta-group {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 30px;
            align-items: center;
        }

        .hero-store-links {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            gap: 15px;
            align-items: center;
            margin-top: 5px;
        }

        html[dir="rtl"] .hero-store-links {
            margin-left: 0;
        }

        html[dir="ltr"] .hero-store-links {
            margin-right: 0;
        }

        @media (max-width: 600px) {
            .hero-store-links {
                flex-direction: column;
                align-items: center;
            }
        }

        .hero-cta-group .app-btn:not(.app-btn-google):not(.app-btn-apple) {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(18px) saturate(180%);
            -webkit-backdrop-filter: blur(18px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.25);
            color: #fff;
            min-width: 170px;
            border-radius: 18px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        }

        .hero-cta-group .app-btn:not(.app-btn-google):not(.app-btn-apple):hover {
            background: rgba(255, 255, 255, 0.22);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
            color: #fff;
        }


        /* Premium Black Liquid Glass Buttons for Apple & Google */
        .hero-cta-group .app-btn-apple,
        .hero-cta-group .app-btn-google,
        .app-btn-apple,
        .app-btn-google {
            background: rgba(0, 0, 0, 0.75) !important;
            backdrop-filter: blur(20px) saturate(180%) !important;
            -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
            border: 1px solid rgba(255, 255, 255, 0.12) !important;
            border-radius: 18px !important;
            color: #ffffff !important;
            position: relative !important;
            overflow: hidden !important;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4),
                inset 0 1px 1px rgba(255, 255, 255, 0.15),
                inset 0 -1px 1px rgba(0, 0, 0, 0.3) !important;
            min-width: 240px;
            width: 240px;
            padding: 10px 0;
            font-size: 16px;
            box-sizing: border-box;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            text-decoration: none;
        }

        .app-btn-apple::before,
        .app-btn-google::before {
            content: '';
            position: absolute;
            top: 0;
            left: -150%;
            width: 150%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: all 0.7s ease;
            z-index: 2;
            pointer-events: none;
        }

        .app-btn-apple:hover::before,
        .app-btn-google:hover::before {
            left: 150%;
        }

        .app-btn-apple i,
        .app-btn-apple .btn-text,
        .app-btn-google i,
        .app-btn-google .btn-text {
            position: relative;
            z-index: 3;
        }

        .hero-cta-group .app-btn-apple:hover,
        .hero-cta-group .app-btn-google:hover,
        .app-btn-apple:hover,
        .app-btn-google:hover {
            background: rgba(0, 0, 0, 0.85) !important;
            border-color: rgba(255, 255, 255, 0.25) !important;
            transform: translateY(-8px) scale(1.05) !important;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5),
                inset 0 1px 1px rgba(255, 255, 255, 0.2) !important;
            color: #ffffff !important;
        }

        .hero-cta-group .app-btn .store-name {
            color: inherit;
        }

        .hero-cta-group .app-btn-google .fa-google-play {
            background: linear-gradient(135deg,
                    #4285f4 0%,
                    #4285f4 26%,
                    #ea4335 26%,
                    #ea4335 50%,
                    #fbbc05 50%,
                    #fbbc05 74%,
                    #34a853 74%,
                    #34a853 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        @media (max-width: 900px) {
            .hero-layout-wrapper {
                flex-direction: column;
                text-align: center;
                margin-top: 40px;
            }

            .hero-text-side {
                text-align: center !important;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .hero-text-side .header-hero-content {
                text-align: center !important;
            }

            .hero-text-side .header-hero-content h1,
            .hero-text-side .header-hero-content p {
                max-width: 100%;
            }

            .hero-highlights {
                place-items: center;
            }

            .hero-highlights li {
                width: 100%;
                justify-content: center;
            }

            .hero-cta-group {
                align-items: center;
            }

            .hero-store-links {
                justify-content: center;
            }

            .info-card:hover .info-flip-inner {
                transform: none;
            }
        }

        @keyframes pulseGlow {
            from {
                opacity: 0.6;
                transform: scale(0.95);
            }

            to {
                opacity: 1;
                transform: scale(1.05);
            }
        }

        /* App Store Buttons */
        .app-buttons-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            margin-top: 30px;
            flex-wrap: wrap;
            width: 100%;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
        }

        .app-buttons-column {
            display: flex;
            flex-direction: column;
            gap: 15px;
            align-items: center;
            margin-top: 20px;
        }

        .app-btn {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 9px 44px;
            border-radius: 14px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            min-width: 260px;
            justify-content: center;
        }

        /* Social Icons in Header */
        .social-icons-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-left: auto;
        }

        .social-icons-header a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            color: white;
            font-size: 22px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            outline: 2px solid transparent;
            outline-offset: 2px;
        }

        .social-icons-header a:focus {
            outline: 2px solid rgba(255, 255, 255, 0.7);
            background: rgba(255, 255, 255, 0.35);
        }


        /* =============================================
           NEUMORPHISM DESIGN SYSTEM
           ============================================= */
        :root {
            --neu-bg: #f1f5f9;
            --neu-light: #ffffff;
            --neu-dark: #cbd5e1;
            --neu-accent: #0d9488;
            --neu-accent-light: #2dd4bf;
            --neu-accent-dark: #0f766e;
            --neu-gold: #fbbf24;
            --neu-gold-dark: #b45309;
        }

        .neumorphic-card-container {
            background: var(--neu-bg);
            border-radius: 30px;
            box-shadow: 9px 9px 16px var(--neu-dark), -9px -9px 16px var(--neu-light);
            padding: 25px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            width: 100%;
            height: 100%;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .neumorphic-card-container:hover {
            box-shadow: 4px 4px 8px var(--neu-dark), -4px -4px 8px var(--neu-light);
            transform: translateY(-2px);
        }

        .neu-inset {
            box-shadow: inset 6px 6px 12px var(--neu-dark), inset -6px -6px 12px var(--neu-light);
            background: var(--neu-bg);
        }

        .neu-button {
            background: var(--neu-bg);
            border-radius: 12px;
            box-shadow: 5px 5px 10px var(--neu-dark), -5px -5px 10px var(--neu-light);
            border: none;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-dark);
            font-weight: 600;
        }

        .neu-button:active {
            box-shadow: inset 3px 3px 6px var(--neu-dark), inset -3px -3px 6px var(--neu-light);
            transform: scale(0.98);
        }

        .neu-circle {
            border-radius: 50%;
            box-shadow: 6px 6px 12px var(--neu-dark), -6px -6px 12px var(--neu-light);
        }

        .neu-text-glow {
            text-shadow: 1px 1px 2px var(--neu-light), -1px -1px 2px var(--neu-dark);
        }

        .patient-card-neu-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 10px;
        }

        .patient-avatar-neu {
            width: 60px;
            height: 60px;
            background: var(--neu-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 6px 6px 12px var(--neu-dark), -6px -6px 12px var(--neu-light);
            color: var(--neu-accent);
            font-size: 24px;
        }

        .patient-info-neu {
            flex: 1;
        }

        .patient-info-neu h4 {
            margin: 0;
            font-size: 18px;
            color: var(--text-dark);
        }

        .patient-info-neu p {
            margin: 0;
            font-size: 13px;
            color: var(--text-light);
        }

        .neu-status-pill {
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            background: var(--neu-bg);
            box-shadow: inset 3px 3px 6px var(--neu-dark), inset -3px -3px 6px var(--neu-light);
            color: var(--neu-accent);
            display: inline-block;
        }

        .neu-status-pill.neu-gold-pill {
            color: var(--neu-gold-dark);
            border: 1px solid rgba(251, 191, 36, 0.3);
        }

        .neu-action-group {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-top: auto;
        }

        .neu-action-btn {
            padding: 12px;
            font-size: 12px;
            text-align: center;
            text-decoration: none;
            border-radius: 15px;
        }

        .neu-video-area {
            height: 140px;
            border-radius: 20px;
            background: var(--neu-bg);
            box-shadow: inset 8px 8px 16px var(--neu-dark), inset -8px -8px 16px var(--neu-light);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            margin: 10px 0;
        }

        .neu-video-overlay {
            position: absolute;
            bottom: 10px;
            right: 10px;
            width: 40px;
            height: 50px;
            border-radius: 10px;
            background: var(--neu-bg);
            box-shadow: 4px 4px 8px var(--neu-dark), -4px -4px 8px var(--neu-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--neu-accent);
        }

        /* Phone Mockup Neumorphism */
        .phone-frame-neu {
            width: 100%;
            max-width: 250px;
            height: 480px;
            background: var(--neu-bg);
            border-radius: 40px;
            box-shadow: 15px 15px 30px var(--neu-dark), -15px -15px 30px var(--neu-light);
            padding: 10px;
            position: sticky;
            /* Make it sticky */
            top: 100px;
            /* Distance from top of viewport */
            z-index: 100;
            display: flex;
            flex-direction: column;
            border: 3px solid #1e293b;
            /* Dark Frame Border */
            margin: 0 auto;
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .phone-frame-neu:hover {
            transform: none;
        }

        @media (max-width: 480px) {
            .phone-frame-neu {
                width: 100%;
                max-width: 160px;
                height: 320px;
                border-radius: 20px;
                padding: 8px;
            }

            .phone-screen-neu {
                border-radius: 15px;
                padding: 10px 6px;
            }

            .phone-notch-neu {
                width: 60px;
                height: 12px;
                top: 2px;
            }

            .phone-camera-neu {
                width: 4px;
                height: 4px;
            }

            /* Scale down internal content */
            .patient-card-neu-header h4 {
                font-size: 11px !important;
            }

            .neu-status-pill {
                font-size: 7px !important;
            }

            .neu-video-area {
                height: 90px !important;
            }

            .neu-video-area i {
                font-size: 20px !important;
            }

            .phone-screen-neu p {
                font-size: 8px !important;
                line-height: 1.3 !important;
            }

            .neu-action-btn {
                font-size: 9px !important;
                padding: 6px !important;
            }
        }

        .phone-screen-neu {
            flex: 1;
            background: var(--neu-bg);
            border-radius: 32px;
            box-shadow: inset 6px 6px 12px var(--neu-dark), inset -6px -6px 12px var(--neu-light);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            padding: 20px 15px;
            position: relative;
        }

        .phone-notch-neu {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 110px;
            height: 24px;
            background: #1e293b;
            /* Match Dark Frame */
            border-bottom-left-radius: 15px;
            border-bottom-right-radius: 15px;
            box-shadow: inset 0 -2px 4px rgba(255, 255, 255, 0.1);
            z-index: 20;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .phone-camera-neu {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--neu-dark);
            box-shadow: inset 1px 1px 2px var(--neu-light);
            opacity: 0.5;
        }

        .phone-home-neu {
            position: absolute;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
            width: 110px;
            height: 5px;
            background: var(--neu-dark);
            border-radius: 10px;
            opacity: 0.2;
            box-shadow: inset 1px 1px 2px var(--neu-light);
        }

        /* Color Themes for Neumorphism */
        .neu-theme-patient {
            --neu-accent: #008080;
        }

        .neu-theme-doctor {
            --neu-accent: #4f46e5;
        }

        .neu-theme-inst {
            --neu-accent: #16a34a;
        }

        .neu-theme-drug {
            --neu-accent: #8b5cf6;
        }

        [data-theme="dark"] .phone-frame-neu {
            border-color: #0f172a;
        }

        [data-theme="dark"] {
            --neu-bg: #1e293b;
            --neu-light: #2e3b4e;
            --neu-dark: #0f172a;
        }

        .social-icons-header a:hover {
            background: rgba(255, 255, 255, 0.35);
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        }

        .app-btn i {
            font-size: 28px;
        }

        .app-btn .btn-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            line-height: 1.2;
        }

        .app-btn .btn-text .small-text {
            font-size: 11px;
            font-weight: 400;
            opacity: 0.9;
        }

        .app-btn .btn-text .store-name {
            font-size: 18px;
            font-weight: 700;
        }

        .app-buttons-title {
            font-size: 18px;
            font-weight: 600;
            color: white;
            margin-bottom: 15px;
            text-align: center;
            width: 100%;
            background: rgba(255, 255, 255, 0.2);
            padding: 8px 15px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .app-buttons-row {
            display: flex;
            align-items: flex-start;
            justify-content: center;
            gap: 20px;
            width: 100%;
            margin-top: 20px;
        }

        .app-buttons-container-under {
            margin-top: 5px;
            display: flex;
            justify-content: center;
            width: 100%;
        }

        .app-buttons-container-under .app-buttons-column {
            margin: 0 10px;
        }

        .app-buttons-container-under .app-btn {
            padding: 10px 20px;
            margin-bottom: 8px;
        }

        .app-buttons-container-under .app-btn i {
            font-size: 24px;
        }

        .app-buttons-container-under .app-btn .btn-text {
            margin-right: 5px;
        }

        .app-buttons-container-under .app-btn .btn-text .store-name {
            font-size: 16px;
        }

        /* Consolidated Liquid Glass Styles above */

        /* Scroll To Top Button */
        #scrollToTopBtn {
            position: fixed;
            bottom: 100px;
            left: 30px;
            width: 50px;
            height: 50px;
            background: #199A8E;
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition-fast);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        #scrollToTopBtn.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        #scrollToTopBtn:hover {
            background: #0d253f;
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        html[dir="rtl"] #scrollToTopBtn {
            left: auto;
            right: 30px;
        }

        /* Consolidated Hover Styles above */

        /* Consolidated Apple Styles above */

        /* Enhanced Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes pulseIcon {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.8;
                transform: scale(1.05);
            }
        }

        .social-icons-header a {
            animation: scaleIn 0.6s ease-out;
        }

        .social-icons-header a:nth-child(1) {
            animation-delay: 0.6s;
        }

        .social-icons-header a:nth-child(2) {
            animation-delay: 0.7s;
        }

        .social-icons-header a:nth-child(3) {
            animation-delay: 0.8s;
        }

        .social-icons-header a:nth-child(4) {
            animation-delay: 0.9s;
        }

        .social-icons-header a:nth-child(5) {
            animation-delay: 1s;
        }

        /* Motion-related styles removed to disable motion image */


        @media (max-width: 1200px) {
            header {
                min-height: 700px;
            }
        }

        @media (max-width: 992px) {
            header {
                min-height: 680px;
            }

            .get-started-btn {
                font-size: 18px;
            }
        }

        @media (max-width: 576px) {
            header {
                min-height: 500px;
                padding: 10px 0;
            }

            .header-hero-content {
                padding: 25px 15px 30px 15px;
            }

            .header-hero-content h1 {
                font-size: 26px;
                margin-bottom: 15px;
                line-height: 1.25;
            }

            .header-hero-content p {
                font-size: 14px;
                margin-bottom: 25px;
                line-height: 1.6;
            }

            .join-text {
                font-size: 14px;
            }

            .get-started-btn {
                font-size: 13px;
                padding: 10px 25px;
            }

            .nav-links ul li a {
                padding: 8px 10px;
                font-size: 14px;
            }

            .social-icons-header {
                gap: 10px;
            }

            .social-icons-header a {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }

            /* FAQ for Small Mobile */
            .faq-cards-container {
                grid-template-columns: 1fr;
                gap: 14px;
                margin-top: 20px;
                padding: 0 4px;
            }

            .faq-title {
                font-size: 1.4rem;
            }

            .faq-subtitle {
                font-size: 0.95rem;
                margin-bottom: 20px;
            }

            .faq-card {
                background: #ffffff;
                border-radius: 20px;
                padding: 30px;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
                transition: var(--transition-smooth);
                position: relative;
                overflow: hidden;
                border: 1px solid rgba(0, 245, 212, 0.15);
            }

            .faq-card-icon {
                width: 42px;
                height: 42px;
                margin-bottom: 12px;
            }

            .faq-card-icon i {
                font-size: 17px;
            }

            .faq-card-question {
                font-size: 1rem;
                margin-bottom: 10px;
            }

            .faq-card-answer {
                font-size: 0.875rem;
                line-height: 1.6;
            }

            /* Section Headers */
            .section-header {
                font-size: 28px;
                margin-bottom: 25px;
            }

            /* Footer Responsive */
            .footer-logo img {
                width: 120px;
                height: 120px;
            }

            .footer-logo p {
                font-size: 13px;
            }

            .footer-links h3,
            .footer-social h3 {
                font-size: 16px;
            }

            .footer-links ul li a,
            .footer-bottom-links a {
                font-size: 13px;
            }
        }

        /* Cube Menu Layout */
        .cube-menu-layout {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 60px;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .scene {
            width: var(--cube-size);
            height: var(--cube-size);
            perspective: 1200px;
            position: relative;
            z-index: 5;
            /* Added Premium White Outer Glow */
            filter: drop-shadow(0 0 35px rgba(255, 255, 255, 0.35));
            animation: cubeOuterGlow 6s ease-in-out infinite alternate;
        }

        @keyframes cubeOuterGlow {
            0% {
                filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.25));
            }

            100% {
                filter: drop-shadow(0 0 50px rgba(255, 255, 255, 0.55));
            }
        }

        .cube {
            width: 100%;
            height: 100%;
            position: relative;
            transform-style: preserve-3d;
            transform: translateZ(calc(var(--cube-half-size) * -1));
            transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .cube__face {
            position: absolute;
            width: var(--cube-size) !important;
            height: var(--cube-size) !important;
            /* Premium White Glowing Border */
            border: 3px solid rgba(25, 154, 142, 0.65) !important;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            justify-content: center;
            background: var(--cube-menu-surface);
            background-image: url('../images/c1.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            /* Enhanced White Inner and Outer Glow */
            box-shadow: inset 0 0 60px rgba(25, 154, 142, 0.15),
                0 0 25px rgba(25, 154, 142, 0.3) !important;
            border-radius: 20px;
            color: var(--cube-menu-text);
            text-align: center;
            gap: 0;
            box-sizing: border-box;
            padding: 0 !important;
            transition: all 0.3s ease;
        }

        .cube__face img {
            width: 70% !important;
            height: 70% !important;
            object-fit: contain !important;
            border-radius: 18px !important;
            background: #fff !important;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10) !important;
            padding: 0 !important;
            margin: 0 auto !important;
        }

        .cube__face i {
            font-size: 58px;
            color: var(--primary-color);
        }

        .cube__face h2 {
            font-size: 22px;
            font-weight: 700;
            margin: 0;
            color: #1a1a1a;
        }

        .cube__face p {
            font-size: 18px;
            font-weight: 800;
            line-height: 1.6;
            color: #1a1a1a;
            margin: 0;
            padding: 0 18px;
            opacity: 0.9;
            text-align: center;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 5;
            line-clamp: 5;
            -webkit-box-orient: vertical;
        }

        .cube__face--front {
            transform: rotateY(0deg) translateZ(var(--cube-half-size));
            background-image: url('../images/dbox.png');
        }

        .cube__face--right {
            transform: rotateY(90deg) translateZ(var(--cube-half-size));
            background-image: url('../images/c2.png');
        }

        .cube__face--back {
            transform: rotateY(180deg) translateZ(var(--cube-half-size));
            background-image: url('../images/c5.png');
        }

        .cube__face--left {
            transform: rotateY(-90deg) translateZ(var(--cube-half-size));
            background-image: url('../images/c2.png');
        }

        .cube__face--top {
            transform: rotateX(90deg) translateZ(var(--cube-half-size));
            background-image: url('../images/c3.png');
        }

        .cube__face--bottom {
            transform: rotateX(-90deg) translateZ(var(--cube-half-size));
            background-image: url('../images/c4.png');
        }

        .cube.show-front {
            transform: translateZ(calc(var(--cube-half-size) * -1)) rotateY(0deg);
        }

        .cube.show-right {
            transform: translateZ(calc(var(--cube-half-size) * -1)) rotateY(-90deg);
        }

        .cube.show-back {
            transform: translateZ(calc(var(--cube-half-size) * -1)) rotateY(-180deg);
        }

        .cube.show-left {
            transform: translateZ(calc(var(--cube-half-size) * -1)) rotateY(90deg);
        }

        .cube.show-top {
            transform: translateZ(calc(var(--cube-half-size) * -1)) rotateX(-90deg);
        }

        .cube.show-bottom {
            transform: translateZ(calc(var(--cube-half-size) * -1)) rotateX(90deg);
        }

        @media (max-width: 768px) {
            :root {
                --cube-size: 270px;
                --cube-half-size: 135px;
            }

            .cube__face p {
                font-size: 11px;
                -webkit-line-clamp: 4;
                line-clamp: 4;
                padding: 0 12px;
            }


        }

        @media (max-width: 480px) {
            :root {
                --cube-size: 260px;
                --cube-half-size: 130px;
            }

            .cube__face p {
                font-size: 10px;
                -webkit-line-clamp: 3;
                line-clamp: 3;
                padding: 0 10px;
            }

            .cube__face h2 {
                font-size: 16px;
            }

            .cube__face i {
                font-size: 40px;
            }

        }

        @media (max-width: 360px) {
            :root {
                --cube-size: 220px;
                --cube-half-size: 110px;
            }

            .cube__face p {
                font-size: 9px;
                -webkit-line-clamp: 3;
                line-clamp: 3;
                padding: 0 8px;
            }

            .cube__face h2 {
                font-size: 14px;
            }

            .cube__face i {
                font-size: 32px;
            }

        }

        /* =============================================
           7. LANGUAGE-SPECIFIC STYLES (English/LTR)
           ============================================= */
        html[lang="en"] body {
            font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
            direction: ltr;
            text-align: left;
        }

        html[lang="en"] .nav-links ul li {
            margin-right: 0;
            margin-left: 0;
        }

        html[lang="en"] .nav-links ul {
            gap: 10px;
            justify-content: center;
        }

        html[lang="en"] .nav-links ul li a {
            font-size: 14px;
            padding: 8px 10px;
            white-space: nowrap;
        }

        html[lang="en"] .nav-links ul li a::after {
            right: unset;
            left: 0;
        }

        html[lang="en"] .nav-links ul li a:hover::after {
            width: 100%;
        }

        html[lang="en"] .nav-links ul li a:hover {
            color: #e0f7f7;
        }

        html[lang="en"] .slider-wrapper {
            direction: ltr;
        }

        html[lang="en"] .social-icons-header {
            margin-right: auto;
            margin-left: 0;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .navbar {
                padding: 0 15px;
            }

            .nav-links ul {
                gap: 20px;
            }

            .nav-links ul li a {
                font-size: 15px;
                padding: 6px 10px;
            }

            .logo-img {
                height: 55px;
            }
        }

        @media (max-width: 480px) {
            header {
                min-height: 450px;
            }

            .header-hero-content {
                padding: 20px 12px 25px 12px;
            }

            .header-hero-content h1 {
                font-size: 24px;
                margin-bottom: 12px;
                line-height: 1.3;
            }

            .header-hero-content p {
                font-size: 13px;
                margin-bottom: 20px;
                line-height: 1.6;
            }

            .get-started-btn {
                padding: 9px 22px;
                font-size: 12px;
            }

            .contact-section {
                padding: 100px 0;
            }

            .section-header {
                font-size: 24px;
                margin-bottom: 20px;
            }
        }

        html[lang="en"] .header-hero-content h1 {
            font-family: 'Inter', sans-serif;
        }

        @media (min-width: 901px) {
            html[lang="en"] .hero-layout-wrapper {
                gap: 56px;
            }

            html[lang="en"] .hero-image-side {
                transform: translateX(0);
            }

            html[lang="en"] .hero-cta-group {
                align-items: flex-end;
                margin-right: 42px;
            }

            html[lang="en"] .join-button-wrapper {
                margin-right: 0;
            }
        }

        html[lang="en"] .section-header::after {
            right: unset;
            left: 0;
        }

        html[lang="en"] .section-header.centered::after {
            right: unset;
            left: 50%;
        }

        html[lang="en"] .whatsapp-float {
            right: unset;
            left: 20px;
        }

        @keyframes scroll-marquee {
            0% {
                transform: translateX(100%);
            }

            100% {
                transform: translateX(-100%);
            }
        }

        @keyframes scroll-marquee-en {
            0% {
                transform: translateX(-100%);
            }

            100% {
                transform: translateX(100%);
            }
        }

        html[lang="en"] .marquee-content {
            animation: scroll-marquee-en;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 25px;
        }

        .lang-toggle {
            display: flex;
            align-items: center;
            gap: 10px;
            box-sizing: border-box;
            padding: 0;
            margin-top: 12px !important;
            font-weight: bold;
            color: #008080;
            font-size: 1.1rem;
            width: 100%;
            text-align: center;
            padding: 0 !important;
        }

        .lang-toggle button {
            padding: 8px 16px;
            font-size: 16px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .lang-toggle button:hover {
            background-color: var(--secondary-color);
        }

        #dark-mode-btn {
            padding: 8px 12px;
            font-size: 16px;
            background-color: transparent;
            color: #ffffff;
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
        }

        #dark-mode-btn:hover {
            background-color: rgba(255, 255, 255, 0.15);
            border-color: #ffffff;
        }

        [data-theme="dark"] #dark-mode-btn {
            color: #fbbf24;
            border-color: rgba(251, 191, 36, 0.5);
        }

        [data-theme="dark"] #dark-mode-btn:hover {
            background-color: rgba(251, 191, 36, 0.15);
            border-color: #fbbf24;
        }

        .section-header {
            font-size: 52px;
            font-weight: 700;
            margin-bottom: 40px;
            color: var(--text-dark);
            position: relative;
            padding-bottom: 15px;
        }

        .section-header::after {
            content: '';
            position: absolute;
            right: 0;
            bottom: 0;
            width: 80px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 2px;
        }

        .section-header.centered {
            text-align: center;
            width: 100%;
        }

        .section-header.centered::after {
            right: 50%;
            transform: translateX(50%);
        }

        footer {
            background: linear-gradient(160deg, #007070 0%, #199a8e 45%, #1a8b82 100%);
            color: var(--background-light);
            padding: 0 0 40px;
            text-align: center;
            font-size: 16px;
            position: relative;
            overflow: hidden;
            border-top: none;
        }

        /* ── Footer Wave ─────────────────────────────────────── */
        .footer-wave-wrap {
            position: relative;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            margin-top: -1px;
            margin-bottom: -2px;
            z-index: 1;
        }

        .footer-wave-wrap svg {
            display: block;
            width: 100%;
            height: clamp(70px, 8vw, 130px);
            min-width: 900px;
        }

        .footer-container {
            position: relative;
            z-index: 2;
            padding-top: 16px;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
            padding-bottom: 0;
        }

        .footer-wave-1,
        .footer-wave-2,
        .footer-wave-3 {
            transform-origin: center top;
            will-change: transform;
        }

        .footer-wave-1 {
            animation: footer-wave-drift-front 15s ease-in-out infinite;
        }

        .footer-wave-2 {
            animation: footer-wave-drift-mid 19s ease-in-out infinite;
        }

        .footer-wave-3 {
            animation: footer-wave-drift-back 24s ease-in-out infinite;
        }

        @keyframes footer-wave-drift-front {

            0%,
            100% {
                transform: translateX(0) translateY(0);
            }

            50% {
                transform: translateX(-18px) translateY(2px);
            }
        }

        @keyframes footer-wave-drift-mid {

            0%,
            100% {
                transform: translateX(0) translateY(0);
            }

            50% {
                transform: translateX(16px) translateY(-1px);
            }
        }

        @keyframes footer-wave-drift-back {

            0%,
            100% {
                transform: translateX(0) translateY(0);
            }

            50% {
                transform: translateX(-10px) translateY(1px);
            }
        }

        @media (prefers-reduced-motion: reduce) {

            .footer-wave-1,
            .footer-wave-2,
            .footer-wave-3 {
                animation: none;
            }
        }

        footer p {
            margin: 0;
        }

        /* Professional Footer Styles */

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-logo {
            flex: 1;
            min-width: 250px;
        }

        .footer-logo img {
            width: 160px;
            height: 160px;
            border-radius: 8px;
            margin-bottom: 15px;
        }

        .footer-logo p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .footer-email {
            color: rgba(255, 255, 255, 0.9);
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 10px;
            margin-right: 100px;
        }

        .footer-email a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-email i {
            color: #199a8e;
        }

        .footer-links {
            flex: 1;
            min-width: 250px;
        }

        .footer-links h3 {
            color: white;
            font-size: 18px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: rgba(255, 255, 255, 0.5);
        }

        .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links ul li {
            margin-bottom: 12px;
        }

        .footer-links ul li a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 15px;
        }

        .footer-links ul li a:hover {
            color: white;
            padding-left: 5px;
        }

        .footer-social {
            flex: 1;
            min-width: 250px;
        }

        .footer-social h3 {
            color: white;
            font-size: 18px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-social h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: rgba(255, 255, 255, 0.5);
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

        /* Note: .social-icons a and :hover are defined in common.css */

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            text-align: center;
        }

        .footer-bottom-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .footer-bottom-links a:hover {
            color: white;
        }

        .copyright {
            color: rgba(255, 255, 255, 0.7);
            font-size: 13px;
        }

        .contact-section {
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        /* nebula bg blobs */
        .contact-section::before,
        .contact-section::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            filter: blur(70px);
            pointer-events: none;
            z-index: 0;
        }

        .contact-section::before {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(25, 154, 142, 0.13) 0%, transparent 70%);
            top: -100px;
            left: -120px;
        }

        .contact-section::after {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(25, 154, 142, 0.09) 0%, transparent 70%);
            bottom: -80px;
            right: -100px;
        }

        /* ── Fantasy turquoise contact card ─────────────────── */
        .contact-fantasy-wrap {
            position: relative;
            z-index: 1;
            display: flex;
            justify-content: center;
            padding: 0 20px;
        }

        .contact-fantasy-card {
            position: relative;
            background: linear-gradient(135deg, #199a8e 0%, #158379 78%, #116c64 94%, #0d554f 100%);
            border: 1px solid rgba(0, 245, 212, 0.30);
            border-radius: 36px;
            padding: 3rem 3.5rem;
            width: 100%;
            max-width: 480px;
            box-shadow:
                0 30px 60px -12px rgba(0, 245, 212, 0.25),
                0 8px 25px rgba(0, 0, 0, 0.12),
                inset 0 0 28px rgba(255, 255, 255, 0.1);
            color: #fff;
        }

        /* Animated gradient border */
        .contact-glow-border {
            position: absolute;
            inset: -2px;
            background: linear-gradient(45deg, #127a71, #00f5d4, #00d1b2, #ffffff, #127a71);
            border-radius: 38px;
            z-index: -1;
            background-size: 300% 300%;
            animation: cfBorderMove 5s linear infinite;
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            -webkit-mask-composite: xor;
            padding: 2px;
        }

        @keyframes cfBorderMove {
            0% {
                background-position: 0% 50%;
            }

            100% {
                background-position: 300% 50%;
            }
        }

        /* Card header */
        .cf-header {
            text-align: center;
            margin-bottom: 2.8rem;
        }

        .cf-header h2 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #fff;
            margin: 0 0 8px;
            letter-spacing: -0.5px;
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.35);
        }

        .cf-header p {
            color: rgba(255, 255, 255, 0.88);
            font-size: 1.05rem;
            font-weight: 300;
            margin: 0;
        }

        /* Contact items */
        .cf-items {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .cf-item {
            display: flex;
            align-items: center;
            gap: 1.4rem;
            cursor: pointer;
        }

        .cf-icon {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 58px;
            height: 58px;
            flex-shrink: 0;
            background: rgba(255, 255, 255, 0.18);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.32);
            overflow: hidden;
            transition: all 0.35s ease;
        }

        .cf-icon::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(transparent, rgba(255, 255, 255, 0.38), transparent);
            top: -100%;
            animation: cfScan 4s ease-in-out infinite;
        }

        @keyframes cfScan {
            0% {
                top: -100%;
            }

            100% {
                top: 200%;
            }
        }

        .cf-icon i {
            font-size: 22px;
            color: #fff;
            position: relative;
            z-index: 1;
            transition: color 0.3s ease;
        }

        .cf-item:hover .cf-icon {
            background: #fff;
            box-shadow: 0 0 22px rgba(255, 255, 255, 0.55);
            transform: translateY(-3px);
        }

        .cf-item:hover .cf-icon i {
            color: #199a8e;
        }

        .cf-item-info {
            text-align: right;
        }

        .cf-label {
            display: block;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.68);
            margin-bottom: 4px;
        }

        .cf-value {
            font-size: 1.25rem;
            font-weight: 700;
            color: #fff;
            text-decoration: none;
            transition: opacity 0.2s;
            display: block;
            direction: ltr;
        }

        .cf-value:hover {
            opacity: 0.82;
        }

        /* Divider */
        .cf-divider {
            margin: 2.2rem 0 1.8rem;
            border: none;
            border-top: none;
        }

        /* Social links */
        .cf-socials {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .cf-social-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.13);
            border: 1px solid rgba(255, 255, 255, 0.28);
            color: #fff;
            font-size: 18px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .cf-social-btn:hover {
            background: #fff;
            color: #199a8e;
            transform: translateY(-5px);
            box-shadow: 0 10px 22px rgba(25, 154, 142, 0.30);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .contact-section {
                padding: 70px 0;
            }

            .contact-fantasy-card {
                padding: 2.5rem 2.5rem;
                border-radius: 30px;
                max-width: 100%;
            }

            .contact-glow-border {
                border-radius: 32px;
            }

            .cf-header {
                margin-bottom: 2.2rem;
            }

            .cf-header h2 {
                font-size: 2.2rem;
            }

            .cf-header p {
                font-size: 1rem;
            }

            .cf-items {
                gap: 1.6rem;
            }

            .cf-value {
                font-size: 1.15rem;
            }
        }

        @media (max-width: 540px) {
            .contact-section {
                padding: 55px 0;
            }

            .contact-fantasy-wrap {
                padding: 0 16px;
            }

            .contact-fantasy-card {
                padding: 2rem 1.8rem;
                border-radius: 26px;
            }

            .contact-glow-border {
                border-radius: 28px;
            }

            .cf-header {
                margin-bottom: 1.8rem;
            }

            .cf-header h2 {
                font-size: 1.9rem;
            }

            .cf-header p {
                font-size: 0.95rem;
            }

            .cf-items {
                gap: 1.4rem;
            }

            .cf-icon {
                width: 50px;
                height: 50px;
                border-radius: 14px;
            }

            .cf-icon i {
                font-size: 18px;
            }

            .cf-value {
                font-size: 1.05rem;
            }

            .cf-label {
                font-size: 0.68rem;
            }

            .cf-social-btn {
                width: 44px;
                height: 44px;
                font-size: 16px;
            }

            .cf-divider {
                margin: 1.8rem 0 1.4rem;
            }
        }

        @media (max-width: 380px) {
            .contact-section {
                padding: 45px 0;
            }

            .contact-fantasy-wrap {
                padding: 0 12px;
            }

            .contact-fantasy-card {
                padding: 1.6rem 1.4rem;
                border-radius: 22px;
            }

            .contact-glow-border {
                border-radius: 24px;
            }

            .cf-header h2 {
                font-size: 1.6rem;
            }

            .cf-header p {
                font-size: 0.88rem;
            }

            .cf-item {
                gap: 1rem;
            }

            .cf-icon {
                width: 44px;
                height: 44px;
                border-radius: 12px;
            }

            .cf-icon i {
                font-size: 16px;
            }

            .cf-value {
                font-size: 0.95rem;
            }

            .cf-socials {
                gap: 0.7rem;
            }

            .cf-social-btn {
                width: 40px;
                height: 40px;
                font-size: 15px;
            }
        }

        .whatsapp-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            color: #fff;
            font-size: 28px;
            border-radius: 50%;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            z-index: 9999;
            transition: background-color 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            line-height: 60px;
        }

        .whatsapp-float i {
            text-decoration: none;
            line-height: 1;
        }

        .whatsapp-float:hover {
            background-color: #128C7E;
        }

        .faq-section {
            background: transparent !important;
            padding: 100px 20px;
        }

        .faq-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .faq-title {
            color: #116c64;
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .faq-title::before {
            content: '\f059';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            width: 50px;
            height: 50px;
            background: var(--neu-bg);
            box-shadow: 6px 6px 12px var(--neu-dark), -6px -6px 12px var(--neu-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--neu-accent);
        }

        .faq-subtitle {
            text-align: center;
            color: #64748b;
            font-size: 1.1rem;
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
            padding: 10px 20px;
            background: var(--neu-bg);
            border-radius: 20px;
            box-shadow: inset 4px 4px 8px var(--neu-dark), inset -4px -4px 8px var(--neu-light);
        }

        /* ===== FAQ Cards - Premium Design ===== */
        .faq-cards-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-top: 50px;
        }

        @media (max-width: 1024px) {
            .faq-cards-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 22px;
            }
        }

        .faq-card {
            position: relative;
            background: #f1f5f9;
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-radius: 28px;
            padding: 38px 30px 32px;
            border: 1px solid rgba(13, 37, 63, 0.08);
            box-shadow: 8px 8px 16px rgba(13, 37, 63, 0.06), -8px -8px 16px #ffffff;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: right;
            overflow: hidden;
            transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
        }

        .faq-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--neu-accent), #38bdf8, var(--neu-accent));
            background-size: 200% 100%;
            border-radius: 28px 28px 0 0;
            animation: faqGradientShift 4s linear infinite;
        }

        @keyframes faqGradientShift {
            0% {
                background-position: 0% 0%;
            }

            100% {
                background-position: 200% 0%;
            }
        }

        .faq-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 48px rgba(10, 111, 105, 0.15), 0 4px 12px rgba(0, 0, 0, 0.06);
        }

        .faq-card-icon {
            width: 58px;
            height: 58px;
            background: linear-gradient(135deg, #00f5d4, #0d253f);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 22px;
            box-shadow: 0 6px 20px rgba(0, 245, 212, 0.2);
            flex-shrink: 0;
        }

        .faq-card-icon i {
            font-size: 24px;
            color: #ffffff;
        }

        .faq-card-question {
            color: #0f172a;
            font-size: 1.1rem;
            font-weight: 800;
            margin-bottom: 14px;
            line-height: 1.5;
        }

        .faq-card-answer {
            font-size: 0.93rem;
            color: #64748b;
            line-height: 1.75;
            margin: 0;
        }

        .faq-card-points {
            list-style: none;
            padding: 0;
            margin: 0;
            width: 100%;
        }

        .faq-card-points li {
            font-size: 0.93rem;
            color: #64748b;
            margin-bottom: 10px;
            padding: 10px 14px;
            border-radius: 12px;
            background: rgba(10, 111, 105, 0.06);
            border: 1px solid rgba(10, 111, 105, 0.08);
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.25s ease;
        }

        .faq-card-points li::before {
            content: '✓';
            color: var(--neu-accent);
            font-weight: 800;
            font-size: 0.85rem;
            flex-shrink: 0;
        }

        .faq-card-points li:hover {
            background: rgba(10, 111, 105, 0.12);
            color: var(--neu-accent);
            transform: translateX(-4px);
        }


        .hamburger {
            display: none;
            font-size: 28px;
            background: none;
            border: none;
            cursor: pointer;
            color: white;
            z-index: 3001;
            position: relative;
            left: auto;
            transform: none;
            padding: 8px 12px;
            border-radius: 8px;
            transition: background-color .2s ease, transform .2s ease;
        }

        .hamburger:hover {
            background-color: rgba(255, 255, 255, 0.15);
        }

        .hamburger:focus {
            outline: 2px solid rgba(255, 255, 255, 0.5);
            outline-offset: 2px;
        }

        .hamburger:active {
            transform: scale(0.96);
            background-color: rgba(255, 255, 255, 0.2);
        }

        .navbar.sticky .hamburger {
            color: #0f172a !important;
        }

        .navbar.sticky .hamburger:hover {
            background-color: rgba(0, 0, 0, 0.05);
        }

        @media (max-width: 1200px) {
            .faq-cards-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 28px;
            }

            .faq-card {
                padding: 30px 24px;
            }
        }

        @media (max-width: 992px) {
            .hamburger {
                display: block !important;
                color: white;
                /* Default on dark hero */
            }

            .navbar {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                padding: 10px 15px;
            }

            .nav-links {
                width: auto;
                display: flex;
                align-items: center;
            }

            .nav-links ul {
                display: none !important;
                flex-direction: column;
                position: fixed;
                top: 65px;
                left: 10px;
                right: 10px;
                width: calc(100% - 20px);
                max-width: 400px;
                background: var(--background-white);
                box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
                border-radius: 12px;
                padding: 20px;
                text-align: right;
                z-index: 99999;
                margin: 0 auto;
                max-height: 80vh;
                overflow-y: auto;
            }

            .nav-links.active ul {
                display: flex !important;
            }

            .nav-links ul li {
                margin: 8px 0;
                width: 100%;
            }

            .nav-links ul li a {
                font-size: 16px;
                padding: 12px 16px;
                display: block;
                width: 100%;
                color: var(--text-dark) !important;
                border-radius: 8px;
            }

            .nav-links ul li a:hover {
                background-color: rgba(0, 128, 128, 0.08);
                color: var(--primary-color) !important;
            }

            .nav-links ul li.dropdown .dropdown-menu {
                display: flex !important;
                position: static !important;
                background: rgba(0, 128, 128, 0.05) !important;
                border: none !important;
                box-shadow: none !important;
                padding: 8px 0 !important;
                width: 100% !important;
                opacity: 1 !important;
                visibility: visible !important;
                position: static !important;
                background: rgba(0, 128, 128, 0.05) !important;
                border: none !important;
                box-shadow: none !important;
                padding: 8px 0 !important;
                width: 100% !important;
                opacity: 1 !important;
                visibility: visible !important;
                transform: none !important;
                margin-top: 8px !important;
                margin-left: 0;
                margin-right: 0;
                border-radius: 8px;
                flex-direction: column;
            }

            .nav-links ul li.dropdown .dropdown-menu li a {
                padding: 10px 16px;
                font-size: 15px;
                border-bottom: none;
            }

            .social-icons-header {
                display: none;
            }

            .logo-img {
                height: 60px !important;
            }

            .slider-wrapper img {
                height: 300px;
                object-fit: cover;
            }

            .get-started-btn {
                font-size: 18px;
                padding: 15px 30px;
                width: 250px;
            }

            html[lang="en"] .nav-links ul {
                right: unset;
                left: 0;
                text-align: left;
            }
        }

        /* =============================================
           Extra Extra Small Devices (max-width: 360px)
           ============================================= */
        @media (max-width: 360px) {
            .faq-card {
                padding: 20px 15px;
                border-radius: 14px;
            }
        }

        body.noscroll {
            overflow: hidden;
            height: 100vh;
        }

        html {
            scroll-behavior: smooth;
        }

        @keyframes typing {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-5px);
            }
        }

        /* تحسينات رسائل النجاح والتأكيد */
        #success-message {
            background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
            border: 2px solid #28a745;
            border-radius: 12px;
            padding: 20px;
            margin-top: 20px;
            box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
            animation: successSlideIn 0.5s ease-out;
        }

        @keyframes successSlideIn {
            from {
                opacity: 0;
                transform: translateY(-20px) scale(0.95);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        #success-message div {
            color: #155724;
            font-weight: bold;
            text-align: center;
            line-height: 1.6;
        }

        .status-success {
            color: #28a745 !important;
            background: rgba(40, 167, 69, 0.1);
            padding: 10px;
            border-radius: 8px;
            border: 1px solid rgba(40, 167, 69, 0.3);
        }

        .status-error {
            color: #dc3545 !important;
            background: rgba(220, 53, 69, 0.1);
            padding: 10px;
            border-radius: 8px;
            border: 1px solid rgba(220, 53, 69, 0.3);
        }

        /* تأثير نبضة للإيموجي */
        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        #success-message .emoji {
            display: inline-block;
            animation: pulse 1s ease-in-out infinite;
            margin-left: 10px;
        }

        /* Responsive Improvements - Added for Mobile Optimization */
        /* Extra Small Devices (phones, less than 480px) */
        @media (max-width: 480px) {
            .header-hero-content h1 {
                font-size: 24px !important;
                line-height: 1.4;
                margin-bottom: 20px !important;
            }

            .header-hero-content p {
                font-size: 14px !important;
                margin-bottom: 30px !important;
            }

            .get-started-btn {
                padding: 12px 24px;
                font-size: 15px;
                width: auto;
                min-width: 180px;
            }

            .app-btn {
                padding: 10px 16px;
                font-size: 13px;
                width: 100%;
                max-width: 100%;
            }

            .logo-img {
                height: 50px !important;
            }

            .navbar.sticky .logo-img {
                height: 40px !important;
            }

            .nav-links ul {
                max-width: 100%;
                left: 10px;
                right: 10px;
                width: calc(100% - 20px);
                top: 65px;
            }

            .navbar {
                padding: 10px 15px;
            }

            header {
                min-height: auto;
                padding-bottom: 60px;
            }

            .header-hero-content {
                padding-top: 100px;
            }

            .faq-title {
                font-size: 1.4rem !important;
            }

            .hamburger {
                padding: 8px;
                font-size: 22px;
            }
        }

        @media (max-width: 360px) {
            .hamburger {
                font-size: 20px;
                padding: 6px 10px;
            }

            .nav-links.active ul,
            .nav-links ul {
                top: 65px;
                left: 8px;
                right: 8px;
                width: calc(100% - 16px);
                padding: 15px;
                gap: 5px;
                border-radius: 10px;
            }

            .nav-links ul li a {
                font-size: 14px;
                padding: 10px 12px;
            }

            .nav-links ul li.dropdown .dropdown-menu li a {
                font-size: 13px;
                padding: 8px 12px;
            }
        }

        /* Landscape orientation for mobile devices */
        @media (max-width: 768px) and (orientation: landscape) {
            header {
                min-height: auto;
                padding-bottom: 40px;
            }

            .header-hero-content {
                padding: 80px 20px 40px;
            }

            .header-hero-content h1 {
                font-size: 28px;
            }

            .nav-links ul {
                max-height: 80vh;
                overflow-y: auto;
            }
        }

        /* Tablet devices (481px to 768px) */
        @media (min-width: 481px) and (max-width: 768px) {
            .header-hero-content h1 {
                font-size: 32px;
            }

            .header-hero-content p {
                font-size: 16px;
            }

            .logo-img {
                height: 60px !important;
            }

            .navbar.sticky .logo-img {
                height: 50px !important;
            }
        }

        /* =============================================
              Partners — Circular 3D Gallery
              ============================================= */
        .partners-section {
            position: relative;
            height: 100vh;
            min-height: 700px;
            display: flex;
            flex-direction: column;
            background: transparent;
            overflow: hidden;
        }

        @media (max-width: 1024px) {
            .partners-section {
                min-height: 650px;
            }

            .partners-header h2 {
                font-size: 2.4rem;
            }
        }

        .partners-header {
            position: relative;
            text-align: center;
            padding-top: 20px;
            padding-bottom: 10px;
            z-index: 10;
        }

        .partners-header h2 {
            font-size: 3rem;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
        }

        .partners-header p {
            color: var(--text-light);
            font-size: 1.2rem;
            margin: 0;
        }

        @media (max-width: 768px) {
            .partners-section {
                height: auto;
                min-height: 600px;
            }

            .partners-header {
                padding-top: 15px;
                padding-bottom: 8px;
            }

            .partners-header h2 {
                font-size: 2rem;
            }

            .partners-header p {
                font-size: 1rem;
            }
        }

        @media (max-width: 360px) {
            .partners-section {
                min-height: 480px;
            }

            .partners-header h2 {
                font-size: 1.4rem;
            }

            .partners-header p {
                font-size: 0.85rem;
            }
        }

        /* ===== Partners Static Grid ===== */
        /* ===== Partners Slider ===== */
        .partners-slider-wrap {
            overflow: hidden;
            width: 100%;
            max-width: 900px;
            margin: 32px auto 0;
            padding: 40px 0 16px;
            mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
            -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
        }

        .partners-slider-track {
            display: flex;
            gap: 24px;
            width: max-content;
            animation: partners-slide 30s linear infinite;
        }

        .partners-slider-wrap:hover .partners-slider-track {
            animation-play-state: paused;
        }

        @keyframes partners-slide {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        .partner-logo-box {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 14px;
            background: var(--neu-bg);
            border-radius: 25px;
            padding: 50px 24px 32px;
            box-shadow: 10px 10px 20px var(--neu-dark), -10px -10px 20px var(--neu-light);
            transition: all 0.3s ease;
            width: 220px;
            position: relative;
            overflow: visible;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .partner-logo-box:hover {
            transform: translateY(-5px);
            box-shadow: 15px 15px 30px var(--neu-dark), -15px -15px 30px var(--neu-light);
        }

        .partner-tag {
            font-size: 14px;
            font-weight: 800;
            color: #116c64;
            background: var(--neu-bg);
            padding: 8px 24px;
            border-radius: 30px;
            box-shadow: inset 4px 4px 8px var(--neu-dark), inset -4px -4px 8px var(--neu-light);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .partner-tag::before {
            content: '\f0c0';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            margin-left: 8px;
            font-size: 0.95em;
            opacity: 0.95;
        }

        html[lang="en"] .partner-tag::before {
            margin-left: 0;
            margin-right: 8px;
        }

        .partner-logo-box::before {
            display: none;
        }

        .partner-circle {
            position: absolute;
            top: -35px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--neu-bg);
            box-shadow: 6px 6px 12px var(--neu-dark), -6px -6px 12px var(--neu-light);
            border: 2px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            z-index: 10;
        }

        .partner-circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            padding: 0;
        }


        .partner-img-wrapper {
            width: 190px;
            height: 190px;
            border-radius: 20px;
            background: var(--neu-bg);
            box-shadow: inset 8px 8px 16px var(--neu-dark), inset -8px -8px 16px var(--neu-light);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
            margin-bottom: 5px;
        }

        .partner-logo-box img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 15px;
            filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.05));
        }

        .partner-logo-box span {
            font-size: 13px;
            font-weight: 600;
            color: #008080;
            text-align: center;
        }

        [data-theme="dark"] .partner-logo-box {
            background: var(--neu-bg);
            box-shadow: 10px 10px 20px var(--neu-dark), -10px -10px 20px var(--neu-light);
        }

        [data-theme="dark"] .partner-logo-box img {
            mix-blend-mode: normal;
            filter: brightness(0.9) contrast(1.1);
        }

        @media (max-width: 600px) {
            .partner-logo-box {
                width: 160px;
                padding: 44px 14px 20px;
            }

            .partner-logo-box img {
                width: 90px;
                height: auto;
                max-height: 80px;
            }

            .partner-circle {
                width: 50px;
                height: 50px;
                top: -25px;
            }

            .partner-circle i {
                font-size: 20px !important;
            }

            .partner-tag {
                font-size: 11px;
                padding: 4px 12px;
            }

            .partners-slider-track {
                gap: 16px;
            }

            .partners-slider-wrap {
                padding: 36px 0 12px;
            }
        }

        @media (max-width: 380px) {
            .partner-logo-box {
                width: 130px;
                padding: 35px 10px 14px;
            }

            .partner-logo-box img {
                width: 70px;
                max-height: 60px;
                height: auto;
            }

            .partner-circle {
                width: 56px;
                height: 56px;
                top: -28px;
            }
        }

        /* ============================================
           DARK MODE - PAGE SPECIFIC OVERRIDES
           ============================================ */

        [data-theme="dark"],
        [data-theme="dark"] body {
            background: #0d253f !important;
        }

        [data-theme="dark"] .partners-section,
        [data-theme="dark"] .contact-section,
        [data-theme="dark"] .faq-section {
            background: #0d253f !important;
        }

        [data-theme="dark"] .faq-card,
        [data-theme="dark"] .info-card {
            background: rgba(13, 37, 63, 0.6) !important;
            border-color: rgba(0, 245, 212, 0.1) !important;
        }

        /* FAQ cards Neumorphism Dark */
        [data-theme="dark"] .faq-card {
            background: rgba(30, 41, 59, 0.8);
            border-color: rgba(255, 255, 255, 0.08);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        }

        [data-theme="dark"] .faq-card-points li {
            background: rgba(0, 180, 180, 0.08);
            border-color: rgba(0, 180, 180, 0.12);
            color: #94a3b8;
        }

        [data-theme="dark"] .faq-card:hover {
            box-shadow: 0 20px 48px rgba(0, 180, 180, 0.18);
            border-color: rgba(0, 180, 180, 0.25);
        }

        [data-theme="dark"] .faq-title {
            color: #5eead4 !important;
        }

        [data-theme="dark"] .faq-subtitle {
            color: #94a3b8 !important;
        }

        [data-theme="dark"] .faq-card-icon {
            background: linear-gradient(135deg, rgba(0, 180, 180, 0.6), rgba(14, 165, 233, 0.6)) !important;
            box-shadow: 0 6px 20px rgba(0, 180, 180, 0.25);
        }

        [data-theme="dark"] .faq-card-icon i {
            color: #ffffff !important;
        }

        [data-theme="dark"] .faq-card-question {
            color: #e2e8f0;
        }

        [data-theme="dark"] .faq-card-answer {
            color: #94a3b8;
        }

        [data-theme="dark"] .contact-form {
            background: #1e293b !important;
            border-color: #334155 !important;
        }

        [data-theme="dark"] .contact-form input,
        [data-theme="dark"] .contact-form textarea,
        [data-theme="dark"] .contact-form select {
            background: #0f172a !important;
            color: #e2e8f0 !important;
            border-color: #334155 !important;
        }

        [data-theme="dark"] .footer-section,
        [data-theme="dark"] footer {
            background: #020617 !important;
        }

        [data-theme="dark"] .footer-bottom {
            background: #010409 !important;
            border-top: 1px solid #1e293b !important;
        }

        [data-theme="dark"] .footer-col h3,
        [data-theme="dark"] .footer-heading {
            color: #f1f5f9 !important;
        }

        [data-theme="dark"] .footer-col p,
        [data-theme="dark"] .footer-col a,
        [data-theme="dark"] .footer-links a {
            color: #94a3b8 !important;
        }

        [data-theme="dark"] .footer-col a:hover,
        [data-theme="dark"] .footer-links a:hover {
            color: #38bdf8 !important;
        }



        [data-theme="dark"] .partner-frame-pro {
            background: #1e293b !important;
            border-color: #334155 !important;
        }

        [data-theme="dark"] .news-ticker-container {
            background: #0f172a !important;
            border-color: #334155 !important;
        }

        [data-theme="dark"] .news-item {
            color: #cbd5e1 !important;
        }

        [data-theme="dark"] #scrollToTopBtn {
            background: #1e293b !important;
            color: #e2e8f0 !important;
            border: 1px solid #334155 !important;
        }

        [data-theme="dark"] .mobile-menu-overlay,
        [data-theme="dark"] .nav-links.active {
            background: #0f172a !important;
        }

        [data-theme="dark"] .nav-links.active a {
            color: #e2e8f0 !important;
            border-bottom: 1px solid #1e293b !important;
        }

        /* Hero Header dark mode */
        [data-theme="dark"] header {
            background: linear-gradient(135deg, rgba(0, 40, 50, 0.92) 0%, rgba(0, 30, 40, 0.88) 50%, rgba(5, 25, 35, 0.95) 100%) !important;
        }

        [data-theme="dark"] header::before {
            opacity: 0.18 !important;
            filter: brightness(0.4) saturate(0.5);
        }

        [data-theme="dark"] .header-hero-content h1,
        [data-theme="dark"] .hero-text-side .header-hero-content h1 {
            color: #f1f5f9 !important;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6) !important;
        }

        [data-theme="dark"] .header-hero-content p,
        [data-theme="dark"] .hero-text-side .header-hero-content p {
            color: #cbd5e1 !important;
        }

        [data-theme="dark"] .hero-cta-group .app-btn:not(.app-btn-google):not(.app-btn-apple) {
            background: rgba(255, 255, 255, 0.08) !important;
            border-color: rgba(255, 255, 255, 0.25) !important;
            color: #e2e8f0 !important;
        }

        [data-theme="dark"] .hero-cta-group .app-btn:not(.app-btn-google):not(.app-btn-apple):hover {
            background: rgba(255, 255, 255, 0.15) !important;
        }

        /* Generic Modern Card Styles */
        .modern-card {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            padding: 0;
            box-sizing: border-box;
            position: relative;
            overflow: hidden;
            border: 8px solid #1e293b;
            border-radius: 36px;
            box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.1), 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .modern-card-patient {
            background: linear-gradient(180deg, #0d9488 0%, #115e59 100%);
        }

        .modern-card-doctor {
            background: linear-gradient(180deg, #4f46e5 0%, #312e81 100%);
        }

        .modern-card-drug {
            background: linear-gradient(180deg, #0284c7 0%, #0c4a6e 100%);
        }

        .modern-card-patient .health-inst-icon-circle {
            background-color: #14b8a6;
        }

        .modern-card-doctor .health-inst-icon-circle {
            background-color: #6366f1;
        }

        .modern-card-drug .health-inst-icon-circle {
            background-color: #0ea5e9;
        }

        .features-content-section {
            background: #ffffff !important;
            transition: background 0.3s ease;
        }

        .feature-item-card {
            padding: 30px;
            background: var(--neu-bg);
            border-radius: 25px;
            box-shadow: 10px 10px 20px var(--neu-dark), -10px -10px 20px var(--neu-light);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .feature-item-card:hover {
            transform: translateY(-5px);
            box-shadow: 15px 15px 30px var(--neu-dark), -15px -15px 30px var(--neu-light);
        }

        .feature-item-card h3 {
            color: var(--neu-accent) !important;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .feature-item-card h3 i {
            width: 40px;
            height: 40px;
            background: var(--neu-bg);
            box-shadow: inset 3px 3px 6px var(--neu-dark), inset -3px -3px 6px var(--neu-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: var(--neu-accent);
            margin: 0 !important;
        }

        .feature-item-card p {
            color: #64748b;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .usage-guide-box {
            background: var(--neu-bg);
            padding: 40px;
            border-radius: 30px;
            box-shadow: inset 8px 8px 16px var(--neu-dark), inset -8px -8px 16px var(--neu-light);
            transition: all 0.3s ease;
        }

        .related-article-link {
            text-decoration: none;
            padding: 20px;
            background: var(--neu-bg);
            border-radius: 15px;
            box-shadow: 4px 4px 10px var(--neu-dark), -4px -4px 10px var(--neu-light);
            transition: all 0.3s ease;
            display: block;
        }

        .related-article-link:hover {
            box-shadow: inset 3px 3px 6px var(--neu-dark), inset -3px -3px 6px var(--neu-light);
            transform: scale(0.98);
        }

        /* Dark Mode Overrides for Features */
        [data-theme="dark"] .features-content-section {
            background: var(--neu-bg) !important;
        }

        [data-theme="dark"] .feature-item-card {
            background: var(--neu-bg) !important;
            box-shadow: 10px 10px 20px var(--neu-dark), -10px -10px 20px var(--neu-light) !important;
            border-color: rgba(255, 255, 255, 0.05) !important;
        }

        [data-theme="dark"] .feature-item-card p {
            color: #94a3b8 !important;
        }

        [data-theme="dark"] .usage-guide-box {
            background: var(--neu-bg) !important;
            box-shadow: inset 8px 8px 16px var(--neu-dark), inset -8px -8px 16px var(--neu-light) !important;
        }

        [data-theme="dark"] .related-article-link {
            background: var(--neu-bg) !important;
            box-shadow: 4px 4px 10px var(--neu-dark), -4px -4px 10px var(--neu-light) !important;
        }

        [data-theme="dark"] .related-article-link p {
            color: #94a3b8 !important;
        }

        /* Phone Mockup Components */


        .phone-notch {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 20px;
            background: #1e293b;
            border-bottom-left-radius: 12px;
            border-bottom-right-radius: 12px;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .phone-notch::after {
            content: '';
            width: 25px;
            height: 4px;
            background: #334155;
            border-radius: 4px;
        }

        .phone-home-indicator {
            position: absolute;
            bottom: 6px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 4px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 4px;
            z-index: 100;
        }

        /* Internal UI */


        .patient-ui-video {
            width: 100%;
            height: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #cbd5e1;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .patient-ui-video>i {
            font-size: 40px;
            color: #94a3b8;
            opacity: 0.5;
        }

        .patient-ui-pip {
            position: absolute;
            bottom: 8px;
            right: 8px;
            width: 36px;
            height: 48px;
            background: #94a3b8;
            border-radius: 8px;
            border: 2px solid white;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            animation: floatAnim 4s ease-in-out infinite;
            z-index: 10;
        }

        .patient-ui-pip i {
            font-size: 16px;
            color: white;
            opacity: 0.8;
        }

        .patient-ui-controls {
            position: absolute;
            bottom: 8px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 15;
        }

        .patient-ui-btn {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 10px;
            backdrop-filter: blur(4px);
        }

        .patient-ui-btn.red {
            background: #ef4444;
        }

        /* Doctor Card Internal UI */
        .doctor-ui-container {
            flex: 1;
            position: relative;
            padding: 12px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            background: #f1f5f9;
        }

        /* Calendar UI */
        .doctor-ui-calendar {
            background: white;
            border-radius: 12px;
            padding: 10px;
            margin-bottom: 5px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(0, 0, 0, 0.03);
        }

        .calendar-month {
            font-size: 10px;
            font-weight: 800;
            color: #1e1b4b;
            margin-bottom: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .calendar-days {
            display: flex;
            justify-content: space-between;
            gap: 4px;
        }

        .calendar-day {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            flex: 1;
        }

        .day-name {
            font-size: 7px;
            font-weight: 600;
            color: #94a3b8;
            text-transform: uppercase;
        }

        .day-num {
            width: 22px;
            height: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: 700;
            color: #334155;
            border-radius: 6px;
            transition: all 0.2s;
        }

        .calendar-day.active .day-num {
            background: #4f46e5;
            color: white;
            box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
        }

        .calendar-day.active .day-name {
            color: #4f46e5;
        }

        .doctor-ui-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .doctor-ui-title {
            font-size: 11px;
            font-weight: bold;
            color: #334155;
        }

        .doctor-ui-badge {
            background: #dbeafe;
            color: #1d4ed8;
            font-size: 9px;
            padding: 2px 6px;
            border-radius: 99px;
            font-weight: bold;
        }

        .doctor-ui-item {
            display: flex;
            align-items: center;
            gap: 8px;
            background: white;
            padding: 8px;
            border-radius: 8px;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
            animation: slideUpFade 0.5s ease-out backwards;
        }

        .doctor-ui-avatar {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #94a3b8;
            font-size: 12px;
            flex-shrink: 0;
        }

        .doctor-ui-lines {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .doctor-ui-line-1 {
            width: 80%;
            height: 6px;
            background: #cbd5e1;
            border-radius: 4px;
        }

        .doctor-ui-line-2 {
            width: 50%;
            height: 4px;
            background: #e2e8f0;
            border-radius: 4px;
        }

        /* Drug Card Internal UI */
        .drug-ui-container {
            flex: 1;
            position: relative;
            padding: 12px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            background: #f0fdfa;
        }

        .drug-ui-search {
            width: 100%;
            height: 24px;
            background: white;
            border-radius: 12px;
            border: 1px solid #ccfbf1;
            display: flex;
            align-items: center;
            padding: 0 10px;
            color: #5eead4;
            font-size: 11px;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
        }

        .drug-ui-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
            flex: 1;
        }

        .drug-ui-card {
            background: white;
            border-radius: 8px;
            padding: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
            border: 1px solid #ccfbf1;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
            animation: popIn 0.5s ease-out backwards;
        }

        .drug-ui-card i {
            font-size: 18px;
            color: #0ea5e9;
        }

        .drug-ui-card .line {
            width: 70%;
            height: 4px;
            background: #e2e8f0;
            border-radius: 4px;
        }

        .drug-ui-card .line-small {
            width: 40%;
            height: 3px;
            background: #f1f5f9;
            border-radius: 4px;
        }

        @keyframes popIn {
            0% {
                transform: scale(0.8);
                opacity: 0;
            }

            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        @keyframes slideUpFade {
            0% {
                transform: translateY(10px);
                opacity: 0;
            }

            100% {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* Health Institutions New Card */
        .health-inst-card-new {
            background: linear-gradient(180deg, #2d6a4f 0%, #1b4332 100%);
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            padding: 0;
            box-sizing: border-box;
            position: relative;
            overflow: hidden;
            border: 8px solid #1e293b;
            border-radius: 36px;
            box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.1), 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .health-inst-pill {
            background: rgba(255, 255, 255, 0.96);
            border: 1.5px solid rgba(15, 143, 138, 0.35);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 9999px;
            padding: 6px 18px;
            color: #0a6f69;
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0.4px;
            display: inline-block;
            margin: 0 auto 12px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.6);
            text-shadow: none;
        }

        .health-inst-icon-wrap {
            position: relative;
            z-index: 40;
            display: flex;
            justify-content: center;
            margin-bottom: -32px;
        }

        .health-inst-icon-circle {
            width: 65px;
            height: 65px;
            background-color: #74a58d;
            border-radius: 50%;
            border: 4px solid #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.4);
        }

        .health-inst-map-box {
            background-color: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
            flex: 1;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .health-inst-map-container {
            position: relative;
            flex: 1;
            min-height: 130px;
        }

        .health-inst-map-container .health-inst-map-bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(0.2);
            opacity: 0.7;
        }

        .health-inst-path {
            stroke-dasharray: 8;
            animation: dashAnim 2s linear infinite;
        }

        @keyframes dashAnim {
            to {
                stroke-dashoffset: -16;
            }
        }

        .health-inst-float {
            animation: floatAnim 4s ease-in-out infinite;
        }

        @keyframes floatAnim {

            0%,
            100% {
                transform: translateY(0px) translateX(-50%);
            }

            50% {
                transform: translateY(-5px) translateX(-50%);
            }
        }

        .health-inst-pin {
            position: absolute;
            z-index: 20;
            display: flex;
            flex-direction: column;
            align-items: center;
            transform: translateX(-50%);
        }

        .health-inst-pin-bg {
            background-color: white;
            padding: 3px;
            border-radius: 6px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            border: 1px solid #f3f4f6;
        }

        .health-inst-pin-text {
            font-size: 8px;
            font-weight: 800;
            color: black;
            margin-top: 2px;
            white-space: nowrap;
        }

        .health-inst-footer {
            background-color: #1b4332;
            border-radius: 16px;
            margin: 6px;
            padding: 10px;
            text-align: center;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .health-inst-footer h3 {
            color: white;
            font-size: 11px;
            font-weight: bold;
            line-height: 1.4;
            margin: 0;
        }

        /* Visitor Counter */
        /* Visitor & Stats Dashboard */
        /* Visitor & Stats Dashboard - Fixed & Compact */
        .stats-dashboard-wrapper {
            margin-top: 20px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            display: flex;
            flex-direction: column;
            /* تحويل للوضع العمودي لضمان الاحتواء */
            gap: 12px;
            align-items: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            width: fit-content;
            max-width: 100%;
            /* ضمان عدم الخروج عن البطاقة */
            margin: 20px auto 0;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            width: 100%;
            padding: 5px 0;
        }

        .stat-item:not(:last-child) {
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding-bottom: 10px;
        }

        .stat-label {
            font-size: 10px;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 700;
            text-transform: uppercase;
            font-family: 'Almarai', sans-serif;
            letter-spacing: 0.5px;
        }

        .stat-value-container {
            display: flex;
            gap: 3px;
            direction: ltr;
        }

        .stat-digit {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 6px;
            width: 24px;
            height: 34px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 800;
            color: #ffffff;
            font-family: 'Plus Jakarta Sans', sans-serif;
            text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
        }

        .stat-footer-info {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            /* تكبير الخط */
            font-weight: 700;
            margin-top: 5px;
            padding: 4px 10px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.05);
            /* إضافة فقاعة خلفية */
        }

        .dot-live {
            color: #4ade80;
            text-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
        }

        .dot-join {
            color: #4ade80;
            text-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
        }

        .pulse-dot {
            width: 8px;
            /* تكبير النقطة */
            height: 8px;
            border-radius: 50%;
            animation: statPulse 2s infinite;
        }

        @keyframes statPulse {
            0% {
                transform: scale(0.9);
                opacity: 0.8;
                box-shadow: 0 0 0 0 currentColor;
            }

            50% {
                transform: scale(1.3);
                opacity: 1;
                box-shadow: 0 0 15px currentColor;
            }

            100% {
                transform: scale(0.9);
                opacity: 0.8;
                box-shadow: 0 0 0 0 transparent;
            }
        }