/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;

/* Header and Navbar */
header {
    background-color: #333;
    color: white;
    padding: 10px;
}

header nav ul {
    list-style-type: none;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin-right: 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
}

/* Home Section */
#home {
    text-align: center;
    padding: 50px;
    background-color: #9f65a369;
    color: white;
}

#home h1 {
    font-size: 3em;
}

#home p {
    font-size: 1.2em;
}

/* About Me Section */
#about {
    padding: 50px;
    background-color: #f0f0f0;
}

.project-section {
  background-color: #f4f4f9;
  border-radius: 12px;
  padding: 30px;
  margin: 40px auto;
  max-width: 900px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  gap: 30px;
  align-items: center;
  animation: fadeIn 1s ease;
}

.project-logo img {
  width: 100px;
  height: auto;
  border-radius: 10px;
}

.project-content h3 {
  margin-bottom: 10px;
  color: #4C4C6D;
}

.project-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.tools-used {
  margin-top: 10px;
}

.tools-used span {
  display: inline-block;
  background-color: #e0dffe;
  color: #4C4C6D;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 13px;
  margin-right: 8px;
  margin-top: 5px;
}

}

/* Contact Section */
#contact {
    padding: 50px;
    background-color: #960a8630;
    color: white;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px 10px;
  width: 100%;
  margin-top: 40px; /* spacing above footer */
}

.profile-container {
  text-align: center;
  margin-top: 40px;
}

.profile-pic {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.profile-pic:hover {
  transform: scale(1.05);
}
.profile-container {
  text-align: center;
  margin: 30px 0; /* space above and below */
}

.profile-pic {
  width: 150px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
/* ===== My Story Section ===== */
#story {
  background-color: #f8f8f8;
  padding: 40px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

#story h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 15px;
}

#story p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}
.project-logo {
  width: 80px;
  height: auto;
  display: block;
  margin-bottom: 10px;
}
.project {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}
/* Contact Section */
#contact {
  background-color: #f8f9fd; /* soft tech-blue background */
  padding: 40px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  border-top: 2px solid #ccc;
}

#contact h2 {
  font-size: 26px;
  color: #333;
  margin-bottom: 15px;
}

#contact p {
  font-size: 16px;
  color: #444;
  margin-bottom: 10px;
}

#contact a {
  color: #410855b1;
  font-weight: bold;
  text-decoration: none;
}

#contact a:hover {
  text-decoration: underline;

}
