* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  background: linear-gradient(to right, #1f1c2c, #928dab);
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: rgba(0, 0, 0, 0.7);
  position: sticky;
  top: 0;
  z-index: 10;
}
header h1 {
  font-size: 28px;
}
nav a {
  margin-left: 20px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
nav a:hover {
  color: #ffd700;
}
section {
  padding: 60px 50px;
}
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.hero img {
  max-width: 400px;
  border-radius: 20px;
}
.hero-text {
  max-width: 600px;
}
.hero-text h2 {
  font-size: 40px;
  margin-bottom: 20px;
}
.hero-text p {
  font-size: 18px;
}
.section-title {
  font-size: 36px;
  margin-bottom: 40px;
  border-left: 6px solid #ffd700;
  padding-left: 15px;
}
.skills, .projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.card {
  background-color: #2e2b3f;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.card img {
  width: 100%;
  border-radius: 10px;
}
footer {
  background-color: #111;
  text-align: center;
  padding: 30px;
  font-size: 16px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 5px;
  border: none;
}
.contact-form button {
  background-color: #ffd700;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
}
.contact-form button:hover {
  background-color: #e6c200;
}
.contact-info p a {
  color: #ffd700;
  text-decoration: none;
}

.contact-info p a:hover {
  text-decoration: underline;
}
