/* ===== Sort It Out - Custom Theme Styles ===== */
/* Used alongside Bootstrap 5 */

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== Top Bar ===== */
.top-bar {
  background: linear-gradient(135deg, #6c3ec1, #00b4d8);
  color: #fff;
  font-size: 14px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  flex-wrap: wrap;
}

/* Social Icons */
.topbar-social {
  display: flex;
  gap: 10px;
}

.topbar-social a {
  width: 28px;
  height: 28px;
  border: 1.5px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
}

.topbar-social a:hover {
  background: #fff;
  color: #0072ff;
}

/* Contact Info */
.topbar-contact {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Auth Links */
.topbar-auth a {
  color: #fff;
  text-decoration: none;
  margin-left: 5px;
}

.topbar-auth a:hover {
  text-decoration: underline;
}


/* ===== Header / Navbar ===== */
.site-header {
  background: #fff;
  padding: 5px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.custom-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.navbar-brand img {
  max-height: 100px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 991px) {
  .navbar-brand img {
    max-height: 60px;
  }
}

/* Center Nav Links */
.navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  margin: 0 12px;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #00aaff;
}

/* Right Button */
.btn-primary-custom {
  background: linear-gradient(135deg, #6c3ec1, #00b4d8);
  color: #fff;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
  display: inline-block;
}

.btn-primary-custom:hover {
  opacity: 0.9;
  color: #fff;
}

/* ===== Page Banner ===== */
.page-banner {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url("/assets/images/banner1.png") center/cover no-repeat;
}
.page-banner.banner-services {
  background: url("/assets/images/banner_services.png") center/cover no-repeat;
}

.page-banner.banner-testimonials {
  background: url("/public/assets/images/banner_testimonials.png") center/cover no-repeat;
      background-size: 100% 120%;
}
.page-banner.banner-auction {
  background: url("/assets/images/banner_auction.png") center/cover no-repeat;
}
.page-banner.banner-about {
  background: url("/assets/images/banner_about.png") center/cover no-repeat;
}
.page-banner.banner-auth {
  background: url("/assets/images/banner_auth.png") center/cover no-repeat;
}

.page-banner.banner-contact {
  background: url("/assets/images/banner_contact.png") center/cover no-repeat;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      #94909021,
      #0000004d)
}
/*.page-banner.banner-testimonials::before {*/
/*    background: linear-gradient(135deg, #1a1a1a99, #000000b3);*/
/*  }*/
.page-banner-content {
  position: relative;
  color: #fff;
}

.page-banner h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 12px;
}

.breadcrumb-custom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-custom a {
  color: #fff;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.breadcrumb-custom a:hover {
  opacity: 1;
}

.breadcrumb-custom .separator {
  font-weight: 700;
}

.breadcrumb-custom .current {
  font-weight: 600;
  color: #fff;
}

/* ===== Section Labels ===== */
.section-label {
  color: #00b4d8;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

/* ===== Footer ===== */
.site-footer {
  background: #f8f8f8;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.footer-logo {
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo i {
  color: #5f2eea;
  font-size: 28px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #ccc;
  border-radius: 50%;
  color: #333;
  text-decoration: none;
  transition: 0.3s;
  font-size: 14px;
}

.footer-social a:hover {
  background: #5f2eea;
  color: #fff;
  border-color: #5f2eea;
}

.footer-links a {
  color: #555;
  margin: 0 10px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #5f2eea;
}

.footer-contact span {
  display: inline-block;
  margin-left: 15px;
  font-size: 14px;
}

.footer-contact i {
  margin-right: 5px;
  color: #5f2eea;
}

.footer-bottom {
  background: linear-gradient(90deg, #5f2eea, #00c2ff);
  color: #fff;
  font-size: 13px;
}


/* ===== Responsive Overrides ===== */
@media (max-width: 991.98px) {
  .top-bar .container {
    text-align: center;
  }

  .top-bar-left,
  .top-bar-right {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .page-banner h1 {
    font-size: 30px;
  }

  .page-banner {
    min-height: 200px;
  }

  .section-title {
    font-size: 26px;
  }

  .footer-contact span {
    display: block;
    margin-bottom: 6px;
  }
    .page-banner.banner-testimonials {
      background-size: 129% 100% !important;
    }
}

/* .hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: url("/assets/images/banner.png")
    center/cover no-repeat;
} */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  color: #fff;
  z-index: 2;
  max-width: 700px;
  padding: 60px 0;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-content h1 span {
  color: #fff;
  font-weight: 700;
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 28px;
  line-height: 1.7;
  opacity: 0.95;
}

.btn-outline-hero {
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.3s;
}

.btn-outline-hero:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.about-section {
  padding: 90px 0;
  background: #fff;
}

/* IMAGE WRAPPER */
.about-image-wrapper {
  position: relative;
  padding-right: 40px;
}

.about-main-img {
  width: 100%;
  display: block;
  z-index: 11;
  position: relative;
}

/* EXPERIENCE BADGE */
.experience-badge {
  position: absolute;
  bottom: 11%;
  right: 12%;
  background: linear-gradient(135deg, #5f2eea, #00c2ff);
  color: #fff;
  padding: 28px 30px;
  box-shadow: 0 12px 35px rgba(95, 46, 234, 0.35);
  text-align: center;
  min-width: 150px;
  z-index: 111;
}

.about-dot {
  position: absolute;
  bottom: 31%;
  right: 6%;
  width: 30%;
  z-index: 1;
}

.exp-number {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.exp-text {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 8px;
}

/* RIGHT SIDE TEXT */
.section-tag {
  color: #6c3ec1;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 14px;
}

.about-title {
  font-size: 38px;
  font-weight: 800;
  margin: 15px 0 20px;
  line-height: 1.2;
}

.about-text {
  color: #6b6b6b;
  line-height: 1.9;
  margin-bottom: 16px;
  font-size: 15.5px;
}

/* RESPONSIVE FIX */
@media (max-width: 991px) {
  .about-image-wrapper {
    padding-right: 0;
  }

  .experience-badge {
    right: 20px;
    bottom: -20px;
  }

  .about-title {
    font-size: 30px;
  }
}

.stat-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: linear-gradient(135deg, #6c3ec1, #00b4d8);
  color: #fff;
  padding: 18px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(108, 62, 193, 0.35);
}

.stat-badge .number {
  font-size: 36px;
  font-weight: 800;
}

.stat-badge .label {
  font-size: 12px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.service-card img {
  height: 200px;
  object-fit: cover;
}

.services-section {
  padding: 90px 0;
  background: #f8fbff;
}

/* HEADER */
.services-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}

.services-title .section-label {
  color: #5F1AA6 !important;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}

.services-title .section-title {
  font-size: 34px;
  font-weight: 800;
  margin-top: 8px;
}

/* NAV ARROWS TOP RIGHT */
.carousel-nav {
  position: absolute;
  right: 0;
  display: flex;
  gap: 10px;
}

.carousel-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  border: 1px solid #e5e7eb !important;
  background: #fff !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.25s ease;
}

.carousel-nav button:hover {
  background: linear-gradient(135deg, #5f2eea, #00c2ff) !important;
  border-color: transparent !important;
}

.carousel-nav i {
  font-size: 13px;
  color: #111;
}

.carousel-nav button:hover i {
  color: #fff;
}

/* OWL FLEX FIX FOR EQUAL HEIGHT */
.services-carousel .owl-stage {
  display: flex;
}

.services-carousel .owl-item {
  display: flex;
}

/* CARD */
.service-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: 0.35s;
  border: 1px solid #d5d5d5;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.service-img-wrap {
  position: relative;
}

.service-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* PURPLE TITLE BAR */
.service-title-bar {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: #5F1AA6;
  color: #fff;
  padding: 5px 13px;
  height: 61px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  text-align: center;
  width: 85%;
  box-shadow: 0 6px 16px rgba(95, 46, 234, 0.35);
}

/* CONTENT */
.service-content {
  padding: 45px 22px 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-content p {
  font-size: 14.5px;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* BUTTON */
.service-footer {
  margin-top: auto;
  padding-top: 10px;
}

  .read-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #5f2eea, #00c2ff);
    color: #fff;
    padding: 10px 18px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    width: fit-content;
    transition: 0.3s ease;
    margin-top: auto;
    align-self: center;
  }

.read-more-btn i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.read-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(95, 46, 234, 0.35);
}

.read-more-btn:hover i {
  transform: translateX(4px);
}

/* DOTS */
.owl-dots {
  margin-top: 30px;
  text-align: center;
}

.owl-dot span {
  width: 10px;
  height: 10px;
  background: #cfd8dc !important;
  border-radius: 50%;
  margin: 5px;
  display: inline-block;
  transition: 0.3s;
}

.owl-dot.active span {
  width: 26px;
  border-radius: 20px;
  background: linear-gradient(90deg, #5f2eea, #00c2ff) !important;
  display: block;
}




.why-choose {
  background: linear-gradient(135deg, #6c3ec1, #00b4d8);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* LEFT SIDE */
.section-label {
  color: #ffffffcc;
  font-weight: 600;
  letter-spacing: 1.5px;
  font-size: 14px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 35px;
}

.why-lines {
  margin-top: 25px;
}

.why-lines span {
  display: block;
  height: 3px;
  background: #fff;
  margin: 10px auto;
}

.why-lines span:first-child {
  width: 70%;
}

.why-lines span:last-child {
  width: 55%;
}

/* RIGHT SIDE */
.why-intro {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 30px;
  color: #ffffffee;
  font-style: italic;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 18px;
  line-height: 1.8;
  font-size: 15px;
}

/* Custom check icon */
.why-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 3px;
  color: #ffffff;
  font-size: 14px;
}

/* Bold heading inside bullet */
.why-list strong {
  font-weight: 700;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .section-title {
    font-size: 30px;
  }

  .why-icon img {
    max-width: 180px;
    margin: 20px auto;
  }

  .why-lines {
    display: none;
  }
}

.testimonial-carousel .owl-stage {
  display: flex;
}

.testimonial-carousel .owl-item {
  display: flex;
}

.testimonial-card {
  border: 2px solid #00BDE0;
  padding: 30px;
  margin: 10px;
  background: #fff;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.testimonial-card .quote-icon {
  font-size: 36px;
  color: #5f2eea;
  margin-bottom: 14px;
}

.testimonial-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  flex: 1;
}

.testimonial-author {
  font-weight: 600;
  font-size: 15px;
  margin-top: 15px;
}

.testimonial-role {
  font-size: 13px;
  color: #999;
}

@media (max-width: 767.98px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .hero {
    min-height: 400px;
  }

  .why-list {
    grid-template-columns: 1fr;
  }
}

.advantage-list {
  list-style: none;
  padding: 0;
}

.advantage-list li {
  font-size: 1.1rem !important;

  padding: 12px 0 !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.advantage-list li i {
  color: #6c3ec1;
}

.auction-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.auction-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.auction-card img {
  height: 270px;
  object-fit: cover;
}

.auction-card .card-body h5 {
  font-size: 14px;
  font-weight: 600;
}

.auction-card {
  display: flex;
  flex-direction: column;
}

.auction-card .card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.auction-card .bid-btn {
  margin-top: auto;
}

.auction-card .position-relative img {
  height: 280px;
  object-fit: cover;
  width: 100%;
}

.auction-card .desc {
  font-size: 12px;
  color: #888;
}

.auction-prices {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

.auction-prices .label {
  color: #999;
}

.auction-prices .price {
  font-weight: 700;
  color: #333;
}

.auction-prices .price.current {
  color: #6c3ec1;
}

.countdown {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.countdown-unit {
  flex: 1;
  background: #f0f0f5;
  border-radius: 6px;
  text-align: center;
  padding: 6px 2px;
}

.countdown-unit .num {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  display: block;
  line-height: 1.2;
}

.countdown-unit .lbl {
  font-size: 9px;
  color: #999;
  text-transform: uppercase;
}

.countdown.ended .countdown-unit {
  background: #ffe0e0;
}

.countdown.ended .num {
  color: #d33;
}

.bid-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 9px;
  border: none;
  border-radius: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s;
  background: linear-gradient(135deg, #6c3ec1, #00b4d8);
  color: #fff;
}

.bid-btn:hover {
  opacity: 0.9;
}

.product-hero img {
  width: 100%;
  max-width: 90%;
  max-height: 500px;
  object-fit: cover;
  margin: auto;
}

.detail-countdown {
  margin: 30px 0;
  padding: 24px 0;
  border-top: 1px solid #e8e8e8;
}

.detail-countdown-label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.cd-box {
  width: 64px;
  height: 64px;
  background: #f0f0f5;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cd-box .num {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.cd-box .lbl {
  font-size: 9px;
  color: #888;
  text-transform: uppercase;
}

.cd-box.ended {
  background: #ffe0e0;
}

.cd-box.ended .num {
  color: #d33;
}

.bid-input-group {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
}

.bid-input-group button {
  width: 44px;
  height: 44px;
  border: 1px solid #ddd;
  background: #5F1AA6;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;

}

.amountbox {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: baseline;
}

.bid-input-group button:hover {
  background: #e0e0e0;
}

.bid-input-group button:first-child {
  border-radius: 8px 0 0 8px;
}

.bid-input-group button:last-child {
  border-radius: 0 8px 8px 0;
}

.bid-input-group input {
  width: 140px;
  height: 44px;
  border: 1px solid #ddd;
  border-left: none;
  border-right: none;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  outline: none;
  -moz-appearance: textfield;
}

.bid-input-group input::-webkit-outer-spin-button,
.bid-input-group input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.similar-track {
  display: flex;
  gap: 24px;
  width: 100%;
}

.similar-wrapper {
  overflow: hidden;
  width: 100%;
}

.similar-track {
  display: flex;
  gap: 24px;
  transition: transform .4s ease;
}


.similar-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s;
}

.similar-card {
  flex: 0 0 calc(25% - 18px);
}

@media (max-width: 1199px) {
  .similar-card {
    flex: 0 0 calc(33.333% - 16px);
  }
}

@media (max-width: 768px) {
  .similar-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 480px) {
  .similar-card {
    flex: 0 0 100%;
  }
}


.similar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.similar-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.similar-card-body {
  padding: 16px;
}

.similar-card h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.similar-card .desc {
  font-size: 12px;
  color: #888;
  margin-bottom: 10px;
}

.similar-card .s-prices {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 10px;
}

.similar-card .s-prices .lbl {
  color: #999;
}

.similar-card .s-prices .val {
  font-weight: 700;
}

.similar-card .s-prices .val.cur {
  color: #6c3ec1;
}

.similar-card .countdown-sm {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.similar-card .cd-sm {
  flex: 1;
  background: #f0f0f5;
  border-radius: 5px;
  text-align: center;
  padding: 5px 2px;
}

.similar-card .cd-sm .n {
  font-size: 14px;
  font-weight: 700;
  display: block;
  line-height: 1.2;
}

.similar-card .cd-sm .l {
  font-size: 8px;
  color: #999;
  text-transform: uppercase;
}

.similar-card .bid-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 9px;
  border: none;
  border-radius: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, #6c3ec1, #00b4d8);
  color: #fff;
}

.similar-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: all 0.3s;
}

.similar-nav button:hover {
  background: linear-gradient(135deg, #6c3ec1, #00b4d8);
  color: #fff;
  border-color: transparent;
}

@media (max-width: 480px) {

  .cd-box {
    width: 56px;
    height: 56px;
  }

  .cd-box .num {
    font-size: 18px;
  }
}

.stat-badge {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: linear-gradient(135deg, #6c3ec1, #00b4d8);
  color: #fff;
  padding: 18px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(108, 62, 193, 0.35);
}

.stat-badge .number {
  font-size: 36px;
  font-weight: 800;
}

.stat-badge .label {
  font-size: 12px;
}

.founder-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-image .caption {
  position: absolute;
  bottom: 10%;
  left: 0;
  right: 0;
  min-height: 20px;
  width: fit-content;
  display: flex;

  align-items: center;
  background: url("/assets/images/bg.png") center/cover no-repeat;
  color: #fff;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  background-size: 100%;
}

.founder-image .caption span {
  display: block;
  font-weight: 400;
  font-size: 12px;
  opacity: 0.85;
}


.success-icon {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #E0C2FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 10px 30px rgba(108, 62, 193, 0.3);
}

/* IMAGE inside circle */
.success-icon img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}


.card-input {
  text-align: center;
  padding: 13px 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  outline: none;
  transition: border-color 0.3s;
  letter-spacing: 2px;
  width: 100%;
}

.card-input:focus {
  border-color: #6c3ec1;
}

.card-input::placeholder {
  color: #bbb;
  letter-spacing: 1px;
}

.pay-btn {
  display: block;
  width: fit-content;
  padding: 10px 18px;
  border: none;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(135deg, #6c3ec1, #00b4d8);
  color: #fff;
  transition: opacity 0.3s;
}

.pay-btn:hover {
  opacity: 0.9;
}

.field-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 15px;
}

.sidebar-link {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  transition: color 0.3s;
  text-decoration: none;
}

.sidebar-link:hover,
.sidebar-link.active {
  color: #6c3ec1;
  font-weight: 600;
}

.tab-panel {
  display: none;

}

#tab-auctions {
  height: 800px;
  overflow-y: auto;
}

.tab-panel.active {
  display: block;
}

.auction-result-card {
  background: #fff;
  border: 1px solid #e5e7eb;

}

/* IMAGE */
.auction-item-img {
  position: relative;
  overflow: hidden;
  height: 200px;
  border-radius: 8px;
}

.auction-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* MINI COUNTDOWN OVERLAY */
.mini-cd {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  gap: 12px;
}

.mini-cd-box {
  background: #ffffff;
  border-radius: 6px;
  padding: 6px 8px;
  text-align: center;
  flex-direction: column;
  display: flex;
  min-width: 48px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.mini-cd-box .n {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  line-height: 1.1;
}

.mini-cd-box .l {
  font-size: 9px;
  text-transform: uppercase;
  color: #666;
}

/* CONTENT SIDE */
.auction-content {
  padding: 10px;
}

.auction-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.meta {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 4px;
}

.bid-price {
  font-weight: 700;
  color: #6c3ec1;
  font-size: 14px;
  margin-bottom: 6px;
}

.status {
  font-size: 13px;
  margin-bottom: 10px;
}

.status.won {
  color: #000;
}

.status.lost {
  color: #9ca3af;
}

.status.pending {
  color: #f59e0b;
}


.profile-avatar {
  position: relative;
  width: 90px;
  height: 90px;
  margin-bottom: 28px;
}

.profile-avatar img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e8e8e8;
}

.profile-avatar .edit-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6c3ec1, #00b4d8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  border: 2px solid #fff;
  cursor: pointer;
}

.toggle-password {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #888;
  font-size: 16px;
}

.toggle-password:hover {
  color: #6c3ec1;
}

.auth-submit {
  width: 100%;
  padding: 14px;
  border: none;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(135deg, #6c3ec1, #00b4d8);
  color: #fff;
  transition: opacity 0.3s;

}

.auth-submit:hover {
  opacity: 0.9;
}

.map-section iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6c3ec1, #00b4d8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  flex-shrink: 0;
}

.intro-icon-box {
  position: absolute;
  right: 44%;
  width: 160px;
  height: 160px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-icon-box i {
  font-size: 60px;
  color: #fff;
  transform: rotate(-10deg);
}

.tab-btn {
  display: inline-block;
  width: auto;
  text-align: center;
  padding: 14px 24px;
  margin-bottom: 6px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  background: #fff;
  color: #555;
  transition: all 0.3s;
}

.tab-btn:hover {
  border-color: #6c3ec1;
  color: #6c3ec1;
}

.tab-btn.active {
  background: linear-gradient(135deg, #6c3ec1, #00b4d8);
  color: #fff;
  border-color: transparent;
}

.tab-btn i {
  margin-right: 8px;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-panel h2 {
  font-size: 2.6rem;
  color: #111;
  font-weight: 700;
  margin-bottom: 8px;
}

.tab-panel .subtitle {
  color: #00b4d8;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
  display: block;
}

.tab-panel p {
  color: #666;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 3;
}

.services-section ul {
  list-style: disc !important;
  padding-left: 20px !important;
}

.services-section ul li {
  display: list-item !important;
}

.tab-panel h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 24px 0 12px;
  color: #111;
}

.tab-panel ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

.tab-panel ul li {
  font-size: 14px;
  color: #555;
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.tab-panel ul li i {
  color: #6c3ec1;
  margin-top: 4px;
  flex-shrink: 0;
}

.third-section-panel {
  display: none;
}

.third-section-panel.active {
  display: block;
}

.auction-advantage {
  background: linear-gradient(135deg, #6c3ec1, #00b4d8);
  color: #fff;
}

.advantage-list {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}

.advantage-list li {
  font-size: 14px;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.advantage-list li i {
  color: #ffc107;
}

.testi-card {
  border: 1px solid #00BDE0;
  padding: 30px;
  transition: box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.testi-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
}

.testi-quote {
  font-size: 40px;
  color: #5F1AA6;
  line-height: 1;
  margin-bottom: 14px;
}

.testi-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.85;

}

.testi-author {
  font-weight: 700;
  font-size: 15px;
  color: #333;
  margin-top: auto;
}

.team-carousel .team-card {
  border: none;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.team-carousel .team-card:hover {
  transform: translateY(-6px);
}

.team-carousel .card-img-top {
  height: 400px;
  object-fit: cover;
}

/* MOBILE */
@media (max-width: 768px) {
  .services-header {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .carousel-nav {
    position: static;
  }

  .services-title .section-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 8px;
    margin-bottom: 12px;
  }

}

@media (max-width: 425px) {
  .intro-icon-box {

    right: 28%;

  }

  .tab-panel h2 {
    font-size: 1.6rem;

  }

  .auction-advantage h2 {
    font-size: 1.6rem !important;
  }

  .Started h2 {
    font-size: 1.6rem !important;
  }

  .breadcrumb-custom {

    font-size: 1.2rem;

  }

  .topbar-contact {
    gap: 0;
    flex-wrap: wrap;
  }
}
.service-dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
}

.navbar-nav .dropdown-menu {
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 8px 0;
}

.navbar-nav .dropdown-item {
    padding: 8px 20px;
    font-size: 14px;
    color: #333;
    transition: 0.3s;
}

.navbar-nav .dropdown-item:hover {
    background: linear-gradient(135deg, #6c3ec1, #00b4d8);
    color: #fff;
}

.experience-rectangle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, #5f2eea, #00c2ff);
    color: #fff;
    padding: 18px 35px;
    box-shadow: 0 12px 35px rgba(95, 46, 234, 0.35);
    max-width: 350px;
    margin: 0 auto;
}

.qwfs-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 0;
    transition: 0.3s;
}

.qwfs-logo-link:hover {
    transform: scale(1.05);
}

.qwfs-logo {
    height: 65px;
    width: auto;
}
