body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

header {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 50px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.btn {
  background: #6a0dad;
  color: #fff;
  padding: 8px 16px;
  border-radius: 5px;
}

.hero {
  background: linear-gradient(135deg, #6a0dad, #9c27b0);
  color: white;
  padding: 120px 0;
  text-align: center;
}

.primary-btn {
  background: white;
  color: #6a0dad;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.section {
  padding: 80px 0;
}

.light {
  background: #f9f9f9;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.team-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.team-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.clients-list {
  columns: 2;
  list-style: none;
}

.contact {
  background: linear-gradient(135deg, #6a0dad, #9c27b0);
  color: white;
  text-align: center;
}

footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: white;
}

.card {
  transition: 0.4s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.primary-btn:hover {
  background: #6a0dad;
  color: white;
  transition: 0.3s;
}
