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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
  line-height: 1.7;
  background-color: #ffffff;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #f0f0f0;
  z-index: 1000;
}

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

.NavbarLogo img {
  height: 45px;
  width: auto;
}

nav ul {
  list-style-type: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

nav a {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #0066ff;
  transition: width 0.3s ease;
}

nav a:hover {
  color: #0066ff;
}

nav a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 140px 40px 100px;
}

.hero-content {
  max-width: 900px;
  text-align: center;
}

.hero-content h1 {
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.hero-subtitle {
  font-size: 24px;
  font-weight: 500;
  color: #0066ff;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero-description {
  font-size: 20px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 16px 32px;
  background-color: #0066ff;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.2s ease;
  border: none;
}

.btn-primary:hover {
  background-color: #0052cc;
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  background-color: transparent;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  border: 1px solid #e0e0e0;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  border-color: #0066ff;
  color: #0066ff;
}

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

/* Services Section */
.services {
  padding: 120px 40px;
  background-color: #fafafa;
}

.services h2 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.service-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: #0066ff;
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.08);
}

.service-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a1a1a;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* Latest Project Section */
.latest-project {
  padding: 120px 40px;
  background-color: #ffffff;
}

.latest-project h2 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
  color: #1a1a1a;
}

.project-highlight {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  background: #fafafa;
  padding: 60px;
  border-radius: 16px;
}

.project-info h3 {
  font-size: 32px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.project-info p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 32px;
  color: #666;
}

.project-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* CTA Section */
.cta {
  background-color: #0066ff;
  color: white;
  padding: 100px 40px;
  text-align: center;
  margin: 120px 40px;
  border-radius: 20px;
}

.cta h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta .btn-primary {
  background-color: white;
  color: #0066ff;
}

.cta .btn-primary:hover {
  background-color: #f5f5f5;
}

/* Footer */
footer {
  text-align: center;
  padding: 60px 40px;
  background-color: #fafafa;
  color: #666;
  border-top: 1px solid #f0f0f0;
  font-size: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav {
    padding: 16px 24px;
  }

  nav ul {
    gap: 20px;
  }

  .hero {
    padding: 120px 24px 80px;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-description {
    font-size: 18px;
  }

  .services, .latest-project {
    padding: 80px 24px;
  }

  .services h2, .latest-project h2 {
    font-size: 36px;
  }

  .project-highlight {
    grid-template-columns: 1fr;
    padding: 40px;
    gap: 40px;
  }

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

  .cta {
    margin: 80px 24px;
    padding: 60px 24px;
  }

  .cta h2 {
    font-size: 36px;
  }
}