* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
overflow-x: hidden;
background: #0a0a0a;
color: #fff;
}

/* Navigation */
.navbar {
position: fixed;
top: 0;
width: 100%;
background: rgba(10, 10, 10, 0.95);
backdrop-filter: blur(10px);
padding: 20px 0;
z-index: 1000;
transition: all 0.3s ease;
}

.navbar.scrolled {
padding: 15px 0;
background: rgba(10, 10, 10, 0.98);
box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.nav-container {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 20px;
}

.nav-logo {
font-size: 1.8rem;
font-weight: 900;
background: linear-gradient(45deg, #667eea, #a8edea);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.nav-logo svg {
vertical-align: middle;
margin-right: 5px;
}

.nav-links {
display: flex;
list-style: none;
gap: 30px;
}

.nav-links a {
color: #fff;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
position: relative;
}

.nav-links a:hover {
color: #a8edea;
}

.nav-links a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: linear-gradient(45deg, #667eea, #a8edea);
transition: width 0.3s ease;
}

.nav-links a:hover::after {
width: 100%;
}

.nav-toggle {
display: none;
background: none;
border: none;
color: #fff;
font-size: 1.5rem;
cursor: pointer;
}

/* Hero Section */
.hero {
height: 100vh;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
position: relative;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}

.hero::before {
content: '';
position: absolute;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
background-size: 50px 50px;
animation: moveGrid 20s linear infinite;
}

@keyframes moveGrid {
0% { transform: translate(0, 0); }
100% { transform: translate(50px, 50px); }
}

.hero-content {
text-align: center;
z-index: 10;
padding: 20px;
}

.logo {
font-size: 3.5rem;
font-weight: 900;
letter-spacing: 3px;
margin-bottom: 20px;
text-transform: uppercase;
background: linear-gradient(45deg, #fff, #a8edea);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
0%, 100% { filter: drop-shadow(0 0 20px rgba(255,255,255,0.5)); }
50% { filter: drop-shadow(0 0 40px rgba(255,255,255,0.8)); }
}

.hero h1 {
font-size: 3rem;
margin-bottom: 30px;
animation: fadeInUp 1s ease;
}

.hero p {
font-size: 1.3rem;
margin-bottom: 40px;
opacity: 0.9;
animation: fadeInUp 1.2s ease;
}

@keyframes fadeInUp {
from {
    opacity: 0;
    transform: translateY(30px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

.cta-btn {
padding: 18px 50px;
font-size: 1.1rem;
background: #fff;
color: #667eea;
border: none;
border-radius: 50px;
cursor: pointer;
font-weight: 700;
transition: all 0.3s ease;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
animation: fadeInUp 1.4s ease;
}

.cta-btn:hover {
transform: translateY(-5px) scale(1.05);
box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* Floating elements */
.float-icon {
position: absolute;
font-size: 3rem;
opacity: 0.1;
animation: float 6s ease-in-out infinite;
}

.float-icon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.float-icon:nth-child(2) { top: 60%; right: 15%; animation-delay: 2s; }
.float-icon:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 4s; }

@keyframes float {
0%, 100% { transform: translateY(0) rotate(0deg); }
50% { transform: translateY(-30px) rotate(10deg); }
}

/* Services Section */
.services {
padding: 100px 20px;
background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
}

.section-title {
text-align: center;
font-size: 3rem;
margin-bottom: 60px;
background: linear-gradient(45deg, #667eea, #764ba2);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
gap: 40px;
max-width: 1200px;
margin: 0 auto;
}

.service-card {
background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
padding: 50px;
border-radius: 20px;
position: relative;
overflow: hidden;
transition: all 0.5s ease;
cursor: pointer;
}

.service-card::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
opacity: 0;
transition: opacity 0.5s ease;
}

.service-card:hover::before {
opacity: 1;
animation: ripple 1.5s ease-out;
}

@keyframes ripple {
from { transform: scale(0); }
to { transform: scale(1); }
}

.service-card:hover {
transform: translateY(-15px) scale(1.02);
box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
}

.service-icon {
font-size: 4rem;
margin-bottom: 25px;
display: inline-block;
background: linear-gradient(45deg, #667eea, #a8edea);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.service-card h3 {
font-size: 2rem;
margin-bottom: 20px;
color: #fff;
}

.service-card p {
font-size: 1.1rem;
line-height: 1.8;
color: rgba(255,255,255,0.9);
margin-bottom: 15px;
}

.service-card ul {
list-style: none;
margin-top: 25px;
}

.service-card ul li {
padding: 10px 0;
padding-left: 30px;
position: relative;
color: rgba(255,255,255,0.85);
}

.service-card ul li::before {
content: '⚡';
position: absolute;
left: 0;
color: #a8edea;
font-size: 1.2rem;
}

/* About Section */
.about {
padding: 100px 20px;
background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
}

.about-container {
max-width: 1200px;
margin: 0 auto;
}

.about-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
margin-top: 40px;
}

.about-text {
color: rgba(255,255,255,0.9);
}

.about-lead {
font-size: 1.3rem;
line-height: 1.8;
margin-bottom: 30px;
color: #fff;
}

.about-text p {
font-size: 1.1rem;
line-height: 1.8;
margin-bottom: 25px;
}

.about-features {
margin: 30px 0;
}

.feature-item {
display: flex;
align-items: center;
margin-bottom: 15px;
font-size: 1.1rem;
}

.feature-item i {
color: #a8edea;
margin-right: 15px;
font-size: 1.3rem;
}

.about-mission {
font-size: 1.2rem;
font-style: italic;
background: linear-gradient(45deg, #667eea, #a8edea);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-weight: 600;
margin-top: 30px;
padding: 20px;
border-left: 4px solid #667eea;
}

.about-stats {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}

.stat-card {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 30px;
border-radius: 15px;
text-align: center;
transition: all 0.3s ease;
}

.stat-card:hover {
transform: translateY(-10px) scale(1.05);
box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.stat-number {
font-size: 3rem;
font-weight: 900;
color: #fff;
margin-bottom: 10px;
}

.stat-label {
font-size: 1rem;
color: rgba(255,255,255,0.9);
font-weight: 600;
}

/* Partners Section */
.partners {
padding: 100px 20px;
background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
}

.partners-container {
max-width: 1200px;
margin: 0 auto;
}

.partners-subtitle {
text-align: center;
font-size: 1.2rem;
color: rgba(255,255,255,0.7);
margin-bottom: 60px;
}

.partners-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin-bottom: 80px;
}

.partner-card {
background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
padding: 40px;
border-radius: 15px;
text-align: center;
transition: all 0.4s ease;
cursor: pointer;
}

.partner-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.partner-logo {
font-size: 4rem;
margin-bottom: 20px;
background: linear-gradient(45deg, #667eea, #a8edea);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.partner-card h4 {
font-size: 1.4rem;
margin-bottom: 10px;
color: #fff;
}

.partner-card p {
color: rgba(255,255,255,0.8);
font-size: 1rem;
}

.partner-logos-banner {
background: rgba(102, 126, 234, 0.1);
padding: 40px 0;
border-radius: 15px;
overflow: hidden;
position: relative;
}

.logos-scroll {
display: flex;
animation: scroll 30s linear infinite;
width: fit-content;
}

.logo-item {
font-size: 1.5rem;
font-weight: 900;
color: rgba(255,255,255,0.6);
padding: 0 60px;
white-space: nowrap;
letter-spacing: 2px;
}

@keyframes scroll {
0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
}

.partner-logos-banner:hover .logos-scroll {
animation-play-state: paused;
}

/* Contact Section */
.contact {
padding: 100px 20px;
background: linear-gradient(rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9)), url('../img/photo-1542744173-8e7e53415bb0.avif');
background-size: cover;
background-position: center;
background-attachment: fixed;
position: relative;
}

.contact::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
animation: movePattern 30s linear infinite;
}

@keyframes movePattern {
0% { transform: translate(0, 0); }
100% { transform: translate(100px, 100px); }
}

.contact-container {
max-width: 700px;
margin: 0 auto;
position: relative;
z-index: 10;
}

.contact h2 {
text-align: center;
font-size: 3rem;
margin-bottom: 50px;
color: #fff;
}

.form-group {
margin-bottom: 30px;
}

.form-group label {
display: block;
margin-bottom: 10px;
font-size: 1.1rem;
font-weight: 600;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 18px;
border: none;
border-radius: 10px;
font-size: 1rem;
background: rgba(255,255,255,0.95);
transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
background: #fff;
transform: scale(1.02);
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.form-group textarea {
resize: vertical;
min-height: 150px;
}

.submit-btn {
width: 100%;
padding: 20px;
background: #fff;
color: #667eea;
border: none;
border-radius: 10px;
font-size: 1.2rem;
font-weight: 700;
cursor: pointer;
transition: all 0.3s ease;
margin-bottom: 20px;
}

.submit-btn:hover {
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.email-btn {
width: 100%;
padding: 18px;
background: transparent;
color: #fff;
border: 2px solid #fff;
border-radius: 10px;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
}

.email-btn:hover {
background: #fff;
color: #667eea;
transform: translateY(-3px);
}

/* Footer */
footer {
background: #0a0a0a;
padding: 40px 20px;
text-align: center;
color: rgba(255,255,255,0.6);
}

.footer-logo {
font-size: 2rem;
font-weight: 900;
margin-bottom: 15px;
background: linear-gradient(45deg, #667eea, #764ba2);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        transition: left 0.3s ease;
        gap: 20px;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-toggle {
        display: block;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 20px 80px;
    }

    .hero h1 { 
        font-size: 2rem; 
        line-height: 1.3;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .logo { 
        font-size: 2.5rem; 
        letter-spacing: 1px;
    }

    .cta-btn {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .services-grid { 
        grid-template-columns: 1fr; 
        gap: 30px;
    }

    .service-card {
        padding: 35px;
    }

    .service-card h3 {
        font-size: 1.6rem;
    }

    .service-icon {
        font-size: 3rem;
    }

    .section-title { 
        font-size: 2.2rem; 
        margin-bottom: 40px;
    }

    .about-content { 
        grid-template-columns: 1fr; 
        gap: 40px;
    }

    .about-lead {
        font-size: 1.1rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-stats { 
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-card {
        padding: 25px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .partners-grid { 
        grid-template-columns: 1fr; 
        gap: 20px;
    }

    .partner-card {
        padding: 30px;
    }

    .logo-item {
        font-size: 1.2rem;
        padding: 0 40px;
    }

    .contact-container {
        padding: 0 15px;
    }

    .contact h2 {
        font-size: 2.2rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 15px;
    }

    .submit-btn {
        padding: 18px;
        font-size: 1.1rem;
    }

    .float-icon {
        display: none;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 25px;
    }

    .service-card h3 {
        font-size: 1.4rem;
    }

    .service-card p {
        font-size: 1rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .about-lead,
    .about-mission {
        font-size: 1rem;
    }

    .partners-subtitle {
        font-size: 1rem;
    }

    .partner-logo {
        font-size: 3rem;
    }

    .partner-card h4 {
        font-size: 1.2rem;
    }

    .logo-item {
        font-size: 1rem;
        padding: 0 30px;
    }

    .contact h2 {
        font-size: 1.8rem;
    }

    .form-group label {
        font-size: 1rem;
    }

    .footer-logo {
        font-size: 1.5rem;
    }

    footer p {
        font-size: 0.9rem;
    }
}