/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  background: #fdfdfd;
  color: #222;
  line-height: 1.6;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header */
.header {
  background: #000;
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 0;
  left: 0;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.logo {
  font-size: 26px;
  color: #fff;
  font-weight: bold;
}
.logo span {
  color: orangered;
}
.navbar a {
  color: #fff;
  margin-left: 30px;
  text-transform: capitalize;
  font-weight: 500;
  transition: 0.3s;
}
.navbar a:hover {
  color: orangered;
}

/* Hero */
.hero {
  padding-top: 120px;
  padding-bottom: 80px;
  background: #f1f1f1;
}
.hero-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}
.intro {
  flex: 1;
}
.intro h3 {
  font-size: 28px;
}
.intro h1 {
  font-size: 48px;
  color: orangered;
}
.intro h2 {
  font-size: 22px;
  margin: 10px 0;
  color: #333;
}
.intro p {
  font-size: 16px;
  margin: 20px 0;
}
.hero-image {
  flex: 1;
  text-align: center;
}
.hero-image img {
  width: 300px;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(0,0,0,0.2);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background: orangered;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  border: none;
  transition: 0.3s ease;
  text-decoration: none;
}
.btn:hover {
  background: #000;
}

/* Sections */
section {
  padding: 80px 0;
}
h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #111;
}

/* About */
.about p {
  font-size: 18px;
  max-width: 800px;
}

/* Skills */
.skills ul {
  list-style-type: disc;
  padding-left: 20px;
  font-size: 18px;
}

/* Contact */
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.contact-form textarea {
  resize: vertical;
}
.contact-form button {
  width: 100%;
  padding: 12px;
  background: orangered;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}
.contact-form button:hover {
  background: #000;
}

/* Footer */
.footer {
  background: #000;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}
.footer .social a {
  margin: 0 10px;
  color: #fff;
  font-size: 22px;
  transition: 0.3s ease;
}
.footer .social a:hover {
  color: orangered;
}