
/* Internship */
.internship-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 30px;
  margin-top: 100px;
}
.internship-box {
  background: #fff;
  width: 300px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  text-align: center;
}
.internship-box:hover {
  transform: translateY(20px);
  background: orange;
  color: #fff;
}
.internship-box img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}
.internship-box h2 {
  color: #007BFF;
  margin: 10px 0;
}
.internship-box p {
  color: #555;
  line-height: 1.5;
}



@media (max-width: 768px) {

  /* Internship container */
  .internship-container {
    flex-direction: column;
    padding: 20px 12px;
    gap: 20px;
    margin-top: 80px;
  }

  /* Internship card */
  .internship-box {
    width: 100%;
    max-width: 340px;
    padding: 16px;
    margin: 0 auto;
  }

  /* Image */
  .internship-box img {
    height: 140px;
  }

  /* Text */
  .internship-box h2 {
    font-size: 18px;
  }

  .internship-box p {
    font-size: 14px;
    line-height: 1.4;
  }

  /* Disable hover lift (mobile fix) */
  .internship-box:hover {
    transform: none;
  }
}
