/* Projects List Styles */
.projects-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.projects-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  margin-bottom: 22px;
  padding: 18px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  font-size: 1.08rem;
}

.project-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  background: #f0f4f8;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
/* Hero Section Styles */
.hero {
  background: white;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 40px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  margin-top: 0;
  font-size: 2.5rem;
  color: #2d3e50;
}

.hero-text p {
  font-size: 1.2rem;
  color: #555;
  margin-top: 18px;
}

.hero-image {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-img {
  width: 170px;
  height: 170px;
  margin: 0;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  border: 4px solid #f0f4f8;
}
body {
  font-family: Arial, sans-serif;
  padding: 0 20px;
  max-width: 900px;
  margin: auto;
  background-color: #f0f4f8;
}

nav ul.navbar {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 0;
  margin: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  min-height: 56px;
}

nav ul li {
  margin: 0;
}

nav ul.navbar li a {
  text-decoration: none;
  color: #2d3e50;
  background: none;
  padding: 10px 22px;
  display: inline-block;
  font-size: 1.08rem;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s, text-decoration 0.18s;
  letter-spacing: 0.2px;
}

nav ul.navbar li a.active,
nav ul.navbar li a:hover {
  background: #ff9800;
  color: #fff;
  text-decoration: underline;
}

header, section {
  background: white;
  padding: 20px;
  margin-top: 20px;
  border-radius: 8px;
}

form label {
  font-weight: bold;
}

form input, form textarea {
  width: 100%;
  padding: 10px;
  margin: 12px 0 20px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
}


form button {
  cursor: pointer;
  background-color: #ff9800;
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 4px;
  font-size: 1.08rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

form button:hover {
  background-color: #2d3e50;
  color: #fff;
}
/* Contact page footer styles */
.contact-footer {
  margin-top: 40px;
  padding: 18px 0 0 0;
  text-align: center;
  color: #67b0fd;
  font-size: 1.05rem;
}
.contact-footer a {
  color: #ff9800;
  text-decoration: none;
  margin: 0 6px;
  transition: text-decoration 0.18s, color 0.18s;
}
.contact-footer a:hover {
  text-decoration: underline;
  color: #fff;
  background: #ff9800;
  border-radius: 4px;
  padding: 2px 6px;
}

/* Remove duplicate hover rule, handled above */

/* Profile image styling */
.profile-img {
  display: block;
  margin: 20px auto 0 auto;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

footer {
  background: #2d3e50;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  width: 100%;
  /* Removed fixed positioning for normal flow */
}
