/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  color: #222;
  line-height: 1.6;
}

/* Header */
header {
  background: #222;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav .logo {
  color: white;
  font-size: 1.5em;
  font-weight: bold;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ff9800;
}

/* Global h2 (center + blue) */
h2 {
  text-align: center;
  color: #007bff;
  margin-bottom: 20px;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #222, #555);
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.highlight {
  color: red;
  font-weight: bold;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: red;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn:hover {
  background: hsl(0, 100%, 45%);
}

/* Profile Image */
.profile-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ff9800;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

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

/* About Section */
.about {
  padding: 50px 20px;
  background: #fafafa;
  text-align: center;
}

/* Unique About Section h2 */
.about h2 {
  color: #ff5722; /* orange */
  font-size: 2rem;
  margin-bottom: 25px;
}

/* Unique About Section paragraphs */
.about p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 12px;
}

/* Projects Section */
.projects {
  padding: 50px 20px;
  background: #eee;
  text-align: center;
}

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

.project-card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

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

.project-card a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

/* Contact Section */
.contact {
  padding: 50px 20px;
  background: white;
  text-align: center;
}

.contact a {
  color: #ff9800;
  text-decoration: none;
}

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

/* Footer */
footer {
  background: #222;
  color: white;
  padding: 20px;
  text-align: center;
  margin-top: 40px;
}
    audio {
      display: block;
      margin: 10px auto;
    }
