/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background: #1a1a1a;
    background-attachment: fixed;
}

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

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.2;
}

h2 {
    font-size: 2.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    text-align: center;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f8fafc;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: #cbd5e1;
}

p {
    font-size: 1.125rem;
    font-weight: 400;
    color: #cbd5e1;
    line-height: 1.7;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.nav-brand h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #cbd5e1;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border-radius: 16px;
    background: #1a1a1a;
    box-shadow: 
        8px 8px 16px rgba(0, 0, 0, 0.3),
        -8px -8px 16px rgba(255, 255, 255, 0.05);
    border: none;
    position: relative;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(59, 130, 246, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
    pointer-events: none;
    border-radius: 16px;
}

.nav-links a:hover {
    color: #ffffff;
    background: #1a1a1a;
    box-shadow: 
        inset 4px 4px 8px rgba(0, 0, 0, 0.3),
        inset -4px -4px 8px rgba(255, 255, 255, 0.05);
    transform: translateY(2px);
}

.nav-links a:hover::before {
    background: 
        radial-gradient(circle at 30% 70%, rgba(59, 130, 246, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.12) 0%, transparent 60%);
}

.nav-links a:active {
    background: #1a1a1a;
    box-shadow: 
        inset 6px 6px 12px rgba(0, 0, 0, 0.4),
        inset -6px -6px 12px rgba(255, 255, 255, 0.08);
    transform: translateY(4px);
}

.nav-links a:active::before {
    background: 
        radial-gradient(circle at 30% 70%, rgba(59, 130, 246, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #f97316;
    color: #ffffff;
    box-shadow: 
        8px 8px 16px rgba(0, 0, 0, 0.3),
        -8px -8px 16px rgba(255, 255, 255, 0.05);
    border: none;
}

.btn-primary:hover {
    background: #f97316;
    box-shadow: 
        inset 4px 4px 8px rgba(0, 0, 0, 0.3),
        inset -4px -4px 8px rgba(255, 255, 255, 0.05);
    transform: translateY(2px);
}

.btn-primary:active {
    box-shadow: 
        inset 6px 6px 12px rgba(0, 0, 0, 0.4),
        inset -6px -6px 12px rgba(255, 255, 255, 0.08);
    transform: translateY(4px);
}

.btn-secondary {
    background: #4a5568;
    color: #e5e7eb;
    box-shadow: 
        8px 8px 16px rgba(0, 0, 0, 0.3),
        -8px -8px 16px rgba(255, 255, 255, 0.05);
    border: none;
}

.btn-secondary:hover {
    background: #4a5568;
    color: #ffffff;
    box-shadow: 
        inset 4px 4px 8px rgba(0, 0, 0, 0.3),
        inset -4px -4px 8px rgba(255, 255, 255, 0.05);
    transform: translateY(2px);
}

.btn-secondary:active {
    box-shadow: 
        inset 6px 6px 12px rgba(0, 0, 0, 0.4),
        inset -6px -6px 12px rgba(255, 255, 255, 0.08);
    transform: translateY(4px);
}

/* Hero section */
.hero {
    padding: 6rem 0 8rem 0;
    background: #1a1a1a;
    border-radius: 0 0 2rem 2rem;
    margin-bottom: 2rem;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    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(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

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

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

.stat-item {
    text-align: center;
    padding: 2.5rem;
    background: #1a1a1a;
    border-radius: 24px;
    box-shadow: 
        8px 8px 16px rgba(0, 0, 0, 0.3),
        -8px -8px 16px rgba(255, 255, 255, 0.05);
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(59, 130, 246, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
    pointer-events: none;
    border-radius: 24px;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 
        12px 12px 24px rgba(0, 0, 0, 0.4),
        -12px -12px 24px rgba(255, 255, 255, 0.08);
}

.stat-item:active {
    box-shadow: 
        inset 4px 4px 8px rgba(0, 0, 0, 0.3),
        inset -4px -4px 8px rgba(255, 255, 255, 0.05);
    transform: translateY(0);
}





.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Section headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

/* Section spacing and content */
section {
    padding: 6rem 0;
}

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

/* Expertise section */
.expertise {
    background: #1a1a1a;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

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

.skill-category {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 24px;
    border: none;
    box-shadow: 
        8px 8px 16px rgba(0, 0, 0, 0.3),
        -8px -8px 16px rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.skill-category:hover {
    transform: translateY(-8px);
    box-shadow: 
        12px 12px 24px rgba(0, 0, 0, 0.4),
        -12px -12px 24px rgba(255, 255, 255, 0.08);
}

.skill-category:active {
    box-shadow: 
        inset 4px 4px 8px rgba(0, 0, 0, 0.3),
        inset -4px -4px 8px rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}



.skill-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.skill-category h3 {
    color: #f8fafc;
    margin-bottom: 1rem;
}

.skill-category p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.skill-list {
    list-style: none;
}

.skill-list li {
    color: #cbd5e1;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.skill-list li:hover {
    color: #ffffff;
    padding-left: 0.5rem;
}

.skill-list li:last-child {
    border-bottom: none;
}

.skill-list li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    margin-right: 0.75rem;
}

/* Services section */
.services {
    background: #1a1a1a;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

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

.service-item {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 
        8px 8px 16px rgba(0, 0, 0, 0.3),
        -8px -8px 16px rgba(255, 255, 255, 0.05);
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        12px 12px 24px rgba(0, 0, 0, 0.4),
        -12px -12px 24px rgba(255, 255, 255, 0.08);
}

.service-item:active {
    box-shadow: 
        inset 4px 4px 8px rgba(0, 0, 0, 0.3),
        inset -4px -4px 8px rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}



.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-item h3 {
    color: #f8fafc;
    margin-bottom: 1rem;
}

.service-item p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    color: #cbd5e1;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.service-features li:hover {
    color: #ffffff;
    padding-left: 0.5rem;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li:before {
    content: "→";
    color: #3b82f6;
    font-weight: bold;
    margin-right: 0.75rem;
}



/* Contact section */
.contact {
    background: #1a1a1a;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

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

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

.contact-method {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 
        8px 8px 16px rgba(0, 0, 0, 0.3),
        -8px -8px 16px rgba(255, 255, 255, 0.05);
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-method:hover {
    transform: translateY(-4px);
    box-shadow: 
        12px 12px 24px rgba(0, 0, 0, 0.4),
        -12px -12px 24px rgba(255, 255, 255, 0.08);
}

.contact-method:active {
    box-shadow: 
        inset 4px 4px 8px rgba(0, 0, 0, 0.3),
        inset -4px -4px 8px rgba(255, 255, 255, 0.05);
    transform: translateY(0);
}



.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-method h3 {
    color: #f8fafc;
    margin-bottom: 0.5rem;
}

.contact-method p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.9rem;
    color: #94a3b8;
    font-style: italic;
}

.contact-cta {
    background: #1a1a1a;
    color: #ffffff;
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 
        12px 12px 24px rgba(0, 0, 0, 0.4),
        -12px -12px 24px rgba(255, 255, 255, 0.05);
    border: none;
    position: relative;
    overflow: hidden;
}



.contact-cta h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-cta p {
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.contact-cta .btn-primary {
    background: #f97316;
    color: #ffffff;
    box-shadow: 
        8px 8px 16px rgba(0, 0, 0, 0.3),
        -8px -8px 16px rgba(255, 255, 255, 0.05);
    border: none;
}

.contact-cta .btn-primary:hover {
    background: #f97316;
    box-shadow: 
        inset 4px 4px 8px rgba(0, 0, 0, 0.3),
        inset -4px -4px 8px rgba(255, 255, 255, 0.05);
    transform: translateY(2px);
}

.contact-cta .btn-primary:active {
    box-shadow: 
        inset 6px 6px 12px rgba(0, 0, 0, 0.4),
        inset -6px -6px 12px rgba(255, 255, 255, 0.08);
    transform: translateY(4px);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #94a3b8;
    padding: 4rem 0 2rem 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-left: 48px;
}

.footer-brand h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #cbd5e1;
}

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

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-section a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: all 0.2s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.footer-section a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.footer-company-info h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-company-info p {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.footer-company-info strong {
    color: #94a3b8;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #718096;
    font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
    
    .hero {
        padding: 4rem 0 6rem 0;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .skills-grid,
    .services-list {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .company-details-grid {
        grid-template-columns: 1fr;
    }
    
    .company-details {
        padding: 2rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding-left: 0;
    }
    
    .footer-company-info {
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    .title {
        font-size: 1.25rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .hero {
        padding: 3rem 0 4rem 0;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    /* Hide navigation on mobile phones */
    .nav-links {
        display: none;
    }
    
    /* Adjust navbar for mobile */
    .navbar {
        justify-content: center;
        text-align: center;
    }
    
    /* Remove footer padding on mobile */
    .footer-main {
        padding-left: 0;
    }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .footer-main {
        padding-left: 0;
        gap: 1.5rem;
    }
    
    .footer-company-info h4 {
        font-size: 1rem;
    }
    
    .footer-company-info p {
        font-size: 0.85rem;
    }
}
