/* Premium Glass Modal */
.premium-glass-modal .modal-content {
  background: rgba(255, 255, 255, 0.05); /* glass */
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  color: #fff;
  text-align: center;
  padding: 2rem 1.5rem;
  overflow: hidden;
  position: relative;
}

/* Close button */
.premium-glass-modal .btn-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  filter: brightness(1.5);
}

/* Profile Avatar */
.profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  padding: 5px;
  background: linear-gradient(135deg, var(--accent), #f70a77);
  margin: 0 auto 1rem auto;
  display: block;
  box-shadow: 0 0 20px rgba(255, 142, 142, 0.6);
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
}

/* Profile Info */
.premium-glass-modal .modal-body p {
  margin: 0.5rem 0;
  font-weight: 500;
  font-size: 1rem;
}

/* Gradient Log Out Button */
.premium-glass-modal .btn-logout {
  width: 100%;
  margin-top: 1.5rem;
  padding: 0.6rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent), #f70a77);
  border: none;
  border-radius: 10px;
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 142, 142, 0.4);
}

.premium-glass-modal .btn-logout:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 142, 142, 0.6);
}
/* White close button inside premium modal */
.premium-glass-modal .btn-closes {
  background: none !important;
  border: none !important;
  width: 0.5em;
  height: 0.5em;
  opacity: 1;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M.293 1.293a1 1 0 0 1 1.414 0L8 7.586l6.293-6.293a1 1 0 1 1 1.414 1.414L9.414 9l6.293 6.293a1 1 0 0 1-1.414 1.414L8 10.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 9 .293 2.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1em;
}

/* Sidebar */
.sidebar {
  width: 240px;
  background: #fff;
  padding: 25px 15px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: fixed;
  top: 80px;
  left: 0px;
  height: 100vh;
  z-index: 1;
  transition: transform 0.3s ease;
}
ol,
ul {
  padding-left: 0rem !important;
}
.sidebar ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sidebar a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
  display: flex;
  align-items: center;
  padding: 12px 15px;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  cursor: pointer;
}
.sidebar a i {
  font-size: 18px;
  margin-right: 12px;
  color: #111;
  font-weight: 700 !important;
  transition: color 0.3s ease;
}
.sidebar a:hover {
  background: #f1f5f9 !important;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.sidebar a:hover i {
  color: var(--primary);
}

/* Main Content */
.content {
  flex: 1;
  padding: 30px;
  margin-left: 260px;
  transition: margin-left 0.3s ease;
}

.search-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.search-container {
  flex: 1;
}
.success-banner {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #0e1c68;
  color: #fff;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.success-banner img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.success-text h4 {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 600;
}

.success-text p {
  margin: 0;
  font-size: 15px;
}

.search-container label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.search-box {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  padding: 8px 12px;
  max-width: 350px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.search-box input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 14px;
  color: #444;
}

.search-box input::placeholder {
  color: #aaa;
}

.search-box i {
  color: #999;
  font-size: 14px;
  margin-left: 8px;
}

.search-image img {
  max-width: 200px;
  height: auto;
}
.bank-select {
  width: 100%;
  max-width: 350px;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.providers h3 {
  margin-bottom: 15px;
  font-size: 16px;
}
.bank-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}
.bank-item {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  transition: all 0.3s ease;
}
.bank-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}
.bank-icon img {
  width: 40px;
  height: 40px;
  margin-right: 15px;
  border-radius: 50%;
}
.bank-name {
  font-weight: 500;
  color: var(--text-dark);
}

.vehicle-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid #dcdcdc;
  font-size: 14px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.vehicle-input:hover {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.vehicle-input:focus {
  outline: none;
  border-color: #b6c1ce;
  box-shadow: 0 0 10px rgba(0, 114, 255, 0.3);
  background: #f9fbff;
}
.btn-successes {
  background: linear-gradient(135deg, var(--accent), #f70a77);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-successes:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  opacity: 0.95;
  color: #eed6d6;
}
.fullwidth-banner {
  width: 100%;
  overflow: hidden;
}

.fullwidth-banner img {
  width: 100%; /* Full width */
  height: 230px;
  display: block; /* Remove inline spacing */
}
/* Responsive */
@media (max-width: 992px) {
  .sidebar {
    transform: translateX(-100%);
  }
  .sidebar.active {
    transform: translateX(0);
  }

  .content {
    margin-left: 0;
    padding: 10px;
  }

  .hamburger {
    display: block;
  }
  .overlay.active {
    display: block;
  }
  .success-right {
    display: flex;
    align-items: center;
    gap: 400px;
  }
}

@media (max-width: 768px) {
  .search-section {
    flex-direction: column;
    align-items: flex-start;
    /* gap: 20px; */
  }
  .vehicle-input {
    margin-bottom: 10px;
  }

  .bank-select {
    width: 100%;
  }

  .search-image img {
    max-width: 150px;
  }
  .success-banner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .success-banner img {
    width: 40px;
    height: 40px;
  }
  .row > * {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }
}

@media (max-width: 480px) {
  .search-container label {
    font-size: 12px;
  }

  .bank-select {
    font-size: 13px;
    padding: 8px;
  }

  .search-image img {
    max-width: 220px;
  }
}

@media (max-width: 576px) {
  .bank-list {
    grid-template-columns: 1fr;
  }

  .search-box {
    max-width: 100%;
  }
  .success-right {
    display: flex;
    align-items: center;
    gap: 180px;
  }
}

@media (max-width: 480px) {
  .search-container label {
    font-size: 12px;
  }

  .bank-select {
    font-size: 13px;
    padding: 8px;
  }

  .search-image img {
    max-width: 220px;
  }
}
ul li:nth-child(1) i {
  color: #007bff; /* नीला */
}

ul li:nth-child(2) i {
  color: #28a745; /* हरा */
}

ul li:nth-child(3) i {
  color: #ffc107; /* पीला */
}

ul li:nth-child(4) i {
  color: #ff6b6b; /* लाल */
}

ul li:nth-child(5) i {
  color: #2b4d91; /* पर्पल */
}

.dropdown-menu {
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
}
.btn-lights {
  background-color: #ffffff;
  border: 1px solid #ced4da;
  color: #495057;
}
.btn-lights:hover {
  background-color: #e9ecef;
  border-color: #adb5bd;
  color: #212529;
}
.success-banner-custom {
  /* background-color: #f0f9ff; */
  padding: 15px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.success-banner-custom .success-text h4 {
  margin-bottom: 5px;
}

.success-banner-custom .success-right-img {
  height: 45px;
  width: 100px;
  object-fit: contain;
}

.custom-offcanvas-header {
  background-color: #0e1c68;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.offcanvas-logo {
  height: 30px;
  width: auto;
  object-fit: contain;
}
.custom-offcanvas-header .btn-close {
  filter: brightness(0) invert(1);
}
.diff-color {
  background: #0e1c68 !important;
}
