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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: #0a0a0f;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Page transitions */
.page {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.page.active {
    display: block;
}

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8em;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95em;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active {
    color: #00d4ff;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 120px 40px;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15), transparent);
    border-radius: 50%;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 4.5em;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.3em;
    color: #b0b0b0;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    padding: 18px 40px;
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1em;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
    padding: 18px 40px;
    background: transparent;
    color: #00d4ff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid #00d4ff;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 1em;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
}

/* Geometric Hero Graphics */
.hero-graphic {
    position: relative;
    height: 500px;
}

.geometric-shape {
    position: absolute;
    border: 2px solid rgba(0, 212, 255, 0.3);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 50px;
    left: 50px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), transparent);
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 200px;
    right: 100px;
    border-radius: 50%;
    border-color: rgba(212, 175, 55, 0.3);
    animation-delay: 1s;
}

.shape-3 {
    width: 180px;
    height: 180px;
    bottom: 80px;
    left: 150px;
    transform: rotate(45deg);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    animation-delay: 2s;
}

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

/* Services Section */
.services {
    padding: 100px 40px;
    background: #0f0f1a;
}

.section-header {
    max-width: 1400px;
    margin: 0 auto 80px;
    text-align: center;
}

.section-header h2 {
    font-size: 3em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #b0b0b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: #808080;
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 50px 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    background: var(--accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #fff;
}

.service-card p {
    color: #a0a0a0;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 8px 0;
    color: #c0c0c0;
    font-size: 0.95em;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--accent-text);
}

/* Stats Section */
.stats {
    padding: 80px 40px;
    background: linear-gradient(135deg, #1a1a2e, #0f0f1a);
}

.stats-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-number {
    font-size: 3.5em;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    color: #808080;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 40px;
    background: #0a0a0f;
}

.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-item {
    display: flex;
    gap: 30px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    transition: all 0.3s;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.feature-icon {
    font-size: 3em;
    min-width: 80px;
}

.feature-content h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #fff;
}

.feature-content p {
    color: #a0a0a0;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: 3em;
    color: #000;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.3em;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.cta-section .btn-primary {
    background: #000;
    color: #00d4ff;
}

.cta-section .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Content Pages Styles */
.page-header {
    margin-top: 80px;
    padding: 100px 40px 60px;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.3em;
    color: #b0b0b0;
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

/* About Page Styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.3);
}

.member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3em;
}

.member-name {
    font-size: 1.5em;
    color: #fff;
    margin-bottom: 5px;
}

.member-role {
    color: #00d4ff;
    margin-bottom: 15px;
    font-weight: 600;
}

.member-bio {
    color: #a0a0a0;
    line-height: 1.8;
}

/* Contact Page Styles */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    padding: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 4px solid #00d4ff;
}

.contact-item-icon {
    font-size: 2em;
    color: #00d4ff;
}

.contact-item h3 {
    color: #fff;
    margin-bottom: 5px;
}

.contact-item p {
    color: #a0a0a0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 1em;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #00d4ff;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Solutions Page */
.solutions-list {
    display: grid;
    gap: 40px;
    margin-top: 60px;
}

.solution-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--accent);
    transition: all 0.3s;
}

.solution-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 25px;
}

.solution-icon {
    font-size: 3em;
    background: var(--accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solution-item h3 {
    font-size: 2em;
    color: #fff;
}

.solution-description {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 25px;
}

.solution-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.benefit {
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    color: #c0c0c0;
    font-size: 0.95em;
}

/* Footer */
footer {
    padding: 60px 40px 30px;
    background: #050508;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.8em;
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #808080;
    line-height: 1.8;
}

.footer-links h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.1em;
}

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

.footer-links a {
    color: #808080;
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: color 0.3s;
    cursor: pointer;
}

.footer-links a:hover {
    color: #00d4ff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: #606060;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-graphic {
        height: 300px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5em;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-benefits {
        grid-template-columns: 1fr;
    }
}