
.darkLight-searchBox .dark-light,
.darkLight-searchBox .searchToggle{
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
}

.dark-light i,
.searchToggle i{
    position: absolute;
    color: var(--text-color);
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dark-light i.sun{
    opacity: 0;
    pointer-events: none;
}

.dark-light.active i.sun{
    opacity: 1;
    pointer-events: auto;
}

.dark-light.active i.moon{
    opacity: 0;
    pointer-events: none;
}

.searchToggle i.cancel{
    opacity: 0;
    pointer-events: none;
}

.searchToggle.active i.cancel{
    opacity: 1;
    pointer-events: auto;
}

.searchToggle.active i.search{
    opacity: 0;
    pointer-events: none;
}

.searchBox{
    position: relative;
}

.searchBox .search-field{
    position: absolute;
    bottom: -85px;
    right: 5px;
    height: 50px;
    width: 300px;
    display: flex;
    align-items: center;
    background-color: var(--nav-color);
    padding: 3px;
    border-radius: 6px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.searchToggle.active ~ .search-field{
    bottom: -74px;
    opacity: 1;
    pointer-events: auto;
}

.search-field::before{
    content: '';
    position: absolute;
    right: 14px;
    top: -4px;
    height: 12px;
    width: 12px;
    background-color: var(--nav-color);
    transform: rotate(-45deg);
    z-index: -1;
}

.search-field input{
    height: 100%;
    width: 100%;
    padding: 0 45px 0 15px;
    outline: none;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    color: var(--search-text);
    background-color: var(--search-bar);
}





/* Hero section styles */
.hero {
  background-image: url('home-campus.jpg');
  background-size: cover;
  background-position: center;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  font-size: 4rem;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
}

/*!* Services section styles *!*/
/*.services {*/
/*  background: #ffffff;*/
/*  padding: 50px 0;*/
/*}*/

/*.services h2 {*/
/*  font-size: 2.5rem;*/
/*  text-align: center;*/
/*  margin-bottom: 50px;*/
/*}*/

/*.services .service {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  margin-bottom: 50px;*/
/*}*/

/*.services .service img {*/
/*  max-width: 200px;*/
/*  margin-right: 30px;*/
/*}*/

/*.services .service h3 {*/
/*  font-size: 1.8rem;*/
/*  margin-bottom: 10px;*/
/*}*/

/*.services .service p {*/
/*  font-size: 1.2rem;*/
/*  line-height: 1.5;*/
/*  margin: 0;*/
/*}*/

/*#updates-news {*/
/*  background-color: #f9f9f9;*/
/*  padding: 60px 0;*/
/*}*/

/*#updates-news h2 {*/
/*  font-size: 36px;*/
/*  font-weight: bold;*/
/*  text-align: center;*/
/*  margin-bottom: 40px;*/
/*}*/

/*#updates-news .card {*/
/*  border: none;*/
/*  margin-bottom: 30px;*/
/*}*/

/*#updates-news .card-title {*/
/*  font-size: 24px;*/
/*  font-weight: bold;*/
/*  margin-bottom: 15px;*/
/*}*/

/*#updates-news .card-text {*/
/*  font-size: 16px;*/
/*  margin-bottom: 15px;*/
/*}*/

/*#updates-news .btn-primary {*/
/*  background-color: #007bff;*/
/*  border-color: #007bff;*/
/*  font-size: 14px;*/
/*  font-weight: bold;*/
/*}*/

/*#updates-news .btn-primary:hover {*/
/*  background-color: #0062cc;*/
/*  border-color: #005cbf;*/
/*}*/


.card-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 50%;
}

