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

body {
  font-family: 'Arial', sans-serif;
  background-color: #f4f7fa;
  color: #333;
  line-height: 1.6;
}

h1, h2 {
  font-weight: 600;
  color: #2d2d2d;
}

.container {
  max-width: 1000px;
  margin: 20px auto;
  padding: 20px;
}

.top-right {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 100;
}

.nav-btn, .resume-link {
  padding: 10px 15px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.nav-btn:hover, .resume-link:hover {
  background-color: #0056b3;
}

.scroll-btn {
  display: block;
  margin-top: 20px;
  padding: 12px 20px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.scroll-btn:hover {
  background-color: #218838;
}

/* About Me Section */
#about {
  padding: 50px 20px;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-top: 100px;
}

/* Project Container */
.project-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.project {
  width: 250px;
  text-align: center;
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 8px;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
}

.project-title {
  margin-top: 10px;
  font-weight: bold;
  color: #333;
}

.project a {
  text-decoration: none;
  color: inherit;
}

.project:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Info Section */
#contact-info {
  padding: 50px 20px;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-top: 100px;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #f1f1f1;
}



