body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  background-color: #f5f5f5;
  color: #000000;
  padding-top: 70px;
}

/* ::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #d6d2c9;
}

::-webkit-scrollbar-thumb {
  background: #5600c0;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: #002041;
}

::-webkit-scrollbar-thumb:hover {
  background: #32025c;
} */

.navbar {
  /* background-color: #000000; */
  background-color: #002041;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
}

.image-container {
  padding-top: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-container img {
  width: 80%;
  height: 80%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
  border-radius: 10px;
  margin: 0 auto;
  box-shadow: 0 4px 8px rgb(255, 255, 255);
}

@media (max-width: 767px) {
  .image-container img {
    width: 80%;
    height: auto;
  }
}

@media (max-width: 480px) {

  .mbl-margin {
    margin-top: 20px;
  }

}

.image-container img:hover {
  transform: scale(1.1);
}

.modal-dialog {
  max-width: none;
  height: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  width: auto;
  border-radius: 10px;
}

.modal-body {
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-body img {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 3.5rem);
  object-fit: contain;
  border-radius: 10px;
}

.close-modal {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  color: #ffffff;
  font-size: 2rem;
  z-index: 1;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 1040;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show~.modal-backdrop {
  opacity: 1;
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 10px 0;
  background-color: #ffffff;
  border-top: 1px solid #eee;
}

body.dark-mode {
  background-color: #000000;
  /* color: #fff; */
}

.navbar-dark .navbar-nav .nav-link {
  color: #fff;
}

.footer.dark-mode {
  background-color: #000000;
}

/* .banner-img {
  height: 300px;
} */

.footer-margin {
  background-color: #002041;
  color: #ffffff;
  margin-top: 100px;
}