@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,600;1,700&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300;400;500;600;700&family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700&family=Source+Code+Pro:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600&family=Wix+Madefor+Text:ital,wght@0,400;0,500;0,600;0,700;0,800&display=swap');


:root {
  --sixty-pr-color: #f1f1f1;
  --thirty-pr-color: #4846A5;
  --ten-pr-color: #a87feb;
  --shade: #EDEDF6 --font-logo: "Nunito", sans-serif;
  --font-list-item: "Poppins", sans-serif;
  --font-hero: "Instrument Sans", sans-serif;
}


@layer base {
  .font-poppins {
    font-family: 'Poppins', sans-serif;
  }

  .font-rubik {
    font-family: 'Rubik', sans-serif;
  }

  .font-quicksand {
    font-family: 'Quicksand', sans-serif;
  }
}

.hamburger.active .line:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger.active .line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-list.active {
  left: 5%;
  width: 90%;
  top: 100%;
  scale: 1;
  opacity: 1;
  height: 275%;
  background-color: var(--sixty-pr-color);
  box-shadow: #32325d40 0 50px 100px -20px, #0000004d 0 30px 60px -30px;
}

@media only screen and (max-width: 767px) {
  .hamburger {
    display: flex;
    position: fixed;
    right: 5%;
    z-index: 1000;
  }
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  scroll-behavior: smooth;
  font-family: 'Poppins', sans-serif;
}


  *::selection {
    background-color: #2f327d;
    color: var(--sixty-pr-color)
  }

  ::-webkit-scrollbar {
    width: 10px
  }

  ::-webkit-scrollbar-track {
    background: var(--thirty-pr-color)
  }

  ::-webkit-scrollbar-thumb {
    background: var(--ten-pr-color)
  }

  ::-webkit-scrollbar-thumb:hover {
    background: var(--sixty-pr-color)
  }

  body{
    width: 100%;
  }

/* Departments section */

.swiper-wrapper {
  height: 495px;
}

.swiper-button-next,
.swiper-button-prev {
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.swiper-button-next {
  right: -15px;
}

.swiper-button-prev {
  left: -15px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.swiper-slide>div {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 295px;
  width: 24vw;
  height: 470px;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 3px 5px 2px rgba(61, 58, 162, 0.75);
  max-width: 320px;
  background-color: #EDEDF6;
  justify-self: center;
  align-self: center;
}

.swiper-slide img {
  height: 200px;
  object-fit: cover;
}

.swiper-slide h2 {
  flex-grow: 1;
  text-align: center;
  font-size: 1.25rem;
  margin-top: 10px;
}

.swiper-slide a {
  background-color: #4846A5;
  color: white;
  padding: 15px;
  text-align: center;
  font-size: 1.3rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  border-radius: 8%;
  display: inline-block;
  margin: 0 auto;
  overflow: visible;
}

.swiper-slide a:hover {
  background-color: #3837a7;
}

@media (max-width: 640px) {
  .swiper-button-next {
    right: 10px;
  }

  .swiper-button-prev {
    left: 10px;
  }

  .swiper-slider>div {
    zoom: 0.8;
  }
}

@media (max-width: 760px) {
  .swiper-slide>div {
    width: 95%;
  }
}

@media (min-width: 770px) and (max-width: 920px) {
  .swiper-button-next {
    right: 10px;
  }

  .swiper-button-prev {
    left: 10px;
  }

  .swiper-slide>div {
    width: 80%;
  }
}

@media (min-width: 1024px) and (max-width: 1090px) {
  .swiper-button-next {
    right: 0px;
  }

  .swiper-button-prev {
    left: 0px;
  }
}

/* Department section end */
/* Subjects section */

.subject-cards {
  justify-content: center;
  align-content: center;
}

.subject-cards>div {
  margin-top: 10px;
  height: fit-content;
  max-width: 320px;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: 0px 3px 5px 2px rgba(61, 58, 162, 0.75);
  background-color: #EDEDF6;
  max-width: 350px;
  width: 100%;
  justify-self: center;
  align-self: center;
}

.subject-cards a {
  background-color: #4846A5;
  color: white;
  padding: 15px;
  text-align: center;
  font-size: 1.3rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  border-radius: 8%;
  display: inline-block;
  margin: 0 auto;
  overflow: visible;
}

.subject-cards a:hover {
  background-color: #3837a7;
}

.subject-cards img, .swiper-slide img {
  height: auto;
  width: auto;
  zoom: 0.3;
  margin: auto;
}

@media (max-width: 520px) {
  .subject-cards>div {
    zoom: 0.8;
  }
}

/* Subjects section end */


/* Button styling */
.btn-groups {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
}

.btn {
  padding: .85rem 1.5rem;
  border: none;
  border-radius: .25rem;
  cursor: pointer;
  font-weight: 500;
  transition: all .3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center; 
}

.btn-primary {
  background-color: #4846A5;
  color: #fff;
}

.btn-primary:hover {
  background-color: #a77deb;
}

/* Why choose us */

.grid-container-1{
  display: grid;
  grid-template-rows: auto 1fr;
  gap:2em;
  border-right: 10px #F1C34D solid;
  align-items: center;
  justify-content: center;
  padding-right: 3vw;
}

.grid-container-2{
  display: grid;
  grid-template-rows: auto 1fr;
  gap:2em;
  padding-left:40px;
}

.point-1 .point-2 .point-3 .point-4{
  display: flex;
  justify-content: flex-end;
}

@media only screen and (max-width: 768px){
  .grid-container-1
  {
    border-right: none;
  }

  .point-1 
  {
    border-bottom:none ;
  }

  .point-2
  {
    margin-top: -1.2em;
  }

  .point-3
  {
    border-bottom: none;
  }

  .grid-container
  {
    margin-top: 0%;
    display: flex;
    flex-direction: column;
    gap:1.3em;
    padding: 0;
    width: 100%;
  }

  .grid-container-1
  {
    margin: auto;
  }

  .grid-container-2
  {
    padding-left: 0px;
  }
}

/* Update suggestions styles */
.suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  border: none;
  max-height: 180px;
  overflow-y: auto;
  background-color: white;
  width: 100%;
  color: black;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  z-index: 100;
}

.suggestion-item {
  padding: 0.75rem 1rem;
  cursor: pointer;
  color: black;
  transition: all 0.2s ease;
}

.suggestion-item:hover {
  background-color: #f3f4f6;
}

.suggestion-item:first-child {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.suggestion-item:last-child {
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

/* Dark mode styles */
.dark .suggestions {
  background-color: #1f2937;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
}

.dark .suggestion-item {
  color: #e5e7eb;
}

.dark .suggestion-item:hover {
  background-color: #374151;
}

/* Add to your existing styles.css */
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}

/* Theme toggle button hover effect */
#theme-toggle {
  position: relative;
  overflow: hidden;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

#theme-toggle:hover {
  background-color: rgba(156, 163, 175, 0.1);
}

.dark #theme-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

#theme-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
  transition: transform 0.2s ease;
}

#theme-toggle:hover svg {
  transform: scale(1.1);
}

.dark #theme-toggle-light-icon {
  color: #fbbf24;
}

.dark #theme-toggle-dark-icon {
  color: #e5e7eb;
}

/* Dark mode specific styles */
.dark .suggestion-item {
  background-color: #1f2937;
  color: #e5e7eb;
  border-color: #374151;
}

.dark .suggestion-item:hover {
  background-color: #374151;
}

.dark input::placeholder,
.dark textarea::placeholder {
  color: #9ca3af;
}

.dark .btn-primary {
  background-color: #7c3aed;
}

.dark .btn-primary:hover {
  background-color: #6d28d9;
}

/* Update dark mode styles */
.dark .bg-white {
  background-color: #1f2937;
}

.dark .shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
}

.dark .border {
  border-color: #374151;
}

/* Add these styles for smooth page transitions */
body {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

body.page-transition {
  opacity: 0;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Header consistency */
#header-logo {
  font-size: 1.5rem;
  line-height: 2rem;
}

@media (min-width: 640px) {
  #header-logo {
    font-size: 1.75rem;
    line-height: 2.25rem;
  }
}

/* Update shimmer styles */
.shimmer {
  background: #f6f7f8;
  background-image: linear-gradient(
    to right,
    #f6f7f8 0%,
    #edeef1 20%,
    #f6f7f8 40%,
    #f6f7f8 100%
  );
  background-repeat: no-repeat;
  background-size: 800px 100%;
  animation: shimmer 1.5s infinite linear;
}

.dark .shimmer {
  background: #374151;
  background-image: linear-gradient(
    to right,
    #374151 0%,
    #4b5563 20%,
    #374151 40%,
    #374151 100%
  );
}

@keyframes shimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}

/* Loading state */
.loading {
  opacity: 0.7;
  transition: opacity 0.3s ease-in-out;
}

.loading-complete {
  opacity: 1;
}

/* Add responsive styles */
@media (max-width: 640px) {
  /* Header adjustments */
  #header-logo {
    font-size: 1.5rem;
  }

  /* Theme toggle button */
  #theme-toggle span {
    display: none;
  }

  /* Mobile menu */
  .mobile-menu {
    padding: 1rem;
  }

  /* Search bar */
  .suggestions {
    width: 100%;
    max-width: 280px;
  }

  /* Cards grid */
  .subject-cards > div {
    width: 100%;
    margin: 0.5rem 0;
  }

  /* Department cards */
  .swiper-slide > div {
    width: 90%;
    margin: 0 auto;
  }

  /* Footer adjustments */
  #footer-logo {
    font-size: 2rem;
  }

  .footer-form {
    flex-direction: column;
    gap: 1rem;
  }

  /* Contact form */
  .contact-form {
    padding: 1rem;
  }

  /* Team section */
  .team-member {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Adjust card sizes for mobile */
@media (max-width: 640px) {
  .subject-card, .shimmer-card {
    height: 380px;
    max-width: 300px;
  }

  .card-image {
    height: 160px;
  }

  .card-title {
    font-size: 1rem;
  }
}

/* Improve spacing on mobile */
@media (max-width: 640px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .grid {
    gap: 1rem;
  }

  .py-12 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

/* Mobile menu styles */
@media (max-width: 640px) {
  #mobile-menu {
    visibility: visible;
    pointer-events: auto;
  }

  #mobile-menu.translate-x-full {
    visibility: hidden;
    pointer-events: none;
  }

  #mobile-menu .absolute {
    will-change: transform;
  }

  /* Prevent body scroll when menu is open */
  body.menu-open {
    overflow: hidden;
  }
}

/* Menu button styles */
@media (max-width: 640px) {
  #menu-toggle {
    padding: 0.5rem;
    border-radius: 0.375rem;
  }

  #menu-toggle:hover {
    background-color: rgba(156, 163, 175, 0.1);
  }

  .dark #menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  /* Show All Notes button on mobile */
  #nav-btn {
    display: inline-flex !important;
  }

  /* Adjust header spacing */
  .header-buttons {
    gap: 0.5rem;
  }
}

/* Drawer close button styles */
.mobile-menu .close-button {
  transition: all 0.2s ease;
}

.mobile-menu .close-button:hover {
  transform: rotate(90deg);
}

/* Swiper styles */
.swiper-container {
  padding: 20px 0 40px;
  overflow: hidden !important;
}

.swiper-wrapper {
  transition-timing-function: ease-out;
}

/* Ensure proper initial state */
.swiper:not(.swiper-initialized) .swiper-wrapper {
  transform: translate3d(0, 0, 0) !important;
}

/* Prevent FOUC (Flash of Unstyled Content) */
.swiper:not(.swiper-initialized) .swiper-slide {
  opacity: 0;
}

/* Updated pagination styles */
.swiper-pagination {
  position: relative !important;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #e5e7eb;
  opacity: 1;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.swiper-pagination-bullet-active {
  background: #7c3aed;
  transform: scale(1.2);
}

/* Dark mode styles */
.dark .swiper-pagination-bullet {
  background: #4b5563;
}

.dark .swiper-pagination-bullet-active {
  background: #9333ea;
}

/* Navigation buttons */
.swiper-button-next,
.swiper-button-prev {
  color: #7c3aed;
  transition: all 0.3s ease;
}

.dark .swiper-button-next,
.dark .swiper-button-prev {
  color: #9333ea;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #6d28d9;
}

.dark .swiper-button-next:hover,
.dark .swiper-button-prev:hover {
  color: #7c3aed;
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .swiper-pagination {
    margin-top: 1rem;
    gap: 0.25rem;
  }

  .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

/* Navigation arrows styles */
.custom-nav-btn {
  width: 44px;
  height: 44px;
  background-color: rgba(124, 58, 237, 0.9);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.custom-nav-btn:after {
  display: none;
}

.nav-icon {
  width: 24px;
  height: 24px;
  color: white;
  transition: transform 0.2s ease;
}

.swiper-button-next.custom-nav-btn {
  right: -5px;
}

.swiper-button-prev.custom-nav-btn {
  left: -5px;
}

/* Hover effects */
.custom-nav-btn:hover {
  background-color: rgba(109, 40, 217, 1);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.custom-nav-btn:hover .nav-icon {
  transform: scale(1.1);
}

/* Dark mode styles */
.dark .custom-nav-btn {
  background-color: rgba(147, 51, 234, 0.9);
  border-color: rgba(255, 255, 255, 0.05);
}

.dark .custom-nav-btn:hover {
  background-color: rgba(124, 58, 237, 1);
}

/* Mobile styles */
@media (max-width: 640px) {
  .custom-nav-btn {
    width: 38px;
    height: 38px;
    opacity: 0.95;
    background-color: rgba(124, 58, 237, 0.95);
  }

  .nav-icon {
    width: 20px;
    height: 20px;
  }

  .swiper-button-next.custom-nav-btn {
    right: 0;
  }

  .swiper-button-prev.custom-nav-btn {
    left: 0;
  }

  /* Show navigation on mobile */
  .swiper-button-next,
  .swiper-button-prev {
    display: flex !important;
  }
}

/* Active state */
.custom-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
  background-color: rgba(91, 33, 182, 1);
}

/* Disabled state */
.swiper-button-disabled.custom-nav-btn {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  background-color: rgba(156, 163, 175, 0.9);
}

/* Container adjustments */
.swiper-container {
  padding: 0 20px;
  margin: 0 20px;
}

/* Ensure smooth transitions */
.swiper-slide-active {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Card content spacing */
.card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1rem;
}

.card-image {
  margin-bottom: 0.5rem;
  height: 12rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-code {
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.card-title {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
}

.card-button {
  margin-top: auto;
}

/* Department card specific */
.department-card {
  height: 380px;
}

.department-card .card-image {
  margin-bottom: 0.5rem;
}

.department-card .card-title {
  margin-bottom: 0.5rem;
}

/* Footer responsive styles */
@media (max-width: 640px) {
  footer {
    padding: 2rem 0;
  }

  footer .flex {
    flex-wrap: nowrap;
  }

  footer img {
    max-height: 2rem;
    width: auto;
  }

  footer form {
    max-width: 100%;
    padding: 0 1rem;
  }

  footer input {
    font-size: 0.875rem;
  }

  footer button {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }
}

/* Ensure footer content stays within bounds */
footer > div {
  max-width: 100%;
  margin: 0 auto;
}

footer img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Footer form responsiveness */
#footerContactForm {
  width: 100%;
  max-width: 36rem;
  margin: 0 auto;
}

/* Hero section responsive styles */
@media (max-width: 640px) {
  #home .container {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  #home h2 {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
    line-height: 1.2;
  }

  #home h3 {
    font-size: clamp(2rem, 6vw, 2.5rem);
    line-height: 1.2;
  }

  #home .suggestions {
    width: 280px;
  }
}

/* Search suggestions responsive */
.suggestions {
  width: 280px;
  max-height: 200px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .suggestions {
    width: 300px;
  }
}
/* From Uiverse.io by Nawsome */ 
.banter-loader {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72px;
  height: 72px;
  margin-left: -36px;
  margin-top: -36px;
}

.banter-loader__box {
  float: left;
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: 6px;
}

.banter-loader__box:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #6b46c1;
}

.banter-loader__box:nth-child(3n) {
  margin-right: 0;
  margin-bottom: 6px;
}

.banter-loader__box:nth-child(1):before, .banter-loader__box:nth-child(4):before {
  margin-left: 26px;
}

.banter-loader__box:nth-child(3):before {
  margin-top: 52px;
}

.banter-loader__box:last-child {
  margin-bottom: 0;
}

@keyframes moveBox-1 {
  9.0909090909% {
    transform: translate(-26px, 0);
  }

  18.1818181818% {
    transform: translate(0px, 0);
  }

  27.2727272727% {
    transform: translate(0px, 0);
  }

  36.3636363636% {
    transform: translate(26px, 0);
  }

  45.4545454545% {
    transform: translate(26px, 26px);
  }

  54.5454545455% {
    transform: translate(26px, 26px);
  }

  63.6363636364% {
    transform: translate(26px, 26px);
  }

  72.7272727273% {
    transform: translate(26px, 0px);
  }

  81.8181818182% {
    transform: translate(0px, 0px);
  }

  90.9090909091% {
    transform: translate(-26px, 0px);
  }

  100% {
    transform: translate(0px, 0px);
  }
}

.banter-loader__box:nth-child(1) {
  animation: moveBox-1 4s infinite;
}

@keyframes moveBox-2 {
  9.0909090909% {
    transform: translate(0, 0);
  }

  18.1818181818% {
    transform: translate(26px, 0);
  }

  27.2727272727% {
    transform: translate(0px, 0);
  }

  36.3636363636% {
    transform: translate(26px, 0);
  }

  45.4545454545% {
    transform: translate(26px, 26px);
  }

  54.5454545455% {
    transform: translate(26px, 26px);
  }

  63.6363636364% {
    transform: translate(26px, 26px);
  }

  72.7272727273% {
    transform: translate(26px, 26px);
  }

  81.8181818182% {
    transform: translate(0px, 26px);
  }

  90.9090909091% {
    transform: translate(0px, 26px);
  }

  100% {
    transform: translate(0px, 0px);
  }
}

.banter-loader__box:nth-child(2) {
  animation: moveBox-2 4s infinite;
}

@keyframes moveBox-3 {
  9.0909090909% {
    transform: translate(-26px, 0);
  }

  18.1818181818% {
    transform: translate(-26px, 0);
  }

  27.2727272727% {
    transform: translate(0px, 0);
  }

  36.3636363636% {
    transform: translate(-26px, 0);
  }

  45.4545454545% {
    transform: translate(-26px, 0);
  }

  54.5454545455% {
    transform: translate(-26px, 0);
  }

  63.6363636364% {
    transform: translate(-26px, 0);
  }

  72.7272727273% {
    transform: translate(-26px, 0);
  }

  81.8181818182% {
    transform: translate(-26px, -26px);
  }

  90.9090909091% {
    transform: translate(0px, -26px);
  }

  100% {
    transform: translate(0px, 0px);
  }
}

.banter-loader__box:nth-child(3) {
  animation: moveBox-3 4s infinite;
}

@keyframes moveBox-4 {
  9.0909090909% {
    transform: translate(-26px, 0);
  }

  18.1818181818% {
    transform: translate(-26px, 0);
  }

  27.2727272727% {
    transform: translate(-26px, -26px);
  }

  36.3636363636% {
    transform: translate(0px, -26px);
  }

  45.4545454545% {
    transform: translate(0px, 0px);
  }

  54.5454545455% {
    transform: translate(0px, -26px);
  }

  63.6363636364% {
    transform: translate(0px, -26px);
  }

  72.7272727273% {
    transform: translate(0px, -26px);
  }

  81.8181818182% {
    transform: translate(-26px, -26px);
  }

  90.9090909091% {
    transform: translate(-26px, 0px);
  }

  100% {
    transform: translate(0px, 0px);
  }
}

.banter-loader__box:nth-child(4) {
  animation: moveBox-4 4s infinite;
}

@keyframes moveBox-5 {
  9.0909090909% {
    transform: translate(0, 0);
  }

  18.1818181818% {
    transform: translate(0, 0);
  }

  27.2727272727% {
    transform: translate(0, 0);
  }

  36.3636363636% {
    transform: translate(26px, 0);
  }

  45.4545454545% {
    transform: translate(26px, 0);
  }

  54.5454545455% {
    transform: translate(26px, 0);
  }

  63.6363636364% {
    transform: translate(26px, 0);
  }

  72.7272727273% {
    transform: translate(26px, 0);
  }

  81.8181818182% {
    transform: translate(26px, -26px);
  }

  90.9090909091% {
    transform: translate(0px, -26px);
  }

  100% {
    transform: translate(0px, 0px);
  }
}

.banter-loader__box:nth-child(5) {
  animation: moveBox-5 4s infinite;
}

@keyframes moveBox-6 {
  9.0909090909% {
    transform: translate(0, 0);
  }

  18.1818181818% {
    transform: translate(-26px, 0);
  }

  27.2727272727% {
    transform: translate(-26px, 0);
  }

  36.3636363636% {
    transform: translate(0px, 0);
  }

  45.4545454545% {
    transform: translate(0px, 0);
  }

  54.5454545455% {
    transform: translate(0px, 0);
  }

  63.6363636364% {
    transform: translate(0px, 0);
  }

  72.7272727273% {
    transform: translate(0px, 26px);
  }

  81.8181818182% {
    transform: translate(-26px, 26px);
  }

  90.9090909091% {
    transform: translate(-26px, 0px);
  }

  100% {
    transform: translate(0px, 0px);
  }
}

.banter-loader__box:nth-child(6) {
  animation: moveBox-6 4s infinite;
}

@keyframes moveBox-7 {
  9.0909090909% {
    transform: translate(26px, 0);
  }

  18.1818181818% {
    transform: translate(26px, 0);
  }

  27.2727272727% {
    transform: translate(26px, 0);
  }

  36.3636363636% {
    transform: translate(0px, 0);
  }

  45.4545454545% {
    transform: translate(0px, -26px);
  }

  54.5454545455% {
    transform: translate(26px, -26px);
  }

  63.6363636364% {
    transform: translate(0px, -26px);
  }

  72.7272727273% {
    transform: translate(0px, -26px);
  }

  81.8181818182% {
    transform: translate(0px, 0px);
  }

  90.9090909091% {
    transform: translate(26px, 0px);
  }

  100% {
    transform: translate(0px, 0px);
  }
}

.banter-loader__box:nth-child(7) {
  animation: moveBox-7 4s infinite;
}

@keyframes moveBox-8 {
  9.0909090909% {
    transform: translate(0, 0);
  }

  18.1818181818% {
    transform: translate(-26px, 0);
  }

  27.2727272727% {
    transform: translate(-26px, -26px);
  }

  36.3636363636% {
    transform: translate(0px, -26px);
  }

  45.4545454545% {
    transform: translate(0px, -26px);
  }

  54.5454545455% {
    transform: translate(0px, -26px);
  }

  63.6363636364% {
    transform: translate(0px, -26px);
  }

  72.7272727273% {
    transform: translate(0px, -26px);
  }

  81.8181818182% {
    transform: translate(26px, -26px);
  }

  90.9090909091% {
    transform: translate(26px, 0px);
  }

  100% {
    transform: translate(0px, 0px);
  }
}

.banter-loader__box:nth-child(8) {
  animation: moveBox-8 4s infinite;
}

@keyframes moveBox-9 {
  9.0909090909% {
    transform: translate(-26px, 0);
  }

  18.1818181818% {
    transform: translate(-26px, 0);
  }

  27.2727272727% {
    transform: translate(0px, 0);
  }

  36.3636363636% {
    transform: translate(-26px, 0);
  }

  45.4545454545% {
    transform: translate(0px, 0);
  }

  54.5454545455% {
    transform: translate(0px, 0);
  }

  63.6363636364% {
    transform: translate(-26px, 0);
  }

  72.7272727273% {
    transform: translate(-26px, 0);
  }

  81.8181818182% {
    transform: translate(-52px, 0);
  }

  90.9090909091% {
    transform: translate(-26px, 0);
  }

  100% {
    transform: translate(0px, 0);
  }
}

.banter-loader__box:nth-child(9) {
  animation: moveBox-9 4s infinite;
}

.top-id{
  height:33px !important;
}


#scrollUpBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #5C2C21;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: none; 
  justify-content: center;
  align-items: center;
  font-size: 24px;
}

#scrollUpBtn:hover {
  background-color: #3E1E14;
}

/* Scroll to top button styles */
#scrollToTop {
  z-index: 50;
  opacity: 0.9;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#scrollToTop:hover {
  opacity: 1;
  transform: scale(1.1);
}

#scrollToTop svg {
  transition: transform 0.2s ease;
}

#scrollToTop:hover svg {
  transform: translateY(-2px);
}

/* Mobile adjustments */
@media (max-width: 640px) {
  #scrollToTop {
    bottom: 1rem;
    right: 1rem;
    width: 2.75rem;
    height: 2.75rem;
  }

  #scrollToTop svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}

/* Add styles for search container */
.search-container {
  position: relative;
  z-index: 9;
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
  .suggestions {
    position: fixed;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    margin-top: 4px;
  }
}

/* Clear button styles */
#clearSearch {
  transition: all 0.2s ease;
  padding: 2px;
  border-radius: 50%;
}

#clearSearch:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.dark #clearSearch:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Adjust input padding for clear button */
#searchInput {
  padding-right: 2.5rem;
}
