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

/* Navbar Styles */
.navbar {
  background: #333;
  color: #fff;
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  text-align: center;
}

.cancel-btn {
  display: none;
}


/* Adjust space between navbar and content */
body {
  padding-top: 80px; /* Add padding to the body to account for the navbar height */
}

.logo a {
  color: #fff;
  font-size: 36px; /* Larger font size for your name */
  text-decoration: none;
  font-weight: bold;
}

.menu {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.menu li {
  display: inline;
  margin: 0 15px;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-size: 18px; /* Font size for navigation links */
}

.menu-btn {
  display: none;
}

.scroll-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #333;
  border-radius: 50%;
  padding: 10px;
}

.scroll-button a {
  color: #fff;
  text-decoration: none;
}

/* About Section */
.about {
  padding: 50px 20px;
  background: #fff;
  margin-top: 20px; /* Additional space between the navbar and the About section */
}

.about-details {
  display: flex;
  align-items: center; /* Align the image and text vertically if needed */
}

.about-details .left {
  flex: 1;
  margin-right: 10px; /* Adjust this value to reduce or increase the space between the image and text */
}

.about-details .right {
  flex: 2;
}

/* About Image */
.about-img {
  width: 100%;
  max-width: 150px; /* Adjust the size of the image */
  height: auto;
  border-radius: 8px;
  margin-right: 0; /* Remove any extra margin on the image */
}

/* Projects Section */
.projects {
  padding: 50px 20px;
  background: #f4f4f4;
}

.projects-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.project {
  width: calc(50% - 20px);
  margin: 10px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.project img {
  width: 100%;
  height: auto;
}

.project-info {
  padding: 15px;
}

.project-info h3 {
  margin: 0;
}

.project-info p {
  margin: 10px 0;
}

.project-info .btn {
  display: inline-block;
  padding: 10px 20px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

/* Contact Section */
.contact {
  padding: 50px 20px;
  background: #fff;
}

.contact .btn {
  display: inline-block;
  padding: 10px 20px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

/* Bullet point styles */
ul {
  list-style-type: disc; /* Default bullet point style */
  margin-left: 10px;
  padding-left: 10px; /* Adjust spacing from the left */
}

li {
  margin-bottom: 10px; /* Space between bullet points */
  font-size: 12px; /* Adjust the font size if needed */
}
