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

body {
font-family: 'Arial', 'Helvetica Neue', sans-serif;
line-height: 1.6;
color: #2c2c2c;
scroll-behavior: smooth;
overflow-x: hidden;
}

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

/* Header */
header {
background: rgba(255, 255, 255, 0.98);
backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(0, 0, 0, 0.08);
padding: 20px 0;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
transition: all 0.3s ease;
}

header.scrolled {
background: rgba(255, 255, 255, 0.95);
box-shadow: 0 2px 40px rgba(0, 0, 0, 0.1);
padding: 15px 0;
}

nav {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo-container {
display: flex;
align-items: center;
gap: 20px;
}

.logo-image {
width: 180px;
height: auto;
transition: all 0.3s ease;
}

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

.nav-links a {
color: #2c2c2c;
text-decoration: none;
font-weight: 500;
font-size: 16px;
letter-spacing: 0.5px;
transition: all 0.3s ease;
position: relative;
text-transform: uppercase;
}

.nav-links a:hover {
color: #2563eb;
}

.nav-links a::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -5px;
left: 0;
background: #2563eb;
transition: width 0.3s ease;
}

.nav-links a:hover::after {
width: 100%;
}

.contact-btn {
background: #2563eb;
color: white !important;
padding: 12px 30px;
border-radius: 0;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
transition: all 0.3s ease;
border: 2px solid #2563eb;
}

.contact-btn:hover {
background: transparent;
color: #2563eb !important;
}

.contact-btn::after {
display: none;
}

/* Hero Section */
.hero {
background: linear-gradient(rgba(30, 41, 59, 0.8), rgba(37, 99, 235, 0.7)),
    url('../images/hero.png');
background-size: cover;
background-position: center;
background-attachment: fixed;
padding: 160px 0 120px;
position: relative;
overflow: hidden;
}

.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(30, 41, 59, 0.3) 0%, rgba(37, 99, 235, 0.2) 100%);
}

.hero-content {
max-width: 1000px;
position: relative;
z-index: 2;
}

.hero h1 {
font-size: 4.5rem;
font-weight: 300;
color: white;
margin-bottom: 2rem;
line-height: 1.1;
letter-spacing: -2px;
}

.hero h1 .highlight {
color: #93c5fd;
font-weight: 600;
}

.hero .subtitle {
font-size: 1.5rem;
color: rgba(255, 255, 255, 0.9);
margin-bottom: 3rem;
font-weight: 300;
line-height: 1.4;
max-width: 700px;
}

.hero-cta {
display: flex;
gap: 20px;
align-items: center;
}

.primary-btn {
background: #2563eb;
color: white;
padding: 18px 40px;
text-decoration: none;
font-weight: 600;
font-size: 16px;
transition: all 0.3s ease;
border: 2px solid #2563eb;
text-transform: uppercase;
letter-spacing: 1px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.primary-btn:hover {
background: rgba(37, 99, 235, 0.8);
color: white;
transform: translateY(-2px);
box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.secondary-btn {
color: white;
text-decoration: none;
font-weight: 600;
font-size: 16px;
padding: 18px 0;
border-bottom: 2px solid white;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 1px;
}

.secondary-btn:hover {
color: #93c5fd;
border-color: #93c5fd;
}

/* Services Section */
.services {
padding: 120px 0;
background: white;
}

.section-header {
text-align: center;
margin-bottom: 80px;
}

.section-title {
font-size: 3rem;
font-weight: 300;
color: #1e293b;
margin-bottom: 1.5rem;
letter-spacing: -1px;
}

.section-subtitle {
font-size: 1.2rem;
color: #64748b;
max-width: 600px;
margin: 0 auto;
font-weight: 300;
}

.services-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 60px;
margin-top: 80px;
}

.service-item {
padding: 0;
transition: all 0.4s ease;
position: relative;
}

.service-item:hover {
transform: translateY(-10px);
}

.service-number {
font-size: 5rem;
font-weight: 100;
color: #e2e8f0;
line-height: 1;
margin-bottom: 20px;
transition: all 0.3s ease;
}

.service-item:hover .service-number {
color: #2563eb;
}

.service-item h3 {
font-size: 1.8rem;
font-weight: 600;
color: #1e293b;
margin-bottom: 1.5rem;
line-height: 1.2;
}

.service-item p {
color: #64748b;
font-size: 1.1rem;
line-height: 1.7;
font-weight: 300;
}

/* Expertise Section */
.expertise {
padding: 120px 0;
background: #f8fafc;
position: relative;
}

.expertise-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
}

.expertise-text h2 {
font-size: 3rem;
font-weight: 300;
color: #1e293b;
margin-bottom: 2rem;
letter-spacing: -1px;
}

.expertise-text p {
font-size: 1.2rem;
color: #64748b;
line-height: 1.7;
margin-bottom: 2rem;
font-weight: 300;
}

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

.expertise-features li {
display: flex;
align-items: center;
margin-bottom: 1rem;
font-size: 1.1rem;
color: #475569;
}

.expertise-features li::before {
content: '→';
color: #2563eb;
font-weight: bold;
margin-right: 15px;
font-size: 1.2rem;
}

.clients-showcase {
background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
padding: 60px 40px;
color: white;
position: relative;
overflow: hidden;
}

.clients-showcase::before {
content: '';
position: absolute;
top: -50%;
right: -50%;
width: 100%;
height: 200%;
background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.05) 50%, transparent 60%);
transform: rotate(45deg);
}

.clients-content {
position: relative;
z-index: 2;
}

.clients-content h3 {
font-size: 2rem;
font-weight: 300;
margin-bottom: 2rem;
}

.client-types {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
}

.client-type {
padding: 30px 0;
border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.client-type h4 {
font-size: 1.3rem;
font-weight: 600;
margin-bottom: 1rem;
}

.client-type p {
opacity: 0.9;
line-height: 1.6;
font-weight: 300;
}

/* Industries Section */
.industries {
padding: 120px 0;
background: #f8fafc;
}

.industries-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 60px;
margin-top: 80px;
}

.industry-item {
background: white;
padding: 40px 30px;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
transition: all 0.4s ease;
position: relative;
border-top: 4px solid #2563eb;
}

.industry-item:hover {
transform: translateY(-10px);
box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

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

.industry-item h3 {
font-size: 1.8rem;
font-weight: 600;
color: #1e293b;
margin-bottom: 1.5rem;
line-height: 1.2;
}

.industry-item p {
color: #64748b;
font-size: 1.1rem;
line-height: 1.7;
font-weight: 300;
}

/* Statistics Section */
.stats {
padding: 80px 0;
background: #1e293b;
color: white;
}

.stats-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 60px;
text-align: center;
}

.stat-item h3 {
font-size: 3.5rem;
font-weight: 100;
color: #2563eb;
margin-bottom: 1rem;
}

.stat-item p {
font-size: 1.1rem;
font-weight: 300;
text-transform: uppercase;
letter-spacing: 1px;
opacity: 0.9;
}

/* Contact Section */
.contact {
padding: 120px 0;
background: white;
}

.contact-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: start;
}

.contact-info h2 {
font-size: 3rem;
font-weight: 300;
color: #1e293b;
margin-bottom: 2rem;
letter-spacing: -1px;
}

.contact-info p {
font-size: 1.2rem;
color: #64748b;
line-height: 1.7;
margin-bottom: 3rem;
font-weight: 300;
}

.contact-details {
background: #f8fafc;
padding: 60px 40px;
height: fit-content;
}

.contact-item {
margin-bottom: 20px;
padding-bottom: 20px;
border-bottom: 1px solid #e2e8f0;
}

.contact-item:last-child {
margin-bottom: 0;
padding-bottom: 0;
border-bottom: none;
}

.contact-item h4 {
font-size: 1.1rem;
font-weight: 600;
color: #2563eb;
margin-bottom: 10px;
text-transform: uppercase;
letter-spacing: 1px;
}

.contact-item p {
color: #475569;
font-size: 1.1rem;
margin: 0;
}

/* Map Section */
.map-contact {
padding: 0;
background: white;
position: relative;
width: 100%;
clear: both;
}

.map-container {
display: grid;
grid-template-columns: 2fr 1fr;
height: 500px;
width: 100%;
}

#map {
height: 500px;
width: 100%;
z-index: 1;
}

.contact-sidebar {
background: #1e293b;
color: white;
padding: 50px 30px 40px 30px;
display: flex;
flex-direction: column;
justify-content: flex-start;
height: 500px;
box-sizing: border-box;
}

.contact-sidebar h3 {
font-size: 1.75rem;
font-weight: 300;
margin-bottom: 1.5rem;
margin-top: 0;
color: white;
}

.contact-info-item {
margin-bottom: 1rem;
padding-bottom: 1rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item:last-child {
margin-bottom: 0;
padding-bottom: 0;
border-bottom: none;
}

.contact-info-item h4 {
font-size: 0.9rem;
font-weight: 600;
color: #93c5fd;
margin-bottom: 0.3rem;
margin-top: 0;
text-transform: uppercase;
letter-spacing: 1px;
}

.contact-info-item p {
color: rgba(255, 255, 255, 0.9);
font-size: 0.95rem;
line-height: 1.4;
margin: 0;
font-weight: 300;
}

.contact-info-item a {
color: rgba(255, 255, 255, 0.9);
text-decoration: none;
transition: color 0.3s ease;
}

.contact-info-item a:hover {
color: #93c5fd;
}

/* Footer */
footer {
background: #0f172a;
color: white;
padding: 60px 0 40px;
}

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

.footer-logo {
max-width: 200px;
margin-bottom: 20px;
filter: brightness(0) invert(1);
}

.footer-section h4 {
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 20px;
text-transform: uppercase;
letter-spacing: 1px;
}

.footer-section p,
.footer-section a {
color: #94a3b8;
text-decoration: none;
line-height: 1.8;
font-weight: 300;
}

.footer-section a:hover {
color: white;
}

.footer-bottom {
border-top: 1px solid #334155;
padding-top: 40px;
text-align: center;
}

.footer-bottom p {
color: #94a3b8;
font-size: 0.9rem;
font-weight: 300;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
.container {
    padding: 0 20px;
}

.nav-links {
    display: none;
}

.hero h1 {
    font-size: 2.5rem;
}

.hero .subtitle {
    font-size: 1.2rem;
}

.hero-cta {
    flex-direction: column;
    align-items: flex-start;
}

.services-grid {
    grid-template-columns: 1fr;
    gap: 40px;
}

.expertise-content {
    grid-template-columns: 1fr;
    gap: 40px;
}

.client-types {
    grid-template-columns: 1fr;
}

.industries-grid {
    grid-template-columns: 1fr;
    gap: 40px;
}

.stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
}

.map-container {
    grid-template-columns: 1fr;
    height: auto;
}

#map {
    height: 300px;
}

.contact-sidebar {
    height: auto;
    padding: 40px 20px;
}

.footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
}
}

/* Smooth animations */
.fade-in {
opacity: 0;
transform: translateY(30px);
transition: all 0.8s ease;
}

.fade-in.visible {
opacity: 1;
transform: translateY(0);
}