 .title-container {
    text-align: center;
    margin: 50px 0;
    background-color: #60c6d4;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0px;
  }

  .title-container .title{
    text-decoration: none;
    font-size: 2rem;
    color: rgb(2, 32, 54);
    margin-bottom: 30px;
    margin-top: 30px;
    text-align: center;
  }

/* Faculty Selection*/
.faculty-selection {
    padding: 50px 20px;
    background-color: #f0f8ff;
    text-align: center;
  }
  
  .faculty-selection h1 {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 10px;
  }
  
  .faculty-selection p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 40px;
  }
  
  .faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .faculty-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 30px 20px;
  background-color: white;
  border: 2px solid #1da3e2;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 172, 193, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .faculty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 172, 193, 0.4);
  }
  
  .faculty-card h3 {
    font-size: 1.5rem;
    color: #1da3e2;
    margin-bottom: 15px;
  }
  
  .faculty-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
  }
  
  .faculty-card .btn {
    background-color: #5abeed;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .faculty-card .btn:hover {
    background-color: #1da3e2;
  }
  