﻿.subject-box {
    background-color: #f8f9fa;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    font-size: 1.2rem;
    cursor: pointer;
  }

  .subject-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: #e2e6ea;
  }


  .dept-box {
    background-color: #f8f9fa;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    font-size: 1.0rem;
    cursor: pointer;
  }

  .dept-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: #e2e6ea;
  }

  .program-card {
    background-color: #1a7292;
    color: white;
    padding: 20px;
    border-radius: 5px;
    align-items: stretch;
    min-height: 122px;
    gap: 0;
    text-align: left;
    transition: all 0.15s ease-in-out;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
  }

  .program-card:hover {
    background: #0f4457;
    color: white;
    text-decoration: none;
    transition: all 150ms ease-out;
    }

  .program-card a {
    color: white;
    text-decoration: none;
  }

  .program-card a:hover {
    text-decoration: underline;
  }

  .program-card a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  text-decoration: none;
}

.program-card a .arrow {
  display: inline-block;
  background-color: #007bff;
  color: white;
  border: 1.5px solid black;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 1.1rem;
  transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.program-card:hover .arrow {
  transform: scale(1.1) rotate(10deg);
  background-color: #3399ff;
}

.literati-container {
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.literati-card {
    transition: transform 0.3s;
    margin-bottom: 1.5rem;
}
.literati-card:hover {
    transform: translateY(-5px);
}
.literati-link {
    color: #0f4457;
    text-decoration: none;
    font-weight: bold;
}
.literati-link:hover {
    color: #1a6a8a;
    text-decoration: underline;
}
