     :root {
            --primary: #611984;
            --primary-dark: #4a1266;
            --accent: #9c27b0;
            --dark: #14213d;
            --light: #f8f9fa;
            --gray: #e9ecef;
            --success: #2ecc71;
            --warning: #ff9e00;
            --warning2: #45b12f;
            --danger: #ff6b6b;
            --transition: all 0.3s ease;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 20px 40px rgba(97, 25, 132, 0.15);
            --scale-hover: scale(1.02);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Tajawal', sans-serif;
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        /* Navbar */
        .navbar {
            background-color: rgba(255,255,255,0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 0.8rem 5%;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .navbar.scrolled {
            padding: 0.6rem 5%;
            box-shadow: 0 5px 20px rgba(97,25,132,0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

.logo-img {
    width: 180px;
    height: 40px;
    object-fit: contain;
    display: inline-block;
}


        .nav-links {
            display: flex;
            gap: 0.5rem;
            margin: 0 auto;
            position: relative;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            position: relative;
            padding: 0.8rem 1rem;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: var(--primary);
            transition: width 0.3s;
            border-radius: 2px;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link:hover {
            color: var(--primary);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            min-width: 200px;
            box-shadow: var(--shadow);
            border-radius: 10px;
            padding: 0.5rem 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            z-index: 1000;
        }

        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            display: block;
            padding: 0.7rem 1.5rem;
            color: var(--dark);
            transition: var(--transition);
        }

        .dropdown-item:hover {
            background: rgba(97,25,132,0.1);
            color: var(--primary);
        }

        .nav-buttons {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .btn {
            padding: 0.6rem 1.2rem;
            border-radius: 10px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
        }

        .btn-outline {
            border: 2px solid var(--primary);
            color: var(--primary);
            background: transparent;
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(97,25,132,0.3);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            border: none;
            box-shadow: 0 4px 14px rgba(97,25,132,0.35);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(97,25,132,0.4);
        }

        .btn-trial {
            background: linear-gradient(135deg, var(--warning) 0%, #ff7b00 100%);
            color: white;
            border: none;
            box-shadow: 0 4px 14px rgba(255, 158, 0, 0.35);
        }

        .btn-trial:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 158, 0, 0.4);
        }

        .btn i {
            font-size: 0.9rem;
        }

        .language-selector {
            position: relative;
            margin-left: 1rem;
        }

        .language-selector select {
            padding: 0.5rem 2.5rem 0.5rem 1rem;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
            background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23611984' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 0.75rem center/16px 16px;
            font-family: 'Tajawal', sans-serif;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--transition);
            appearance: none;
        }

        .language-selector select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(97,25,132,0.1);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark);
            cursor: pointer;
            z-index: 1002;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -300px;
            width: 300px;
            height: 100vh;
            background: white;
            z-index: 1001;
            padding: 2rem;
            box-shadow: -5px 0 25px rgba(0,0,0,0.1);
            transition: right 0.3s ease;
            overflow-y: auto;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .mobile-menu-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .mobile-menu-logo-img {
            width: 150px;
            height: 35px;
            background: url('logo.png') no-repeat center center;
            background-size: contain;
        }

        .close-menu {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark);
            cursor: pointer;
        }

        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .mobile-nav-links a {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--dark);
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-nav-links a i {
            font-size: 0.9rem;
            color: var(--primary);
        }

        .mobile-nav-buttons {
            margin-top: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1000;
            display: none;
        }

        .overlay.active {
            display: block;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 6rem 5% 4rem;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #f9f3fb 0%, #f0e6f5 100%);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(97, 25, 132, 0.08) 0%, transparent 70%);
            z-index: 0;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(97, 25, 132, 0.1);
            color: var(--primary);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }

        .hero-badge i {
            margin-left: 8px;
            font-size: 0.8rem;
        }

        .hero-title {
            font-size: 3.2rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: #4a5568;
            margin-bottom: 2.5rem;
            max-width: 90%;
            line-height: 1.7;
        }

        .hero-tagline {
            font-size: 1.3rem;
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 1rem;
            background: rgba(97, 25, 132, 0.1);
            padding: 0.8rem 1.5rem;
            border-radius: 12px;
            display: inline-block;
        }

        .hero-buttons {
            display: flex;
            gap: 1.2rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .hero-stats {
            display: flex;
            gap: 2rem;
            align-items: center;
            flex-wrap: wrap;
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .stat-icon {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            color: var(--primary);
            font-size: 1.2rem;
        }

        .stat-text strong {
            display: block;
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 5px;
        }

        .stat-text span {
            font-size: 0.9rem;
            color: #718096;
            font-weight: 500;
        }

        .hero-image {
            position: relative;
            z-index: 1;
            perspective: 1000px;
        }

        .dashboard-img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 30px 60px -10px rgba(97,25,132,0.3);
            transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
            transition: transform 0.8s cubic-bezier(0.175,0.885,0.32,1.275);
            border: 5px solid white;
        }

        .hero-image:hover .dashboard-img {
            transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
        }

        .shape-1 {
            position: absolute;
            top: -50px;
            left: -50px;
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, rgba(97,25,132,0.1) 0%, transparent 100%);
            border-radius: 30px;
            transform: rotate(45deg);
            z-index: -1;
        }

        .shape-2 {
            position: absolute;
            bottom: -30px;
            right: -30px;
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, rgba(156,39,176,0.1) 0%, transparent 100%);
            border-radius: 50%;
            z-index: -1;
        }

        /* Special Offer Section */
        .special-offer {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: white;
            padding: 2rem 5%;
            text-align: center;
        }

        .offer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

        .offer-title {
            font-size: 2rem;
            font-weight: 800;
        }

        .offer-desc {
            font-size: 1.1rem;
            max-width: 600px;
        }

        .countdown {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .countdown-item {
            background: rgba(255,255,255,0.1);
            padding: 1rem;
            border-radius: 10px;
            min-width: 80px;
        }

        .countdown-number {
            font-size: 1.8rem;
            font-weight: 700;
        }

        .countdown-label {
            font-size: 0.9rem;
        }

        .offer-btn {
            background: var(--warning);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 10px;
            font-weight: 700;
            transition: var(--transition);
        }

        .offer-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255,158,0,0.4);
        }

        /* About Section */
        .about {
            padding: 5rem 5%;
            background: var(--light);
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(97,25,132,0.1);
            color: var(--primary);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #4a5568;
            max-width: 600px;
            margin: 0 auto;
        }

        .about-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-content p {
            margin-bottom: 1rem;
            color: #4a5568;
        }

        .about-stats {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .about-stat {
            text-align: center;
        }

        .about-stat .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
        }

        .about-stat .stat-label {
            font-size: 1rem;
            color: #4a5568;
        }

        .about-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: var(--shadow);
        }

        /* Features Section */
        .features {
            padding: 5rem 5%;
            background: #fff;
        }

        .features-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .features-tabs {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .feature-tab {
            padding: 0.8rem 1.5rem;
            border-radius: 10px;
            background: var(--gray);
            color: var(--dark);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-family: 'Tajawal', sans-serif;
        }

        .feature-tab.active, .feature-tab:hover {
            background: var(--primary);
            color: white;
        }

        .features-content {
            display: none;
        }

        .features-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
        }

        .feature-card:hover {
            transform: var(--scale-hover);
            box-shadow: var(--shadow-hover);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: rgba(97,25,132,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            color: var(--primary);
            font-size: 1.5rem;
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .feature-desc {
            font-size: 1rem;
            color: #4a5568;
            margin-bottom: 1rem;
        }

        .feature-link {
            color: var(--primary);
            font-weight: 600;
        }

        .feature-link i {
            margin-left: 8px;
        }

        /* Network Features Section */
        .network-features {
            padding: 5rem 5%;
            background: var(--light);
        }

        .network-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .network-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: var(--shadow);
        }

        .network-title {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .network-desc {
            font-size: 1.1rem;
            color: #4a5568;
            margin-bottom: 1.5rem;
        }

        .network-list {
            list-style: none;
            margin-bottom: 2rem;
        }

        .network-list li {
            font-size: 1rem;
            color: #4a5568;
            margin-bottom: 0.8rem;
            position: relative;
            padding-right: 1.5rem;
        }

        .network-list li::before {
            content: '✔';
            position: absolute;
            right: 0;
            color: var(--primary);
        }

        /* Network Features 2 Section - NEW DESIGN */
        .network-features2 {
            padding: 5rem 5%;
            background: #fff;
        }

        .network-container2 {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .network-container2 > *:first-child {
            order: 2;
        }

        .network-container2 > *:last-child {
            order: 1;
        }

        .network-image2 img {
            width: 100%;
            border-radius: 20px;
            box-shadow: var(--shadow);
        }

        .network-title2 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .network-desc2 {
            font-size: 1.1rem;
            color: #4a5568;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .features-grid-mini {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.5rem;
            background: rgba(97, 25, 132, 0.05);
            border-radius: 12px;
            transition: var(--transition);
        }

        .feature-item:hover {
            transform: translateY(-5px);
            background: rgba(97, 25, 132, 0.1);
        }

        .feature-icon-mini {
            width: 50px;
            height: 50px;
            background: var(--primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .feature-content h4 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }

        .feature-content p {
            font-size: 1rem;
            color: #4a5568;
            line-height: 1.6;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 5rem 5%;
            background: #fff;
        }

        .testimonials-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .testimonials-slider {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
            text-align: center;
        }

        .testimonial-text {
            font-size: 1rem;
            color: #4a5568;
            margin-bottom: 1.5rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-image img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        .author-details h4 {
            font-size: 1.2rem;
            font-weight: 700;
        }

        .author-details p {
            font-size: 0.9rem;
            color: #4a5568;
        }

        .testimonials-cta {
            text-align: center;
            margin-top: 2rem;
        }

        /* Video Section */
        .video-section {
            padding: 5rem 5%;
            background: var(--light);
        }

        .video-container {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }

        .video-wrapper {
            position: relative;
            max-width: 800px;
            margin: 0 auto 2rem;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            padding-bottom: 56.25%; /* نسبة 16:9 للفيديو responsive */
            height: 0;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .video-play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .video-play-button:hover {
            transform: translate(-50%, -50%) scale(1.1);
        }

        .video-stats {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .video-stat {
            text-align: center;
        }

        .video-stat-number {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
        }

        .video-stat-label {
            font-size: 1rem;
            color: #4a5568;
        }

        /* Download Section */
        .download {
            padding: 5rem 5%;
            background: #fff;
            text-align: center;
        }

        .download-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .download-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .download-subtitle {
            font-size: 1.1rem;
            color: #4a5568;
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .download-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .download-btn {
            background: var(--primary);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 10px;
            font-weight: 700;
            transition: var(--transition);
        }

        .download-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

        .download-counter {
            margin-bottom: 2rem;
        }

        .counter-title {
            font-size: 1.2rem;
            color: #4a5568;
        }

        .counter-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
        }

        .download-features {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .download-feature {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1rem;
            color: #4a5568;
        }

        .download-feature i {
            color: var(--primary);
        }

        /* Free Trial Section */
        .trial {
            padding: 5rem 5%;
            background: var(--light);
        }

        .trial-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .trial-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .trial-subtitle {
            font-size: 1.1rem;
            color: #4a5568;
            margin-bottom: 2rem;
        }

        .trial-btn {
            padding: 1rem 2rem;
            font-size: 1.1rem;
        }

        .trial-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: var(--shadow);
        }

        /* Pricing Section - IMPROVED DESIGN */
        .pricing {
            padding: 5rem 5%;
            background: #fff;
        }

        .pricing-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .pricing-card {
            background: white;
            padding: 2.5rem 2rem;
            border-radius: 20px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(97, 25, 132, 0.2);
        }

        .pricing-card.popular {
            border: 2px solid var(--primary);
            transform: scale(1.05);
        }

        .pricing-card.popular:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .pricing-card.popular2 {
            border: 2px solid var(--warning2);
            transform: scale(1.05);
        }

        .pricing-card.popular2:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .pricing-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--warning);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
            box-shadow: 0 4px 10px rgba(255, 158, 0, 0.3);
        }
        
        .pricing-badge2 {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--warning2);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
            box-shadow: 0 4px 10px rgba(69, 177, 47, 0.3);
        }

        .pricing-header {
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #eee;
        }

        .pricing-img img {
            width: 80px;
            margin: 0 auto 1rem;
            transition: transform 0.3s ease;
        }

        .pricing-card:hover .pricing-img img {
            transform: scale(1.1);
        }

        .pricing-title {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }

        .pricing-desc {
            font-size: 1rem;
            color: #4a5568;
        }

        .pricing-price {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            margin: 1.5rem 0;
            display: flex;
            align-items: flex-start;
            justify-content: center;
        }

        .price-amount {
            line-height: 1;
        }

        .price-currency {
            font-size: 1.2rem;
            margin-top: 0.3rem;
            margin-left: 0.2rem;
        }

        .price-period {
            font-size: 1rem;
            color: #4a5568;
            align-self: flex-end;
            margin-bottom: 0.3rem;
            margin-right: 0.5rem;
        }

        .pricing-features {
            margin-bottom: 2rem;
            text-align: right;
        }

        .pricing-feature {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 1rem;
            color: #4a5568;
            margin-bottom: 0.8rem;
            padding: 0.5rem 0;
            transition: transform 0.3s ease;
        }

        .pricing-feature:hover {
            transform: translateX(-5px);
        }

        .pricing-feature i {
            color: var(--success);
            font-size: 1.1rem;
        }

        .pricing-btn {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 1rem 2rem;
            border-radius: 10px;
            font-weight: 700;
            transition: all 0.3s ease;
            display: inline-block;
            width: 100%;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 14px rgba(97, 25, 132, 0.35);
        }

        .pricing-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(97, 25, 132, 0.4);
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
        }

        .comparison-table {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: var(--shadow);
            overflow-x: auto;
            margin-top: 3rem;
        }

        .table-title {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 2rem;
            text-align: center;
            color: var(--dark);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px;
        }

        th, td {
            padding: 1.2rem;
            text-align: center;
            border-bottom: 1px solid #eee;
        }

        th {
            background: rgba(97, 25, 132, 0.1);
            font-weight: 700;
            color: var(--dark);
        }

        tr:last-child td {
            border-bottom: none;
        }

        tr:hover {
            background: rgba(97, 25, 132, 0.03);
        }

        .feature-check {
            color: var(--success);
            font-size: 1.2rem;
        }

        .feature-x {
            color: var(--danger);
            font-size: 1.2rem;
        }

        /* FAQ Section */
        .faq {
            padding: 5rem 5%;
            background: var(--light);
        }

        .faq-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .faq-accordion {
            margin-bottom: 2rem;
        }

        .faq-item {
            background: white;
            border-radius: 10px;
            margin-bottom: 1rem;
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 1.2rem 1.5rem;
            background: none;
            border: none;
            font-size: 1.1rem;
            font-weight: 600;
            text-align: right;
            cursor: pointer;
            transition: var(--transition);
        }

        .faq-question:hover {
            color: var(--primary);
            background: rgba(97, 25, 132, 0.05);
        }

        .faq-question i {
            transition: transform 0.3s ease;
        }

        .faq-question.active i {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 1.5rem 1.5rem;
            color: #4a5568;
            display: none;
        }

        .faq-answer.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        .faq-cta {
            text-align: center;
        }

        /* Contact Section */
        .contact {
            padding: 5rem 5%;
            background: #fff;
        }

        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-title {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .contact-desc {
            font-size: 1.1rem;
            color: #4a5568;
            margin-bottom: 1rem;
        }

        .contact-method {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(97,25,132,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.2rem;
        }

        .contact-details h4 {
            font-size: 1.2rem;
            font-weight: 700;
        }

        .contact-details p, .contact-details a {
            font-size: 1rem;
            color: #4a5568;
        }

        .contact-details a:hover {
            color: var(--primary);
        }

        .contact-social {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: var(--gray);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark);
            transition: var(--transition);
        }

        .social-link:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

        .contact-form {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }

        .form-title {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            font-family: 'Tajawal', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(97,25,132,0.1);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .form-btn {
            background: var(--primary);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 10px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }

        .form-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

     /* Footer */
        .footer {
            padding: 3rem 5%;
            background: var(--dark);
            color: white;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-about {
            max-width: 300px;
        }

      .footer-logo {
            margin-bottom: 1rem;
        }

        .footer-logo-img {
            width: 180px;
            height: 40px;
            background: url('logo-white.png') no-repeat center center ;
            background-size: contain;
        }
        .footer-about-text {
            font-size: 1rem;
            color: #a0aec0;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .footer-social a {
            color: white;
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .footer-social a:hover {
            color: var(--primary);
        }

        .footer-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .footer-links ul li {
            margin-bottom: 0.8rem;
        }

        .footer-links ul li a {
            font-size: 1rem;
            color: #a0aec0;
            transition: var(--transition);
        }

        .footer-links ul li a:hover {
            color: var(--primary);
        }

        .footer-contact-info {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-contact-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1rem;
            color: #a0aec0;
        }

        .footer-contact-item i {
            color: var(--primary);
        }

        .footer-bottom {
            border-top: 1px solid #4a5568;
            padding-top: 2rem;
            text-align: center;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-copyright {
            font-size: 0.9rem;
            color: #a0aec0;
        }

        .footer-legal a {
            font-size: 0.9rem;
            color: #a0aec0;
            margin-left: 1rem;
            transition: var(--transition);
        }

        .footer-legal a:hover {
            color: var(--primary);
        }
        
           .sidebar-menu-footer {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #eee;
        }

        /* Login Modal */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .modal.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: white;
            width: 100%;
            max-width: 400px;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }

        .modal.active .modal-content {
            transform: translateY(0);
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .modal-title {
            font-size: 1.5rem;
            font-weight: 700;
        }

        .close-modal {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark);
        }

        .modal-body {
            margin-bottom: 1.5rem;
        }

        .modal-footer {
            text-align: center;
        }

        .modal-footer p {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #4a5568;
        }

        .modal-footer a {
            color: var(--primary);
            font-weight: 600;
        }

        /* Scroll Top Button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: 0 5px 15px rgba(97, 25, 132, 0.3);
        }

        .scroll-top.active {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(97, 25, 132, 0.4);
        }

        /* Smooth scrolling for navigation */
        html {
            scroll-behavior: smooth;
        }

        /* Animation for section transitions */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 992px) {
            .navbar {
                padding: 0.8rem 5%;
            }
            
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero-container, .about-container, .network-container, .network-container2, .trial-container, .contact-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-buttons, .hero-stats {
                justify-content: center;
            }
            
            .about-stats, .video-stats, .download-features {
                justify-content: center;
            }
            
            .dashboard-img {
                transform: none;
            }
            
            .hero-image:hover .dashboard-img {
                transform: none;
            }

            .network-container2 > *:first-child {
                order: 1;
            }

            .network-container2 > *:last-child {
                order: 2;
            }

            .pricing-card.popular,
            .pricing-card.popular2 {
                transform: scale(1);
            }

            .pricing-card.popular:hover,
            .pricing-card.popular2:hover {
                transform: translateY(-10px);
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .hero-buttons, .download-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-buttons .btn, .download-buttons .btn {
                width: 100%;
                max-width: 300px;
                text-align: center;
                justify-content: center;
            }
            
            .countdown {
                gap: 0.8rem;
            }
            
            .countdown-item {
                min-width: 60px;
                padding: 0.8rem;
            }
            
            .countdown-number {
                font-size: 1.5rem;
            }
            
            .features-tabs {
                flex-direction: column;
                align-items: center;
            }
            
            .feature-tab {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }
            
            .feature-item {
                flex-direction: column;
                text-align: center;
            }

            .feature-icon-mini {
                margin: 0 auto 1rem;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 1.8rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .hero-badge, .section-badge {
                font-size: 0.8rem;
                padding: 0.4rem 0.8rem;
            }
            
            .nav-buttons {
                display: none;
            }
            
            .mobile-nav-buttons {
                display: flex;
            }
            
            .stat-item {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }

            .scroll-top {
                bottom: 20px;
                left: 20px;
                width: 45px;
                height: 45px;
            }
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }

        .pulse {
            animation: pulse 2s infinite;
        }
          /* Products & Services Section */
        .products-services {
            padding: 5rem 5%;
            background: var(--light);
        }

        .products-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .product-category {
            margin-bottom: 3rem;
        }

        .product-category h3 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }

        .products-grid,
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .product-item,
        .service-item {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
        }

        .product-item:hover,
        .service-item:hover {
            transform: var(--scale-hover);
            box-shadow: var(--shadow-hover);
        }

        .product-icon,
        .service-icon {
            width: 50px;
            height: 50px;
            background: rgba(97,25,132,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            color: var(--primary);
            font-size: 1.5rem;
        }

        .product-item h4,
        .service-item h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .product-item p,
        .service-item p {
            font-size: 1rem;
            color: #4a5568;
            margin-bottom: 1rem;
        }

        .product-link {
            color: var(--primary);
            font-weight: 600;
        }

        /* Scroll Top */
        .scroll-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--primary);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
            z-index: 999;
        }

        .scroll-top.active {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            transform: translateY(-5px);
        }

        /* Cookie Consent */
        .cookie-consent {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: white;
            padding: 1rem 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            z-index: 1000;
        }

        .cookie-content p {
            font-size: 0.9rem;
            color: #4a5568;
            margin: 0;
        }

        .cookie-content a {
            color: var(--primary);
            font-weight: 600;
        }

        .cookie-buttons {
            display: flex;
            gap: 1rem;
        }

        .cookie-accept,
        .cookie-reject {
            padding: 0.5rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .cookie-accept {
            background: var(--primary);
            color: white;
            border: none;
        }

        .cookie-reject {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .cookie-accept:hover,
        .cookie-reject:hover {
            transform: translateY(-2px);
        }
        
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

