:root {
    --primary-color: #2A2D3E;
    --secondary-color: #6C63FF;
    --text-color: #333;
    --light-text: #fff;
    --background: #f8f9fa;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.lang-btn {
    border: none;
    background: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 15px;
    color: var(--text-color);
    transition: var(--transition);
}

.lang-btn.active {
    background: var(--secondary-color);
    color: var(--light-text);
}

/* Header */
.header {
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-color), #1a1c2a);
    color: var(--light-text);
    position: relative;
}

.nav {
    padding: 20px 50px;
}

.logo img {
    height: 50px;
}

.hero {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 800px;
}

.title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
}

/* Services Section */
.services {
    padding: 100px 50px;
    background: var(--background);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    text-align: center;
}

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

.service-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    padding: 100px 50px;
    text-align: center;
    background: white;
}

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

.contact-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.4);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--light-text);
    text-align: center;
    padding: 30px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer-legal {
    opacity: 0.7;
    font-size: 0.75rem;
    line-height: 1.4;
}

.legal-info {
    margin: 2px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .services {
        padding: 50px 20px;
    }
    
    .contact {
        padding: 50px 20px;
    }
    
    .footer {
        padding: 20px 15px;
    }
    
    .footer-legal {
        font-size: 0.7rem;
    }
} 

/* Add these styles after the .nav styles */
.logo-text {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--light-text);
    position: relative;
    display: inline-block;
}

.logo-highlight {
    color: var(--secondary-color);
    position: relative;
    font-weight: 600;
}

.logo-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary-color);
    transform: skew(-20deg);
    opacity: 0.3;
}

/* Add a cool hover effect */
.logo:hover .logo-text {
    transform: translateX(5px);
    transition: transform 0.3s ease;
} 

/* Add these styles after the header styles */
.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
} 