body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
  }
  .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  .footer {
    text-align: center;
    margin-top: auto;
    background-color: #f8f9fa;
  }
  .flex-fill {
    flex: 1 1 auto;
  }
  .education_section{
    position: relative;
    padding-top: 20px;
  }
  .education-logo{
    position: absolute;
    top: -70px;
    right: -10px;
    width: 60px;
    height: auto;
  }
.image-container {
  position: relative;
  width: 325px; /* Adjust size as needed */
  height: 325px; /* Adjust size as needed */
  overflow: hidden;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
}
.image-container img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  transform: translate(-50%, -50%);
}
.card:hover {
  border-color: #007bff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
.card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-body .mt-auto {
  margin-top: auto;
}

.card-link {
  display: block;
  text-align: center;
  padding: 10px;
  border: 1px solid #6c757d; /* Add border */
  border-radius: 5px; /* Optional: add rounded corners */
  margin-top: 10px; /* Space above the button */
}

.card-link:hover {
  background-color: #6c757d; /* Change background on hover */
  color: white; /* Change text color on hover */
  text-decoration: none; /* Remove underline on hover */
}
.navbar-brand{
  margin-left: 10px;
}
.github-logo {
  width: 40px;
  height: 40px;
  fill: #000; /* Change this color to match your site's theme */
}
.github-link {
  display: inline-block;
  margin-right: 15px;
}
.nav-links {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: space-around;
}

.nav-links li {
  display: inline;
}

.nav-links a {
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  display: block;
}

.menu-icon {
  display: none;
  font-size: 2em;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
  }
  .nav-links.active {
      display: flex;
  }
  .menu-icon {
      display: block;
  }
}

.gallery-page {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.gallery-page.active {
  display: block;
  opacity: 1;
}

.pagination-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.pagination-controlsbutton {
  min-width: 100px;
}
