.facebook {background-color:  #3b5999;}
.twitter {background-color: #3AAFD6;}
.whatsapp {background-color: #25D366;}
.print {background-color: #de3c7d;}
.pinterest{background-color: #BD081C;}
.linkedin{background-color: #0e76a8 ;}
.instagram{background-color:  #c32aa3;}

/* Indirect children of section */
section > * {
  /* Add any general styles for indirect children of section */
}

/* h3 and h4 elements within section */
section h3,
section h4 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}


.s-soft {
    position: fixed;
    top: 100px;
    left: 1px; /* Ensure this is a valid unit */
    z-index: 1000;
    transition: left 0.3s ease; /* Smooth transition for the sidebar */
}

.s-soft a:first-child {
    border-radius: 0 8px 0 0;
}

.s-soft a:last-child {
    border-radius: 0 0 8px 0;
}

.s-item {
    display: block;
    width: 40px;
    height: 40px;
    color: white;
    font-size: 20px;
    line-height: 40px;
    text-align: center;
    transition: all linear 0.2s;
}

.s-item:hover {
    width: 80px;
    border-radius: 0px 20px 20px 0px;
}

#sidebar.so-collapse {
    left: -60px; /* Adjust this value to hide the sidebar */
}
#branding-action-bar {
  visibility: hidden;
}
.toggle-btn {
    position: absolute;
    top: 0;
    left: 50px; /* Position the toggle button */
    background: transparent; /* Set the background to transparent */
    
    border-radius: 50%; /* Make the button circular */
    color: #523dcc; /* Set the text color */
    font-size: 24px;
    cursor: pointer;
    transition: all linear 0.2s;
    animation: pulse 1.5s infinite; /* Apply the pulse animation */
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(82, 61, 204, 0.7);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 20px 10px rgba(82, 61, 204, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(82, 61, 204, 0);
    }
}

/* Standard Margin and Spacing */
section li {
  margin-bottom: 0.5rem;
  list-style-type: disc;
}

/* Responsive Margin and Spacing */
@media (max-width: 767.98px) {
  section li {
    margin-bottom: 0.25rem;
  }

  .top-bar {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 0.8rem;
  }

  .contact-info {
    display: block;
  }

  .contact-info li {
    display: inline-block;
  }

  .contact-info li:first-child {
    float: left;
  }

  .contact-info li:last-child {
    float: right;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  section li {
    margin-bottom: 0.375rem;
  }

  .contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .contact-info li {
    display: inline-block;
  }

  .contact-info li:first-child {
    float: left;
  }

  .contact-info li:last-child {
    float: right;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  section li {
    margin-bottom: 0.5rem;
  }

  .contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .contact-info li {
    display: inline-block;
  }

  .contact-info li:first-child {
    float: left;
  }

  .contact-info li:last-child {
    float: right;
  }
}

@media (min-width: 1200px) {
  section li {
    margin-bottom: 0.5rem;
  }

  .contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .contact-info li {
    display: inline-block;
  }

  .contact-info li:first-child {
    float: left;
  }

  .contact-info li:last-child {
    float: right;
  }
}

.bg-dark-purple {
  background-color: #523dcc; /* Dark purple color */
}

.top-bar {
  font-size: 0.9rem;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.contact-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info a {
  text-decoration: none;
}

.contact-info a:hover {
  color: #e6e6e6 !important;
}




:root {
  --primary-color: #7a6ad8;
  --dark-primary-color: #523dcc;
  --white-color: #fff;
}

.university-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.university-item {
  background-color: var(--white-color);
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.university-item:hover {
  transform: translateY(-5px);
}

.university-link {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: inherit;
}

.university-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 8px;
}

.university-number {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.university-name {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
}

.marquee-container {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 10s linear infinite;
}

.marquee-item {
  display: inline-block;
  padding: 0 20px;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.marquee-item i {
  margin-right: 10px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

@media (max-width: 767px) {
  .marquee-item {
    font-size: 1rem;
  }
}




.adminActions {
  position: fixed;
  bottom: 35px; right: 35px;
}

  .adminButton {
    height: 60px;
    width: 60px;
    background-color: rgba(67, 83, 143, .8);
    border-radius: 50%;
    display: block;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
  }

    .adminButton i {
      font-size: 22px;
    }

  .adminButtons {
    position: absolute;
    width: 100%;
    bottom: 120%;
    text-align: center;
  }

    .adminButtons a {
      display: block;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      text-decoration: none;
      margin: 10px auto 0;
      line-height: 1.15;
      color: #fff;
      opacity: 0;
      visibility: hidden;
      position: relative;
      box-shadow: 0 0 5px 1px rgba(51, 51, 51, .3);
    }

      .adminButtons a:hover {
        transform: scale(1.05);
      }

      .adminButtons a:nth-child(1) {background-color: #ff5722; transition: opacity .2s ease-in-out .3s, transform .15s ease-in-out;}
      .adminButtons a:nth-child(2) {background-color: #03a9f4; transition: opacity .2s ease-in-out .25s, transform .15s ease-in-out;}
      .adminButtons a:nth-child(4) {background-color: #f44336; transition: opacity .2s ease-in-out .2s, transform .15s ease-in-out;}
      .adminButtons a:nth-child(3) {background-color: #4CAF50; transition: opacity .2s ease-in-out .15s, transform .15s ease-in-out;}

      .adminActions a i {
        position: absolute;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%);
      }

  .adminToggle {
    -webkit-appearance: none;
    position: absolute;
    border-radius: 50%;
    top: 0; left: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background-color: transparent;
    border: none;
    outline: none;
    z-index: 2;
    transition: box-shadow .2s ease-in-out;
    box-shadow: 0 3px 5px 1px rgba(51, 51, 51, .3);
  }

    .adminToggle:hover {
      box-shadow: 0 3px 6px 2px rgba(51, 51, 51, .3);
    }

    .adminToggle:checked ~ .adminButtons a {
      opacity: 1;
      visibility: visible;
    }