body {
  max-width: 1400px;
  margin:auto;
  overflow-x: hidden;
  margin-top: 0em;
  padding-top: 0em;
  color: #333;

  padding:1em;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

html {
  height: 100%;
  background: #fffefa;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  overflow-y: scroll;
  /*background: #FFFDF0; */
  /* old browsers */
  /* Chrome 10-25, Safari 5.1-6 */
  /*background: linear-gradient(#00353b, #00a892);*/
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}



* {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  box-sizing: border-box;
}

.navbar .dropdown-menu.multi-column {
  width: max-content;
}

@media (max-width: 767px) {
  .navbar .dropdown-menu.multi-column {
    width: auto;
  }
 
}

.navbar .dropdown-menu.multi-column .dropdown-item {
  white-space: nowrap;
}

.navbar {
  border-top: 1px solid #00000033;
  border-bottom: 1px solid #00000033;
}

.nav-link {
  font-size: 16px;
  font-weight: 500;
}

.navbar .navbar-nav .nav-link {
  color: #000000;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-item:hover>.nav-link {
  color: #ccb60f !important;
  background-color: #ffffff;
}

.dropdown-item:hover {
  background-color: #ffffff;
  color: #f3d913;
}

.image-container {
  position: relative;
  overflow: hidden;
}

.image-container img {
  transition: transform 0.3s;
}

.image-container:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  padding-top: 35%;
}

.image-container:hover .overlay {
  opacity: 1;
}

.text-link {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  padding: 10px 20px;
  background-color: #000;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.text-link:hover {
  background-color: #333;
}

.image-fill {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.no_left_right_padding {
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}

/* Adjust the overlay background */
.login-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  z-index: 999;
  /* Hide the overlay by default */
}

/* Adjust the login form */
.login-form {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  position: relative;
}

/* Position the close button */
.login-close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
}

.progress {
  height: 20px;
}

.progress-bar {
  transition: width 0.6s ease;
}

.progress-bar-striped {
  background-color: #007bff;
  background-image: linear-gradient(to right, #007bff, #6c757d);
  animation: progress-bar-stripes 1s linear infinite;
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }

  to {
    background-position: 0 0;
  }
}

/* CSS to fix height and width of images */
.img-thumbnail.image-preview {
  max-width: 200px;
}


/*carousel*/

.overlay-message {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  transition: opacity 0.9s;
  pointer-events: non   e;
  width: 200px;
  z-index: 999;
}

.is-invalid {
    border-color: #dc3545;
}
.invalid-feedback {
    display: none;
    color: #dc3545;
}






/* .image-container {
  width: 200px;
  height: 200px;
  background-color: #f2f2f2;
  border: 2px dashed #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
} */

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hide image if it's broken (or not available) */
img:not([src]) {
  display: none;
}

/* Triangle that only shows when the image is missing */
.image-container:after {
  content: '';
  display: none; /* Hidden by default */
  width: 80px;
  height: 25px;
  background: #ffcd00;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  position: absolute;
  overflow: hidden;
}

/* Subtle shiny effect */
.image-container:after:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  transform: skewX(-45deg);
  animation: shine 2s infinite;
}

/* Shiny effect animation */
@keyframes shine {
  0% {
      left: -100%;
  }
  100% {
      left: 100%;
  }
}

/* Hide the triangle when image is available */
.image-container img[src=""] ~ .triangle,
.image-container img:not([src]) ~ .triangle {
  display: block;
}

.glow-box {
  background-color: #f2f2f2;
  border: 2px solid transparent;
  border-radius: 10px;  
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.5), 0 0 20px rgba(0, 255, 0, 0.4);
  transition: box-shadow 0.3s ease;
}

/* Hover effect to make the glow stronger */
.glow-box:hover {
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.7), 0 0 30px rgba(0, 255, 0, 0.5);
}