a {
  color: #fff;
  text-decoration: none;
}

body {
  background: #f5f7fb;
  font-family: "Montserrat", sans-serif;
}

/* BUTTON */
.premium-btn {
  display: flex;
  padding: 7px 10px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(301deg, #1856fd 25%, rgb(18, 40, 246) 100%);
}
.premium-btn:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* SIDEBAR */
.sidebar {
  background: linear-gradient(301deg, #1856fd 25%, rgb(18, 40, 246) 100%);
  min-height: 96vh;
  padding: 25px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 2px 0 15px rgba(0, 0, 0, 0.05);
  position: fixed;
}
.sidebar h1 {
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.6px;
}
.sidebar h5 {
  font-weight: 700;
}

/* SIDEBAR ITEMS */
.sidebar-item {
  list-style: none;
}

.nav-item {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.6px;
  transition: all 0.3s ease;
}
.nav-item i {
  margin-right: 10px;
  font-size: 18px;
}
.nav-item:hover, .nav-item.active {
  background: #eef2ff;
  color: #4f46e5;
  font-weight: 600;
}

/* DROPDOWN LINK */
.sidebar-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.6px;
  transition: background 0.3s ease, color 0.3s ease;
}
.sidebar-link:hover {
  background: #f1f5ff;
  color: #4f46e5;
}
.sidebar-link .left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar-link i {
  font-size: 18px;
}
.sidebar-link .arrow {
  font-size: 14px;
  transition: transform 0.35s ease;
}

.upgrade-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  color: #333;
  text-align: center;
  margin-top: 40px;
}

/* SUBMENU */
.sidebar-submenu {
  margin-left: 22px;
  margin-top: 6px;
  padding-left: 10px;
  border-left: 1px dashed #e5e7eb;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, opacity 0.3s ease;
}
.sidebar-submenu li {
  list-style: none;
  padding: 8px 0;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
}
.sidebar-submenu li:hover {
  color: #4f46e5;
  font-weight: 500;
}

.sidebar-item.open .sidebar-submenu {
  max-height: 300px;
  opacity: 1;
}
.sidebar-item.open .arrow {
  transform: rotate(180deg);
}

/* MAIN CONTENT */
.main-content {
  padding: 30px;
}

.theme-btn {
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-size: 24px;
}

/* STATS CARD */
.stat-card {
  background: #fff;
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  cursor: pointer;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.stat-card:hover {
  transform: translateY(-5px);
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: #fff;
}

/* COLOR UTILITIES */
.bg-blue {
  background: rgba(24, 85, 253, 0.6980392157);
}

.bg-green {
  background: rgba(24, 85, 253, 0.6980392157);
}

.bg-orange {
  background: rgba(24, 85, 253, 0.6980392157);
}

.bg-red {
  background: rgba(24, 85, 253, 0.6980392157);
}

.slider {
  /* Animation */
}
.slider img {
  border-radius: 20px;
  width: 100%;
}
.slider .carousel {
  overflow: hidden;
  margin: auto;
  position: relative;
}
.slider .carousel-track {
  display: flex;
  animation: carousel 10s infinite ease-in-out;
}
.slider .carousel-track img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@keyframes carousel {
  0% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(0);
  }
  35% {
    transform: translateX(-100%);
  }
  65% {
    transform: translateX(-100%);
  }
  70% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(-200%);
  }
}

/* BANNER */
.banner-card {
  background: linear-gradient(301deg, rgba(24, 86, 253, 0.2509803922) 25%, rgb(18, 40, 246) 100%);
  width: 100%;
  padding: 0 5%;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}
.banner-card img {
  width: 400px;
}
.banner-card h2 {
  color: #fff;
  font-size: 40px;
  letter-spacing: 0.6px;
}
.banner-card p {
  color: #fff;
  font-size: 18px;
}
.banner-card .premium-btn {
  background: #fff;
  color: #333;
  font-weight: 600;
}

/* BUYERS CARD */
.buyers-card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 2px 0 15px rgba(0, 0, 0, 0.05);
  padding: 10px;
  margin: 2% 0;
}
.buyers-card .premium-btn {
  margin-left: auto;
}
.buyers-card .premium-btn i {
  color: #fff;
  font-size: 12px;
}
.buyers-card .form-check input {
  cursor: pointer;
}
.buyers-card tr {
  border-bottom: 1px solid rgba(222, 226, 230, 0.3098039216);
}
.buyers-card i {
  font-size: 16px;
  color: #1856fd;
}
.buyers-card .badge-success {
  background: rgba(0, 128, 0, 0.0784313725);
  color: #333;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 5px;
}
.buyers-card .badge-warning {
  background: rgba(248, 6, 6, 0.0784313725);
  color: #333;
  font-size: 12px;
  padding: 4px 15px;
  border-radius: 5px;
}

/* MOBILE */
@media (max-width: 768px) {
  .sidebar {
    min-height: auto;
  }
}
.modal-content {
  border-radius: 15px;
}
.modal-content .modal-body {
  padding: 10px;
}
.modal-content h5 {
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 600;
  color: #333;
  margin-bottom: 0;
}

#addForm small {
  font-size: 12px;
  letter-spacing: 0.6px;
  color: red;
  padding: 0px 5px;
}

#addForm .form-control,
#addForm .form-select {
  cursor: pointer;
  font-size: 14px;
  border-radius: 10px;
  padding: 10px 14px;
  border: 1px solid #dee2e6;
  transition: all 0.2s ease;
}

#date {
  text-transform: uppercase;
}

#addForm .form-control:focus,
#addForm .form-select:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

.tours-travels-section .search-box {
  position: relative;
  width: 260px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.tours-travels-section .search-box input {
  padding-left: 38px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
}
.tours-travels-section .search-box i {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #999;
}
.tours-travels-section .tour-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  cursor: pointer;
}
.tours-travels-section hr {
  margin: 10px;
}
.tours-travels-section .tour-card:hover {
  transform: translateY(-5px);
}
.tours-travels-section .tour-img-wrap {
  position: relative;
  overflow: hidden;
}
.tours-travels-section .tour-img-wrap img {
  width: 100%;
  height: 155px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.tours-travels-section .hot-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ff3b3b;
  color: #fff;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: 600;
}
.tours-travels-section .tour-body {
  padding: 18px;
}
.tours-travels-section .tour-title {
  font-weight: 700;
  font-size: 18px;
  color: #333;
  margin-bottom: 5px;
}
.tours-travels-section .tour-meta {
  font-size: 14px;
  color: #666;
  margin-bottom: 0px;
}
.tours-travels-section .tour-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tours-travels-section .price {
  font-size: 20px;
  color: #333;
  font-weight: 700;
}
.tours-travels-section .book-btn {
  border-radius: 10px;
  padding: 5px 10px;
  font-weight: 500;
  font-size: 13px;
}
.tours-travels-section .tour-footer {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #666;
}/*# sourceMappingURL=style.css.map */