
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.mobile-version-2{
  padding: 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
width: 90%;
    gap: 30px;
    margin-left: auto;
    margin-right: auto;
}
.prdct-auct-card {
  padding: 30px 16px;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 8px 20px rgba(229, 163, 55, 0.2) !important;
  width: 360px;
  border-radius: 20px;
  overflow: hidden;
  font-family: 'Arial', sans-serif;
  background: #fff;
  box-sizing: border-box;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
} 
.prdct-auct-card:hover{
 transform: translateY(-10px);
  box-shadow: 0 20px 35px rgba(229, 163, 55, 0.35);
}
.img-bx-auct {
  text-align: center;
  padding: 10px 0;
}

.img-bx-auct img {
      height: 100%;
    object-fit: cover ;
    margin-bottom: 20px;
  width: 100%;
  max-width: 1000px;
  background-position: cover;
  border-radius: 25px;
}

.info-section-auct {
  padding: 10px 5px;
}

.prdct-title-auct {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #48576e;
  margin-bottom: 12px;
}

.timer-price-auct {
      background: url(../img/bg-lines.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 10px;
}
.countdown-tension {
    animation: blinkRed 1s infinite;
    color: red !important;
    font-weight: bold;
    text-shadow: 0 0 10px red;
}

@keyframes blinkRed {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}


.countdown-auct, .buy-section-auct {
      text-align: center;
  flex: 1 1 45%;
}
.countdown-auct{
      line-height: 20px;
}
.buy-section-auct{
  display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}
.lbl-timer-auct, .lbl-buy-auct {
  display: block;
  font-weight: 500;
  /* color: #FF0000; */
}
.lbl-buy-auct{
color: #FF0000;
}
.time-left-auct, .price-retail-auct {
  font-weight: bold;
  font-size: 16px;
}

.price-retail-auct {
  color: #4F5D75 ;
}

.current-price-auct {
      margin-left: auto;
    margin-right: auto;
    width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* border-top: 1px solid #eee; */
  padding-top: 10px;
  flex-wrap: wrap;
  gap: 10px;
}

.live-bid-auct {
  flex: 1 1 65%;
}

.green-label-auct {
  color: #3dbb3d;
  font-weight: 600;
  font-size: 14px;
}

.live-price-auct {
  font-weight: bold;
  font-size: 20px;
  color: #4F5D75;
  display: block;
  margin-top: 4px;
}

.bidder-user-auct {
  font-size: 13px;
  color: #999;
  margin-top: 2px;
}

.user-mask-auct {
  font-weight: bold;
  color: #d35400;
}

.btn-bid-auct {
  background-color: #f26522;
  border: none;
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.btn-bid-auct:hover {
  background-color: #d8551d;
}

@media (max-width: 420px) {
  .prdct-auct-card {
    padding: 12px;
  }

  .prdct-title-auct {
    font-size: 15px;
  }

  .timer-price-auct, .current-price-auct {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-bid-auct {
    width: 100%;
    margin-top: 10px;
  }

  .live-price-auct {
    font-size: 18px;
  }
}

/* Cart Drawer Styles */
.cart-drawer {
  z-index: 1050000;

  position: fixed;
  top: 0;
  right: -500px;
  width: 500px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
  border-left: 1px solid #e0e0e0;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
}
.cart-icon {
  position: relative;
  cursor: pointer;
  padding: 8px;
  transition: transform 0.2s ease;
}

.cart-icon:hover {
  transform: scale(1.1);
}
.h-top{
  padding-top: 110px;
  padding-bottom: 10px;
  background: #f4f5f5;
}
a{
  text-decoration: none;
}
.cart-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background-color: #EF476F;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 999px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  min-width: 18px;
  text-align: center;
  line-height: 1;
  pointer-events: none;
}
.cart-badge.animate {
  animation: pop 0.4s ease;
}

@keyframes pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  /* margin-top: 149px; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eaeaea;
  background-color: #f8f9fa;
}

.cart-header h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #333;
}

.close-btn {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #888;
}

.cart-items {
  padding: 20px;
  flex-grow: 1;
  overflow-y: auto;
}

.cart-item {
  background: #f7f7f7;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.item-info h4 {
  margin: 0 0 5px 0;
  font-size: 16px;
  color: #333;
}

.item-info p {
  margin: 2px 0;
  color: #555;
  font-size: 14px;
}

.empty-cart {
  text-align: center;
  color: #999;
  margin-top: 40px;
}

.place-order-btn {
  background: #f16523;
  color: white;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  margin-top: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.place-order-btn:hover {
  background: #218838;
}


nav.navbar {
  background-color: #fff !important;
  padding-top: 25px;
  padding-bottom: 36px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  right: 0; /* add this */
  width: 100%; /* fix width */
  z-index: 1030;
  display: flex !important;
  justify-content: center;
  align-items: center;
}
.sidebar li i {
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
}

.fa-solid, .fas {
    font-weight: 900;
}
nav .container-fluid {
  max-width: 80%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Force navbar full width in mobile */
.navbar-collapse {
  width: 100%;
}

/* Stack buttons vertically on mobile */
@media (max-width: 991px) {
  ._c9a7{
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
    width: 95% !important;
  }
      ._dots1 {
        /* bottom: 35px; */
    }
  ._r1t4{
    padding: 0;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
    .mobile-version-2 {
      gap:13px;
        flex-direction: row;      /* horizontal row */
        flex-wrap: wrap;          /* allow wrapping */
        width: 95%;
    }
.buy-section-auct{
  gap: 63px;
}
    .mobile-version-2 > * {
        flex: 0 0 45%;            /* each child takes 50% width */
        max-width: 45%;           /* max width 50% */
        box-sizing: border-box;   /* include padding/border in width */
    }
  .prdct-auct-card{
    width: 45%;
  }
  .current-price-auct{
    width: 100%;
  }
  .info-section-auct{
    padding: 0;
  }
  .img-bx-auct img{
    height: 100%;
  }
  .countdown-auct{
    line-height: 20px;
  }
  .prdct-title-auct{
    font-size: 1.4rem;
  }
  .lbl-timer-auct, .lbl-buy-auct{
    font-size: 1.1rem;
  }
  .green-label-auct{
    font-size: 1.1rem;
  }
  .lbl-buy-auct{
    font-size: 1.1rem;
  }
  .timer-price-auct{
    padding: 0px 0;
  }
  .price-retail-auct{
    font-size: 0.8rem;
  }
  .live-price-auct{
    font-size: 1rem;
    padding: 0;
    letter-spacing: -2px;
  }
  .bidder-user-auct{
    font-size: 0.9rem;
  }
  .liv-colm{
        /* background: red; */
    width: 70%;
    margin: 0;
    padding: 0;
    text-align: left;
  }
.navbar-toggler-icon{
      width: 2.5em;
    height: 2.5em;
}

   .mobile-version-card{
    width: 100%;
  }
  .navbar-collapse {
    text-align: center;
  }

  .navbar-nav {
    flex-direction: column;
  }

  .navbar .btn {
    width: 100%;
    margin: 5px 0;
  }

  .custom-account-btn {
    width: 100%;
  }

  .navbar .text-black {
    margin-bottom: 10px;
    display: block;
  }
}

nav .navbar-brand {
  width: 15%;
    font-weight: 700;
    font-size: 1.5rem;
    color: #EF8354;
}

nav .nav-link {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav .nav-link:hover {
    color: #EF8354;
}

/* Responsive nav links container */
.navbar-collapse {
    flex-grow: 0;
}

nav .btn-profile {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #EF8354;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #EF8354;
    padding: 6px 14px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
 .custom-account-btn {
    gap: 6px;
    color: #EF8354;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #EF8354;
    padding: 6px 28px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  .btn-bid-3{
    gap: 6px;
    font-size: 20px;
    color: #EF8354;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #fff;
    padding: 6px 35px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2); /* subtle shadow for depth */
  }
nav .btn-profile svg {
    width: 18px;
    height: 18px;
    fill: #EF8354;
}

nav .btn-profile:hover {
    background-color: #EF8354;
    color: white;
}

.navbar-expand-lg .navbar-collapse{
  width: 53%;
}
.d-lg-flex{
  display: flex !important;
  align-items: center !important;
  padding: 0;
  margin: 0;
}


.mfn-header-tmpl .mfn-icon-box .icon-wrapper i {
    font-size: var(--mfn-header-menu-icon-size);
    color: var(--mfn-header-icon-color);
}
.mfn-icon-box .icon-wrapper i {
    transition: all 0.2s ease-in-out;
}

.mfn-builder-content .mfn-icon-box .icon-wrapper i{
  line-height: 5;
}
.mcb-section .mcb-wrap .mcb-item-5e731e89a .mfn-icon-box .icon-wrapper {
    --mfn-header-menu-icon-size: 24px;
}

.mcb-section .mcb-wrap .mcb-item-5e731e89a .icon-wrapper {
    --mfn-header-icon-color: #EF8354;
}

.ankandi-hero-slider {
  position: relative;
  height: 90vh;
  overflow: hidden;
  background: #fff; /* changed to white */
  color: #222; /* darker text for contrast */
}

.slides {
  display: flex;
  transition: transform 0.8s ease-in-out;
  height: 100%;
  position: relative; /* keep positioning */
}

.slide {
 
  /* background-color: #fff; */
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 0 5%; */
  opacity: 1;
  pointer-events: auto;
  position: relative;
  transition: opacity 0.6s ease-in-out;
}

.slide.active {
  border-radius: 12px;
  /* max-width: 100%; */
    background-repeat: no-repeat;
    background-size: cover;
    height: 540px; 
  opacity: 1;
  pointer-events: auto;
  position: relative;
}
.slide {
  display: none;
}

.slide.active {
  display: flex;
}
/* Adjust text colors inside slides for readability on white */
.text-zone .top-meta {
  color: #666;
}

.text-zone h1 {
  color: #111;
}

.text-zone p {
  color: #444;
}

.arrow-link {
  color: #fff;
}

.arrow-link:hover {
  color: #f37f32;
}
.card-img-top{
  max-width: 100%;
  height: 100%;
  overflow: hidden;
}
.ankandi{

  /* height: 500px; */
  /* background-color: red; */
}
.slide-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  width: 100%;
}

.text-zone {
  flex: 1;
  padding-right: 40px;
}

.text-zone .top-meta {
  font-size: 14px;
  color: #888;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.text-zone h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
}

.text-zone p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
  max-width: 500px;
}

.arrow-link {
  display: inline-block;
  font-size: 2rem;
  margin-top: 25px;
  color: #ffc107;
  text-decoration: none;
  transition: transform 0.3s;
}

.arrow-link:hover {
  transform: translateX(8px);
}

.image-zone {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-zone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}
.slider-wrapper {
  margin: 10px auto;
      margin-left: auto;
    margin-right: auto;
  width: 99%;
  height: 400px;
  display: flex;
  justify-content: center;
}

.slider-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.slide {
  border-radius: 12px;
  height: 100%; /* adjust as needed */
  background-size: cover;
  background-position: center;

}

.slider-controls {
  position: absolute;
  bottom: 40%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%; /* or use percentage like 30% */
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.slider-controls button {
  background: #fff;
  border: none;
  color: #000;
  font-size: 2rem;
  padding: 10px 15px;
  border-radius: 8px;
  font-weight: 200;
  cursor: pointer;
  transition: background 0.3s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.slider-controls button:hover {
  background: #d37940;
}


@media screen and (max-width: 768px) {
  .slide {
  margin-top: 0px;
}
  .mobile-version{
  width: 95%;
}
  .ankandi-hero-slider {
    height: auto;
    padding: 40px 20px;
  }

  .slide-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .text-zone {
    padding: 0;
    margin: 0;
    max-width: 100%;
  }

  .text-zone h1 {
    font-size: 2rem;
  }

  .text-zone p {
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
  }

  .arrow-link {
    font-size: 1.5rem;
  }

  .image-zone {
    width: 100%;
  }

  .image-zone img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.1);
  }
}


@media (max-width: 1000px) { 
 .mobile-version-card{
    width: 100%;
  }
  .ankandi{
    width: 95% !important;
  }
  .mobile-version{
    display: flex !important;
    flex-direction: column !important;
    width: 100%;
  }
  .mobile-version-card{
    padding-top: 60px;
    /* height: 100% !important; */
    width: 100%;
  }
    .card-body {
    padding: 2rem;
  }

  .card-title {
    font-size: 3.5rem !important;
  }

.price-align{
  line-height: 20px;
  font-size: 2rem;
}
.price-now-ds{
  line-height: 30px;
   font-size: 22px;
}
.cont-align{
  background-size: cover !important;
}
.color-price{
   font-size: 2rem !important;
}
  svg {
    margin: 0;
    padding: 0;
    width: 30px;
    height: auto;
  }
 } 

/* @media (max-width: 768px) {
    .auction-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .auction-item img {
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
        height: auto;
    }

    .auction-details, .auction-actions {
        width: 100%;
        text-align: left;
    }

    .auction-actions {
        margin-top: 10px;
    }
} */



        
        /* Bid image styling */
        .bid-now-img {
            cursor: pointer;
            width: 120px;
            transition: transform 0.3s ease;
        }
        .bid-now-img:hover {
            transform: scale(1.05);
            filter: drop-shadow(0 2px 6px rgba(239, 131, 84, 0.5));
        }

        /* Cards styling */
        .card {
          /* width: 25%;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(229, 163, 55, 0.2);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease; */
    
        }
        .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 35px rgba(229, 163, 55, 0.35);
}
.card{
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 8px 20px rgba(229, 163, 55, 0.2) !important;

}
.mobile-version-card{
  background-color: transparent !important;
           width: 25%;
    border-radius: 15px;
    text-align: center;
}
.card img {
  /* border-radius: 15px; */
     max-width: 100%;
     height: 350px;
    object-fit: contain;
    margin-bottom: 20px;
    /* filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.1)); */
  /* filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.1)); */
}
     
        .card-title {

            text-align: center;
            font-size: 24px;
            color: #48576e;
        }
        .color-price {
            color: #4F5D75;
            font-weight: 500;
            font-size: 0.9rem;
        }

        /* Container */
        .container.my-5 {
            max-width: 1100px;
        }

        /* Center the message section */

        section.text-center {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #555;
        }
        
        .cont-align{
            background: url('../img/bg-lines.png');
            background-position: center;
            background-size: contain;
            background-repeat: no-repeat
            ;
            display: flex;
        }
        .align-all{
          /* background-color: red; */
          width: 50%;
          display: flex;
          justify-content: space-evenly;
          align-items: center;
        }
        .text-muted{
          text-align: left;
          margin: 0;
          padding: 0;
        }


        .price-now-ds{
          text-align: center;
          font-size: 20px;
          font-weight: 500;
          color:#18A459;
        }
        #buy-txt{
          margin: 0;
          font-size: 18px;
          color: #FF0000;
        }
        .span-alignn{
          width: 50%;
          display: flex;
          justify-content: space-evenly;
          align-items: center;
        }

           .span-card-al{
                padding-top: 40px;
    padding-bottom: 10px;
            display: flex;
            justify-content: space-evenly;
            align-items: center;
        }
        #last-bidder-{
          color: red;
        }
        .countdown-color span:nth-child(1){
           font-weight: bold;
            font-size: 20px;
          color: #4F5D75 !important;
        }
        .bidder-d{
          font-weight: 600;
          /* font-size: 25px; */
          color: #EF8354 !important;
        }
        .ankandi{

          padding: 20px 0;
          /* height: 100vh; */
          width: 80%;
          display: flex;
          flex-direction: column;
           align-items: center;
          margin-left: auto;
          margin-right: auto;
        }
        .title-all{
          width: 100%;
         padding: 20px 0;
        }
.contanier-bid{
  width: 100%;
 
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bdd{
  width: 80%;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
 margin-left: auto;
  margin-right: auto;
}
.bid-card {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffefc1;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 30%;
  height: 250px;
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
}

/* Right white curve background */
.bid-card::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -20px;
  width: 250px;
  height: 300px;
  background: #f5f5f5;
  border-radius: 50% 0 0 50%;
  z-index: 0;
}

.card-left {
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-left h2 {
  color: #e99157;
  font-size: 36px;
  font-weight: 700;
  margin: 0;
}

.bonus {
  color: #529c41;
  font-weight: bold;
  margin: 0;
}

.bid-type {
  background: #f2d57c;
  border: none;
  padding: 5px 18px;
  border-radius: 5px;
  font-weight: bold;
  color: #7b7d74;
  cursor: pointer;
  width: fit-content;
}

.price-section {
  margin-top: 10px;
}

.price {
  font-size: 30px;
  font-weight: 700;
  color: #3c4c68;
}

.discount {
  display: block;
  color: #f05a55;
  font-weight: 500;
  font-size: 14px;
  margin-top: 3px;
}

.card-right {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.coin-stack img {
  width: 50px;
  height: 50px;
}

.buy-text {
  padding: 0px 20px;
  font-weight: bold;
  color: #3c4c68;
  margin: 10px 0 5px;
}

.arrow-circle {
  width: 45px;
  height: 45px;
  background: #c18c0c;
  border: 1px solid #ebb738;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #4b5a71;
  cursor: pointer;
}
.div-circle{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ps-section {
  /* padding-top: 400px !important; */
  
  /* background-color: blue; */
  width: 80%;
  /* height: 100vh; */
  margin-left: auto;
  margin-right: auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #555;
  /* padding: 0 15px; */
}

.ps-title h2 {
  color: #4F5D75;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 1.2px;
}
.ps-title{
  text-align: left;
}
.ps-subtitle {
  color: #777;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 40px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.ps-grid {
      padding: 50px 0px;
  display: flex;
  gap: 30px;
  justify-content: center;
}

/* Bottom row cards - even bigger */
.ps-card-large {
  flex: 1 1 calc(45% - 30px);
  max-width: calc(45% - 30px);
}

.ps-card {
  padding: 30px 25px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(229, 163, 55, 0.2);
  text-align: center;
  cursor: default;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 300px;
  user-select: none;
}
header{
  width: 100%;
    position: fixed;
    z-index: 9999;
    height: 60px; /* Define the header height */
    top: 0;
}
.f-bg{
  width: 100%;
  background-color: #fff;
}
/* Container */
.fp-section {
  padding-top:100px;
  padding-bottom: 100px;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.ps-section{
  padding-top: 20px;
}
/* Header */
.fp-header h2 {
  font-size: 2.8rem;
  color: #222;
  margin-bottom: 6px;
  font-weight: 700;
}

.fp-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

/* Grid */
.fp-grid {
  padding: 50px 0;
 display: flex;
    gap: 28px;
    align-items: center;
}

/* Cards */
.fp-card {

  max-width: 400px;
 padding: 30px 25px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(229, 163, 55, 0.2);
  text-align: center;
  cursor: default;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  user-select: none;
}

.fp-card:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.fp-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 18px;
}

.fp-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #111;
  font-weight: 600;
}

.fp-desc {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
}

/* Badge */
.fp-badge {
  display: inline-block;
  padding: 7px 18px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  background-color: #a0a0a0;
  border-radius: 20px;
  user-select: none;
}

.ps-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 35px rgba(229, 163, 55, 0.35);
}

.ps-card img {
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 20px;
  /* filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.1)); */
}

.ps-card h3 {

  color: #e99157;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 1.5rem;
  text-transform: capitalize;
  letter-spacing: 0.9px;
}

.ps-desc {

  color: #6e6e6e;
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.4;
  padding: 0 5px;
}

.ps-badge {

  background: #d9f7be;
  color: #529c41;
  font-weight: 700;
  font-size: 14px;
  padding: 7px 22px;
  border-radius: 30px;
  box-shadow: 0 3px 8px rgba(82, 156, 65, 0.4);
  user-select: none;
  letter-spacing: 0.4px;
  align-self: center;
  transition: background-color 0.3s ease;
}

.ps-badge:hover {
  background: #a1d36b;
  color: #36571b;
}


        .ankandi-footer {
          width: 80%;
    margin-left: auto;
    margin-right: auto;
  background: #fff; /* white background */
  color: #555; /* default text color: medium grey */
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  border-top: 1px solid #ddd;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
  margin: 0 auto;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 180px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #4F5D75; /* Dark blue */
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #777; /* lighter grey for icons text */
}

.footer-item .icon {
  font-size: 18px;
  color: #4F5D75; /* dark blue icons */
}

.email-link {
  color: #4F5D75; /* dark blue link */
  text-decoration: none;
}

.dummy-text {
  font-size: 13px;
  line-height: 1.4;
  color: #777; /* grey description text */
}

.contact-form-title {
  font-weight: 500;
  text-transform: uppercase;
  margin: 10px 0 10px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: #4F5D75; /* Dark blue */
}

.contact-form-title .arrow {
  font-size: 18px;
  color: #4F5D75;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: #e0e0e0; /* light grey background */
  border-radius: 50%;
  color: #4F5D75; /* dark blue icons */
  font-weight: bold;
  text-decoration: none;
  font-size: 18px;
  user-select: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
  background: #4F5D75; /* dark blue background on hover */
  color: #fff;
}

a {
  text-decoration: none;
  transition: color 0.3s;
}

ul {
  list-style: none;
  padding-left: 0;
}

/* Logo */
.navbar-brand img {
  height: 35px;
}

/* 🔥 Hamburger Icon Styling */
.burger-strange {
  width: 28px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}
.burger-strange span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #e99157;
  border-radius: 3px;
}
/* MOBILE MENU - FIXED CLEAN VERSION */
.mobile-menu-strange {
  position: absolute;
  top: 65px;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 999;
  padding: 10px 15px;
  border-top: 2px solid #e99157;
  transition: all 0.3s ease-in-out;
}

/* Remove center, align left clean */
.mobile-menu-strange ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu-strange .nav-link {
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  padding: 10px 0;
  border-bottom: 1px solid #f1f1f1;
  transition: color 0.3s ease;
}

.mobile-menu-strange .nav-link:hover {
  color: #e99157;
  background-color: transparent;
}

/* Auth buttons & WhatsApp */
.mobile-menu-strange .text-center {
  text-align: left;
  margin-top: 20px;
}

.mobile-menu-strange .btn {
  font-size: 0.9rem;
  padding: 8px 20px;
  border-radius: 6px;
  margin-top: 10px;
  display: inline-block;
}
@media (max-width: 991px) {
  .desktop-only {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .mobile-only {
    display: none !important;
  }
}
/* 🖥️ Desktop Navbar */
.navbar {
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar-nav .nav-link {
  color: #444;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #e99157;
}

.text-muted small a {
  font-size: 0.9rem;
}

/* WhatsApp Section */
.fas.fa-headset {
  font-size: 1.2rem;
}

.cart-icon-wrapper {
  position: relative;
  cursor: pointer;
}

.cart-icon-wrapper i {
  font-size: 1.2rem;
  color: #e99157;
}

.cart-icon-wrapper .badge {
  font-size: 0.7rem;
  top: -6px;
  right: -8px;
}

/* Responsive Spacing */
@media (max-width: 767px) {
  .navbar-brand img {
    height: 30px;
  }

  .mobile-nav-header {
    border-bottom: 1px solid #f1f1f1;
  }
}
.footer-link {
  display: block;
  margin-bottom: 8px;
  color: #555;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #4F5D75;
}

.subscribe-form {
  display: flex;
  flex-direction: column; /* stack input and button vertically */
  gap: 8px;
  margin-top: 10px;
}

.subscribe-form input[type="email"] {
  padding: 8px 12px;
  border: 1px solid #ccc;
  outline: none;
  border-radius: 3px;
  background: #fff;
  color: #222;
  font-size: 14px;
  font-weight: 600;
  box-shadow: none;
}

.subscribe-form input[type="email"]::placeholder {
  color: #999;
}

.subscribe-form button {
  background: #EF8354; /* orange */
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 3px;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.3s ease;
}

.subscribe-form button .arrow {
  font-size: 18px;
}
#email-txt{
    color: #4F5D75;
}
.subscribe-form button:hover {
  background: #e65c00; /* darker orange */
}


  .custom-account-btn:hover {
    background-color: #EF8354;
    color: white;
  }

  .modal-link {
    display: inline-block;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
  }

  .modal-link:hover {
    color: #EF8354;
    text-decoration: underline;
  }

  .modal-body strong {
    color: #222;
  }
  /* ======= RESPONSIVE FIXES ======= */

@media screen and (max-width: 992px) {
  .mobile-version-card{
    width: 100%;
  }
.fp-desc{
  font-size: 2rem;
}

.fp-badge{
  padding: 12px 50px;
  font-size: 1.7rem;
}
  .ps-section{
  /* width: 95% !important; */
}
  .d-lg-flex{
    display: none !important;
  }

/* nav .container-fluid{
  flex-direction: column;
} */
  nav.navbar {
   display: none !important;
  }
  .top-bar {
    display: none;
  }
nav .nav-link {
  font-size: 1.7rem;
}
.navbar-nav .nav-link {
  position: relative;
  padding-top: 1.5rem;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* This creates the top line */
.navbar-nav .nav-link.active::before {
  content: "";
  position: absolute;
  top: 200px;
  left: 25%;
  width: 50%;
  height: 3px;
  background-color: #e99157; /* your color */
  border-radius: 2px;
}
nav .navbar-brand{
  font-size: 2.5rem;
}
.text-zone .top-meta{
  font-size: 1.4rem !important;
}

  .navbar-collapse {
    width: 100%;
    /* height: 100vh; */
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
.navbar-expand-lg .navbar-collapse{
  width: 100%;
}
  .slide-content {
    flex-direction: column;
    text-align: center;
  }
.slide.active{  

  height: 630px;
}
  .text-zone {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .bid-card {
    width: 100% !important;
    height: auto;
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
.card img{  
  height: 100%;
}
  .container.my-5 .card {
    text-align: center;
  }

  .ps-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
}
.ps-section{
  width: 95% !important;
}
.fp-grid {
  
 display: flex;
 flex-direction: column;
    gap: 28px;
    align-items: center;
}
.fp-card{
  max-width: 100%;
}
.text-zone h1{
  font-size: 5.5rem;
}
.text-zone p {
    font-size: 2rem;
    line-height: 30px;
    max-width: 100%;
}
.title-all h2{
  font-size: 4.5rem !important;
}
.ps-title h2{
  font-size: 2.2rem;
}
.mobile-card--{
  display: flex;
  width: 100%;
}
.ps-card h3{
  font-size: 1.4rem ;
}
.ps-badge{
  font-size: 1.7rem;
  padding: 12px 50px;
}
.ps-desc{
  font-size: 1rem;
}
.ps-subtitle{
  font-size: 1.2rem;
}
  .span-alignn, .align-all {
    /* flex-direction: column; */
    display: flex;
    /* width: 100%; */
  }
  .cont-align {
    background: url(../img/bg-lines.png) !important;
    background-position: center !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    display: flex !important;
}
.countdown-color span:nth-child(1){
  font-size: 1.4rem;
}
.btn-buy svg{
          width: 60px;
        height: auto;
}
.bidder-d{
  font-size: 0.65rem;
}
}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
      font-size: 14px;
    }
    }
@media screen and (max-width: 576px) {
   .mobile-version-card{
    width: 100%;
  }
  .text-zone h1 {
    font-size: 2rem;
  }

  .arrow-link {
    font-size: 1.5rem;
  }

  nav .navbar-brand {
    font-size: 1.2rem;
  }

  nav .btn-profile {
    padding: 6px 10px;
    font-size: 0.9rem;
  }

  .card-title {
    font-size: 20px;
  }

  .bid-now-img {
    width: 100px;
  }
}




.ftr-z9x1 {
  background: #f4f5f4;
  color: #333;
  font-size: 14px;
}

.ftr-xa2 {
  display: flex;
  justify-content: space-around;
  padding: 20px 10px;
  background: white;
  border-radius: 12px;
  margin: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.bx-nb {
  display: flex;
  align-items: center;
  max-width: 250px;
  gap: 10px;
}

.bx-nb .material-icons {
  font-size: 32px;
  color: #f16523;
}

.ftr-y1b {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 30px 20px;
  background:#f4f5f4;
  border-top: 1px solid #e6e6e6;
}

.lg-h1 {
  max-width: 240px;
}

.lg-h1 img {
  max-width: 100%;
  margin-bottom: 20px;
}

.cntct-xz div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.cntct-xz .material-icons {
  color: #f16523;
}

.bx-f7 {
  max-width: 200px;
  margin-bottom: 20px;
}

.bx-f7 h4 {
  color: #4F5D75;
  margin-bottom: 10px;
  font-size: 19px;
}

.bx-f7 ul {
  list-style: none;
  padding: 0;
}

.bx-f7 ul li {
  margin-bottom: 6px;
}

.bx-f7 a {
  color: #333;
  text-decoration: none;
}

.bx-f7 a:hover {
  text-decoration: underline;
}

.bx-f7 input[type="email"] {
  width: 100%;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
  margin-top: 10px;
}

.bx-f7 button {
  margin-top: 10px;
  padding: 10px;
  width: 100%;
  background: #f16523;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.bx-f7 button:hover {
  background: #d9541c;
}

.sc-bb {
  margin-top: 10px;
}

.sc-bb .material-icons {
  margin-right: 10px;
  font-size: 240px;
  color: #555;
  cursor: pointer;
}

.cpy-dk {
  text-align: center;
  padding: 15px;
  background: #eee;
  font-size: 13px;
}

.ik-5social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.ik-5social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  color: #333;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.ik-5social a:hover {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

/* Responsive CSS for the entire footer */
@media screen and (max-width: 768px) {
  /* Top section: stack features vertically */
  .ftr-xa2 {
    flex-direction: column;
    align-items: center;
    padding: 15px;
    gap: 15px;
  }
  .bx-nb {
    flex-direction: column;
    text-align: center;
    max-width: 100%;
  }
  .bx-nb > span.material-icons {
    margin-bottom: 5px;
  }
  
  /* Main section: stack columns vertically */
  .ftr-y1b {
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    gap: 20px;
  }
  
  /* For the logo block, center logo and contact info */
  .lg-h1 {
    max-width: 100%;
    text-align: center;
  }
  .lg-h1 img {
    width: 120px; /* Adjust if needed for smaller view */
    margin-bottom: 15px;
  }
  
  /* Change contact layout under the logo */
  .cntct-xz {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .cntct-xz div {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  /* Other columns: force full width */
  .bx-f7, .link-bx, .nl-sub {
    max-width: 100%;
    text-align: center;
  }
  
  /* Social icons: center them */
  .ik-5social {
    justify-content: center;
    gap: 10px;
  }
}

/* Extra adjustments for very small screens */
@media screen and (max-width: 480px) {
  .ftr-y1b {
    padding: 15px 5px;
  }
  .bx-nb {
    gap: 8px;
  }
  .ik-5social a {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  .cntct-xz div p {
    font-size: 13px;
  }
}

._c9a7 {
  margin-top: 150px;
  padding: 20px 0;
  position: relative;
  width: 80%;
  margin-left:  auto;
  margin-right:  auto;
  margin-bottom:0px;
  overflow: hidden;     /* important to clip inside content */
  border-radius: 20px;  /* smooth rounded corners */
  box-sizing: border-box
}

/* Slider track: horizontal flex container */
._r1t4 {
  display: flex;
  transition: transform 0.4s ease-in-out;
  height: 100%;
}

/* Each slide */
._b7m8 {
  flex: 0 0 100%;
  user-select: none;
  position: relative;
  height: 450px;
  border-radius: 20px;
}

/* Slide image fills container */
._b7m8 img {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  border-radius: 20px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

/* Arrow buttons: absolute centered vertically */
._x9z2 {
align-items: center;
    background: #fff;
    border: none;
    border-radius: max(12px, .833vw);
    display: flex
;
    height: max(48px, 3.75vw);
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: max(40px, 3.125vw);
    z-index: 2;
}

/* Left arrow on left side */
._left1 {
  
  left: 15px;
}

/* Right arrow on right side */
._right1 {
  right: 15px;
}

/* Arrow SVG size */
._x9z2 svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.5;
  stroke: #333;
  cursor: pointer;
}

/* Hover effect */
._x9z2:hover {
  background-color: #ddd;
}

/* Dots container */
._dots1 {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

/* Each dot */
._d1q3 {
  width: 12px;
  height: 12px;
  background-color: transparent;
  border: 2px solid #000;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.4;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}

/* Active dot */
._d1q3._active1 {
  background-color: #000;
  opacity: 1;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  ._c9a7 {
    height: 300px;
  }

  ._x9z2 {
    width: 40px;
    height: 40px;
  }

  ._x9z2 svg {
    width: 20px;
    height: 20px;
  }

  ._dots1 {
    /* bottom: 15px; */
    gap: 8px;
  }

  ._d1q3 {
    width: 10px;
    height: 10px;
    border-width: 1.5px;
  }
}

@media (max-width: 480px) {
  ._c9a7 {
    height: 220px;
  }

  ._x9z2 {
    width: 35px;
    height: 35px;
  }

  ._x9z2 svg {
    width: 16px;
    height: 16px;
  }

  ._dots1 {
    /* bottom: 12px; */
  }

  ._d1q3 {
    width: 8px;
    height: 8px;
    border-width: 1px;
  }
}

  .bid-balance {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: #f4f5f5;          /* soft warm background */
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(233, 153, 87, 0.25); /* subtle orange shadow */
    min-width: 6px;
    user-select: none;
  }

  .bid-balance .value {
    font-weight: 700;
    font-size: 1.4rem;
    color: #e99157;               /* warm orange color */
    line-height: 1;
    letter-spacing: -0.03em;
  }

  .bid-balance .label {
    font-weight: 500;
    font-size: 0.7rem;
    color: #777;               /* darker muted orange */
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .header-divider {
  width: 1px;
  height: 60px;
  background-color: #000;  /* black line */
  margin: 0 12px;
  opacity: 0.2;  /* subtle look */
}


/* Modal */
.ankandi-purchase-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.ankandi-purchase-modal-content {
  background: #fff;
  border-radius: 15px;
  max-width: 450px;
  width: 100%;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  position: relative;
  animation: slideDown 0.3s ease;
}

.ankandi-purchase-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #333;
}

.ankandi-purchase-title {
  margin-bottom: 15px;
  font-size: 22px;
  color: #333;
}

.ankandi-purchase-price {
  margin-bottom: 25px;
  font-size: 18px;
  color: #007bff;
  font-weight: bold;
}

.ankandi-confirm-purchase {
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 25px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.ankandi-confirm-purchase:hover {
  background: #0056b3;
}

@keyframes slideDown {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

