* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

.container {
  width: 80%;
  margin: auto;
  max-width: 1100px;
}

header {
  background: #111;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  animation: fadeIn 2s ease-in-out;
}

header .logo {
  max-width: 220px;
  margin-bottom: 10px;
}

nav a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s;
}

nav a:hover {
  color: #6c63ff;
}

#hero {
  background: url('hero.jpg') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  animation: slideIn 2s ease-in-out;
}

#services, #portfolio, #about {
  padding: 50px 20px;
  text-align: center;
}

.cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  width: 30%;
  transition: transform 0.3s;
}

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

.card.highlight {
  border: 2px solid #6c63ff;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.item img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}

.item img:hover {
  transform: scale(1.05);
}

footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 20px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.fade-in {
  animation: fadeIn 2s;
}

.slide-in {
  animation: slideIn 2s;
}

.zoom-in {
  animation: fadeIn 1.5s ease-in-out;
}
