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

/* Body */
body {
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
  background: #f7f8fa; /* Neutral background */
  color: #333;
  padding-top: 80px; /* Prevent content from hiding under the fixed navbar */
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
header {
  text-align: center;
  background: linear-gradient(135deg, #4a6572, #34495e); /* Subtle gradient for professionalism */
  color: #fff;
  padding: 40px 20px;
  border-bottom: 4px solid #2c3e50;
  border-radius: 0 0 20px 20px;
}

header h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2em;
  font-weight: 300;
}

/* Navigation */
nav {
  position: fixed; /* Stays on top while scrolling */
  top: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border-bottom: 1px solid #ddd;
}

nav .nav-links {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 15px;
}

nav .nav-links li {
  margin: 0 15px;
}

nav .nav-links a {
  text-decoration: none;
  color: #34495e;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 5px;
  background: #eef1f5; /* Button-like appearance */
  transition: all 0.3s ease;
}

nav .nav-links a:hover {
  background: #4a6572; /* Button hover */
  color: #fff;
}

/* Section */
.section {
  padding: 40px 20px;
}

.section h2 {
  font-size: 2em;
  text-align: center;
  color: #34495e;
  margin-bottom: 20px;
}

/* Skills Section */
.skill ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  padding: 0;
}

.skill ul li {
  background: #4a6572;
  color: #fff;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 1em;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.skill ul li:hover {
  background: #2c3e50; /* Subtle color change */
  transform: translateY(-5px); /* Adds interactivity */
}

/* Projects Section */
.project-card {
  background: #ffffff;
  margin: 20px auto;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px); /* Slight lift on hover */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.project-card h3 {
  font-size: 1.5em;
  color: #34495e;
  margin-bottom: 10px;
}

.project-card p {
  font-size: 1em;
  color: #555;
  margin: 10px 0 20px;
}

.project-card a {
  text-decoration: none;
  color: #fff;
  background: #4a6572; /* Button-like link */
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.project-card a:hover {
  background: #2c3e50; /* Button hover effect */
}

/* Resume Section Button */
.btn {
  text-decoration: none;
  color: #fff;
  background: #4a6572;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background: #2c3e50;
}

/* Recommendations */
blockquote {
  font-style: italic;
  background: #f7f8fa;
  padding: 20px;
  border-left: 5px solid #4a6572;
  margin: 20px auto;
  max-width: 900px;
  border-radius: 10px;
}

blockquote cite {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  text-align: right;
  color: #555;
}
