.fixed-contact-icons {
    position: fixed;
    top: 40%;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
  }
  
  .contact-icon {
    width: 60px;
    height: 60px;
    background-color: #25d366; 
    color: white;
    font-size: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
  }
  
  .contact-icon.call {
    background-color: #097953;
  }
  
  .contact-icon:hover {
    transform: scale(1.1);
  }

  .category-card {
    height: 260px;
    margin-bottom: 15px;
}

.college-box.mb-3 {
  background-color: #01406e  !important;
  padding: 15px;
  height: 400px;
  border-radius: 5px;
}
