body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #0a0f1c, #0d1b2a);
  color: #e0e0e0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #0d1b2a;
  position: sticky;
  top: 0;
}

.logo {
  font-size: 1.5rem;
  color: #4da6ff;
  font-weight: bold;
}

.hamburger {
  font-size: 2rem;
  color: #e0e0e0;
  cursor: pointer;
  display: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #e0e0e0;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #4da6ff;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background: #0a0f1c;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 1rem;
  }
  .nav-links.show {
    display: flex;
  }
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 2rem;
  gap: 2rem;
}

.hero-image img {
  width: 350px;
  max-width: 100%;
  border-radius: 15px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 2.5rem;
  color: #4da6ff;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-text h1 img {
  width: 60px;
  height: 60px;
  animation: shake 3s infinite;
}

@keyframes shake {
  0% { transform: translate(0, 0) rotate(0deg); }
  10% { transform: translate(-2px, 0) rotate(-2deg); }
  20% { transform: translate(2px, 0) rotate(2deg); }
  30% { transform: translate(-2px, 0) rotate(-2deg); }
  40% { transform: translate(2px, 0) rotate(2deg); }
  50% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  background: #4da6ff;
  color: #0a0f1c;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.btn:hover {
  transform: scale(1.1);
}

.fade-in {
  animation: fadeIn 2s ease-in-out;
}

.slide-up {
  animation: slideUp 2s ease-in-out;
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.hero-image img {
  width: 400px;
  max-width: 100%;
  border-radius: 15px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

.works {
  padding: 2rem;
  text-align: center;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.card {
  background: #1b263b;
  padding: 2rem;
  border-radius: 10px;
  width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card h3 {
  color: #4da6ff;
}

.card p {
  font-size: 0.9rem;
}

.card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 10px 20px rgba(77, 166, 255, 0.4);
}
