     :root {
            --primary: #6366f1;
            --secondary: #8b5cf6;
            --accent: #ec4899;
            --cyan: #06b6d4;
            --success: #10b981;
            --dark: #0f172a;
            --darker: #020617;
            --light: #f8fafc;
            --gradient-main: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
        }
        
        /* Language Switcher */
        .lang-switcher {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 10000;
            display: flex;
            gap: 0.5rem;
            background: rgba(15, 23, 42, 0.95);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            border: 1px solid rgba(102, 126, 234, 0.3);
            backdrop-filter: blur(20px);
        }
        
        html[dir="rtl"] .lang-switcher {
            right: auto;
            left: 20px;
        }
        
        .lang-switcher a {
            padding: 0.5rem 1rem;
            border-radius: 30px;
            text-decoration: none;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .lang-switcher a:hover,
        .lang-switcher a.active {
            background: var(--gradient-main);
            color: #fff;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
            width: 100%;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark);
            overflow-x: hidden;
            background: var(--darker);
            width: 100%;
            position: relative;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
        }
        
        /* 3D Network Animation Background - FOR ALL SECTIONS EXCEPT HOME AND FOOTER */
        #network-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            background: var(--darker);
            display: none;
        }
        
        section, nav {
            position: relative;
            z-index: 1;
        }
        
        /* Preloader - FIXED CENTERING - 2 SECONDS */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: var(--darker);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 99999;
            flex-direction: column;
            overflow: hidden;
        }
        
        .preloader.hidden {
            animation: fadeOut 0.8s ease forwards;
        }
        
        @keyframes fadeOut {
            to {
                opacity: 0;
                visibility: hidden;
            }
        }
        
        .loader-container {
            position: relative;
            width: 200px;
            height: 200px;
        }
        
        .loader-ring {
            position: absolute;
            width: 100%;
            height: 100%;
            border: 3px solid transparent;
            border-radius: 50%;
            animation: rotate 2s linear infinite;
        }
        
        .loader-ring:nth-child(1) {
            border-top-color: var(--primary);
            animation-delay: 0s;
        }
        
        .loader-ring:nth-child(2) {
            border-right-color: var(--secondary);
            animation-delay: -0.5s;
        }
        
        .loader-ring:nth-child(3) {
            border-bottom-color: var(--accent);
            animation-delay: -1s;
        }
        
        .loader-ring:nth-child(4) {
            border-left-color: var(--cyan);
            animation-delay: -1.5s;
        }
        
        @keyframes rotate {
            to { transform: rotate(360deg); }
        }
        
        .loader-logo {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120px;
            height: 120px;
            animation: pulse 2s ease-in-out infinite;
        }
        
        .loader-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.8));
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
            50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.1); }
        }
        
        .loader-text {
            margin-top: 30px;
            font-size: 1.2rem;
            color: #fff;
            font-weight: 600;
            letter-spacing: 3px;
        }
        
        /* Navigation - FIXED FOR MOBILE */
        .navbar {
            padding: 1rem 0;
            background: rgba(2, 6, 23, 0.95) !important;
            backdrop-filter: blur(20px) saturate(180%);
            border-bottom: 1px solid rgba(102, 126, 234, 0.1);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 100%;
            left: 0;
            right: 0;
        }
        
        .navbar.scrolled {
            padding: 0.5rem 0;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            border-bottom-color: rgba(102, 126, 234, 0.3);
        }
        
        .navbar .container {
            max-width: 100%;
            padding-left: 15px;
            padding-right: 15px;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .navbar-brand img {
            width: 50px;
            height: 50px;
            object-fit: contain;
            filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.6));
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: scale(1.1) rotate(360deg);
            filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.9));
        }
        
        .brand-text {
            font-size: 2rem;
            font-weight: 900;
            font-family: 'Orbitron', sans-serif;
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 3px;
            text-transform: uppercase;
        }
        
        .navbar-toggler {
            z-index: 1000;
            position: relative;
            border: 2px solid rgba(255, 255, 255, 0.5);
            padding: 0.5rem 0.75rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.5);
            outline: none;
        }
        
        .nav-link {
            color: #fff !important;
            font-weight: 600;
            margin: 0 1.5rem;
            position: relative;
            padding: 0.8rem 0 !important;
            transition: all 0.3s ease;
            text-transform: uppercase;
            font-size: 0.95rem;
            letter-spacing: 1px;
        }
        
        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--gradient-main);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateX(-50%);
        }
        
        .nav-link:hover::before,
        .nav-link.active::before {
            width: 100%;
        }
        
        .nav-link:hover {
            transform: translateY(-2px);
        }
        
        /* Hero Service Carousel Section */
        .hero-service-section {
            position: relative;
            min-height: 100vh;
            padding: 0;
            background: var(--darker);
            overflow: hidden;
        }
        
        /* Background Carousel - Images Only */
        .background-carousel {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .background-carousel .carousel-item {
            height: 100vh;
            position: relative;
        }
        
        .background-carousel .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 50%, rgba(240, 147, 251, 0.85) 100%);
            z-index: 2;
        }
        
        .background-carousel .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.6) saturate(1.1);
            animation: zoomEffect 20s ease-in-out infinite alternate;
        }
        
        @keyframes zoomEffect {
            0% { transform: scale(1); }
            100% { transform: scale(1.1); }
        }
        
        /* Fixed Hero Content - Always Visible */
        .hero-fixed-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 3;
            text-align: center;
            color: #fff;
            width: 95%;
            max-width: 100%;
            padding: 0 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .hero-logo {
            width: 120px;
            height: 120px;
            margin: 0 auto 1rem;
            filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.8));
            animation: heroLogo 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
            flex-shrink: 0;
        }
        
        .hero-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        @keyframes heroLogo {
            0% {
                opacity: 0;
                transform: scale(0.5) rotate(-180deg);
                filter: blur(20px) drop-shadow(0 0 40px rgba(255, 255, 255, 0.8));
            }
            100% {
                opacity: 1;
                transform: scale(1) rotate(0deg);
                filter: blur(0) drop-shadow(0 0 40px rgba(255, 255, 255, 0.8));
            }
        }
        
        .hero-fixed-content h1 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 0.8rem;
            margin-top: 0;
            font-family: 'Orbitron', sans-serif;
            color: #fff;
            text-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            letter-spacing: 4px;
            animation: heroTitle 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }
        
        @keyframes heroTitle {
            0% {
                opacity: 0;
                transform: translateY(50px) scale(0.9);
                filter: blur(10px);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
                filter: blur(0);
            }
        }
        
        .hero-fixed-content h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
            margin-top: 0;
            color: #fff;
            text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 1.5s ease 0.5s forwards;
            opacity: 0;
        }
        
        .hero-fixed-content p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.95);
            text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
            font-weight: 300;
            margin-bottom: 2rem;
            margin-top: 0;
            animation: fadeInUp 1.5s ease 0.7s forwards;
            opacity: 0;
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
            from {
                opacity: 0;
                transform: translateY(30px);
            }
        }
        
        .hero-buttons {
            animation: fadeInUp 1.5s ease 1s forwards;
            opacity: 0;
            display: flex;
            gap: 0.8rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn-hero {
            padding: 1rem 2.5rem;
            font-size: 1rem;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-primary-hero {
            background: var(--gradient-main);
            border: none;
            color: #fff;
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
        }
        
        .btn-primary-hero:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.5);
            color: #fff;
        }
        
        .btn-outline-hero {
            background: transparent;
            border: 3px solid #fff;
            color: #fff;
        }
        
        .btn-outline-hero:hover {
            background: #fff;
            color: var(--dark);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.5);
        }
        
        .carousel-control-prev,
        .carousel-control-next {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.9;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            z-index: 4;
        }
        
        .carousel-control-prev {
            left: 40px;
        }
        
        .carousel-control-next {
            right: 40px;
        }
        
        html[dir="rtl"] .carousel-control-prev {
            left: auto;
            right: 40px;
        }
        
        html[dir="rtl"] .carousel-control-next {
            right: auto;
            left: 40px;
        }
        
        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            opacity: 1;
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
        }
        
        .carousel-indicators {
            bottom: 40px;
            z-index: 4;
        }
        
        .carousel-indicators button {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            margin: 0 8px;
            background: rgba(255, 255, 255, 0.5);
            border: 2px solid #fff;
            transition: all 0.3s ease;
        }
        
        .carousel-indicators button.active {
            background: #fff;
            transform: scale(1.3);
        }
        
        /* Hero Slides from Database */
        .hero-slides-section {
            padding: 0;
            background: transparent;
            position: relative;
        }
        
        .hero-carousel .carousel-item {
            height: 75vh;
            position: relative;
            overflow: hidden;
        }
        
        .hero-carousel .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.4) 0%, rgba(240, 147, 251, 0.4) 100%);
            z-index: 2;
        }
        
        .hero-carousel .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.6) saturate(1.2);
            transform: scale(1.1);
            transition: transform 8s ease;
        }
        
        .hero-carousel .carousel-item.active img {
            transform: scale(1);
        }
        
        .hero-carousel .carousel-caption {
            bottom: 50%;
            transform: translateY(50%);
            z-index: 3;
            left: 5%;
            right: 5%;
        }
        
        .hero-carousel .carousel-caption h3 {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            font-family: 'Orbitron', sans-serif;
            text-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
            letter-spacing: 3px;
        }
        
        .hero-carousel .carousel-caption p {
            font-size: 1.8rem;
            text-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
            font-weight: 300;
        }
        
        /* Services Section - REMOVED ANIMATIONS */
        .services-section {
            padding: 150px 0;
            background: transparent;
            position: relative;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 5rem;
            position: relative;
            z-index: 10;
        }
        
        .section-title h2 {
            font-size: 4.5rem;
            font-weight: 900;
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
            font-family: 'Orbitron', sans-serif;
            letter-spacing: 3px;
        }
        
        .section-title p {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 300;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }
        
        .service-card {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 30px;
            padding: 3rem;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid rgba(102, 126, 234, 0.1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            display: flex;
            flex-direction: column;
            min-height: 400px;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(102, 126, 234, 0.3), transparent 30%);
            animation: rotate 4s linear infinite;
            opacity: 0;
            transition: opacity 0.6s;
        }
        
        .service-card:hover::before {
            opacity: 1;
        }
        
        .service-card::after {
            content: '';
            position: absolute;
            inset: 2px;
            background: rgba(15, 23, 42, 0.95);
            border-radius: 28px;
            z-index: 1;
        }
        
        .service-card > * {
            position: relative;
            z-index: 2;
        }
        
        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            border-color: rgba(102, 126, 234, 0.5);
            box-shadow: 0 30px 80px rgba(102, 126, 234, 0.4);
        }
        
        .service-icon {
            width: 100px;
            height: 100px;
            background: var(--gradient-main);
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            font-size: 2.5rem;
            color: #fff;
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .service-card:hover .service-icon {
            transform: rotateY(360deg) scale(1.1);
            box-shadow: 0 20px 60px rgba(102, 126, 234, 0.6);
        }
        
        .service-card h4 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #fff;
        }
        
        .service-card p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.9;
            font-size: 1.05rem;
            flex-grow: 1;
        }
        
        /* Statistics */
        .stats-section {
            padding: 120px 0;
            background: transparent;
            color: #fff;
            position: relative;
        }
        
        .stat-card {
            text-align: center;
            padding: 3rem;
            position: relative;
        }
        
        .stat-icon {
            font-size: 4rem;
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
            filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.5));
        }
        
        .stat-number {
            font-size: 5rem;
            font-weight: 900;
            margin-bottom: 1rem;
            font-family: 'Orbitron', sans-serif;
            background: linear-gradient(135deg, #fff 0%, rgba(102, 126, 234, 0.8) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .stat-label {
            font-size: 1.4rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 300;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        /* ========== FIXED PROJECTS CAROUSEL ========== */
        .projects-section {
            padding: 150px 0;
            background: transparent;
            color: #fff;
            position: relative;
            min-height: auto;
        }
        
        .projects-carousel {
            position: relative;
            width: 100%;
            min-height: 700px;
        }
        
        .projects-carousel .carousel-item {
            display: none !important;
            min-height: 700px;
            padding: 2rem;
        }
        
        .projects-carousel .carousel-item.active {
            display: flex !important;
            align-items: center;
            justify-content: center;
        }
        
        .projects-carousel .carousel-inner {
            width: 100%;
            border-radius: 40px;
            min-height: 700px;
        }
        
        .project-card {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 40px;
            overflow: hidden;
            box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid rgba(102, 126, 234, 0.3);
            backdrop-filter: blur(25px);
            position: relative;
            display: flex;
            height: 600px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .project-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
            transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1;
        }
        
        .project-card:hover::before {
            left: 100%;
        }
        
        .project-card:hover {
            transform: translateY(-25px) scale(1.03);
            box-shadow: 0 50px 120px rgba(102, 126, 234, 0.6);
            border-color: rgba(102, 126, 234, 0.9);
        }
        
        .project-image-wrapper {
            position: relative;
            overflow: hidden;
            width: 45%;
            height: 100%;
            flex-shrink: 0;
        }
        
        .project-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
            filter: brightness(0.75) saturate(1.2);
        }
        
        .project-card:hover .project-image {
            transform: scale(1.2) rotate(3deg);
            filter: brightness(1) saturate(1.4);
        }
        
        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
            opacity: 1;
            transition: opacity 0.6s;
            z-index: 1;
        }
        
        .project-card:hover .project-overlay {
            opacity: 0.6;
        }
        
        .project-info {
            padding: 4rem;
            position: relative;
            z-index: 2;
            width: 55%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: rgba(15, 23, 42, 0.8);
        }
        
        .project-category {
            display: inline-block;
            background: var(--gradient-main);
            color: #fff;
            padding: 0.7rem 1.8rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            width: fit-content;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        }
        
        .project-info h4 {
            font-size: 2.8rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            font-family: 'Orbitron', sans-serif;
            letter-spacing: 2px;
            color: #fff;
            text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            line-height: 1.2;
        }
        
        .project-info p {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.8;
            font-size: 1.15rem;
            margin-bottom: 2rem;
            font-weight: 300;
        }
        
        /* Contact Section */
        .contact-section {
            padding: 150px 0;
            background: transparent;
            position: relative;
        }
        
        .contact-form {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 30px;
            padding: 4rem;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
            border: 2px solid rgba(102, 126, 234, 0.2);
            backdrop-filter: blur(20px);
        }
        
        .contact-form h3 {
            color: #fff;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 2rem;
        }
        
        .form-control {
            border: 2px solid rgba(102, 126, 234, 0.3);
            border-radius: 15px;
            padding: 1.2rem;
            font-size: 1.1rem;
            background: rgba(255, 255, 255, 0.05);
            color: #fff;
            transition: all 0.3s ease;
        }
        
        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        
        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
        }
        
        .contact-info {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(240, 147, 251, 0.2) 100%);
            color: #fff;
            border-radius: 30px;
            padding: 4rem;
            border: 2px solid rgba(102, 126, 234, 0.3);
            backdrop-filter: blur(20px);
        }
        
        .contact-info h3 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 3rem;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 3rem;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            transition: all 0.3s ease;
        }
        
        html[dir="rtl"] .contact-item {
            flex-direction: row-reverse;
        }
        
        .contact-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(10px);
        }
        
        html[dir="rtl"] .contact-item:hover {
            transform: translateX(-10px);
        }
        
        .contact-item i {
            font-size: 2.5rem;
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-right: 2rem;
            flex-shrink: 0;
        }
        
        html[dir="rtl"] .contact-item i {
            margin-right: 0;
            margin-left: 2rem;
        }
        
        .contact-item h5 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .social-links {
            display: flex;
            gap: 1.5rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }
        
        html[dir="rtl"] .social-links {
            justify-content: flex-end;
        }
        
        .social-link {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
        }
        
        .social-link:hover {
            background: var(--gradient-main);
            transform: translateY(-8px) rotate(360deg);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
            border-color: #fff;
        }
        
        /* Notification */
        .notification {
            position: fixed;
            top: 100px;
            right: 30px;
            padding: 1.5rem 2rem;
            border-radius: 15px;
            color: #fff;
            font-weight: 600;
            z-index: 10000;
            opacity: 0;
            transform: translateX(400px);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }
        
        html[dir="rtl"] .notification {
            right: auto;
            left: 30px;
            transform: translateX(-400px);
        }
        
        .notification.show {
            opacity: 1;
            transform: translateX(0);
        }
        
        .notification.success {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        }
        
        .notification.error {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
        }
        
        .notification i {
            margin-right: 1rem;
            font-size: 1.5rem;
        }
        
        html[dir="rtl"] .notification i {
            margin-right: 0;
            margin-left: 1rem;
        }
        
        /* WhatsApp Float - FIXED POSITIONING */
        .whatsapp-float {
            position: fixed;
            bottom: 120px;
            right: 40px;
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
            z-index: 999;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: whatsappPulse 2s ease-in-out infinite;
        }
        
        html[dir="rtl"] .whatsapp-float {
            right: auto;
            left: 40px;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.15) rotate(360deg);
            box-shadow: 0 15px 60px rgba(37, 211, 102, 0.8);
        }
        
        .whatsapp-float i {
            font-size: 2.2rem;
            color: #fff;
        }
        
        @keyframes whatsappPulse {
            0%, 100% {
                box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
            }
            50% {
                box-shadow: 0 10px 40px rgba(37, 211, 102, 0.8), 0 0 0 20px rgba(37, 211, 102, 0);
            }
        }
        
        /* Footer - SOLID BACKGROUND */
        footer {
            background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
            color: rgba(255, 255, 255, 0.8);
            padding: 5rem 0 2rem;
            border-top: 1px solid rgba(102, 126, 234, 0.2);
            position: relative;
            z-index: 2;
        }
        
        .footer-logo {
            width: 80px;
            height: 80px;
            margin-bottom: 1.5rem;
            filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.6));
        }
        
        .footer-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        .footer-brand {
            font-size: 3rem;
            font-weight: 900;
            font-family: 'Orbitron', sans-serif;
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
        }
        
        footer h5 {
            color: #fff;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
        }
        
        footer a {
            color: rgba(255, 255, 255, 0.7);
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        footer a:hover {
            color: #fff;
            transform: translateX(5px);
        }
        
        /* Scroll to Top */
        .scroll-top {
            position: fixed;
            bottom: 40px;
            right: 40px;
            width: 60px;
            height: 60px;
            background: var(--gradient-main);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1000;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
            font-size: 1.5rem;
        }
        
        html[dir="rtl"] .scroll-top {
            right: auto;
            left: 40px;
        }
        
        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-top:hover {
            transform: translateY(-10px) scale(1.1);
            box-shadow: 0 20px 50px rgba(102, 126, 234, 0.6);
        }
        
        /* ====== RESPONSIVE DESIGN ====== */
        
        @media (max-width: 1399px) {
            .project-card {
                height: 550px;
            }
            .project-info h4 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 1199px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .projects-carousel {
                min-height: 650px;
            }
            .projects-carousel .carousel-item {
                min-height: 650px;
            }
            .projects-carousel .carousel-inner {
                min-height: 650px;
            }
            .project-card {
                height: 500px;
            }
            .project-image-wrapper {
                width: 50%;
            }
            .project-info {
                width: 50%;
            }
        }
        
        @media (max-width: 991px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
            .projects-carousel {
                min-height: 600px;
            }
            .projects-carousel .carousel-item {
                min-height: 600px;
                padding: 1rem;
            }
            .projects-carousel .carousel-inner {
                min-height: 600px;
            }
            .project-card {
                flex-direction: column;
                height: auto;
                max-width: 100%;
            }
            .project-image-wrapper {
                width: 100%;
                height: 400px;
            }
            .project-info {
                width: 100%;
                padding: 2.5rem;
            }
            .project-info h4 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 767px) {
            .projects-carousel {
                min-height: 500px;
            }
            .projects-carousel .carousel-item {
                min-height: 500px;
                padding: 0.5rem;
            }
            .projects-carousel .carousel-inner {
                min-height: 500px;
            }
            .project-card {
                border-radius: 25px;
            }
            .project-image-wrapper {
                height: 300px;
            }
            .project-info {
                padding: 2rem;
            }
            .project-info h4 {
                font-size: 1.6rem;
                margin-bottom: 1rem;
            }
            .project-info p {
                font-size: 1rem;
                line-height: 1.7;
            }
        }
        
        @media (max-width: 575px) {
            .projects-carousel {
                min-height: 450px;
            }
            .projects-carousel .carousel-item {
                min-height: 450px;
            }
            .projects-carousel .carousel-inner {
                min-height: 450px;
            }
        }
    