.projects-section {
  margin: 40px 0px;
  padding: 10px;
}

.projects-section img {
  border-radius: 40px;
}

.font {
  color: #464646;
  font-size: 20px;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  line-height: 35px;
}

.heading {
  color: #1d1d1d;
  font-size: 40px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
}

.project-card {
  perspective: 1000px;
  height: 400px;
}

.project-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  cursor: pointer;
}

.project-card:hover .project-card-inner {
  transform: rotateY(180deg);
}

.project-card-front,
.project-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.project-card-front {
  background: linear-gradient(45deg, #377dff, #377dff);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
}

.project-card-back {
  background: white;
  color: #1f2937;
  transform: rotateY(180deg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-card-back img{
  object-fit: cover;
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.feature-list li:last-child {
  border-bottom: none;
}

.hover-lift {
  transition: transform 0.2s;
}

.hover-lift:hover {
  transform: translateY(-5px);
}

.nav-tab-styling {
  background-color: #377dff;
  color: white;
  text-decoration: none;
  margin: 10px 5px;
  padding: 10px 20px;
  font-weight: bold;
  font-family: "Quicksand", sans-serif;
  box-shadow: 2px 2px 8px rgb(114, 112, 112);
}

.nav-link.nav-tab-styling:hover{
  color:black !important;
}

@media screen and (max-width: 600px) {
  .projects-section,
  .font {
    font-size: 14px;
    line-height: 24px;
  }

  .main-section .main-section-container {
    background: none;
  }

  .heading {
    font-size: 28px;
  }
}
