* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #fdfdfd;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background: #111;
  color: #fff;
  padding: 1rem 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
}
.logo span {
  color: #ff6600;
}

nav ul {
  display: flex;
  gap: 20px;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}
nav a:hover {
  color: #ff6600;
}

/* Hero */
.hero {
  height: 90vh;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)),
              url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d') center/cover no-repeat;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}
.hero-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid #ff6600;
  margin-bottom: 15px;
  object-fit: cover;
  box-shadow: 0 0 15px rgba(255,102,0,0.5);
}
.hero h2 {
  font-size: 2.5rem;
}
.hero span {
  color: #ff6600;
}
.hero p {
  margin-top: 10px;
  font-size: 1.1rem;
}
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: #ff6600;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  transition: 0.3s;
}
.btn:hover {
  background: #e05500;
}

/* About */
.about {
  padding: 80px 20px;
  background: #fff;
}
.about .container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
.profile-photo {
  border-radius: 10px;
  width: 220px;
  height: 220px;
  object-fit: cover;
  border: 3px solid #ff6600;
  box-shadow: 0 0 15px rgba(255,102,0,0.3);
}
.about .text {
  flex: 1;
}

/* Projects */
.projects {
  background: #f4f4f4;
  padding: 80px 20px;
}
.projects .container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}
.project-grid {
  margin-top: 40px;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.project {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.project:hover {
  transform: translateY(-5px);
}

/* Skills */
.skills {
  padding: 80px 20px;
  text-align: center;
}
.skill-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}
.skill-tags span {
  background: #111;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
}

/* Contact */
.contact {
  background: #f4f4f4;
  padding: 80px 20px;
}
.contact .container {
  max-width: 600px;
  margin: auto;
  text-align: center;
}
form input, form textarea {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
form button {
  padding: 10px 20px;
  background: #ff6600;
  border: none;
  color: #fff;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}
form button:hover {
  background: #e05500;
}

/* Footer */
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}
