
.footer-section {
  background-color: rgb(55, 55, 55);
  color: rgb(201, 201, 201) !important;
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
}

.sponsors-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  padding: 30px 20px;
  gap: 20px;
  border-bottom: solid rgb(83, 83, 83) 1px;
}

.sponsor-icon {
  height: 30px;
  width: 30px;
  object-fit: fill;
  display: flex;
  align-items: center;
}

.sponsors-container a {
  padding: 10px;
  border-radius: 5px;
  overflow: hidden;
  transition: 0.35s ease;
  background-color: rgb(78, 78, 78);
}

.sponsors-container a:hover {
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.105);
  background-color: rgb(101, 101, 101);
}



.feedback-button-fixed {
  position: fixed;
  bottom: 20px;
  right: 25px;
  z-index: 10;
  padding: 8px;
  border-radius: 50%;
  border: none;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  background-color: rgb(0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.35s ease;
}

.feedback-button-fixed:hover {
  transform: rotateZ(360deg);
}

.feedback-button-fixed:active {
  transform: scale(95%) rotatez(360deg);
}

.feedback-button-fixed img {
  height: 30px;
  width: 30px;
  object-fit: cover;
}


.links-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding: 20px 35px;
}

.link-section ul li{
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 3px;
}

.link-section ul li p {
  margin-bottom: 15px;
  padding: 5px;
  color: white !important;
}

.footer-link {
  text-decoration: none;
  color: white !important;
  font-size: 12px;
  padding: 5px;
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 3px;
}

.footer-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  height: 1px;
  background-color: rgb(222, 222, 222);
  width: 0%;
  transition: 0.3s ease;
}

.footer-link:hover::after {
  width: 100%;
}

.social-icons {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
  gap: 30px;
  align-items: flex-start;
  padding-bottom: 40px;
  margin-left: -10px;
}


.social-icons ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-end;
}

.social-icons p {
  font-size: 23px;
  color: white !important;
}

.social-icon {
  text-decoration: none;
  color: white !important;
  gap: 5px;
  font-size: 10px;
}

.social-icon img {
  height: 25px;
  width: 25px;
  object-fit: contain;
}














footer {
  text-align: center;
  font-size: 12px;
  background-color: rgb(55, 55, 55);
  color: azure !important;
  padding: 20px;
  border-top: solid rgba(101, 129, 129, 0.4) 1px;
}





 ::-webkit-scrollbar {
   width: 12px;
   height: 12px;
   border-radius: 10px;
 }

 body::-webkit-scrollbar-track {
   background: #f1f1f100;
 }

 body::-webkit-scrollbar-thumb {
   background-color: #8a8059;
   border-radius: 0px;
   border: solid #ffffff 3px;
 }

 body.light-mode::-webkit-scrollbar-thumb {
   background-color: #63767a;
   border-radius: 10px;
   border: solid #ffffff 3px;
 }

 ::-webkit-scrollbar-thumb:hover {
   background-color: #747c7e;
 }

 /* Hide the scrollbar buttons */
 ::-webkit-scrollbar-button {
   display: flex;
   background-color: #505050;
   border: solid #ffffff 1.5px;
   height: 12px;
   border-radius: 50%;
 }

 @media print {
  .footer-section {
    display: none;
  }
}
