/* ************* Header********** */

#banner {
  background-image: url("../assets/images/export-import/Export and import banner.png");
  background-repeat: no-repeat;
  background-size: 100% 40vh;
  height: 40vh;
  width: 100%;
  position: relative;
}

#banner-text {
  color: rgb(189, 189, 22);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.img-banner {
  height: 40vh;
  width: 100%;
}

.menu {
  top: 10px;
  text-align: center;
}

/* ***************************** */

.export-img {
  max-width: 100%;
  min-height: 350px;
  max-height: 390px;
  border-radius: 5%;
}

/* ************ Products ********* */
.card {
  text-align: center;
  /* width: 14rem; */
}

.filter-chip {
  background-color: white;
  border-radius: 10px;
  box-shadow: 3px 3px 3px grey;
  display: inline-block;
  padding: 5px 25px;
  margin: 8px 8px;
}

.filter-chip:hover {
  cursor: pointer;
}

.filter-active {
  background-color: #005faa;
  color: white;
}

#exp-filter-clear {
  box-shadow: 3px 3px 3px grey;
  color: white;
}

.product-card {
  padding-bottom: 1rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

.product-card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

/* Loading Indicator */
.loading-spinner {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

.loading-spinner.active {
  display: block;
}

.spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #005faa;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loading-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
}

.loading-overlay.active {
  display: block;
}

/* ******************************* */

.contact-card {
  max-width: 90vw;
}


/**********Quotation Popup**********/
.overlay-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.popup-box {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  width: 500px;
  text-align: center;
  opacity: 1;
  transform: scale(0.8);
  animation: fadeInUp 0.5s ease-out forwards;
}

form {
  background-color: white;
  padding: 20px;
  max-width: 500px;
  margin: 50px auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

form input {
  flex-grow: 1;
}

label {
  width: max-content;
  font-size: 16px;
  color: #333;
}

/********************************/