        /* Color variables */
        :root {
            --primary: #0a192f; /* Deep night blue */
            --secondary: #00d1ff; /* Bright cyan */
            --accent: #ff4d94; /* Light pink */
            --light: #ccf5ff; /* Light cyan */
            --dark: #051424; /* Dark night blue */
            --text: #e6f1ff; /* Bluish white */
            --card-bg: rgba(10, 25, 47, 0.7); /* Transparent background */
        } 

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--dark);
            color: var(--text);
            line-height: 1.8;
            overflow-x: hidden;
            perspective: 1000px;
        }

        #particles-js {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
        }

        /* Unique header design */
        header {
            position:sticky;
            bottom: 0;
            width: 100%;
            padding: 1.5rem 2rem;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(5, 20, 36, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 209, 255, 0.2);
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        header.scrolled {
            padding: 1rem 2rem;
            background: rgba(5, 20, 36, 0.95);
        }

/* Logo styles */
.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.logo-icon {
    width: 100px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: transparent; /* إزالة الخلفية المتدرجة */
}

.logo-icon::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    background: conic-gradient(
        transparent, 
        transparent, 
        transparent, 
        var(--secondary)
    );
    animation: rotateLogo 4s linear infinite;
}
        /* Navigation menu */
        nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        nav a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
            transition: all 0.4s ease;
        }

        nav a::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
            transition: width 0.4s ease;
        }

        nav a:hover::after, nav a.active::after {
            width: 100%;
        }

        nav a:hover {
            color: var(--secondary);
        }

        .cta-button {
            background: linear-gradient(90deg, var(--secondary), var(--accent));
            color: var(--dark);
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: none;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 209, 255, 0.3);
            z-index: 1;
        }

        .cta-button::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(90deg, var(--accent), var(--secondary));
            transition: width 0.4s ease;
            z-index: -1;
        }

        .cta-button:hover::before {
            width: 100%;
        }

        .cta-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 30px rgba(255, 77, 148, 0.4);
        }

        /* Main section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 6rem 2rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-text {
            transform: translateZ(50px);
        }

        .hero h1 {
            font-size: 3.8rem;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, var(--text), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -1.5px;
        }

        .hero h1 span {
            display: block;
            font-size: 4.2rem;
            color: var(--accent);
            text-shadow: 0 0 20px rgba(255, 77, 148, 0.5);
        }

        .hero p {
            font-size: 1.4rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            max-width: 90%;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--secondary);
            color: var(--secondary);
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-outline::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: var(--secondary);
            transition: width 0.4s ease;
            z-index: -1;
        }

        .btn-outline:hover::before {
            width: 100%;
        }

        .btn-outline:hover {
            color: var(--dark);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 209, 255, 0.3);
        }

        .hero-visual {
            position: relative;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            perspective: 1000px;
        }

        .satellite-container {
            position: relative;
            width: 400px;
            height: 400px;
        }

        .earth {
            width: 300px;
            height: 300px;
            background: url('https://images.unsplash.com/photo-1614730321146-b6fa6a46bcb4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80') no-repeat center center;
            background-size: cover;
            border-radius: 50%;
            position: relative;
            box-shadow: 
                0 0 50px rgba(0, 209, 255, 0.5),
                inset 0 0 100px rgba(0, 0, 0, 0.8);
            animation: rotateEarth 60s linear infinite;
        }

        .satellite {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, var(--secondary), var(--accent));
            border-radius: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 20px var(--secondary);
            animation: orbit 8s linear infinite;
        }

        .satellite::before {
            content: "";
            position: absolute;
            width: 80px;
            height: 20px;
            background: var(--secondary);
            border-radius: 50%;
            top: 50%;
            right: -65px;
            transform: translateY(-50%);
            opacity: 0.6;
            filter: blur(5px);
        }

        /* Features section */
        .features {
            padding: 8rem 2rem;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 6rem;
            position: relative;
        }

        .section-title h2 {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, var(--secondary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
        }

        .section-title p {
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.3rem;
            opacity: 0.8;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .feature-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 209, 255, 0.1);
            transform: translateY(50px);
            opacity: 0;
            transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .feature-card.visible {
            transform: translateY(0);
            opacity: 1;
        }

        .feature-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, var(--secondary), var(--accent));
            transition: width 0.5s ease;
        }

        .feature-card:hover::before {
            width: 100%;
            opacity: 0.1;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: rgba(0, 209, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            font-size: 2rem;
            color: var(--secondary);
            position: relative;
            transition: all 0.4s ease;
        }

        .feature-card:hover .feature-icon {
            transform: translateY(-10px) scale(1.1);
            background: linear-gradient(135deg, var(--secondary), var(--accent));
            color: var(--dark);
            box-shadow: 0 10px 25px rgba(0, 209, 255, 0.3);
        }

        .feature-content h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--secondary);
            position: relative;
            z-index: 2;
        }

        .feature-content p {
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        /* Pricing section */
        .pricing {
            padding: 8rem 2rem;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><polygon points="0,100 100,0 100,100" fill="rgba(0,209,255,0.03)"/></svg>') no-repeat center bottom;
            background-size: 100% 200px;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .pricing-card {
            background: var(--card-bg);
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            transform: scale(0.95);
            transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
            border: 1px solid rgba(0, 209, 255, 0.1);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
        }

        .pricing-card:hover {
            transform: scale(1);
            box-shadow: 0 20px 50px rgba(0, 209, 255, 0.2);
        }

        .popular-plan {
            transform: scale(1);
            box-shadow: 0 20px 50px rgba(255, 77, 148, 0.3);
        }

        .popular-plan:hover {
            transform: scale(1.02);
        }

        .popular-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(45deg, var(--accent), #ff2d7a);
            color: var(--dark);
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.9rem;
            z-index: 10;
            transform: rotate(5deg);
            box-shadow: 0 5px 15px rgba(255, 77, 148, 0.3);
        }

        .plan-header {
            background: linear-gradient(135deg, rgba(0, 209, 255, 0.1), rgba(255, 77, 148, 0.1));
            padding: 2.5rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .plan-header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
        }

        .plan-header h3 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            color: var(--text);
        }

        .plan-price {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 0.5rem;
            background: linear-gradient(45deg, var(--secondary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .plan-price span {
            font-size: 1.2rem;
            font-weight: normal;
            color: var(--light);
            opacity: 0.8;
        }

        .plan-features {
            padding: 2.5rem;
        }

        .plan-features ul {
            list-style: none;
        }

        .plan-features li {
            padding: 1rem 0;
            border-bottom: 1px solid rgba(0, 209, 255, 0.1);
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .plan-features li:last-child {
            border-bottom: none;
        }

        .plan-features li i {
            color: var(--secondary);
            font-size: 1.2rem;
        }

        .plan-button {
            display: block;
            text-align: center;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
            color: var(--dark);
            padding: 1.2rem;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.4s ease;
            margin: 0 2rem 2rem;
            border-radius: 12px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .plan-button::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(90deg, var(--accent), var(--secondary));
            transition: width 0.4s ease;
            z-index: -1;
        }

        .plan-button:hover::before {
            width: 100%;
        }

        .plan-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 209, 255, 0.3);
        }

        /* Coverage section */
        .coverage {
            padding: 8rem 2rem;
            position: relative;
        }

        .coverage-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .map-visual {
            position: relative;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .map-circle {
            position: relative;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: rgba(0, 209, 255, 0.05);
            border: 2px dashed rgba(0, 209, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            animation: pulse 4s ease-in-out infinite;
        }

        .map-dots {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .map-dot {
            position: absolute;
            width: 15px;
            height: 15px;
            background: var(--secondary);
            border-radius: 50%;
            box-shadow: 0 0 15px var(--secondary);
            transform: translate(-50%, -50%);
            animation: pulseDot 2s ease-in-out infinite;
        }

        .map-dot:nth-child(1) { top: 30%; left: 40%; }
        .map-dot:nth-child(2) { top: 50%; left: 70%; animation-delay: 0.5s; }
        .map-dot:nth-child(3) { top: 70%; left: 60%; animation-delay: 1s; }
        .map-dot:nth-child(4) { top: 45%; left: 30%; animation-delay: 1.5s; }
        .map-dot:nth-child(5) { top: 65%; left: 40%; animation-delay: 2s; }

        .coverage-content h2 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: var(--secondary);
        }

        .coverage-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat-card {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 209, 255, 0.1);
            transition: all 0.4s ease;
            transform: translateY(0);
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 209, 255, 0.1);
            border-color: var(--secondary);
        }

        .stat-card i {
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 1.5rem;
        }

        .stat-card h4 {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 0.5rem;
            background: linear-gradient(45deg, var(--secondary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        /* Footer */
        .footer {
            background: linear-gradient(to left, var(--dark), #0a1a35);
            color: var(--text);
            padding: 5rem 2rem 2rem;
            position: relative;
            border-top: 1px solid rgba(0, 209, 255, 0.1);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .footer-section {
            padding: 1rem;
        }
        
        .footer-section h3 {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            position: relative;
            color: var(--secondary);
        }
        
        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(to right, var(--secondary), var(--accent));
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .footer-logo .logo-icon {
            width: 60px;
            height: 60px;
        }
        
        .footer-logo .logo-icon i {
            font-size: 2rem;
        }
        
        .footer-logo-text {
            display: flex;
            flex-direction: column;
        }
        
        .footer-logo-text h2 {
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(45deg, var(--secondary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -1px;
        }
        
        .footer-logo-text span {
            font-size: 0.9rem;
            color: var(--light);
            opacity: 0.8;
        }
        
        .footer-section.about p {
            margin-bottom: 2rem;
            line-height: 1.7;
            opacity: 0.8;
        }
        
        .social-icons {
            display: flex;
            gap: 1rem;
        }
        
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--secondary);
            font-size: 1.3rem;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background: var(--secondary);
            color: var(--dark);
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 209, 255, 0.3);
        }
        
        .footer-section.links ul {
            list-style: none;
        }
        
        .footer-section.links li {
            margin-bottom: 1.2rem;
        }
        
        .footer-section.links a {
            color: var(--text);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 1.1rem;
        }
        
        .footer-section.links a i {
            color: var(--secondary);
            transition: all 0.3s ease;
        }
        
        .footer-section.links a:hover {
            color: var(--secondary);
            transform: translateX(5px);
        }
        
        .footer-section.links a:hover i {
            transform: rotate(45deg);
        }
        
        .footer-section.contact ul {
            list-style: none;
        }
        
        .footer-section.contact li {
            display: flex;
            align-items: flex-start;
            gap: 1.2rem;
            margin-bottom: 1.8rem;
        }
        
        .footer-section.contact i {
            color: var(--secondary);
            font-size: 1.4rem;
            margin-top: 5px;
        }
        
        .footer-section.contact div {
            line-height: 1.6;
        }
        
        .footer-bottom {
            text-align: center;
            padding: 3rem 0 1rem;
            margin-top: 4rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .footer-bottom p {
            opacity: 0.7;
            font-size: 1.1rem;
        }
        
        .footer-bottom span {
            color: var(--secondary);
            font-weight: 700;
        }
        
        .partner-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1.2rem;
            border-radius: 20px;
            margin-top: 1rem;
            font-size: 0.9rem;
            border: 1px solid rgba(0, 209, 255, 0.2);
        }
        
        .partner-badge i {
            color: var(--accent);
            margin-right: 0.5rem;
        }
        
        .footer-bottom span:nth-of-type(2) { /* Special styling for development company name */
            color: var(--accent);
            font-weight: 800;
        }

        .footer-bottom span:nth-of-type(2)::before {
            margin-right: 5px;
        }
        

        /* Animations */
        @keyframes rotateEarth {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes orbit {
            from { transform: translate(-50%, -50%) rotate(0deg) translateX(200px) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg) translateX(200px) rotate(-360deg); }
        }

        @keyframes rotateLogo {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(0, 209, 255, 0.2); }
            70% { box-shadow: 0 0 0 30px rgba(0, 209, 255, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 209, 255, 0); }
        }

        @keyframes pulseDot {
            0% { transform: translate(-50%, -50%) scale(1); }
            50% { transform: translate(-50%, -50%) scale(1.2); }
            100% { transform: translate(-50%, -50%) scale(1); }
        }

        /* Hamburger menu */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 2rem;
            height: 2rem;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
        }
        
        .hamburger:focus {
            outline: none;
        }
        
        .hamburger div {
            width: 2rem;
            height: 0.25rem;
            background: var(--secondary);
            border-radius: 10px;
            transition: all 0.3s linear;
            position: relative;
            transform-origin: center;
        }
        
        .mobile-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 70%;
            height: 100vh;
            background: var(--primary);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            transition: left 0.5s ease-in-out;
            padding-top: 6rem;
            box-shadow: 5px 0 15px rgba(0, 0, 0, 0.5);
        }
        
        .mobile-menu.active {
            left: 0;
        }
        
        .mobile-menu ul {
            list-style: none;
            width: 100%;
            padding: 0 2rem;
        }
        
        .mobile-menu li {
            margin: 1.5rem 0;
            text-align: center;
        }
        
        .mobile-menu a {
            color: var(--text);
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 500;
            padding: 0.5rem 1rem;
            display: block;
            transition: all 0.3s ease;
        }
        
        .mobile-menu a:hover {
            color: var(--secondary);
        }
        
        .mobile-menu .cta-button {
            margin-top: 2rem;
            font-size: 1.2rem;
            padding: 1rem 2rem;
        }
        
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 999;
        }
        
        .overlay.active {
            display: block;
        }

        /* Responsiveness */
        @media (max-width: 1200px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 3rem;
            }
            
            .hero p {
                max-width: 100%;
                margin: 0 auto 2rem;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .coverage-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .coverage-content {
                text-align: center;
            }
            
            .coverage-stats {
                max-width: 600px;
                margin: 3rem auto 0;
            }
            
            .map-visual {
                height: 400px;
                margin-bottom: 2rem;
            }
            
            .map-circle {
                width: 350px;
                height: 350px;
            }
        }

        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3.2rem;
            }
            
            .hero h1 span {
                font-size: 3.5rem;
            }
            
            .section-title h2 {
                font-size: 2.5rem;
            }
            
            .hero-visual {
                height: 400px;
            }
            
            .satellite-container {
                width: 350px;
                height: 350px;
            }
            
            .earth {
                width: 250px;
                height: 250px;
            }
            
            .feature-icon {
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
            }
            
            .feature-content h3 {
                font-size: 1.6rem;
            }
            
            .stat-card h4 {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            nav ul {
                display: none;
            }
            
            .hamburger {
                display: flex;
            }
            
            .hero {
                padding-top: 8rem;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .hero h1 span {
                font-size: 3rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .features-grid, 
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }
            
            .coverage-stats {
                grid-template-columns: 1fr;
            }
            
            .map-visual {
                height: 350px;
            }
            
            .map-circle {
                width: 300px;
                height: 300px;
            }
            
            .plan-price {
                font-size: 3rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .footer-section h3::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .footer-logo {
                justify-content: center;
            }
            
            .social-icons {
                justify-content: center;
            }
            
            .footer-section.links ul {
                padding: 0;
            }
            
            .footer-section.links a {
                justify-content: center;
            }
            
            .footer-section.contact li {
                justify-content: center;
            }
            
        }

        @media (max-width: 576px) {
            .logo-text h1 {
                font-size: 1.5rem;
            }
            
            .logo-icon {
                width: 40px;
                height: 40px;
            }
            
            .logo-icon i {
                font-size: 1.5rem;
            }
            
            .cta-button {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }
            
            .hero {
                padding: 6rem 1rem 1rem;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero h1 span {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .section-title p {
                font-size: 1.1rem;
            }
            
            .hero-visual {
                height: 300px;
            }
            
            .satellite-container {
                width: 280px;
                height: 280px;
            }
            
            .earth {
                width: 200px;
                height: 200px;
            }
            
            .feature-card {
                padding: 1.8rem;
            }
            
            .feature-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            .feature-content h3 {
                font-size: 1.4rem;
            }
            
            .coverage-content h2 {
                font-size: 2.2rem;
            }
            
            .stat-card {
                padding: 1.5rem;
            }
            
            .stat-card i {
                font-size: 2.5rem;
            }
            
            .stat-card h4 {
                font-size: 1.8rem;
            }
            
            .plan-header {
                padding: 1.8rem 1.5rem;
            }
            
            .plan-price {
                font-size: 2.5rem;
            }
            
            .plan-features {
                padding: 1.8rem;
            }
            
            .plan-features li {
                font-size: 0.95rem;
            }
            
            .mobile-menu {
                width: 85%;
            }
            
            .mobile-menu a {
                font-size: 1.3rem;
            }
            
            .footer-section h3 {
                font-size: 1.6rem;
            }
            
            .footer-logo .logo-icon {
                width: 50px;
                height: 50px;
            }
            
            .footer-logo .logo-icon i {
                font-size: 1.7rem;
            }
        }
        /* Language switcher styles */
.language-switcher {
    position: relative;
    margin-left: 1.5rem;
}

.language-btn {
    background: rgba(0, 209, 255, 0.1);
    color: var(--text);
    border: 1px solid rgba(0, 209, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.language-btn:hover {
    background: rgba(0, 209, 255, 0.2);
    border-color: var(--secondary);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--card-bg);
    border-radius: 10px;
    padding: 0.5rem 0;
    min-width: 150px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 209, 255, 0.1);
    backdrop-filter: blur(10px);
    display: none;
    z-index: 1001;
}

.language-dropdown a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.language-dropdown a:hover {
    background: rgba(0, 209, 255, 0.1);
    color: var(--secondary);
}

.language-switcher:hover .language-dropdown {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* RTL styles for Arabic */
html[dir="rtl"] {
    direction: rtl;
}

html[dir="rtl"] .hero-content,
html[dir="rtl"] .coverage-container {
    direction: rtl;
}

html[dir="rtl"] .hero-text h1 span,
html[dir="rtl"] .hero-text p,
html[dir="rtl"] .coverage-content h2,
html[dir="rtl"] .coverage-content p {
    direction: rtl;
    text-align: right;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile styles */
@media (max-width: 768px) {
    .language-switcher {
        margin-left: 1rem;
    }
    
    .language-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .language-dropdown {
        min-width: 120px;
    }
}
