 *{
    box-sizing: border-box;
    margin: 0 ;
    padding: 0;
}
body{
    color: #d03027;

}

/* nav */

.custom-btn {
  background-color: #d03027;
  color: #fff;
  border: none;
}
.custom-btn-outline {
  background-color: transparent;
  color: #d03027;
  border: 2px solid #d03027;
}


/* nav */

/* bnanner */
.carousel-img {
  height: 40vw;    /* required height set karein */
  object-fit: cover; /* image cropping and smooth looks */
  width: 100%;
}

/* Active tab ka background aur text color */
.nav-tabs .nav-link.active {
  background-color: #d03027;
  color: white;
  border-color: #d03027 #d03027 #fff;
}

/* Non-active tabs ke liye text color */
.nav-tabs .nav-link {
  color: #d03027;
}

/* Tabs hover effect */
.nav-tabs .nav-link:hover {
  color: #a02924;
  border-color: #a02924 #a02924 #fff;
}



.registration-overlay {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(52,61,72,0.18);
  padding: 2.2rem 2rem 1.8rem 2rem;
  min-width: 330px;
  max-width: 350px;
  z-index: 2;
}
@media (max-width: 768px) {
  .registration-overlay {
    position: static;
    transform: none;
    margin: 1.5rem auto;
    min-width: unset;
    max-width: 95vw;
  }
}
.carousel-caption { display: none !important; }


 


/* bnanner */


/* new section */
/* Animated Arrow Icon */
.bidding-card {
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(43,146,251,0.10);
  transition: transform 0.2s, box-shadow 0.2s;
  background: linear-gradient(120deg, #eef5ff 70%, #dbeafe 100%);
  cursor: pointer;
  position: relative;
}
.bidding-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 24px rgba(43,146,251,0.18);
  background: linear-gradient(120deg, #e3f7fd 60%, #c2e9f7 100%);
}
.step-icon {
  font-size: 2rem;
  background: linear-gradient(135deg, #2b92fb 60%, #7be7ff 100%);
  color: white;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  margin: 0 auto 18px auto;
  box-shadow: 0 2px 12px #7be7ff55;
}
.bidding-arrow {
  color: #2b92fb;
  font-size: 1.8rem;
  position: absolute; bottom: 18px; right: 18px;
  opacity: 0.7;
  transition: right 0.2s;
}
.bidding-card:hover .bidding-arrow {
  right: 10px;
  opacity: 1;
}
.bidding-card:last-child .bidding-arrow {
  font-size: 2.2rem;
  color: #2bc77f;
}
/* new section */