/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1a1a1a;
  --accent: #6366f1;
  --accent-light: #818cf8;
  --accent-dark: #4f46e5;
  --light-bg: #fafafa;
  --text-secondary: #666;
  --border-light: #f0f0f0;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  line-height: 1.6;
  color: var(--primary);
  background-color: #ffffff;
}

html {
  scroll-behavior: smooth;
}

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

/* Navigation */
.navbar {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  background-color: #ffffff;
  z-index: 100;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  height: 50px;
}

.logo img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

/* Hero Section */
.hero {
  padding: 120px 0;
  text-align: center;
  background:
    linear-gradient(
      135deg,
      rgba(26, 26, 26, 0.85) 0%,
      rgba(99, 102, 241, 0.15) 100%
    ),
    url("images/hero-bg.jpg") center/cover;
  background-attachment: fixed;
  position: relative;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -1px;
  color: #ffffff;
}

.hero-content p {
  font-size: 18px;
  color: #f0f0f0;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-button {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-dark) 100%
  );
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

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

.services h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.service-card {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent) 0%,
    var(--accent-light) 100%
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.15);
  border-color: var(--accent-light);
  transform: translateY(-4px);
}

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

.service-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
  color: var(--accent);
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--primary);
}

.service-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* Team Section */
.team {
  padding: 100px 0;
  text-align: center;
  background: #ffffff;
}

.team h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.team-separator {
  height: 1px;
  background-color: var(--border-light);
  margin: 60px 0;
}

.team-content {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 0px;
  align-items: start;
}

.team-image {
  display: flex;
  justify-content: center;
}

.team-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 12px 48px rgba(99, 102, 241, 0.2);
}

.team-bio {
  text-align: left;
}

.team-bio h3 {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.team-bio h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}

.team-bio p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
  margin-bottom: 20px;
}

.team-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.team-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--accent);
  color: var(--accent);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
}

.team-social-link:hover {
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-dark) 100%
  );
  color: #ffffff;
  border-color: var(--accent-dark);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}
.contact {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, #fafbfc 0%, #f3f5f9 100%);
}

.contact h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact > .container > p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.contact-link {
  font-size: 20px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
}

.contact-link:hover {
  color: var(--accent);
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-link {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid var(--accent);
  color: var(--accent);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-dark) 100%
  );
  color: #ffffff;
  border-color: var(--accent-dark);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

/* Footer */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border-light);
  text-align: center;
  color: #999;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    gap: 20px;
  }

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

  .hero-content p {
    font-size: 16px;
  }

  .hero {
    padding: 60px 0;
  }

  .services,
  .contact {
    padding: 60px 0;
  }

  .services h2,
  .contact h2 {
    font-size: 32px;
  }

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

  .service-card {
    padding: 30px;
  }

  .contact-link {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .team-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .team-bio {
    text-align: center;
  }

  .team-bio h3 {
    font-size: 28px;
  }

  .team-bio h4 {
    font-size: 18px;
  }

  .team-bio p {
    font-size: 15px;
  }

  .team h2 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .navbar .container {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

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

  .services h2,
  .contact h2 {
    font-size: 24px;
  }

  .hero {
    padding: 40px 0;
  }

  .services,
  .contact {
    padding: 40px 0;
  }
}
