/* Basic styles */
body {
  font-family: "Popins", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
}

.glides {
  max-width: 800px;
  margin: 40px auto;
  border-radius: 10px;
}

.project-card {
  text-align: center;
  padding: 10px;
  /* background-color: #007bff; */
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
    rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  width: auto;
  height: 700px;
}

.project-image {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  max-height: 400px;
  object-fit: cover;
}

.project-title {
  font-size: 1.5em;
  margin: 15px 0 10px;
  color: #333;
  font-weight: 600;
  /* height: 100px; */
}

.project-description {
  font-size: 1em;
  color: #555;
  margin-bottom: 10px;
}

.glide__arrows {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}

.glide__arrow {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.glide__arrow:hover {
  background-color: #0056b3;
}

.glide__bullets {
  display: flex;
  justify-content: center;
  margin: 10px 0;
}

.glide__bullet {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.glide__bullet--active {
  background-color: #007bff;
}
@media (max-width: 768px) {
  .project-card {
    width: 100%;
    height: auto; /* Adjust height for mobile view */
  }

  .project-title {
    font-size: 1.2em; /* Smaller font size for titles */
  }

  .project-description {
    font-size: 0.9em; /* Smaller font size for descriptions */
  }

  .glides {
    max-width: 100%; /* Full width for mobile */
    margin: 20px auto; /* Adjust margin */
  }

  .project-image {
    height: 200px; /* Reduce image height */
  }
}
