
        /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #000;
            color: #fff;
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        body[dir="rtl"] {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .app {
            position: relative;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Screen reader only - for SEO semantic headings */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* SEO descriptive text (crawlable but hidden) */
        .seo-description {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
            font-size: 16px;
            color: #333;
        }

        /* Language Switcher */
        .language-switcher {
            position: relative;
            display: inline-block;
        }

        .language-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 6px;
            color: #d1d5db;
            cursor: pointer;
            transition: all 0.3s;
        }

        .language-btn:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(34, 211, 238, 0.5);
        }

        .language-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            width: 140px;
            background: rgba(0, 0, 0, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 6px;
            padding: 8px 0;
            margin-top: 8px;
            backdrop-filter: blur(20px);
            z-index: 1000;
            display: none;
        }

        .language-dropdown.active {
            display: block;
        }

        .language-option {
            padding: 10px 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .language-option:hover {
            background: rgba(34, 211, 238, 0.1);
        }

        .language-option.active {
            background: rgba(34, 211, 238, 0.2);
        }

        /* RTL support */
        body[dir="rtl"] .header .container,
        body[dir="rtl"] .desktop-nav,
        body[dir="rtl"] .logo-container,
        body[dir="rtl"] .hero-buttons,
        body[dir="rtl"] .feature-card,
        body[dir="rtl"] .contact-links,
        body[dir="rtl"] .footer-links,
        body[dir="rtl"] .social-links,
        body[dir="rtl"] .form-row,
        body[dir="rtl"] .benefits-card li,
        body[dir="rtl"] .team-stats,
        body[dir="rtl"] .service-card,
        body[dir="rtl"] .contact-card {
            direction: rtl;
        }

        body[dir="rtl"] .desktop-nav {
            gap: 1.5rem;
        }

        body[dir="rtl"] .nav-link::after {
            left: auto;
            right: 0;
        }

        body[dir="rtl"] .hero-badge,
        body[dir="rtl"] .section-badge {
            direction: ltr;
            display: inline-flex;
        }

        /* Animated Background */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 0;
        }

        .gradient-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom right, rgba(107, 33, 168, 0.2), rgba(30, 58, 138, 0.2), rgba(20, 184, 166, 0.2));
        }

        .pulse-circle-1 {
            position: absolute;
            top: 0;
            left: 25%;
            width: 24rem;
            height: 24rem;
            background-color: rgba(147, 51, 234, 0.1);
            border-radius: 9999px;
            filter: blur(48px);
            animation: pulse 4s infinite;
        }

        .pulse-circle-2 {
            position: absolute;
            bottom: 0;
            right: 25%;
            width: 24rem;
            height: 24rem;
            background-color: rgba(59, 130, 246, 0.1);
            border-radius: 9999px;
            filter: blur(48px);
            animation: pulse 4s infinite;
            animation-delay: 1s;
        }

        .pulse-circle-3 {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 24rem;
            height: 24rem;
            background-color: rgba(20, 184, 166, 0.1);
            border-radius: 9999px;
            filter: blur(48px);
            animation: pulse 4s infinite;
            animation-delay: 2s;
        }

        /* Animations */
        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.5;
            }
        }

        @keyframes ping {

            75%,
            100% {
                transform: scale(2);
                opacity: 0;
            }
        }

        @keyframes draw {
            to {
                stroke-dashoffset: 0;
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes float-fixed {

            0%,
            100% {
                transform: translateY(0) scale(1);
            }

            50% {
                transform: translateY(-10px) scale(1.05);
            }
        }

        .animate-pulse {
            animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }

        .animate-ping {
            animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
        }

        .animate-float {
            animation: float 3s ease-in-out infinite;
        }


        /* Header */
        .header {
            position: sticky;
            top: 0;
            z-index: 50;
            width: 100%;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            background-color: rgba(0, 0, 0, 0.5);
            height: 70px;
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;

            position: relative;
            z-index: 10;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .logo-text {
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            letter-spacing: -0.5px;
            line-height: 1;
        }

        .logo-primary {
            color: #3b82f6;
            font-size: 1.5rem;
            font-weight: 800;
            display: block;
        }

        .logo-secondary {
            color: #9ca3af;
            font-size: 0.9rem;
            font-weight: 400;
            display: block;
            margin-top: -2px;
        }

        .desktop-nav {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .nav-link {
            position: relative;
            font-size: 0.875rem;
            font-weight: 500;
            color: #d1d5db;
            text-decoration: none;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: #22d3ee;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -0.25rem;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #22d3ee;
            transition: width 0.3s;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #d1d5db;
            font-size: 1.25rem;
            cursor: pointer;
        }

        .mobile-menu-btn:hover {
            color: #22d3ee;
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            flex-direction: column;
            padding: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            transform: translateY(-10px);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .mobile-menu.active {
            display: flex;
            transform: translateY(0);
            opacity: 1;
        }

        .mobile-nav-link {
            padding: 1rem;
            color: #d1d5db;
            text-decoration: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: color 0.3s;
        }

        .mobile-nav-link:hover {
            color: #22d3ee;
        }

        /* Hero Section */
        .hero-section {
            padding: 80px 0;
            position: relative;
            z-index: 10;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            border: 1px solid rgba(6, 182, 212, 0.3);
            background-color: rgba(6, 182, 212, 0.1);
            backdrop-filter: blur(10px);
        }

        .pulse-dot {
            width: 8px;
            height: 8px;
            background-color: #22d3ee;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: bold;
            line-height: 1.2;
        }

        .hero-title-line1 {
            background: linear-gradient(to right, #fff, #bae6fd, #e9d5ff);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .hero-title-line2 {
            background: linear-gradient(to right, #22d3ee, #c084fc, #f472b6);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .hero-title-line3 {
            color: white;
        }

        .hero-description {
            font-size: 1.25rem;
            color: #d1d5db;
            max-width: 600px;
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            border-radius: 0.5rem;
            font-weight: 500;
            font-size: 1.125rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-gradient {
            background: linear-gradient(to right, #06b6d4, #a855f7);
            border: none;
            color: white;
            box-shadow: 0 10px 15px -3px rgba(6, 182, 212, 0.25);
        }

        .btn-gradient:hover {
            background: linear-gradient(to right, #0891b2, #9333ea);
            box-shadow: 0 20px 25px -5px rgba(6, 182, 212, 0.25);
            transform: translateY(-2px);
        }

        .btn-outline {
            border: 1px solid rgba(34, 211, 238, 0.5);
            color: #22d3ee;
            background-color: transparent;
        }

        .btn-outline:hover {
            background-color: rgba(6, 182, 212, 0.1);
            border-color: rgba(34, 211, 238, 0.8);
        }

        /* Stats container removed */

        .hero-image-container {
            position: relative;
        }

        .hero-image-glass {
            position: relative;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1.5rem;
            width: 100%;
            height: 300px;
        }

        .hero-image-glass {
            position: relative;
            border-radius: 1.5rem;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            width: 100%;
            height: 300px;
        }

        .hero-image-glass::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
            border-radius: 1.5rem;
        }

        .hero-image-glass img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 1rem;
        }

        .status-badge {
            position: absolute;
            backdrop-filter: blur(10px);
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 0.75rem;
            border-radius: 0.75rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .status-indicator {
            width: 12px;
            height: 12px;
            background-color: #4ade80;
            border-radius: 50%;
            box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
            animation: pulse 2s infinite;
        }

        /* Glass Card Effect */
        .card-glass {
            backdrop-filter: blur(10px);
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 0.75rem;
            transition: all 0.5s;
        }

        .card-glass:hover {
            border-color: rgba(34, 211, 238, 0.5);
            box-shadow: 0 20px 25px -5px rgba(34, 211, 238, 0.1),
                0 8px 10px -6px rgba(34, 211, 238, 0.1);
        }

        /* Services Section */
        .services-section {
            padding: 80px 0;
            position: relative;
            z-index: 10;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(10px);
        }

        .purple {
            border: 1px solid rgba(168, 85, 247, 0.3);
            background-color: rgba(168, 85, 247, 0.1);
        }

        .section-badge span {
            font-size: 0.875rem;
            color: #d8b4fe;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .section-title-line1 {
            background: linear-gradient(to right, #fff, #e5e7eb);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .section-title-line2 {
            background: linear-gradient(to right, #22d3ee, #c084fc);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .section-description {
            font-size: 1.25rem;
            color: #d1d5db;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            display: flex;
            flex-direction: column;
            height: 100%;
            transition: all 0.3s ease-in-out;
        }

        .service-icon {
            width: 4rem;
            height: 4rem;
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            transition: transform 0.3s ease-in-out;
        }

        .service-card:hover .service-icon {
            transform: scale(1.05);
        }

        .cyan {
            border: 1px solid rgba(34, 211, 238, 0.3);
            background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.2), rgba(59, 130, 246, 0.2));
        }

        .green {
            border: 1px solid rgba(74, 222, 128, 0.3);
            background: linear-gradient(to bottom right, rgba(74, 222, 128, 0.2), rgba(52, 211, 153, 0.2));
        }

        .purple {
            border: 1px solid rgba(168, 85, 247, 0.3);
            background: linear-gradient(to bottom right, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
        }

        .orange {
            border: 1px solid rgba(251, 146, 60, 0.3);
            background: linear-gradient(to bottom right, rgba(251, 146, 60, 0.2), rgba(239, 68, 68, 0.2));
        }

        .red {
            border: 1px solid rgba(248, 113, 113, 0.3);
            background: linear-gradient(to bottom right, rgba(248, 113, 113, 0.2), rgba(236, 72, 153, 0.2));
        }

        .teal {
            border: 1px solid rgba(45, 212, 191, 0.3);
            background: linear-gradient(to bottom right, rgba(45, 212, 191, 0.2), rgba(6, 182, 212, 0.2));
        }

        .service-icon i {
            font-size: 1.5rem;
        }

        .cyan i {
            color: #22d3ee;
        }

        .green i {
            color: #4ade80;
        }

        .purple i {
            color: #c084fc;
        }

        .orange i {
            color: #fb923c;
        }

        .red i {
            color: #f87171;
        }

        .teal i {
            color: #2dd4bf;
        }

        .service-content h3 {
            font-size: 1.25rem;
            font-weight: bold;
            color: white;
            margin-bottom: 0.5rem;
        }

        .service-content p {
            color: #d1d5db;
            font-size: 1rem;
            line-height: 1.5;
        }

        /* About Section */
        .about-section {
            padding: 80px 0;
            position: relative;
            z-index: 10;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .about-content {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .blue {
            border: 1px solid rgba(59, 130, 246, 0.3);
            background-color: rgba(59, 130, 246, 0.1);
        }

        .blue span {
            color: #93c5fd;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1rem;
        }

        .feature-card {
            display: flex;
            gap: 1rem;
            padding: 1rem;
            border-radius: 0.75rem;
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .feature-icon {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-icon i {
            font-size: 1.25rem;
        }

        .feature-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: white;
            margin-bottom: 0.25rem;
        }

        .feature-card p {
            font-size: 0.875rem;
            color: #d1d5db;
        }

        .about-image-container {
            position: relative;
        }

        .about-image-glass {
            position: relative;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 2rem;
        }

        .about-image-glass img {
            width: 100%;
            height: auto;
            border-radius: 1rem;
        }

        /* Team Section */
        .team-section {
            padding: 80px 0;
            position: relative;
            z-index: 10;
        }

        .green {
            border: 1px solid rgba(74, 222, 128, 0.3);
            background-color: rgba(74, 222, 128, 0.1);
        }

        .green span {
            color: #6ee7b7;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .team-card {
            text-align: center;
            border-radius: 0.75rem;
            transition: all 0.5s;
            backdrop-filter: blur(10px);
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .team-card:hover {
            border-color: rgba(168, 85, 247, 0.5);
            box-shadow: 0 20px 25px -5px rgba(168, 85, 247, 0.1),
                0 8px 10px -6px rgba(168, 85, 247, 0.1);
        }

        .team-member {
            padding: 2rem;
        }

        .profile-img {
            width: 8rem;
            height: 8rem;
            border-radius: 9999px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(to bottom right, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
            border: 1px solid rgba(139, 92, 246, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.5rem;
            transition: transform 0.3s ease;
        }

        .team-card:hover .profile-img {
            transform: scale(1.05);
        }

        .profile-img.ceo {
            background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.2), rgba(147, 51, 234, 0.2));
            border: 1px solid rgba(59, 130, 246, 0.3);
        }

        .profile-img.cto {
            background: linear-gradient(to bottom right, rgba(16, 185, 129, 0.2), rgba(59, 130, 246, 0.2));
            border: 1px solid rgba(16, 185, 129, 0.3);
        }

        .team-member h3 {
            font-size: 1.25rem;
            font-weight: bold;
            color: white;
            margin-bottom: 0.25rem;
        }

        .position {
            color: #d1d5db;
            font-size: 1.125rem;
            margin-bottom: 1rem;
        }

        .bio {
            color: #9ca3af;
            margin-bottom: 1.5rem;
        }

        .contact-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
        }

        .contact-links a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
            color: #d1d5db;
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-links a:hover {
            color: #22d3ee;
        }

        /* Team stats removed */

        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            position: relative;
            z-index: 10;
        }

        .pink {
            border: 1px solid rgba(244, 114, 182, 0.3);
            background-color: rgba(244, 114, 182, 0.1);
        }

        .pink span {
            color: #f9a8d4;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .contact-form-container {
            padding: 2rem;
            border-radius: 0.75rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            backdrop-filter: blur(10px);
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .contact-form-container h3 {
            font-size: 1.5rem;
            font-weight: bold;
            color: white;
            margin-bottom: 0.5rem;
        }

        .contact-form-container p {
            color: #d1d5db;
            margin-bottom: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .form-field {
            margin-bottom: 1rem;
        }

        .form-field label {
            display: block;
            font-size: 0.875rem;
            font-weight: 600;
            color: #e5e7eb;
            margin-bottom: 0.5rem;
        }

        .form-field input,
        .form-field textarea {
            width: 100%;
            background-color: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 0.75rem;
            border-radius: 0.375rem;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s;
        }

        .form-field input::placeholder,
        .form-field textarea::placeholder {
            color: #9ca3af;
        }

        .form-field input:focus,
        .form-field textarea:focus {
            outline: none;
            border-color: rgba(34, 211, 238, 0.5);
            box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.1);
            background-color: rgba(255, 255, 255, 0.1);
        }

        .form-field textarea {
            resize: vertical;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-card {
            display: flex;
            gap: 1rem;
            padding: 1.5rem;
            border-radius: 1rem;
            backdrop-filter: blur(10px);
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s;
        }

        .contact-card:hover {
            border-color: rgba(34, 211, 238, 0.3);
            transform: translateY(-2px);
        }

        .contact-icon {
            width: 3.5rem;
            height: 3.5rem;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-card h3 {
            font-size: 1.125rem;
            font-weight: 600;
            color: white;
            margin-bottom: 0.25rem;
        }

        .contact-card p {
            color: #d1d5db;
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
        }

        .contact-card a {
            color: #d4edf1;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .contact-card a:hover {
            color: #cfe7ec;
        }

        address {
            font-style: normal;
            color: #d1d5db;
            font-size: 0.875rem;
            line-height: 1.5;
        }

        .benefits-card {
            padding: 2rem;
            border-radius: 0.75rem;
            background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.1), rgba(168, 85, 247, 0.1));
            border: 1px solid rgba(34, 211, 238, 0.2);
        }

        .benefits-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: white;
            margin-bottom: 1.5rem;
            text-align: center;
            background: linear-gradient(to right, #22d3ee, #c084fc);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .benefits-card ul {
            list-style: none;
        }

        .benefits-card li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        /* New animated SVG check marks */
        .check-svg {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
            position: relative;
        }

        .check-path {
            stroke-dasharray: 22;
            stroke-dashoffset: 22;
            animation: draw 0.6s forwards;
            animation-delay: calc(var(--animation-order) * 0.2s);
            stroke-linecap: round;
            stroke-linejoin: round;
            stroke-width: 2;
        }

        .cyan-check {
            stroke: #22d3ee;
            fill: rgba(34, 211, 238, 0.1);
        }

        .green-check {
            stroke: #4ade80;
            fill: rgba(74, 222, 128, 0.1);
        }

        .purple-check {
            stroke: #c084fc;
            fill: rgba(192, 132, 252, 0.1);
        }

        .orange-check {
            stroke: #fb923c;
            fill: rgba(251, 146, 60, 0.1);
        }

        /* Footer */
        .footer {
            padding: 3rem 0;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 10;
        }

        .footer .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
        }

        .footer-link {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-link:hover {
            color: #22d3ee;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(255, 255, 255, 0.1);
            color: #d1d5db;
            transition: all 0.3s;
        }

        .social-link:hover {
            background-color: rgba(34, 211, 238, 0.2);
            color: #22d3ee;
            transform: translateY(-2px);
        }

        .footer p {
            color: #9ca3af;
            font-size: 0.875rem;
        }

        .heart {
            color: #f87171;
        }

        /* Responsive Styles */
        @media (min-width: 768px) {
            .hero-grid {
                grid-template-columns: 1fr 1fr;
                align-items: center;
            }

            .hero-buttons {
                flex-direction: row;
            }

            .form-row {
                grid-template-columns: 1fr 1fr;
            }

            .contact-grid {
                grid-template-columns: 1fr 1fr;
            }

            .about-grid {
                grid-template-columns: 1fr 1fr;
                align-items: center;
            }

            .hero-image-glass {
                height: 400px;
            }

            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 767px) {
            .desktop-nav {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .hero-image-glass {
                height: 250px;
                padding: 1rem;
            }

            .footer-links {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }

            .language-switcher {
                margin-left: auto;
                margin-right: 15px;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Custom Classes */
        .gradient-text {
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        .btn-outline {
            background: transparent;
            border: 1px solid rgba(34, 211, 238, 0.5);
            color: #22d3ee;
            transition: all 0.3s;
        }

        .btn-outline:hover {
            background: #22d3ee1a;
        }

        /* Schedule Button Styles */
        .btn-schedule {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.5rem;
            background: linear-gradient(to right, #06b6d4, #a855f7);
            color: white;
            border-radius: 0.5rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s;
            margin-top: 0.5rem;
        }

        .btn-schedule:hover {
            background: linear-gradient(to right, #0891b2, #9333ea);
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(6, 182, 212, 0.25);
        }

        /* Form status message styles */
        .form-status {
            padding: 1rem;
            border-radius: 0.5rem;
            margin-top: 1rem;
            display: none;
        }

        .form-status.success {
            background-color: rgba(74, 222, 128, 0.1);
            border: 1px solid rgba(74, 222, 128, 0.3);
            color: #4ade80;
            display: block;
        }

        .form-status.error {
            background-color: rgba(248, 113, 113, 0.1);
            border: 1px solid rgba(248, 113, 113, 0.3);
            color: #f87171;
            display: block;
        }

        .form-status.loading {
            background-color: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.3);
            color: #3b82f6;
            display: block;
        }
   
