/* ================================================================================================== */
/* Home Page CSS Start  */
/* ================================================================================================== */
/* Wallpaper background */
.wallpaper {
  background: url('../img/Background/dark_back.jpg') no-repeat center center fixed;
  background-size: cover;
  color: white;
  min-height: 100vh;
}


/* Overlay on top of wallpaper */
.overlay {
  background-color: rgba(0, 0, 0, 0.65);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 32px;
}

/* Heading inside overlay */
.overlay h1 {
  font-size: 48px;
  margin-bottom: 16px;
  font-weight: bold;
}

/* Paragraph inside overlay */
.overlay p {
  font-size: 18px;
  margin-bottom: 32px;
}

/* Custom button styling */
.btn-custom {
  padding: 12px 32px;
  font-size: 17px;
  border-radius: 30px;
  margin: 0 8px;
}

/* Gradient text style */
.text-title {
  color: transparent;
  background: linear-gradient(45deg, #0080FF 0%, #ED00A6 50%, #FFFF00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 48px;
  font-weight: bold;
}

.AText {
  color: #a6aab4;
}

.AText:hover {
  color: #000000;
}

/* Responsive typography */
@media (max-width: 767px) {
  .overlay h1 {
    font-size: 32px;
  }

  .overlay p {
    font-size: 16px;
  }

  .btn-custom {
    padding: 10px 24px;
    font-size: 15px;
  }

  .text-title {
    font-size: 36px;
  }
}

/* Custom button hover effects */
.btn-outline-primary {
  border-color: #007bff;
  color: #007bff;
  transition: all 0.3s ease-in-out;
}

.btn-outline-primary:hover {
  background-color: #007bff;
  color: white;
}

.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
  transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

/* Plan card styling */

.card:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.card-body {
  padding: 2rem;
}

.card-title {
  font-size: 24px;
  font-weight: 700;
}

.card-text {
  font-size: 16px;
  margin-bottom: 1.5rem;
}

.card h4 {
  font-size: 20px;
  font-weight: bold;
  color: #007bff;
}

.card ul {
  list-style-type: none;
  padding-left: 0;
}

.card ul li {
  text-align: left;
  font-size: 14px;
  margin-bottom: 8px;
}




/* ================================================================================================== */
/* Home Page CSS End  */
/* ================================================================================================== */


.ec-main-header .navbar .navbar-right .navbar-nav li>.dropdown-menu {
  right: 10px;
}

.ec-brand-icon {
  width: 150px;
}

.sign-inup .ec-brand a img {
  width: 150px;
  max-width: 150px;
  margin-top: 15px;
}

.bg-custom {
  background: #d4e7f4 !important;
}

.btn-custom {
  border-radius: 5px;
  border: 1px solid #8a909d;
  transition: all 0.3s ease-in-out;
}

.btn-custom:hover {
  transition: all 0.3s ease-in-out;
  background: #e7f0f9;
  color: #000;
  border: 1px solid transparent;
}

.toggle-password,
.Form-icon {
  position: absolute;
  cursor: pointer;
  color: #8a909d;
  font-size: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.toggle-password {
  right: 20px;
}

.Form-icon {
  left: 20px;
}

.ToastCSS {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 9999;
  border-radius: 4px;
  padding: 12px 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  color: white;
}

.Order-img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 5px;
}


.toggle-password-icon {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 15px;
  cursor: pointer;
  color: #6c757d;
  z-index: 9999;
}

.user-image {
  object-fit: cover;
}

/* ================================================================================================== */
/* ========================================== Order page ============================================ */
/* ================================================================================================== */
.custom-select-container {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.375rem 0.75rem;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  background-color: #fff;
  cursor: pointer;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.custom-select-trigger:hover {
  border-color: #86b7fe;
}

.custom-select-trigger.active {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: none;
  max-height: 300px;
  overflow: hidden;
}

.custom-dropdown.show {
  display: block;
}

.search-box {
  padding: 10px;
  border-bottom: 1px solid #dee2e6;
}

.search-box input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  font-size: 14px;
}

.search-box input:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.options-container {
  max-height: 200px;
  overflow-y: auto;
}

.option {
  padding: 10px 15px;
  cursor: pointer;
  border-bottom: 1px solid #f8f9fa;
  transition: background-color 0.15s ease-in-out;
}

.option:hover {
  background-color: #f8f9fa;
}

.option.selected {
  background-color: #007bff;
  color: white;
}

.option.hidden {
  display: none;
}

.option {
  display: flex;
  align-items: center;
  gap: 10px;
}

.category-checkbox {
  margin: 0;
  cursor: pointer;
}

.option label {
  margin: 0;
  cursor: pointer;
  flex: 1;
}

.dropdown-footer {
  padding: 10px;
  border-top: 1px solid #dee2e6;
  display: flex;
  gap: 5px;
  justify-content: space-between;
}

.dropdown-footer .btn {
  font-size: 12px;
  padding: 4px 8px;
}

.selected-count {
  font-size: 12px;
  color: #6c757d;
  margin-left: 10px;
}