html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden; /* Prevent horizontal scroll on body */
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
}

/* Prevent horizontal overflow */
* {
    max-width: 100%;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

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

/* Language Toggle */
.language-toggle {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 4px;
    display: flex;
    gap: 2px;
}

.lang-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 13px;
    min-width: 50px;
}

.lang-btn.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
}

.lang-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1005;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    align-items: center;
    padding: 1.2rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    gap: 1rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
}

.header.scrolled .logo {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo::before {
    content: '🧠';
    margin-right: 0.5rem;
    font-size: 1.5rem;
    filter: grayscale(1) brightness(0) invert(1);
}

.header.scrolled .logo::before {
    filter: none;
}

.logo:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
}

.header.scrolled .logo:hover {
    background: transparent;
}

/* Navigation menu styles removed - keeping only language toggle */

/* Hamburger menu styles removed */

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.element-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 2rem;
    animation: slideInUp 0.8s ease-out;
}

.hero-badge span {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.2rem;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.title-line-1 {
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.title-line-2 {
    animation: slideInLeft 0.8s ease-out 0.4s both;
    color: white;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 500px;
    animation: slideInUp 0.8s ease-out 0.8s both;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    animation: slideInUp 0.8s ease-out 1s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd93d;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}



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

.btn-primary, .btn-secondary {
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-glow {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.hero-buttons {
    animation: slideInUp 0.8s ease-out 1.2s both;
}

/* AI Brain Visualization */
.hero-visual {
    animation: slideInRight 0.8s ease-out 0.6s both;
}

.ai-brain-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.ai-brain {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
}

.brain-core {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 70%);
    border-radius: 50%;
    position: relative;
    animation: brainPulse 3s ease-in-out infinite;
}

.neural-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.neuron {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #ffd93d;
    border-radius: 50%;
    animation: neuronPulse 2s ease-in-out infinite;
}

.neuron-1 { top: 20%; left: 30%; animation-delay: 0s; }
.neuron-2 { top: 30%; right: 20%; animation-delay: 0.4s; }
.neuron-3 { bottom: 30%; left: 20%; animation-delay: 0.8s; }
.neuron-4 { bottom: 20%; right: 30%; animation-delay: 1.2s; }
.neuron-5 { top: 50%; left: 50%; animation-delay: 1.6s; transform: translate(-50%, -50%); }

.connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 217, 61, 0.6), transparent);
    animation: connectionFlow 3s ease-in-out infinite;
}

.connection-1 {
    top: 25%;
    left: 35%;
    width: 30%;
    transform: rotate(45deg);
    animation-delay: 0.5s;
}

.connection-2 {
    top: 35%;
    right: 25%;
    width: 25%;
    transform: rotate(-45deg);
    animation-delay: 1s;
}

.connection-3 {
    bottom: 35%;
    left: 25%;
    width: 35%;
    transform: rotate(-30deg);
    animation-delay: 1.5s;
}

.connection-4 {
    bottom: 25%;
    right: 35%;
    width: 20%;
    transform: rotate(30deg);
    animation-delay: 2s;
}

.voice-visualization {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    align-items: end;
}

.sound-wave {
    width: 3px;
    background: linear-gradient(to top, #ff6b6b, #ffd93d);
    border-radius: 2px;
    animation: soundWave 1.5s ease-in-out infinite;
}

.wave-1 { height: 20px; animation-delay: 0s; }
.wave-2 { height: 35px; animation-delay: 0.1s; }
.wave-3 { height: 50px; animation-delay: 0.2s; }
.wave-4 { height: 30px; animation-delay: 0.3s; }
.wave-5 { height: 25px; animation-delay: 0.4s; }

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    animation: floatIcon 4s ease-in-out infinite;
}

.icon-phone {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.icon-chart {
    top: 15%;
    right: 15%;
    animation-delay: 1s;
}

.icon-brain {
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.icon-microphone {
    bottom: 15%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes brainPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 1;
    }
}

@keyframes neuronPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 217, 61, 0.7);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 0 10px rgba(255, 217, 61, 0);
    }
}

@keyframes connectionFlow {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes soundWave {
    0%, 100% {
        transform: scaleY(0.5);
    }
    50% {
        transform: scaleY(1.5);
    }
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
    }
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: #f8f9fa;
    position: relative;
}

.services h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    background: linear-gradient(135deg, #333, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

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

.service-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Features Section */
.features {
    padding: 8rem 0;
    background: white;
    position: relative;
}



.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #333, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.features-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 3rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-primary {
    border-left: 4px solid #667eea;
}

.feature-secondary {
    border-left: 4px solid #ff6b6b;
}

.feature-accent {
    border-left: 4px solid #ffd93d;
}

.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon-advanced {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 30px;
    animation: iconRotate 20s linear infinite;
}

.feature-primary .icon-bg {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.feature-secondary .icon-bg {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
}

.feature-accent .icon-bg {
    background: linear-gradient(135deg, #ffd93d, #ffed4e);
}

.feature-icon-advanced i {
    font-size: 2.5rem;
    color: white;
    z-index: 2;
    position: relative;
}

.icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #667eea;
    border-radius: 30px;
    animation: iconPulse 4s ease-in-out infinite;
}

.data-flow {
    position: absolute;
    width: 100%;
    height: 100%;
}

.data-point {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: dataFlow 6s ease-in-out infinite;
}

.data-point:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.data-point:nth-child(2) {
    top: 50%;
    right: 20%;
    animation-delay: 1s;
}

.data-point:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: 2s;
}

.brain-waves {
    position: absolute;
    width: 100%;
    height: 100%;
}

.wave-line {
    position: absolute;
    width: 2px;
    height: 30px;
    background: white;
    border-radius: 1px;
    animation: brainWave 2s ease-in-out infinite;
}

.wave-line:nth-child(1) {
    left: 30%;
    top: 30%;
    animation-delay: 0s;
}

.wave-line:nth-child(2) {
    left: 50%;
    top: 20%;
    animation-delay: 0.3s;
}

.wave-line:nth-child(3) {
    right: 30%;
    top: 40%;
    animation-delay: 0.6s;
}

.feature-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.feature-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.highlight-item {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
}

.feature-metrics {
    display: flex;
    gap: 2rem;
}

.metric {
    text-align: center;
}

.metric-number {
    font-size: 2rem;
    font-weight: 800;
    color: #667eea;
    line-height: 1;
}

.metric-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.feature-progress {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.progress-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.progress-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    min-width: 120px;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffd93d, #ffed4e);
    border-radius: 4px;
    transition: width 2s ease-in-out;
}

@keyframes iconRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes dataFlow {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@keyframes brainWave {
    0%, 100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(1.5);
    }
}

/* Coming Soon Section */
.coming-soon {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.coming-soon h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.coming-soon-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.coming-soon-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.coming-soon-icon i {
    font-size: 2rem;
    color: white;
}

.coming-soon-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.coming-soon-item p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: #f8f9fa;
    position: relative;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #333, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f3f4;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    margin-bottom: 0.5rem;
}

.contact-icon i {
    font-size: 2rem;
    color: white;
}

.contact-details h3 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #666;
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
    font-weight: 500;
}

.contact-link {
    display: inline-block;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 20px;
    border: 2px solid #667eea;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}





/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    color: #667eea;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-logo p {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #667eea;
}

.footer-contact p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

/* Arabic RTL Support */
body[dir="rtl"] {
    direction: rtl;
}

body[dir="rtl"] .nav-menu {
    flex-direction: row-reverse;
}

body[dir="rtl"] .hero-container {
    grid-template-columns: 1fr 1fr;
}

body[dir="rtl"] .hero-buttons {
    justify-content: center;
}

body[dir="rtl"] .contact-content {
    grid-template-columns: 1fr 1fr;
}

/* Override RTL styles for mobile */
@media (max-width: 768px) {
    body[dir="rtl"] .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    body[dir="rtl"] .hero-buttons {
        justify-content: center;
        flex-direction: row;
    }
    
    body[dir="rtl"] .contact-content {
        grid-template-columns: 1fr;
    }
}

body[dir="rtl"] .contact-item {
    flex-direction: row-reverse;
    text-align: right;
}

body[dir="rtl"] .footer-content {
    text-align: right;
}

/* Mobile Language Options */
.mobile-language-options {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.mobile-lang-btn {
    padding: 12px 20px;
    border: 2px solid #667eea;
    background: transparent;
    color: #333;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.mobile-lang-btn:hover {
    background: #667eea;
    color: white;
}

.mobile-lang-btn.active {
    background: #667eea;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
        backdrop-filter: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .header.scrolled {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
        backdrop-filter: none;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .logo {
        color: white !important;
    }
    
    .header.scrolled .logo {
        color: white !important;
        background: none;
        -webkit-background-clip: unset;
        -webkit-text-fill-color: white;
    }
    
    /* Mobile navigation styles removed */
    

    
    .mobile-close-btn {
        background: none;
        border: none;
        font-size: 1.5rem;
        color: #333;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: 50%;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
    }
    
    .mobile-close-btn:hover {
         background: rgba(0, 0, 0, 0.1);
         transform: rotate(90deg);
     }
}

/* Hide mobile menu header on desktop */
.mobile-menu-header {
    display: none;
}

@media (max-width: 768px) {
    /* Mobile navigation styles removed */
    
    .logo {
        font-size: 1.5rem;
    }
    
    .nav {
         padding-left: 1rem;
         padding-right: 1rem;
         width: 100%;
         max-width: 100vw;
     }
    
    .hero {
        min-height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    .hero-container {
        text-align: center;
        gap: 1.5rem;
        max-width: calc(100vw - 20px);
        overflow-x: hidden;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .hero-title {
        font-size: 3rem;
        line-height: 1.1;
        margin-bottom: 1rem;
        margin-top: 0;
    }
    
    .hero-description {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        margin-top: 0.5rem;
        padding: 0 0.5rem;
        line-height: 1.4;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
        margin: 1.5rem 0;
        flex-wrap: nowrap;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        align-items: center;
        justify-content: center;
        margin-top: 1.5rem;
        flex-wrap: wrap;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: min(180px, 45vw);
        text-align: center;
        flex: 1;
        min-width: 140px;
        font-size: 1.1rem;
        padding: 14px 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .ai-brain-container {
        width: min(300px, 90vw);
        height: min(300px, 90vw);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .feature-metrics {
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .coming-soon-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 1.5rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon i {
        font-size: 1.5rem;
    }
    
    .contact-details h3 {
        font-size: 1.2rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
    }
    
    .contact-link {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 0.5rem;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hamburger {
        display: flex !important;
        z-index: 1002;
        position: relative;
        background: rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 8px;
        margin-right: 20px;
    }
    

    
    .mobile-language-options {
        display: flex;
    }
    
    .hero {
        margin-top: 80px;
    }
}

@media (max-width: 480px) {
    .hero-container {
        gap: 1.2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        padding: 0 0.3rem;
    }
    
    .hero-badge {
        margin-top: 20px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
        margin-top: 0;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        margin-top: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 1rem;
        margin: 2rem 0;
        justify-content: center;
        flex-wrap: nowrap;
    }
    
    .stat-item {
        flex: 1;
        min-width: 0;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 0.6rem;
        margin-top: 1.5rem;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: min(140px, 40vw);
        font-size: 0.9rem;
        padding: 10px 15px;
    }
    
    body[dir="rtl"] .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .service-card,
    .contact-form {
        padding: 1.5rem;
    }
    
    .ai-brain-container {
        width: min(250px, 80vw);
        height: min(250px, 80vw);
    }
    
    .feature-icon-advanced {
        width: 80px;
        height: 80px;
    }
    
    .feature-icon-advanced i {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .feature-content h3 {
        font-size: 1.4rem;
    }
    
    .contact-grid {
        gap: 1rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon i {
        font-size: 1.2rem;
    }
    
    .contact-details h3 {
        font-size: 1rem;
    }
    
    .contact-details p {
        font-size: 0.8rem;
    }
    
    .contact-link {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .container {
        padding: 0 0.5rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .nav {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
}

/* Small screen adjustments for language toggle */
@media (max-width: 320px) {
    .language-toggle {
        top: 5px;
        right: 5px;
        padding: 0.3rem;
    }
    
    .lang-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
}

/* Smooth scrolling handled by JavaScript */

/* Loading animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}