@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Medium.woff2') format('woff2'),
        url('../fonts/Montserrat-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
        url('../fonts/Montserrat-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2'),
        url('../fonts/Montserrat-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Thin.woff2') format('woff2'),
        url('../fonts/Montserrat-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2'),
        url('../fonts/Montserrat-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Black.woff2') format('woff2'),
        url('../fonts/Montserrat-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-ExtraLight.woff2') format('woff2'),
        url('../fonts/Montserrat-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-ExtraBold.woff2') format('woff2'),
        url('../fonts/Montserrat-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Light.woff2') format('woff2'),
        url('../fonts/Montserrat-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
html, body , p{
    font-family: 'Montserrat', sans-serif;
       letter-spacing: .025em;
       line-height:1.5;
}

.h2, h2 , .h1, h1{
      line-height: 1.25;
      letter-spacing: 0;
}
sup {
    font-size: .65em;
    top: -.5em;
  }

:root {
  --primary-color: #12315D;
  --secondry-color: #D69188;
  --gray-border: #d1d5db;
  --gray-bg-timed-auction: #E2E5EA;
 --gray-border: #d1d5db;
  --gray-bg: #E2E5EA;
 
}
 /* PARENT HEADER */
    .ahl-header-main {
      position: fixed;
      inset-inline: 0;
      top: 0;
      z-index: 1000;
      background: transparent;
    }

    /* DESKTOP NAVBAR WRAPPER */
    .ahl-header-main .ahl-navbar {
      background: transparent;
      transition: background-color .25s ease, box-shadow .25s ease;
    }

    /* You can add a sticky background if desired (on scroll via JS) */
    .ahl-header-main.sticky .ahl-navbar {
      background-color: #fff;
      box-shadow: 0 4px 12px rgba(0,0,0,.08);
    }

    /* LOGO */
    .ahl-header-main .navbar-brand {
      margin-right: 1rem;
    }

    .ahl-header-main .navbar-brand img {
      height: auto;
      display: block;
    }

    /* NAV LINKS (DESKTOP) */
    .ahl-header-main .ahl-nav {
      font-size: 16px;
      font-weight: 500;
      letter-spacing: .02em;
    }

    .ahl-header-main .ahl-nav .nav-item {
      margin-inline: 12px;
    }

    .ahl-header-main .ahl-nav-link {
      padding: 8px 15px;
      border-radius: 8px;
      color: #252525;
      text-decoration: none;
      display: inline-block;
      transition: background-color .2s ease, box-shadow .2s ease, color .2s ease;
    }

    @media (hover:hover) and (pointer:fine) {
  .ahl-header-main .ahl-nav-link {
    transition: background-color .2s ease, box-shadow .2s ease;
    box-shadow: none;
  }

    .ahl-header-main .ahl-nav-link:hover {
        background-color: rgba(219, 223, 229, .2);      /* bg-gray/20 */
        box-shadow: inset 0 0 4px 0 rgba(0, 0, 0, .15); /* shadow-menu-item */
    }
    }
    /* DROPDOWN BASE */
    .ahl-header-main .dropdown {
      position: relative;
    }

    .ahl-header-main .ahl-dropdown-menu {
      position: absolute;
      left: 50%;
      top: 125%;
      transform: translate(-50%, 10px);
      padding: 15px 0;
      min-width: 220px;
      border-radius: 10px;
      background-color: var(--secondry-color);
      color: #fff;
      border: none;
      box-shadow: 0 18px 40px rgba(0,0,0,.4);
      opacity: 0;
      visibility: hidden;
      transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
      z-index: 1001;
    }

    .ahl-header-main .ahl-dropdown-menu::before {
      content: "";
      position: absolute;
      top: -10px;
      left: 50%;
      transform: translateX(-50%);
      border-width: 0 11px 11px 11px;
      border-style: solid;
      border-color: transparent transparent var(--secondry-color) transparent;
    }

    /* SHOW ON HOVER (DESKTOP) */
    @media (min-width: 992px) {
      .ahl-header-main .dropdown:hover > .ahl-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0);
      }
    }

    .ahl-header-main .ahl-dropdown-item {
      display: block;
      padding: 5px 25px;
      font-size: 16px;
      font-weight: 400;
      white-space: nowrap;
      color: #fff;
      text-decoration: none;
      transition: background-color .15s ease;
    }

    .ahl-header-main .ahl-dropdown-item:hover,
    .ahl-header-main .ahl-dropdown-item:focus {
      background-color: rgba(238,39,55,.25);
    }

    /* RIGHT SIDE CTA + ICONS (DESKTOP) */
    .ahl-header-main .ahl-right {
      display: flex;
      align-items: center;
    }
    .ahl-right .theme-btn-primary{
        font-size: .875rem;
        padding: 12px 20px;
        margin-right: 10px;
    }
    .ahl-header-main .ahl-cta:hover,
    .ahl-header-main .ahl-cta:focus {
      color: #fff;
      transform: translateY(-1px);
      box-shadow: 0 10px 24px rgba(238,39,55,.4);
    }

    .ahl-header-main .ahl-icon-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-left: 14px;
      color: var(--secondry-color);
      text-decoration: none;
      transition: color .15s ease, transform .15s ease;
      font-size: 24px;
      line-height: 1;
    }

    .ahl-header-main .ahl-icon-link:hover {
      color: var(--secondry-color);
    }

    .ahl-header-main .ahl-icon-link svg {
      width: 27px;
      height: 27px;
      display: block;
    }

    /* NAVBAR TOGGLER (MOBILE) */
    .ahl-header-main .navbar-toggler {
      border: none;
      box-shadow: none !important;
      padding: 0;
      width: 48px;
      height: 48px;
      color: var(--secondry-color);
    }

    .ahl-header-main .navbar-toggler-icon {
      background-image: none;
      position: relative;
      width: 28px;
      height: 2px;
      background-color: currentColor;
      border-radius: 999px;
    }

    .ahl-header-main .navbar-toggler-icon::before,
    .ahl-header-main .navbar-toggler-icon::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      height: 2px;
      background-color: currentColor;
      border-radius: 999px;
    }

    .ahl-header-main .navbar-toggler-icon::before {
      top: -8px;
    }

    .ahl-header-main .navbar-toggler-icon::after {
      top: 8px;
    }

    /* OFFCANVAS (MOBILE MENU) */
    .ahl-header-main .offcanvas-top {
      height: 100vh;
      background-color: var(--secondry-color);
      color: #fff;
      padding-top: 90px;
      padding-bottom: 50px;
    }

    .ahl-header-main .offcanvas-header {
      position: absolute;
      top: 25px;
      right: 20px;
      border: none;
    }

    .ahl-header-main .offcanvas-body {
      padding-inline: 20px;
      overflow-y: auto;
    }

    .ahl-header-main .ahl-mobile-list {
      list-style: none;
      padding-left: 0;
      margin-left: -10px;
      margin-right: -10px;
    }

    .ahl-header-main .ahl-mobile-item {
      border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .ahl-header-main .ahl-mobile-btn,
    .ahl-header-main .ahl-mobile-link {
      width: 100%;
      padding: 15px 20px;
      border: none;
      background: transparent;
      color: var(--primary-color);
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: none;
      text-align: left;
      display: flex;
      align-items: center;
      justify-content: space-between;
      text-decoration: none;
    }

    .ahl-header-main .ahl-mobile-btn svg {
      width: 20px;
      height: 20px;
      color: #fff;
      transition: transform .2s ease;
    }

    .ahl-header-main .ahl-mobile-btn[aria-expanded="true"] svg {
      transform: rotate(180deg);
    }

    .ahl-header-main .ahl-mobile-sub {
      padding-left: 0;
      list-style: none;
    }

    .ahl-header-main .ahl-mobile-sub a {
      display: block;
      padding: 12px 20px;
      border-top: 1px solid rgba(255,255,255,.08);
      color: #fff;
      text-decoration: none;
      font-weight: 400;
      font-size: 15px;
    }

    .ahl-header-main .ahl-mobile-sub a:hover {
      background-color: rgba(255,255,255,.06);
    }

    .ahl-header-main .ahl-mobile-social {
      display: flex;
      align-items: center;
      padding-top: 40px;
      padding-inline: 20px;
    }

    .ahl-header-main .ahl-mobile-social a {
      margin-right: 30px;
      color: var(--primary-color);
      text-decoration: none;
      transition: opacity .15s ease;
    }

    .ahl-header-main .ahl-mobile-social a:hover {
      opacity: .8;
    }

    .ahl-header-main .ahl-mobile-social svg {
      width: 20px;
      height: 20px;
    }

    /* RESPONSIVE VISIBILITY */
    @media (max-width: 991.98px) {
      .ahl-header-main .ahl-nav,
      .ahl-header-main .ahl-right .ahl-cta { /* hide desktop nav + cta on mobile */
        display: none !important;
      }
    }

    @media (min-width: 992px) {
      .ahl-header-main .navbar-toggler,
      .ahl-header-main .offcanvas {
        display: none !important;
      }
    }

main{
    padding-top: 7.9375rem;
}
header {
    width: 100%;
    z-index: 100;
    isolation: isolate;
    top: 0;
    left: 0;
    right: 0;
}

.navbar-brand {
    padding: unset !important;
    margin: unset !important;
    font-size: unset !important;
}


.header-right-icons-div ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.header-right-icons-div ul li {
    display: inline-block;
}

.header-right-icons-div ul li a {
    margin-left: .9375rem;
}

.header-right-icons-div ul li a svg {
    width: 1.6875rem;
    height: 1.6875rem;
}

.header-rightsec {
    display: flex;
    align-items: center;
}

.header-main-div .container-fluid {
    max-width: 1760px;
    margin: 0 auto;
    padding-left: 1.875rem;
    padding-right: 1.875rem;
    padding-top: 1.625rem;
    padding-bottom: 1.625rem;
}

.heder-reg-btn {
    padding-right: .625rem;
}

.navbar-brand {
    width: 200px;
}

.navbar-brand img {
    width: 100%;
}

.navbar {
    padding: unset;
}

.navbar-nav li a {
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 1rem;
    padding-left: 20px !important;
    padding-right: 20px  !important;
    transition-property: all;
    transition-timing-function:
        cubic-bezier(.4, 0, .2, 1);
    transition-duration: .3s;
    padding-top: .625rem;
    padding-bottom: .625rem;
    color: rgb(37, 37, 37, 1);
}

.navbar-nav li {
    margin-left: 1rem;
    margin-right: 1rem;
}

.dropdown-toggle::after {
    display: none;
}
.header-right-icons-div ul li a:hover{
    color:var(--primary-color);
}
.header-right-icons-div ul li a{
    color:#0F2C50;
}
.main{
    padding-top: 7.9375rem;
    z-index: 1;
    position:realtive;
}
.main-section{
    background-color: rgba(255, 255, 255, 1);
}

    /* PARENT WRAPPER */
    .hero-sec-main {
      position: relative;
      background: #fff;
    }

    /* ===== HERO WRAPPER ===== */
    .hero-sec-main .hero-section {
      position: relative;
      overflow: hidden;
      background: #fff;
    }

    .hero-sec-main .hero-inner {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      width: 100%;
      padding-top: 60px;
      padding-bottom: 160px; /* pb-40 */
      overflow: hidden;
      min-height: auto;
    }

    @media (min-width: 768px) {
      .hero-sec-main .hero-inner {
        padding-top: 90px;
      }
    }

    @media (min-width: 992px) {
      .hero-sec-main .hero-inner {
        min-height: calc(100vh - 127px);
      }
    }

    /* ===== BACKGROUND IMAGE (CLIPPED) ===== */
    .hero-sec-main .hero-bg {
      position: absolute;
      inset-inline: 0;
      top: 33%;
      height: 200px;
      z-index: 1;
    }

    @media (min-width: 768px) {
      .hero-sec-main .hero-bg {
        height: 400px;
      }
    }

    @media (min-width: 992px) {
      .hero-sec-main .hero-bg {
        top: 10%;
        height: 80%;
      }
    }

    @media (min-width: 1200px) {
      .hero-sec-main .hero-bg {
        top: 35px;
        bottom: 0;
        height: 100%;
      }
    }

    .hero-sec-main .hero-bg img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      color: transparent;
      clip-path: url(#hero-clip-path);
    }

    /* ===== CONTENT ===== */
    .hero-sec-main .hero-content {
      position: relative;
      z-index: 10;
      text-align: center;
      top: 60px;
    }

    .hero-sec-main .hero-title {
      margin: 0 auto;
      max-width: 320px;
      font-weight: 700;
      font-size: 32px;
      line-height: 1.2;
          letter-spacing: -1.28px;
    }

    .hero-sec-main .hero-title span {
      color: var(--primary-color);
    }

    @media (min-width: 768px) {
      .hero-sec-main .hero-title {
        max-width: 100%;
        font-size: 42px;
      }
    }

    @media (min-width: 1200px) {
      .hero-sec-main .hero-title {
         font-size: 4rem;
        font-family: 'Montserrat';
        font-weight:600;
      }
    }

    .hero-sec-main .hero-subtitle {
      margin-top: 16px;
      font-size: 15px;
      font-family: 'Montserrat';
      letter-spacing: .025em;
    }

    .hero-sec-main .hero-subtitle span {
      font-weight: 600;
        font-family: 'Montserrat';
      font-size: 1.625rem;
      color: var(--primary-color);
    }

    @media (min-width: 768px) {
      .hero-sec-main .hero-subtitle {
        margin-top: 8px;
        font-size: 20px;
      }
    }

    @media (min-width: 992px) {
      .hero-sec-main .hero-subtitle {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        font-size: 24px;
      }
    }

    @media (min-width: 1200px) {
      .hero-sec-main .hero-subtitle {
        max-width: 100%;
        font-size: 26px;
      }
    }

    /* ===== BUTTONS ===== */
    .theme-btn-primary {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
       font-family: 'Montserrat';
      padding: 12px 25px;
      border-radius: 8px;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: .025em;
      background: var(--primary-color) !important;
      color: #fff !important;
      border: none;
      transition: all 0.15s ease-in-out;
      text-decoration: none;
    }

     .theme-btn-primary:hover,
     .theme-btn-primary:focus {
       color: white;
    box-shadow: 0 0 0 3px white, 0 0 0 5px red;
    }

    .heder-reg-btn .theme-btn-primary{
                font-size: .875rem;
    }

    @media (min-width: 992px) {
      .theme-btn-primary {
        padding-block: 14px;
        font-size: 1rem;
      }
    }

    .hero-sec-main .hero-btn-row {
      margin-top: 34px;
    }

    .hero-sec-main .hero-btn-row > *:not(:last-child) {
      margin-bottom: 15px;
    }

    @media (min-width: 768px) {
      .hero-sec-main .hero-btn-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 26px;
      }

      .hero-sec-main .hero-btn-row > * {
        margin-bottom: 0;
      }
    }

    /* ===== LINE & COUNTDOWN ===== */
    .hero-sec-main .hero-line {
      margin: 40px auto 0;
      width: 100px;
      height: 2px;
      background: #2C2C2C;
    }

    .hero-sec-main .hero-live-label {
      margin-top: 25px;
      font-size: 1.625rem;
      font-family: 'Montserrat';
      letter-spacing: 0.08em;
      color: var(--primary-color);
    }

    .hero-sec-main .hero-countdown {
      margin-top: 7px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      color: var(--primary-color);
      text-align: center;
    }

    .hero-sec-main .hero-count {
      min-width: 72px;
    }

    .hero-sec-main .hero-count-number {
      font-size: 30px;
      font-weight: 700;
      font-family: 'Montserrat';
      line-height: 1;
    }

    .hero-sec-main .hero-count-label {
      margin-top: 5px;
      font-weight: 500;
      letter-spacing: 0.12em;
          font-size: 1rem;
      font-family: 'Montserrat';
    }

    @media (min-width: 768px) {
      .hero-sec-main .hero-count-number {
               font-size: 2.75rem;
      }
    }

    /* ===== DATE / TIME ===== */
    .hero-sec-main .hero-date-time {
      margin-top: 17px;
      font-size: 16px;
      letter-spacing: 0.08em;
    }

    .hero-sec-main .hero-date-time span {
      vertical-align: middle;
      font-family: 'Montserrat';
    }

    .hero-sec-main .hero-date-time .date-strong {
      font-weight: 600;
      font-family: 'Montserrat';
    }

    @media (min-width: 768px) {
      .hero-sec-main .hero-date-time {
        font-size: 18px;
      }
    }

    @media (min-width: 992px) {
      .hero-sec-main .hero-date-time {
        font-size: 20px;
      }
    }

    @media (min-width: 1200px) {
      .hero-sec-main .hero-date-time {
        font-size: 22px;
      }
    }

    /* ===== CURRENT LOTS BUTTON ===== */
    .hero-sec-main .hero-current-lots {
      margin-top: 20px;
    }

    @media (min-width: 768px) {
      .hero-sec-main .hero-current-lots {
        margin-top: 15px;
      }
    }

    /* ===== SCROLL DOWN CIRCLE (DESKTOP ONLY) ===== */
    .hero-sec-main .hero-scroll {
      margin-top: 40px;
      margin-bottom: 20px;
      display: none;
    }

    @media (min-width: 768px) {
      .hero-sec-main .hero-scroll {
        display: block;
      }
    }

    .hero-sec-main .hero-scroll a {
      margin: 0 auto;
      width: 38px;
      height: 38px;
      border-radius: 999px;
      border: 1px solid var(--primary-color);
      display: flex;
      align-items: center;
      justify-content: center;
      padding-top: 4px;
      text-decoration: none;
    }

    .hero-sec-main .hero-scroll svg {
      display: block;
    }
    .container-lg{
        padding-left: 1.875rem;
        padding-right: 1.875rem;
        max-width: 1760px;
    }
     .ahl-header-main{
        padding-top: 1.625rem;
        padding-bottom: 1.625rem;
    }
    /* ===== PARENT SECTION ===== */
    .ahl-callout-main {
      background-color: #ffffff;
      padding-top: 2.5rem;   /* ~pt-30 */
      padding-bottom: 1.5rem;
    }

    @media (min-width: 992px) {
      .ahl-callout-main {
        padding-top: 3.5rem; /* ~lg:pt-55 */
      }
    }

    /* ===== CARD ===== */
    .ahl-callout-card {
      position: relative;
      overflow: hidden;
      display: flex;
      flex-wrap: wrap;
      border-radius: 20px;
      border: 3px solid #ffffff;
      background-color: rgba(219, 223, 229, .8);
      padding-right: 1.5rem;
      box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 50px -13px;
      transition: box-shadow 0.2s ease, transform 0.2s ease;
    }

    @media (min-width: 992px) {
      .ahl-callout-card {
        flex-wrap: nowrap;
        padding-right: 3rem;
      }
    }

    .ahl-callout-card:hover {
      box-shadow:
        0 0 0 8px rgba(219, 223, 229, 0.5); /* ring-gray/50 */
    }

    /* inner inset shadow */
    .ahl-callout-inner-shadow {
      position: absolute;
      inset: 0;
      border-radius: 20px;
      pointer-events: none;
      box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.15);
    }

    /* ===== IMAGE COLUMN ===== */
    .ahl-callout-img-col {
      position: relative;
      width: 100%;
      height: 200px;
    }

    @media (min-width: 992px) {
      .ahl-callout-img-col {
        width: 33.333%;
        height: auto;
        min-height: 260px;
      }
    }

    .ahl-callout-img-inner {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 1.875rem; /* ~right-30 */
    }

    .ahl-callout-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: right center;
      display: block;
    }

    /* ===== CONTENT COLUMN ===== */
    .ahl-callout-content {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      width: 100%;
      padding: 2.5rem 0 2.5rem 1.875rem; /* pb-40 pt-40 pl-30 */
    }

    @media (min-width: 992px) {
      .ahl-callout-content {
        width: 66.666%;
        padding: 3.75rem 0 4rem 2.5rem;
      }
    }

    .ahl-callout-content h2 {
      max-width: 760px;
      font-size: 1.5rem;
      font-weight: 700;
    }

    @media (min-width: 992px) {
      .ahl-callout-content h2 {
        margin-left: auto;
        margin-right: auto;
        font-size: 2.875rem;
      font-weight: 600;
        line-height: 1.25;
        text-wrap: balance;
        letter-spacing: 0;
      }
    }

    .ahl-callout-copy {
      margin-top: 1.25rem;
      max-width: 760px;
      font-size: 0.875rem; /* 14px */
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .ahl-callout-copy {
        font-size: 1rem; /* 16px */
      }
    }

    @media (min-width: 992px) {
      .ahl-callout-copy {
        margin-top: 1.875rem;
        font-size: 1.125rem; /* 18px */
        margin-left: auto;
        margin-right: auto;
      }
    }

    .ahl-callout-copy p {
      margin-bottom: 0.75rem;
      color:rgb(55, 65, 81);
    }

    .ahl-callout-copy ul {
         list-style-type: disc;
         color:rgb(55, 65, 81);
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    padding-left: 1.625em;
    }

    .ahl-callout-copy li {
   margin-top: .5em;
    margin-bottom: .5em;
    }
    .ahl-callout-copy ul li::marker {
    color: var(--primary-color);
}
.ahl-callout-main .container{
    max-width:1420px;
}
/* ========= FEATURED LOTS SECTION ========= */
    .featured-lots-main {
      position: relative;
      overflow: hidden;
      background-color: #ffffff;
      padding-top: 2.5rem;      /* pt-30 */
      padding-bottom: 1.25rem;  /* pb-20 */
    }

    @media (min-width: 992px) {
      .featured-lots-main {
        padding-top: 3.5rem;    /* lg:pt-55 approx */
      }
    }

    @media (min-width: 1200px) {
      .featured-lots-main {
        padding-top: 5.25rem;   /* xl:pt-85 approx */
      }
    }

    .featured-lots-main h2.section-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin: 0;
    }

    @media (min-width: 768px) {
      .featured-lots-main h2.section-title {
        font-size: 1.75rem;
      }
    }

    /* ===== Red button (matches your site style) ===== */
    .btn-red {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 24px;
      border-radius: 8px;
      border: none;
      background-color: var(--primary-color);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .05em;
      text-decoration: none;
      line-height: 1.2;
      transition: box-shadow .15s ease, transform .15s ease;
      white-space: nowrap;
    }

    @media (min-width: 992px) {
      .btn-red {
        padding-block: 14px;
        font-size: 16px;
      }
    }

    .btn-red:hover,
    .btn-red:focus {
      color: #fff;
      box-shadow: 0 0 0 2px var(--primary-color);
      transform: translateY(-1px);
    }

    /* ========= LOT CARD ========= */
    .lot-card {
      position: relative;
      display: flex;
      flex-direction: column;
      height: 100%;
      overflow: hidden;
      border-radius: 20px;
      border: 3px solid #ffffff;
      background-color: #ffffff;
      box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 50px -13px;
      transition: box-shadow .2s ease, transform .2s ease;
    }

    .lot-card:hover {
      box-shadow:
        0 0 0 8px rgba(238, 39, 55, .1);
    }

    /* Image area */
    .lot-image-wrapper {
      position: relative;
      display: block;
      height: 220px;
      overflow: hidden;
    }

    @media (min-width: 992px) {
      .lot-image-wrapper {
        height: 290px;
      }
    }

    .lot-image {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Inset overlay shadow (shadow-menu-item) */
    .lot-image-overlay {
      position: absolute;
      inset: 0;
      border-radius: 20px 20px 0 0;
      pointer-events: none;
      box-shadow: inset 0 0 4px rgba(0,0,0,.15);
    }

    /* LOT badge */
    .lot-badge {
      position: absolute;
      left: 50%;
      top: 0;
      transform: translateX(-50%);
      width: 110px;
      border-radius: 0 0 20px 20px;
      background-color: var(--primary-color);
      color: #fff;
      text-align: center;
      font-weight: 700;
      font-size: 18px;
      line-height: 38px;
      box-shadow: 0 18px 40px rgba(0,0,0,.25);
    }

    /* Guide price ribbon */
    .lot-guide {
      position: absolute;
      left: 0;
      bottom: 0;
      border-radius: 0 20px 0 0;
      background-color: #fff;
      padding: 7px 30px 7px 24px;
      font-weight: 700;
      font-size: 16px;
      color: var(--primary-color);
      box-shadow: 0 12px 30px rgba(0,0,0,.16);
    }

    /* Body */
    .lot-body {
      flex: 1;
      display: flex;
      flex-direction: column;
      padding: 18px 15px 20px;
    }

    @media (min-width: 768px) {
      .lot-body {
        padding-inline: 24px;
      }
    }

    /* Tags */
    .lot-tags {
      margin-bottom: 10px;
      font-size: 10px;
    }

    .lot-tag {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      padding: 4px 12px;
      font-size: 10px;
      font-weight: 700;
        font-family: 'Montserrat';
      text-transform: uppercase;
      letter-spacing: 0.083em;
      margin-right: 8px;
      margin-bottom: 6px;
      border: 1px solid var(--secondry-color);
      color: rgb(15, 44, 80);
          border-color: rgba(15, 44, 80, .3);
      background-color: rgba(15, 44, 80, .1);
      box-shadow: inset 0 0 4px 0 rgba(15, 44, 80, 0.2);
    }

    .lot-tag-gray {
      border-color: var(--gray-border);
      background-color: rgba(209,213,219,.2);
       box-shadow: inset 0 0 4px 0 rgba(0, 0, 0, 0.15);
       color: rgb(15, 44, 80);
    }

    .lot-tag-red {
      border-color: rgba(238,39,55,.2);
      background-color: rgba(238,39,55,.05);
    }

    /* Title & description */
    .lot-title {
      font-size: 18px;
      font-weight: 600;
      line-height: 1.2;
    }

    .lot-desc {
      margin-top: 10px;
      font-size: 15px;
      line-height: 1.5;
      padding-bottom: 30px;
    }

    /* bottom grey line */
    .lot-separator {
      margin-top: auto;
      height: 1px;
      width: 100%;
      background-color: #d1d5db;
    }

    /* bottom action row */
    .lot-actions {
      margin-inline: -6px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* .lot-actions > div {
      padding-inline: 6px;
      flex: 1 1 auto;
    } */

    .lot-actions .actions-quarter {
      flex: 0 0 25%;
    }

    /* .lot-actions .actions-half {
      flex: 0 0 50%;
    } */

    /* icon buttons & legal pack */
    .btn-outline-gray {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 44px;
      width: 100%;
      border-radius: 8px;
      border: 1px solid var(--gray-border);
      background-color: #fff;
      transition: box-shadow .15s ease;
    }

    @media (min-width: 992px) {
      .btn-outline-gray {
        height: 52px;
      }
    }

    .btn-outline-gray:hover,
    .btn-outline-gray:focus {
      box-shadow: 0 0 0 2px var(--gray-border);
    }

    .btn-outline-gray svg {
      width: 30px;
      height: 30px;
      color: var(--primary-color);
    }

    .btn-legal-pack {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 44px;
      width: 100%;
      border-radius: 8px;
      border: 1px solid var(--gray-border);
      background-color: #fff;
      transition: box-shadow .15s ease;
      text-decoration: none;
    }

    @media (min-width: 992px) {
      .btn-legal-pack {
        height: 52px;
      }
    }

    .btn-legal-pack:hover,
    .btn-legal-pack:focus {
      box-shadow: 0 0 0 2px var(--gray-border);
    }

    .btn-legal-pack svg {
      width: 24px;
      height: 24px;
      color: var(--primary-color);
    }

    .btn-legal-pack span {
      margin-top: 4px;
      font-size: 10px;
      font-weight: 600;
      color: var(--secondry-color);
      line-height: 1;
      text-align: center;
    }

    @media (max-width: 991.98px) {
      .btn-legal-pack span {
        display: none;
      }
    }

    /* small info link for card 3 & 4 (viewing info) */
    .lot-info-link {
      margin-top: 15px;
      margin-bottom: 10px;
      display: block;
      text-align: center;
      font-size: 14px;
      text-decoration: none;
      color: inherit;
      transition: color .15s ease;
    }

    .lot-info-link svg {
      position: relative;
      top: -2px;
      margin-right: 5px;
      width: 18px;
      height: 18px;
      color: var(--secondry-color);
      transition: color .15s ease;
    }

    .lot-info-link:hover {
      color: var(--primary-color);
    }

    .lot-info-link:hover svg {
      color: var(--primary-color);
    }
.featured-lots-main .container-lg{

    max-width: 1760px;
}
.fw-semibold{
        font-weight: 600;
}

    /* ====== SECTION WRAPPER ====== */
    .timed-lots-main {
      position: relative;
      overflow: hidden;
      background-color: #ffffff;
      padding-top: 2.5rem;   /* pt-30 */
      padding-bottom: 1.25rem; /* pb-20 */
    }

    @media (min-width: 992px) {
      .timed-lots-main {
        padding-top: 3.5rem; /* lg:pt-55 approx */
      }
    }

    @media (min-width: 1200px) {
      .timed-lots-main {
        padding-top: 5.25rem; /* xl:pt-85 approx */
      }
    }

    .timed-lots-main .section-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin: 0;
    }

    @media (min-width: 768px) {
      .timed-lots-main .section-title {
        font-size: 1.75rem;
      }
    }

    /* ====== RED BUTTON ====== */
    .btn-red {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 24px;
      border-radius: 8px;
      border: none;
      background-color: var(--primary-color);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .05em;
      text-decoration: none;
      line-height: 1.2;
      transition: box-shadow .15s ease, transform .15s ease;
      white-space: nowrap;
    }

    @media (min-width: 992px) {
      .btn-red {
        padding-block: 14px;
        font-size: 16px;
      }
    }

    .btn-red:hover,
    .btn-red:focus {
      color: #fff;
      box-shadow: 0 0 0 2px var(--primary-color);
      transform: translateY(-1px);
    }

    /* ====== TIMED LOT CARD ====== */
    .timed-card {
      position: relative;
      display: flex;
      flex-direction: column;
      height: 100%;
      overflow: hidden;
      border-radius: 20px;
      border: 3px solid #ffffff;
      background-color: var(--gray-bg-timed-auction);
      box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 50px -13px;
      transition: box-shadow .2s ease, transform .2s ease;
    }

    .timed-card:hover {
      box-shadow:
        0 0 0 8px rgba(238, 39, 55, .1); /* hover:ring-red/10 */
    }

    /* Image area */
    .timed-image-wrapper {
      position: relative;
      height: 220px;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .timed-image-wrapper {
        height: 290px;
      }
    }

    .timed-image {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .timed-image-overlay {
      position: absolute;
      inset: 0;
      border-radius: 20px 20px 0 0;
      pointer-events: none;
      box-shadow: inset 0 0 4px rgba(0,0,0,.15);
    }

    /* Guide Price ribbon */
    .timed-guide {
      position: absolute;
      left: 0;
      bottom: 0;
      border-radius: 0 20px 0 0;
      background-color: #fff;
      padding: 7px 30px 7px 24px;
      font-weight: 700;
      font-size: 16px;
      color: var(--primary-color);
      box-shadow: 0 12px 30px rgba(0,0,0,.16);
    }

    /* Card body */
    .timed-body {
      flex: 1;
      display: flex;
      flex-direction: column;
      padding: 18px 24px 20px;
    }

    .timed-title {
      font-size: 18px;
      font-weight: 600;
      line-height: 1.2;
    }

    .timed-desc {
      margin-top: 10px;
      font-size: 15px;
      line-height: 1.5;
      padding-bottom: 30px;
    }

    .timed-divider {
      margin-top: auto;
      height: 1px;
      width: 100%;
      background-color: rgba(11, 40, 85, 0.2); /* bg-blue/20 */
    }

    /* Meta (start/end/starting price) */
    .timed-meta {
      margin-top: 15px;
      margin-bottom:15px;
      font-size: 15px;
      line-height: 1.5;
    }

    .timed-meta-row {
      display: flex;
      margin-bottom: 2px;
    }

    .timed-meta-label {
      min-width: 103px;
      font-weight: 600;
    }

    .timed-meta-value {
      padding-left: 20px;
    }

    /* ====== bottom action row (fav / view / legal) ====== */

    .lot-actions > div {
      padding-inline: 6px;
    }

    .actions-quarter {
      flex: 0 0 25%;
    }

    .actions-half {
      flex: 0 0 50%;
    }

    .btn-outline-gray {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 44px;
      width: 100%;
      border-radius: 8px;
      border: 1px solid var(--gray-border);
      background-color: #fff;
      transition: box-shadow .15s ease;
    }

    @media (min-width: 992px) {
      .btn-outline-gray {
        height: 52px;
      }
    }

    .btn-outline-gray:hover,
    .btn-outline-gray:focus {
      box-shadow: 0 0 0 2px var(--gray-border);
    }

    .btn-outline-gray svg {
      width: 30px;
      height: 30px;
      color: var(--primary-color);
    }

    .btn-legal-pack {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 44px;
      width: 100%;
      border-radius: 8px;
      border: 1px solid var(--gray-border);
      background-color: #fff;
      transition: box-shadow .15s ease;
      text-decoration: none;
    }

    @media (min-width: 992px) {
      .btn-legal-pack {
        height: 52px;
      }
    }

    .btn-legal-pack:hover,
    .btn-legal-pack:focus {
      box-shadow: 0 0 0 2px var(--gray-border);
    }

    .btn-legal-pack svg {
      width: 24px;
      height: 24px;
      color: var(--primary-color);
    }

    .btn-legal-pack span {
      margin-top: 4px;
      font-size: 10px;
      font-weight: 600;
      color: var(--secondry-color);
      line-height: 1;
      text-align: center;
    }

    @media (max-width: 991.98px) {
      .btn-legal-pack span {
        display: none; /* same as lg:block */
      }
    }

    /* ===== SECTION WRAPPER ===== */
    .info-grid-main {
      position: relative;
      overflow: hidden;
      background-color: #ffffff;
      padding-top: 2.5rem;    /* ~pt-30 */
      padding-bottom: 1.25rem;/* ~pb-20 */
    }

    @media (min-width: 992px) {
      .info-grid-main {
        padding-top: 3.5rem;  /* ~lg:pt-55 */
      }
    }

    @media (min-width: 1200px) {
      .info-grid-main {
        padding-top: 5.25rem; /* ~xl:pt-85 */
      }
    }

    .info-grid-wrapper {
      position: relative;
    }

    .info-grid-bg {
      position: absolute;
      inset-inline: 0;
      bottom: 0;
      top: 10%;
      background-color: var(--secondry-color);
      z-index: 0;
    }

    @media (min-width: 992px) {
      .info-grid-bg {
        top: 20%;
      }
    }

    .info-grid-main .container {
      position: relative;
      z-index: 1;
    }

    /* ===== CARD LINK ===== */
    .info-card-link {
      text-decoration: none;
      color: inherit;
    }

    .info-card-link:hover {
      text-decoration: none;
    }

    /* ===== IMAGE CARD ===== */
    .info-card {
      position: relative;
      height: 240px;
      overflow: hidden;
      border-radius: 20px;
      border: 3px solid #ffffff;
      background-color: #000;
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12); /* shadow-toast */
      transition: box-shadow .2s ease, transform .2s ease;
    }

    @media (min-width: 992px) {
      .info-card {
        height: 290px;
      }
    }

    .info-card-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .info-card-overlay {
      position: absolute;
      inset: 0;
      border-radius: 20px 20px 0 0;
      pointer-events: none;
      box-shadow: inset 0 0 4px rgba(0,0,0,.2); /* shadow-menu-item style */
    }

    .info-card-link:hover .info-card {
      box-shadow:
        0 18px 40px rgba(0,0,0,.24),
        0 0 0 8px rgba(238, 39, 55, .4); /* ring-red/40 */
    }

    /* ===== CARD TITLE ===== */
    .info-card-title {
      margin-top: 1.5rem; /* ~mt-25 */
      font-size: 1.875rem;
      font-weight: 600;
      color: #ffffff;
    }

    .info-card-title span {
      color: var(--primary-color);
    }

    /* ===== BUTTON ===== */
    .info-card-btn-wrap {
      margin-top: 1.25rem; /* ~mt-20 */
    }

    .btn-red-offset-blue {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 24px;
      border-radius: 8px;
      border: none;
      background-color: var(--primary-color);
      color: #ffffff;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .05em;
      white-space: nowrap;
      line-height: 1.2;
      text-decoration: none;
      transition: box-shadow .15s ease, transform .15s ease;
    }

    @media (min-width: 992px) {
      .btn-red-offset-blue {
        padding-block: 14px;
        font-size: 16px;
      }
    }

    .btn-red-offset-blue:hover,
    .btn-red-offset-blue:focus {
      color: #ffffff;
      transform: translateY(-1px);
      /* simulate ring + ring-offset-blue */
      box-shadow:
        0 0 0 2px var(--primary-color),
        0 0 0 4px var(--secondry-color);
    }
    .container{
            max-width: 1420px !important;
    }
     /* ===== SECTION WRAPPER ===== */
    .newsletter-main {
      position: relative;
      overflow: hidden;
      background-color: #ffffff;
      padding-top: 1.25rem;  /* ~pt-20 */
      padding-bottom: 1.25rem; /* ~pb-20 */
    }

    /* ===== CARD ===== */
    .newsletter-card {
      border-radius: 20px;
      border: 3px solid rgba(238, 39, 55, 0.2); /* border-red/20 */
      background-color: #ffffff;
      padding: 40px 20px;
      box-shadow: 0px 0px 50px -13px rgba(0, 0, 0, 0.1);
      margin-inline: auto;
      
    }

    @media (min-width: 768px) {
      .newsletter-card {
        padding-inline: 40px;   /* md:px-40 */
      }
    }

    @media (min-width: 1200px) {
      .newsletter-card {
        padding-block: 55px;    /* xl:py-55 */
      }
    }

    .newsletter-card:hover {
      /* hover:ring-8 hover:ring-red/5 */
      box-shadow:
        0 0 0 8px rgba(238, 39, 55, .05);
            transition: transform .6s ease-in-out;
    }

    /* ===== HEADING & TEXT ===== */
    .newsletter-title {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 0;
    }

    @media (min-width: 768px) {
      .newsletter-title {
        font-size: 2.375rem;
      }
    }

    .newsletter-text {
      margin-top: 15px;
      max-width: 1020px;
      margin-inline: auto;
      font-size: 16px;
      line-height: 1.6;
      letter-spacing: 0.02em;
    }

    @media (min-width: 768px) {
      .newsletter-text {
        font-size: 18px;
      }
    }

    @media (min-width: 1200px) {
      .newsletter-text {
        font-size: 20px;
      }
    }

    /* ===== FORM ===== */
    .newsletter-form {
      max-width: 600px;
      margin-inline: auto;
      margin-top: 30px;
    }

    .newsletter-input {
      display: block;
      width: 100%;
      border-radius: 18px;
      border: 1px solid var(--gray-border);
      background-color: var(--gray-bg);
      padding: 14px 25px;
      text-align: center;
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 0.05em;
      color: #000;
      outline: none;
      box-shadow: 0 0 0 2px transparent;
      transition: box-shadow .15s ease, border-color .15s ease, background-color .15s ease;
    }

    .newsletter-input::placeholder {
      color: rgba(0,0,0,0.6);
    }

    .newsletter-input:hover {
      box-shadow: 0 0 0 2px rgba(238, 39, 55, 0.1);
    }

    .newsletter-input:focus {
      box-shadow: 0 0 0 2px rgba(238, 39, 55, 0.2);
      border-color: var(--gray-border);
      background-color: #ffffff;
    }

  
     /* ===== SECTION WRAPPER ===== */
    .news-main {
      position: relative;
      overflow: hidden;
      background-color: #ffffff;
      padding-top: 2.5rem;   /* ~pt-30 */
      padding-bottom: 1.25rem; /* ~pb-20 */
    }

    @media (min-width: 992px) {
      .news-main {
        padding-top: 3.5rem; /* ~lg:pt-55 */
      }
    }

    @media (min-width: 1200px) {
      .news-main {
        padding-top: 5.25rem; /* ~xl:pt-85 */
      }
    }

    .news-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .news-title {
      width: 100%;
      text-align: center;
      font-size: 1.6rem;
      font-weight: 700;
      margin: 0;
    }

    @media (min-width: 768px) {
      .news-title {
        width: auto;
        text-align: left;
        font-size: 1.9rem;
      }
    }

    .news-header-right {
      display: none;
    }

    @media (min-width: 768px) {
      .news-header-right {
        display: flex;
        align-items: center;
      }
    }

    .news-section-top {
      margin-top: 1.875rem; /* ~mt-30 */
    }

    @media (min-width: 768px) {
      .news-section-top {
        margin-top: 2.5rem; /* ~md:mt-40 */
      }
    }

    /* ===== BUTTON (RED) ===== */
    .btn-red {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 24px;
      border-radius: 8px;
      border: none;
      background-color: var(--primary-color);
      color: #ffffff;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .05em;
      white-space: nowrap;
      line-height: 1.2;
      text-decoration: none;
      transition: box-shadow .15s ease, transform .15s ease;
    }

    @media (min-width: 992px) {
      .btn-red {
        padding-block: 14px;
        font-size: 16px;
      }
    }

    .btn-red:hover,
    .btn-red:focus {
      color: #ffffff;
      transform: translateY(-1px);
      box-shadow: 0 0 0 2px var(--primary-color);
    }

    /* ===== NEWS CARD ===== */
    .news-card {
      position: relative;
      display: flex;
      flex-direction: column;
      height: 100%;
      overflow: hidden;
      border-radius: 20px;
      border: 3px solid #ffffff;
      background-color: #ffffff;
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08); /* shadow-toast */
      transition: box-shadow .2s ease, transform .2s ease;
    }

    .news-card:hover {
      box-shadow:
        0 18px 40px rgba(0,0,0,.18),
        0 0 0 8px rgba(238, 39, 55, .1); /* hover ring */
      transform: translateY(-2px);
    }

    .news-card-img-wrap {
      position: relative;
      height: 220px;
      overflow: hidden;
    }

    @media (min-width: 1200px) {
      .news-card-img-wrap {
        height: 290px;
      }
    }

    .news-card-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .news-card-img-overlay {
      position: absolute;
      inset: 0;
      border-radius: 20px 20px 0 0;
      pointer-events: none;
      box-shadow: inset 0 0 4px rgba(0,0,0,.2); /* slight overlay */
    }

    .news-card-date {
      position: absolute;
      bottom: 0;
      left: 0;
      border-top-right-radius: 20px;
      background-color: #ffffff;
      padding: 7px 30px 7px 24px;
      font-size: 16px;
      line-height: 1.3;
      color: var(--primary-color);
      box-shadow: 0 -4px 16px rgba(0,0,0,.08);
    }

    /* ===== CARD BODY ===== */
    .news-card-body {
      flex: 1 1 auto;
      display: flex;
      flex-direction: column;
      padding: 18px 24px 20px 24px;
    }

    .news-card-title {
      font-size: 18px;
      font-weight: 600;
      line-height: 1.3;
      margin: 0;
      color: #111827;
    }

    .news-card-title a {
      text-decoration: none;
      color: inherit;
    }

    .news-card-title a:hover {
      color: var(--primary-color);
    }

    .news-card-tags {
      margin-top: 15px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 5px 10px;
    }

    .news-tag {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 7px 12px;
      border-radius: 999px;
      border: 1px solid #d1d5db;
      background-color: rgba(243, 244, 246, 0.8); /* gray/20-ish */
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--secondry-color);
      box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
      transition: border-color .15s ease, box-shadow .15s ease;
    }

    .news-tag:hover {
      border-color: rgba(238, 39, 55, 0.15);
      box-shadow: 0 2px 6px rgba(238, 39, 55, 0.16);
    }

    .news-card-excerpt {
      margin-top: 10px;
      margin-bottom: 20px;
      font-size: 15px;
      line-height: 1.6;
      color: #4b5563;
    }

    .news-card-divider {
      margin-top: auto;
      width: 100%;
      height: 4px;
      background-color: #e5e7eb; /* bg-gray */
    }

    .news-card-footer {
      margin-top: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .news-card-excerpt p {
      margin: 0;
    }

    /* Mobile bottom button */
    .news-bottom-btn {
      margin-top: 2.5rem; /* ~mt-40 */
      display: flex;
      align-items: center;
      justify-content: center;
    }

    @media (min-width: 768px) {
      .news-bottom-btn {
        display: none;
      }
    }
       /* ========== SECTION WRAPPER ========== */
    .contact-main {
      position: relative;
      overflow: hidden;
      background-color: #ffffff;
      padding-top: 2.5rem;   /* ~pt-30 */
      padding-bottom: 1.875rem; /* ~pb-30 */
    }

    @media (min-width: 992px) {
      .contact-main {
        padding-top: 3.5rem;   /* lg:pt-55 */
        padding-bottom: 3.5rem;/* lg:pb-55 */
      }
    }

   

    .contact-main .pb-15 {
      padding-bottom: 0.9rem; /* just to mimic pb-15 */
    }

    /* ========== CARD ========== */
    .contact-card {
      overflow: hidden;
      border-radius: 20px;
      border: 3px solid #ffffff;
      background-color: var(--gray-bg);
      padding: 2.5rem 1.875rem;  /* py-40 px-30 */
      box-shadow: 0 18px 40px rgba(0,0,0,.08);    /* shadow-toast */
      transition: box-shadow .2s ease, transform .2s ease;
    }

    @media (min-width: 992px) {
      .contact-card {
        padding-inline: 2.5rem;  /* lg:px-40 */
      }
    }

    @media (min-width: 1400px) {
      .contact-card {
        padding-inline: 3.125rem; /* 3xl:px-50 */
        padding-block: 3.75rem;   /* 3xl:py-60 */
      }
    }

    .contact-card:hover {
      box-shadow:
        0 18px 40px rgba(0,0,0,.18),
        0 0 0 8px rgba(148,163,184,.4); 
    }

    .contact-title {
      font-weight: 600;
      text-align: center;
     font-size: 2.375rem;
      margin-bottom: 0;
    }

    @media (min-width: 768px) {
      .contact-title {
        text-align: left;
        font-size: 2.375rem;
    }
    }

    .contact-intro {
      margin-top: 0.9rem; /* mt-15 */
      font-size: 16px;
      line-height: 1.6;
      letter-spacing: 0.01em;
      display: none;
    }

    @media (min-width: 768px) {
      .contact-intro {
        display: block;
        font-size: 18px;
      }
    }

    @media (min-width: 1200px) {
      .contact-intro {
        font-size: 20px;
      }
    }

    .contact-form-top {
      margin-top: 1.875rem; /* mt-30 */
    }

    /* ========== FORM CONTROLS ========== */
    .contact-form .form-control {
      height: 54px;
      border-radius: 20px;
      border: 1px solid var(--gray);
      background-color: #ffffff;
      padding-inline: 20px;
      font-size: 16px;
      font-weight: 600;
      box-shadow: 0 4px 10px rgba(15,23,42,.08); /* shadow-menu-item */
      outline: none;
      transition: border-color .15s ease, box-shadow .15s ease;
    }

    @media (min-width: 992px) {
      .contact-form .form-control {
        height: 60px;       /* lg:h-60 */
        font-size: 18px;
      }
    }

    .contact-form .form-control::placeholder {
      color: rgba(0,0,0,.6);
    }

    .contact-form .form-control:hover {
      border-color: var(--gray);
      box-shadow:
        0 4px 10px rgba(15,23,42,.12),
        0 0 0 2px rgba(238,39,55,.1); /* hover:ring-red/10 */
    }

    .contact-form .form-control:focus {
      border-color: var(--gray);
      box-shadow:
        0 0 0 2px rgba(238,39,55,.2); /* focus:ring-red/20 */
    }

    .contact-form textarea.form-control {
      min-height: 150px;
      padding-block: 20px;
      resize: vertical;
    }

    /* ========== CHECKBOX TEXT BLOCK ========== */
    .contact-check-wrap {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
    }

    .contact-check-label {
      font-size: 12px;
      font-weight: 500;
      line-height: 1.5;
      margin: 0;
      cursor: pointer;
    }

    /* Custom checkbox using accent-color for simplicity */
    .contact-check-input {
      width: 26px;
      height: 26px;
      border-radius: 8px;
      border: 1px solid var(--gray);
      box-shadow: 0 4px 10px rgba(15,23,42,.08);
      margin-top: 2px;
      accent-color: var(--primary-color);
      cursor: pointer;
    }

    .contact-check-label a {
      text-decoration: underline;
      color: var(--secondry-color);
    }

    .contact-check-label a:hover {
      color: var(--primary-color);
    }

    /* ========== BUTTON (RED) ========== */
    .btn-red {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 24px;
      border-radius: 8px;
      border: none;
      background-color: var(--primary-color);
      color: #ffffff;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .05em;
      white-space: nowrap;
      line-height: 1.2;
      text-decoration: none;
      transition: box-shadow .15s ease, transform .15s ease;
      min-width: 180px;
    }

    @media (min-width: 992px) {
      .btn-red {
        padding-block: 14px;
        font-size: 16px;
      }
    }

    .btn-red:hover,
    .btn-red:focus {
      color: #ffffff;
      transform: translateY(-1px);
      box-shadow: 0 0 0 2px var(--primary-color);
    }

    .contact-submit-wrap {
      text-align: center;
      margin-top: 1.25rem; /* mt-20 on mobile */
    }

    @media (min-width: 768px) {
      .contact-submit-wrap {
        margin-top: 0;
        text-align: right;
      }
    }
       /* ===== FOOTER WRAPPER ===== */
    .footer-main {
      position: relative;
      background-color:var(--primary-color); /* gray/80 */
      padding-block: 2.5rem; /* py-40 */
    }

    @media (min-width: 768px) {
      .footer-main {
        padding-block: 3.1rem; /* md:py-50 */
      }
    }

    .footer-main::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      box-shadow: inset 0 20px 60px rgba(15, 23, 42, .15); /* shadow-menu-item-ish */
      opacity: 0.9;
    }

    .footer-main > .footer-inner {
      position: relative;
      z-index: 1;
    }

    /* ===== REUSABLE TEXT/HEADINGS ===== */
    .footer-heading {
      font-size: 0.75rem;   /* 12px */
      font-weight: 600;
      color: white;
    }

    @media (min-width: 992px) {
      .footer-heading {
       font-size: .875rem;
      }
    }

    .footer-link-list {
      list-style: none;
      padding-left: 0;
      margin-bottom: 0;
      margin-top: 0;
    }
  

    .footer-link-list li {
      padding-bottom: 0.4rem;
    }

    @media (min-width: 992px) {
      .footer-link-list li {
       padding-bottom: .3125rem;
      }
    }
    .footer-contact-text .c-linkline{
      margin-top:unset !important;
    }

    /* ===== LINK UNDERLINE EFFECT (c-linkline) ===== */
    .c-linkline {
      position: relative;
      display: inline-block;
      font-size: 0.7rem; /* 10–13px range */
      color: white !important;
      text-decoration: none;
      padding-bottom: 2px;
      background-image: linear-gradient(currentColor, currentColor);
      background-repeat: no-repeat;
      background-position: 0 100%;
      background-size: 0 1px;
      transition: background-size .2s ease, color .2s ease;
    }

    @media (min-width: 992px) {
      .c-linkline {
               font-size: .875rem;
               margin-top: .9375rem;
      }
    }

    .c-linkline:hover {
      color: var(--primary-color);
      background-size: 100% 1px;
    }

    /* Alternate style if you want slightly lighter */
    .c-linkline--alt {
      color: var(--secondry-color);
    }
    .c-linkline--alt:hover {
      color: var(--primary-color);
    }

    /* ===== INPUTS IN FOOTER FORMS ===== */
    .footer-input {
      margin-top: 0.4rem;
      width: 100%;
      border-radius: 8px;
      border: 1px solid var(--gray);
      background-color: #ffffff;
      padding: 0.45rem 0.9rem;
      font-size: 1rem;
      color: #000;
      outline: none;
      box-shadow: 0 0 0 2px transparent;
      transition: box-shadow .15s ease;
    }

    .footer-input::placeholder {
      color: rgba(0,0,0,.6);
    }

    .footer-input:hover {
      box-shadow: 0 0 0 2px rgba(238,39,55,.1);
    }

    .footer-input:focus {
      border-color: var(--gray);
      box-shadow: 0 0 0 2px rgba(238,39,55,.2);
    }

    /* ===== RED BUTTON ===== */
    .btn-red-sm {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.6rem 1.5rem;
      border-radius: 8px;
      border: none;
      background-color: var(--primary-color);
      color: #fff;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: .03em;
      white-space: nowrap;
      text-decoration: none;
      transition: box-shadow .15s ease, transform .15s ease;
    }

    .btn-red-sm:hover,
    .btn-red-sm:focus {
      color: #fff;
      transform: translateY(-1px);
      box-shadow: 0 0 0 2px var(--primary-color);
    }

    /* ===== CONTACT TEXT ===== */
    .footer-contact-text {
      margin-top: 0.5rem;
      font-size: 0.75rem;
      color: white;
    }

    @media (min-width: 992px) {
      .footer-contact-text {
        font-size: 0.85rem;
      }
    }

    .footer-contact-text a {
      text-decoration: none;
    }

    /* ===== DIVIDER ===== */
    .footer-divider {
      margin-top: 3rem;
      height: 1px;
      width: 100%;
      background-color: white;
    }

    /* ===== BOTTOM BAR ===== */
    .footer-bottom {
      margin-top: 3rem;
      margin-inline: -1.25rem;
      display: flex;
      flex-wrap: wrap;
      align-items: flex-end;
      justify-content: space-between;
    }

    .footer-logo {
      height: 75px;
    }

    .footer-built {
      font-size: 0.75rem;
      font-weight: 600;
      color:white;
      line-height: 1.5;
    }

    .footer-built img {
      filter: invert(1);
      position: relative;
      top: 3px;
      margin-left: 7px;
    }

    .footer-copy {
      margin-top: 0.25rem;
      font-size: 0.75rem;
      font-weight: 600;
      color:white;
    }

    /* ===== SOCIAL ICONS ===== */
    .footer-social {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 992px) {
      .footer-social {
        margin-bottom: 0;
        justify-content: flex-end;
      }
    }

    .footer-social a {
      margin-inline: 0.75rem;
      color: white;
      transition: color .15s ease, opacity .15s ease;
    }

    .footer-social a:hover {
      color:var(--secondry-color);
      opacity: 0.85;
    }
    /* your normal header/navbar */
.ahl-header-main {
  transition: background-color .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}

/* style when scrolled */
/* .ahl-header-main.scrolled {
  background-color: hsla(0, 0%, 100%, .8);
  box-shadow: 0 5px 10px rgba(0, 0, 0, .05);
  backdrop-filter: blur(14px);      
  -webkit-backdrop-filter: blur(14px); 
}*/
.auction-wrapper {
      background-color: #ffffff;
      padding: 40px 0 50px;
    }

    .auction-box {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      overflow: hidden;
      border-radius: 20px;
      border: 3px solid #ffffff;
      background-color: var(--gray-bg);
      box-shadow: 0px 0px 50px -13px rgba(0, 0, 0, 0.1);
      transition: box-shadow 0.2s ease, outline 0.2s ease;
      min-height: 280px;
    }

    @media (min-width: 768px) {
      .auction-box {
        min-height: 390px;
      }
    }

    .auction-box:hover {
        box-shadow:
    0 0 0 1px #fff,
    0 0 0 8px rgba(201, 208, 218, 0.5) !important;
    }


      
    .auction-content {
      padding: 40px 20px;
      text-align: center;
    }

    @media (min-width: 768px) {
      .auction-content {
        padding: 40px 30px;
        text-align: left;
      }
    }

    @media (min-width: 992px) {
      .auction-content {
        padding: 40px 50px;
      }
    }
    .aution-content-p{
      max-width: 915px;
    }

    .auction-content h1 {
      font-size: 2rem;
      color: var(--secondry-color);
      margin-bottom: 15px;
    }

    @media (min-width: 992px) {
      .auction-content h1 {
      font-size: 2.875rem;
      font-weight:600;
      }
    }

    .auction-content p {
      font-size: 1rem;
      color:var(--secondry-color);
    }

  

    @media (min-width: 1200px) {
      .auction-content p {
       font-size: 1rem;
      }
    }

    .auction-image-wrapper {
      position: relative;
      overflow: hidden;
    }

    .auction-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: left center;
      display: block;
    }
      /* Wrapper spacing */
    .search-row-wrapper {
      padding-bottom: 10px;
    }

    /* Search input styling */
    .search-input {
      height: 44px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 1rem;
      border-color: #d1d5db;
      box-shadow: inset 0 0 4px 0 rgba(0, 0, 0, 0.15);
    }
    .search-input::placeholder {
       font-family: 'Montserrat';
       opacity: 0.8;
      padding-left:8px;
      color:#808080;
      }
    .search-input::placeholder {
      color: rgba(0, 0, 0, 0.6);
    }
    .search-input:focus {
    border-color: rgba(238, 39, 55, .25);
      box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(238, 39, 55, .25);
    }
    @media (min-width: 992px) {
      .search-input {
        height: 52px;
        font-size: 1.05rem;
      }
    }

    /* Clear button (optional) */
    .clear-btn {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      border: none;
      background-color: #e5e7eb;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      line-height: 1;
      opacity: 0;
      visibility: hidden;
      transition: background-color 0.15s ease, opacity 0.15s ease;
    }
    .clear-btn:hover {
      background-color: #dbeafe;
    }
    .clear-btn.is-visible {
      opacity: 1;
      visibility: visible;
    }

    /* Price filter container */
    .price-filter {
      position: relative;
      flex: 0 0 220px;
      max-width: 184px;
    }

    /* Reset bar above button */
    .btn-reset-max-price {
      position: absolute;
      left: 0.75rem;
      right: 0.75rem;
      top: -11px;
      transform: translateY(-60%);
      border-radius: 4px 4px 0 0;
      font-size: .625rem;
      font-weight: 600;
      padding: 0.3rem 0.75rem;
      color: var(--secondry-color);
      background-color: #e5e7eb;
      border: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      z-index: 2;
    }

    /* Max Price button (navy) */
    .btn-max-price {
       display: flex;
      justify-content: space-between;
      align-items: center;     
      margin: 0;
      width: 184px;
      padding:14px 18px 14px 24px;
    }

    /* Remove default caret, use our own arrow */
    .btn-max-price.dropdown-toggle::after {
      display: none;
    }

    .btn-max-price svg{
      width: 1.25rem;
    height: 1.25rem;
    }

    /* Dropdown menu (navy box) */
    .dropdown-menu-maxprice {
      background-color: #0b2140;
      border-radius: 12px;
      border: none;
      padding: 0;
      margin-top: 0.4rem;
      max-height: 260px;      /* total menu height */
      overflow: hidden;       /* hide scrollbars, we scroll inner div */
      position: relative;
    }

    /* Scrollable inner list – scrollbar hidden */
    .maxprice-scroll {
      max-height: 200px;       
      overflow-y: auto;
      padding: 0.4rem 0;

      /* hide scrollbar - Firefox */
      scrollbar-width: none;

      /* hide scrollbar - IE&old Edge */
      -ms-overflow-style: none;
    }
    /* hide scrollbar - WebKit */
    .maxprice-scroll::-webkit-scrollbar {
      width: 0;
      height: 0;
      display: none;
    }

    /* Menu items */
    .dropdown-menu-maxprice .dropdown-item {
      color: #ffffff;
      font-weight: 500;
      font-size: 0.9rem;
      font-family: 'Montserrat';
      padding: 0.45rem 1rem;
    }
    .dropdown-menu-maxprice .dropdown-item:hover {
      background-color: var(--primary-color);
      color: #ffffff;
    }
    .dropdown-menu-maxprice .dropdown-item.active,
    .dropdown-menu-maxprice .dropdown-item:active {
      background-color: #e33434;  /* red active row */
      color: #ffffff;
    }

    /* Up / down arrow overlays */
    .scroll-arrow {
      position: relative;
      height: 20px;
      border: none;
      background: transparent;
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      cursor: default;
      pointer-events: auto;
      z-index: 3;
    }
    .scroll-up {
      top: 2px;
      background: linear-gradient(to bottom, rgba(11, 33, 64, 0.9), transparent);
    }
    .scroll-down {
      bottom: 2px;
      background: linear-gradient(to top, rgba(11, 33, 64, 0.9), transparent);
    }
    .scroll-arrow.hidden {
      display: none;
    }
    .btn-reset-max-price svg{ 
    width: 1rem;
    height: 1rem;
    }
    .btn-reset-max-price{
      display: none;
    }
    .scroolarrowdivmain{
      display: flex;
      align-items: center;
     justify-content: center;
    }
    .timed-aution-pg.timed-lots-main{
      padding-top: unset !important;
    }
    .header-section-inner-btn{
      width: fit-content;
      margin: 0;
      margin-top:auto;
    }
    .price-filter.property-type-filter{
      min-width:260px;
    }
    .price-filter.property-type-filter button{
      width:100%;
    }
    .featured-lots-main.lots-still-available{
      padding-top: unset !important;
    }
       /* Scope everything on this page under .register-bid-auction */
   
    .register-bid-auction .auction-wrapper {
      border-radius: 20px;
      
      border: 3px solid white;
      background-color: var(--gray-bg);
      box-shadow:
    0 1px 10px rgba(0, 0, 0, 0.10),
    0 2px 15px rgba(0, 0, 0, 0.05);
    }

    .register-bid-auction .auction-img-wrapper {
      border-radius: 20px;
      border: 3px solid #fff;
      overflow: hidden;
      height: 284px;
      box-shadow: 0 8px 18px rgba(0,0,0,0.15);
    }

    .register-bid-auction .object-cover {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .register-bid-auction .btn-auction {
      font-weight: 700;
      font-size: 0.875rem;
      letter-spacing: 0.02em;
      padding: 0.75rem 1.5rem;
      border-radius: 8px;
    }

    @media (min-width: 992px) {
      .register-bid-auction .btn-auction {
        font-size: 1rem;
        padding-top: 0.9rem;
        padding-bottom: 0.9rem;
      }
    }

    .register-bid-auction .how-item-icon {
      width: 60px;
      flex-shrink: 0;
    }

    @media (min-width: 768px) {
      .register-bid-auction .how-item-icon {
        width: 120px;
      }
    }
    .how-section{
          margin-top: 1.875rem;
    }
    .register-bid-auction .how-item {
     margin-bottom: 2.4rem;
    }
    .register-bid-inner-content-div{
      max-width: 1280px;
      margin: 0 auto;
    }
    .register-bid-inner-content-div h1{
      font-size: 2.5375em;
      color:var(--secondry-color);
      font-weight:800;
    }
    .register-bid-topsec{
      margin-top: 1.5625rem;
    }
   .register-bid-inner-content-div h2 {
          font-weight: 600;
          color:var(--secondry-color);
    font-size: 1.40625em;
    margin-top: 2em;
    margin-bottom: 1em;
    line-height: 1.3333333;
    }
   .auction-img-wrapper-h3{
      font-size: 1.625rem;
      font-weight:600;
    }
    .register-bid-topsec p{
      margin-top: .625rem !important;
      font-size: 1.125rem;
    }
    .bidder-work-day-heading{
      font-size: 2.375rem;
      margin-top: 1.875rem;
      font-weight: 600;
    }
    .bidder-box-div{
      margin-bottom: 60px;
    }
    .how-it-works-bullets h2{
      font-size: 1.125rem !important;
      margin:0 !important;
      font-weight:600 !important;
    }
    .how-it-works-bullets p{
      font-size: 1.125rem;
    }
    .sm-header-btns-main{
      margin-top: auto;
      display: flex;
      padding-top: 2.5rem;
      gap: 20px;
    }
    .aution-content-smll{
      max-width: 900px;
    }
      /* Parent wrapper: buy-property-details */
    .buy-property-details {
      padding-top: 3rem;   /* pt-5 */
      padding-bottom: 3rem;/* pb-5 */
      background-color: #ffffff;
    }

    .buy-property-details .auction-section {
      margin-bottom: 2.5rem; /* similar to mb-30 */
    }

    .buy-property-details .auction-section:last-of-type {
      border-bottom: none;
      padding-bottom: 0;
      margin-bottom: 0;
    }

    .buy-property-details .section-title {
      color: var(--secondry-color);              /* blue-ish like original */
      font-size: 1.25rem;          /* 18px approx */
      font-weight: 700;
      line-height: 1.4;
    }

    @media (min-width: 768px) {
      .buy-property-details .section-title {
        font-size: 1.375rem;       /* ~22px on md+ */
      }
    }

    .buy-property-details .content-section p {
      margin-bottom: 1.25em;
    }

    .buy-property-details .content-section a {
      color: #d0021b;
      text-decoration: underline;
    }

    .buy-property-details .content-section a:hover {
      color: #a50115;
      text-decoration: none;
    }

    .buy-property-details .btn-auction-primary {
      background-color: #d0021b;
      color: #fff;
      font-weight: 700;
      font-size: 0.9rem;
      padding: 0.75rem 1.75rem;
      border-radius: 0.5rem;
      border: none;
      text-transform: none;
      letter-spacing: 0.02em;
    }

    .buy-property-details .btn-auction-primary:hover {
      background-color: #a50115;
      color: #fff;
    }
    .container-sm{
      margin-left: auto;
    margin-right: auto;
    max-width: 940px;
            padding-left: 1.875rem;
        padding-right: 1.875rem;
    }
     .meetauctioneerssection {
      background-color: #ffffff;
      padding-top: 2.5rem;   /* ~ pt-30 / lg:pt-55 */
      padding-bottom: 1.5rem;
    }

    .meetauctioneerssection .text-blue {
      color: #002c5f; /* adjust to your brand color */
    }

    .meetauctioneerssection .text-red {
      color: #c22026; /* adjust to your brand color */
    }

    .meetauctioneerssection .auctioneer-card {
      margin-bottom: 3rem;
      padding-bottom: 1.5rem;
    }

    .meetauctioneerssection .auctioneer-card:last-of-type {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .meetauctioneerssection .auctioneer-img-wrap {
      position: relative;
      width: 100%;
      height: 200px;
      overflow: hidden;
      border-radius: 20px;
    }

    .meetauctioneerssection .auctioneer-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: left center;
      display: block;
    }

    .meetauctioneerssection .auctioneer-name {
      font-size: 1rem;
      font-weight: 700;
    }

    .meetauctioneerssection .auctioneer-role {
      font-size: 1rem;
      font-weight: 500;
    }

    .meetauctioneerssection .auctioneer-text p {
      margin-bottom: 0;
    }

    /* Mobile tweaks */
    @media (max-width: 767.98px) {
      .meetauctioneerssection .auctioneer-card {
        margin-bottom: 2.5rem;
      }

      .meetauctioneerssection .auctioneer-img-wrap {
        margin-bottom: 0.75rem;
      }
    }
.trustedpartnersolicitorssection {
      position: relative;
      overflow: hidden;
      background-color: #ffffff;
      padding-top: 1.5rem;   /* pt-20 */
      padding-bottom: 1.875rem; /* pb-30 */
    }

    @media (min-width: 992px) {
      .trustedpartnersolicitorssection {
        padding-top: 2.1875rem;  /* lg:pt-35 */
        padding-bottom: 3.4375rem; /* lg:pb-55 */
      }
    }

    .trustedpartnersolicitorssection .text-blue {
      color: #002c5f; /* adjust to your brand */
    }

    .trustedpartnersolicitorssection h2.h3 {
      margin-bottom: 0;
      padding-bottom: 0;
    }

    @media (min-width: 768px) {
      .trustedpartnersolicitorssection h2.h3 {
        padding-bottom: 1.25rem; /* md:pb-20 */
      }
    }

    .trustedpartnersolicitorssection .partner-block {
      margin-top: 1.875rem;  /* pt-30 look */
      margin-bottom: 3.125rem; /* mb-50 */
    }

    .trustedpartnersolicitorssection .partner-logo-wrap {
      display: flex;
      justify-content: flex-start;
    }

    .trustedpartnersolicitorssection .partner-logo {
      max-width: 324px;
      height: auto;
      width: 100%;
      display: block;
    }

    .trustedpartnersolicitorssection .partner-text {
      margin-top: 2.5rem;  /* mt-40 */
      max-width: 100%;
    }

    .trustedpartnersolicitorssection .partner-text p {
      margin-bottom: 0.75rem;
    }

    .trustedpartnersolicitorssection .partner-text p:last-of-type {
      margin-bottom: 0;
    }
    .partner-text a{
       color: var(--primary-color);
    }
    .auctionbuyingsection {
      position: relative;
      overflow: hidden;
      background-color: #ffffff;
      padding-top: 1.5rem; 
      padding-bottom: 1.875rem;
    }

    @media (min-width: 992px) {
      .auctionbuyingsection {
        padding-top: 2.1875rem; 
        padding-bottom: 1rem;
      }
    }

    .auctionbuyingsection .text-blue {
      color: var(--secondry-color);
    }

    /* Each content block */
    .auctionbuyingsection .auction-block {
      margin-bottom: 1.875rem; /* ~ mb-30 */
    }

    /* Icon + text row */
    .auctionbuyingsection .auction-icon-col {
      max-width: 150px;
    }

    .auctionbuyingsection .auction-icon {
      max-width: 100px; /* ~ max-w-60 on mobile */
      height: auto;
      display: block;
    }

   

    .auctionbuyingsection .auction-text-col {
      padding-top: 1.25rem; /* ~ pt-20 */
    }

    @media (min-width: 992px) {
      .auctionbuyingsection .auction-text-col {
        padding-right: 2.5rem; /* ~ lg:pr-40 */
      }
    }

    .auctionbuyingsection h2.section-title {
      font-size: 1.125rem; /* ~ text-18 */
      font-weight: 700;
      line-height: 1.5;
    color: var(--secondry-color);
      margin: 0;
    }

    @media (min-width: 768px) {
      .auctionbuyingsection h2.section-title {
        font-size: 1.375rem; /* ~ md:text-22 */
      }
    }

    .auctionbuyingsection .content-section {
      margin-top: 1.25rem; /* ~ mt-20 */
      max-width: 100%;
    }

    .auctionbuyingsection .content-section p {
    margin-bottom: 1.25em;
    }

    .auctionbuyingsection .content-section p:last-of-type {
      margin-bottom: 0;
    }

    .auctionbuyingsection .content-section ul {
      padding-left: 1.2rem;
      margin-bottom: 0.75rem;
    }

    .auctionbuyingsection .content-section li {
      margin-bottom: 0.4rem;
    }

    .auctionbuyingsection .content-section a {
      text-decoration: underline;
    }

    /* Image cards between blocks */
    .auctionbuyingsection .auction-image-card {
      position: relative;
      margin-top: 3.125rem;   /* ~ mt-50 */
      margin-bottom: 1.875rem;/* ~ mb-30 */
      border-radius: 20px;
      border: 3px solid #ffffff;
      overflow: hidden;
      background-color: #ffffff;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* shadow-toast style */
    }

    @media (min-width: 992px) {
      .auctionbuyingsection .auction-image-card {
        margin-bottom: 3.125rem; /* ~ lg:mb-50 */
      }
    }

    .auctionbuyingsection .auction-image-card img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* Optional overlay (replacing shadow-menu-item) */
    .auctionbuyingsection .auction-image-overlay {
      position: absolute;
      inset: 0;
      border-radius: 20px 20px 0 0;
      box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.12);
      pointer-events: none;
    }
    .futureauctionsection {
      background-color: #ffffff;
      padding-bottom: 3.125rem; /* ~ pb-50 */
    }

    @media (min-width: 768px) {
      .futureauctionsection {
        padding-top: 2.5rem; /* ~ md:pt-40 */
      }
    }

    /* Card wrapper (similar to rounded-20, bg-gray/80, shadow-toast, hover ring) */
    .futureauction-card {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      overflow: hidden;
      border-radius: 20px;
      border: 3px solid #ffffff;
      background: rgba(243, 244, 246, 0.9); /* light gray */
      box-shadow: 0 15px 35px rgba(15, 23, 42, 0.18);
      transition: box-shadow 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
      min-height: 0;
    }

    @media (min-width: 768px) {
      .futureauction-card {
        min-height: 390px;
      }
    }

    .futureauction-card:hover {
      box-shadow: 0 0 0 8px rgba(148, 163, 184, 0.4);
      transform: translateY(-2px);
    }

    /* Left content column */
    .futureauction-left {
      display: flex;
      flex-direction: column;
      padding: 2.5rem 1.25rem;
      text-align: center;
    }

    @media (min-width: 768px) {
      .futureauction-left {
        padding: 2.5rem 1.875rem;
      }
    }

    @media (min-width: 992px) {
      .futureauction-left {
        padding: 2.5rem 2.5rem;
        text-align: left;
      }
    }

    .futureauction-title {
      font-size: 1.75rem; /* h2 style */
      font-weight: 700;
      margin-bottom: 0.75rem;
    }

    .futureauction-intro {
      max-width: 900px;
      font-size: 1rem;
      line-height: 1.6;
      letter-spacing: 0.02em;
      margin-top: 0.9rem; /* ~ mt-15 */
      margin-bottom: 0;
    }

    @media (min-width: 768px) {
      .futureauction-intro {
        font-size: 1.125rem;
      }
    }

    @media (min-width: 1200px) {
      .futureauction-intro {
        font-size: 1.25rem;
      }
    }

    .futureauction-intro a {
      text-decoration: underline;
    }

    /* Date/time row */
    .futureauction-datetime {
      margin-top: 1.6rem; /* mt-25 */
      max-width: 700px;
    }

    .futureauction-datetime-inner {
      border-bottom: 1px solid rgba(0, 0, 0, 0.3);
      padding: 0.6rem 0;
      font-size: 0.95rem;
      line-height: 1.4;
      display: inline-flex;
      align-items: center;
    }

    @media (min-width: 768px) {
      .futureauction-datetime-inner {
        font-size: 1.125rem;
      }
    }

    @media (min-width: 992px) {
      .futureauction-datetime-inner {
        font-size: 1.625rem;
      }
    }

    @media (min-width: 1200px) {
      .futureauction-datetime-inner {
        font-size: 1.875rem;
      }
    }

    .futureauction-datetime-inner sup {
      font-size: 0.6em;
    }

    /* Lots row */
    .futureauction-lots {
      margin-top: 0.6rem;
      max-width: 700px;
      font-size: 1.125rem;
      line-height: 1.4;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    @media (min-width: 768px) {
      .futureauction-lots {
        font-size: 1.375rem;
      }
    }

    @media (min-width: 992px) {
      .futureauction-lots {
        font-size: 1.625rem;
      }
    }

    @media (min-width: 1200px) {
      .futureauction-lots {
        font-size: 1.875rem;
      }
    }

    .futureauction-lots span {
      font-weight: 600;
    }

    .futureauction-lots span + span {
      margin-left: 0.35rem;
    }

    /* Buttons */
    .futureauction-buttons {
      margin-top: auto;
      padding-top: 1.5rem;
    }

    @media (min-width: 768px) {
      .futureauction-buttons {
        padding-top: 2.5rem;
      }
    }

    .futureauction-btn {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
      font-weight: 700;
      font-size: 0.8125rem;
      line-height: 1.2;
      letter-spacing: 0.03em;
      padding: 0.75rem 1.5rem;
      border-radius: 8px;
      border: none;
      background-color: #c22026; /* red */
      color: #ffffff;
      text-decoration: none;
      transition: all 0.15s ease-in-out;
      margin: 0 0.5rem 0.75rem;
    }

    @media (min-width: 992px) {
      .futureauction-btn {
        font-size: 1rem;
        padding-top: 0.85rem;
        padding-bottom: 0.85rem;
      }
    }

    .futureauction-btn:hover,
    .futureauction-btn:focus-visible {
      color: #ffffff;
      box-shadow: 0 0 0 2px #c22026;
      outline: none;
      transform: translateY(-1px);
    }

    .futureauction-btn:active {
      transform: translateY(0);
      box-shadow: 0 0 0 1px #c22026;
    }

    /* Image right column */
    .futureauction-image-col {
      position: relative;
      max-width: 450px;
    }

    .futureauction-image-wrap {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .futureauction-image-wrap img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: left center;
      display: block;
    }

    /* Countdown */
    .futureauction-countdown {
      width: 100%;
      padding-bottom: 2.1rem;
      text-align: center;
      color: #c22026;
      margin-top: 1.5rem;
    }

    @media (min-width: 768px) {
      .futureauction-card {
        padding-bottom: 4.2rem; /* space for absolute countdown */
      }

      .futureauction-countdown {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        margin-top: 0;
      }
    }

    .futureauction-countdown-title {
      font-size: 1.25rem;
      letter-spacing: 0.08em;
      margin-bottom: 0.4rem;
    }

    @media (min-width: 992px) {
      .futureauction-countdown-title {
        font-size: 1.625rem;
      }
    }

    .futureauction-countdown-items {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.25rem;
      text-align: center;
      color: #c22026;
    }

    .futureauction-countdown-number {
      font-size: 1.875rem;
      font-weight: 700;
      line-height: 1;
    }

    @media (min-width: 768px) {
      .futureauction-countdown-number {
        font-size: 2.75rem;
      }
    }

    .futureauction-countdown-label {
      margin-top: 0.35rem;
      font-size: 1rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    /* Utility text color */
    .text-red {
      color: #c22026;
    }

    .FutureAuctionDatessection {
      padding: 3rem 0;
    }

    .FutureAuctionDatessection .auction-card {
      position: relative;
      background-color:var(--gray-bg);
      border-radius: 20px;
      border: 3px solid white;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }

    .FutureAuctionDatessection .auction-card-body {
      padding: 2.5rem 2rem;
    }

    @media (min-width: 992px) {
      .FutureAuctionDatessection .auction-card-body {
        padding: 2.5rem 3rem;
      }
    }

    .FutureAuctionDatessection .auction-title {
      font-weight: 600;
      font-size: 2.875rem;
      margin-bottom: 0.75rem;
    }

    .FutureAuctionDatessection .auction-lead {
      font-size: 1.25rem;
      line-height: 1.6;
      max-width: 900px;
    }

    .FutureAuctionDatessection .auction-date {
      display: inline-flex !important;
      border-bottom: 1px solid rgba(0,0,0,0.25);
      padding-top: 2rem;
      padding-bottom: 0.75rem;
      font-size: 1.875rem;
      font-family: 'Montserrat', sans-serif;
    }

    .FutureAuctionDatessection .auction-lots {
      padding-top: 0.75rem;
      font-size: 1.875rem;
      font-weight: 600;
    }

    .FutureAuctionDatessection .auction-lots span:last-child {
      margin-left: 0.35rem;
    }

    .FutureAuctionDatessection .btn-ahl {
      border-radius: 8px;
      font-weight: 700;
      padding: 0.75rem 1.75rem;
      font-size: 0.95rem;
    }

    .FutureAuctionDatessection .btn-ahl + .btn-ahl {
      margin-left: 0.75rem;
    }

    .FutureAuctionDatessection .auction-card-image {
      position: relative;
      width: 35%;
      max-width: 450px;
      flex-shrink: 0;
      display: none;
    }

    @media (min-width: 768px) {
      .FutureAuctionDatessection .auction-card-image {
        display: block;
      }
    }

    .FutureAuctionDatessection .auction-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
    }

    .FutureAuctionDatessection .auction-countdown {
      position: absolute;
      left: 55%;
      bottom: 1.75rem;
      transform: translateX(-50%);
      text-align: center;
    }

    .FutureAuctionDatessection .auction-countdown-title {
      color: var(--primary-color);
      font-size: 1.875rem;
      font-weight: 400;
      margin-bottom: 0.5rem;
    }

    .FutureAuctionDatessection .auction-countdown-numbers {
      display: flex;
      align-items: center;
      justify-content: center;
       font-family: 'Montserrat';
      gap: 1.75rem;
      color: var(--primary-color);
    }

    .FutureAuctionDatessection .auction-countdown-item-number {
      font-size: 2.75rem;
       font-family: 'Montserrat';
      font-weight: 700;
      line-height: 1;
    }

    .FutureAuctionDatessection .auction-countdown-item-label {
      margin-top: 0.3rem;
      font-size: 1rem;
       font-family: 'Montserrat';
      letter-spacing: 0.08em;
      font-weight: 500;
    }

    /* Mobile: move countdown below card */
    @media (max-width: 767.98px) {
      .FutureAuctionDatessection .auction-countdown {
        position: static;
        transform: none;
        margin-top: 1.5rem;
      }
    }
    .Datescalendar {
      background-color: #ffffff;
      padding: 3rem 0;
      padding-top: 0 !important;
       font-family: 'Montserrat';
    }

    .Datescalendar .section-title {
      font-size:2.875rem;
      font-weight: 600;
      margin-bottom: 2rem;
    }

    .Datescalendar .calendar-card {
      position: relative;
      background-color: #ffffff;
      border-radius: 20px;
      border: 3px solid #ffffff;
     box-shadow:0 1px 10px rgba(0, 0, 0, 0.10),0 2px 15px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      padding: 1.2rem 1.4rem;
      height: 100%;
    }

    .Datescalendar .calendar-card:hover {
       box-shadow:0 0 0 2px #ffffff,0 0 0 8px rgba(238, 39, 55, 0.1),0 1px 10px rgba(0, 0, 0, 0.10),0 2px 15px rgba(0, 0, 0, 0.05);
    }

    .Datescalendar .calendar-label {
      font-size: 0.8rem;
      color: #555;
      font-family: 'Montserrat';
    }

    .Datescalendar .calendar-date {
      margin-top: 0.25rem;
      font-size: 1.25rem;
      font-weight: 700;
      line-height: 1.2;
      color: var(--primary-color);
      font-family: 'Montserrat';
    }

    @media (min-width: 992px) {
      .Datescalendar .calendar-date {
        font-size: 1.45rem;
      }
    }

    .Datescalendar .calendar-meta {
      margin-top: 0.9rem;
      display: flex;
      flex-wrap: nowrap;
      gap: 2rem;
      font-family: 'Montserrat';
      font-size: 0.8rem;
    }

    .Datescalendar .calendar-meta-title {
      font-size: 0.8rem;
      font-family: 'Montserrat';
      color: #555;
    }

    .Datescalendar .calendar-meta-value {
      margin-top: 0.25rem;
      font-family: 'Montserrat';
      font-size: 1.25rem;
      font-weight: 500;
    }

    @media (min-width: 992px) {
      .Datescalendar .calendar-meta-value {
        font-size: 1.45rem;
      }
    }

    .Datescalendar .calendar-text-main {
      margin-top: 0.9rem;
      font-size: 1.125rem;
      font-family: 'Montserrat';
      font-weight: 500;
    }

    .Datescalendar .calendar-buttons {
      margin-top: 1rem;
      font-family: 'Montserrat';
      display: flex;
      gap:15px;
    }

    .Datescalendar .calendar-btn {
      border-radius: 8px;
      font-weight: 700;
      padding: 0.7rem 1.5rem;
      font-size: 0.85rem;
    }

    .Datescalendar .calendar-btn + .calendar-btn {
      margin-left: 0.75rem;
    }

    .Datescalendar .calendar-badge {
      position: absolute;
      top: 1.2rem;
      right: 0.9rem;
      padding: 1px 15px;
      border-radius: 999px;
      background-color: var(--primary-color);;
      color: #ffffff;
      text-transform: uppercase;
      font-size: 0.65rem;
      font-weight: 600;
    }
    .past-auctionssection {
      background-color: #ffffff;
      padding: 3rem 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    /* Year tabs row */
    .past-auctionssection .past-tabs-wrapper {
      overflow-x: scroll;
      display: flex;
      padding-bottom: 0.75rem;
    }

    .past-auctionssection .nav-past-tabs {
      flex-wrap: nowrap;
      gap: 1.25rem;
      border-bottom: none;
      justify-content: center;
    }

    .past-auctionssection .nav-past-tabs .nav-link {
      border: none;
      border-bottom: 2px solid transparent;
      border-radius: 0;
      color: var(--primary-color);
      font-size: 1.75rem;
      font-weight: 400;
      padding: 0 !important;
      white-space: nowrap;
      background-color: unset;
        font-family: 'Montserrat';
    }

    .past-auctionssection .nav-past-tabs .nav-link.active {
      border-color: #e51e2a;
      color: var(--primary-color);
      background-color: transparent;
    }

    /* Cards */
    .past-auctionssection .auction-card {
      position: relative;
      background-color: #ffffff;
      border-radius: 20px;
      border: 3px solid #ffffff;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
      padding: 1.2rem 1.4rem;
      transition: box-shadow 0.2s ease, transform 0.2s ease;
      height: 100%;
    }

    .past-auctionssection .auction-card:hover {
      box-shadow: 0 0 0 8px rgba(229, 30, 42, 0.1);
    }

    .past-auctionssection .auction-label {
      font-size: 0.8rem;
      color: #555;
      margin-bottom: 0.2rem;
    }

    .past-auctionssection .auction-date {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--primary-color);
      line-height: 1.2;
    }

    @media (min-width: 992px) {
      .past-auctionssection .auction-date {
        font-size: 1.45rem;
      }
    }

    .past-auctionssection .auction-meta-title {
      margin-top: 0.75rem;
          font-family: 'Montserrat';
      font-size: 0.8rem;
      color: #555;
    }

    .past-auctionssection .auction-meta-value {
      margin-top: 0.25rem;
      font-size: 1.25rem;
        font-family: 'Montserrat';
      font-weight: 500;
    }

    @media (min-width: 992px) {
      .past-auctionssection .auction-meta-value {
        font-size: 1.45rem;
      }
    }

    .past-auctionssection .auction-btn {
      margin-top: 1rem;
      border-radius: 8px;
      font-weight: 700;
      padding: 0.7rem 1.6rem;
      font-size: 0.9rem;
    }
     .finance-ssection {
      background-color: #ffffff;
      padding-top: 1.5rem;
      padding-bottom: 2.5rem;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    @media (min-width: 992px) {
      .finance-ssection {
        padding-top: 2.2rem;
        padding-bottom: 1rem;
      }
    }

    .finance-ssection .finance-content {
      max-width: 900px;
      margin: 0 auto;
    }

    .finance-ssection h2 {
      font-size: 1.6rem;
      font-weight: 700;
      color:var(--secondry-color);
          font-family: 'Montserrat';
          margin-top: 2em;
    margin-bottom: 1em;
    }

    @media (min-width: 768px) {
      .finance-ssection h2 {
        font-size: 1.25em;
      }
    }

    .finance-ssection p {
      font-size: 1rem;
      line-height: 1.7;
          font-family: 'Montserrat';
    }

    .finance-ssection .finance-image {
      margin: 2.8125rem 0;
      text-align: center;
      box-shadow:
    0 1px 10px 0 rgba(0, 0, 0, 0.10),
    0 2px 15px 0 rgba(0, 0, 0, 0.05);
    border-radius: 1.25rem;
  border:5px solid #ffffff;
    }

    .finance-ssection .finance-image img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      display: block;
      margin: 0 auto;
    }

    .finance-ssection .finance-btn-wrapper {
      text-align: center;
      margin-top: 1.5rem;
    }

    .finance-ssection .finance-btn {
      display: inline-block;
      border-radius: 8px;
      font-weight: 700;
      padding: 0.75rem 1.8rem;
      font-size: 0.9rem;
      background-color: #e51e2a;
      border: none;
      color: #ffffff;
      text-decoration: none;
      transition: box-shadow 0.15s ease, transform 0.15s ease;
    }

    .finance-ssection .finance-btn:hover {
      color: #ffffff;
      box-shadow: 0 0 0 2px #e51e2a55;
      transform: translateY(-1px);
      text-decoration: none;
    }
     .private-treaty-servicessection {
      background-color: #ffffff;
      padding-top: 1.5rem;
      padding-bottom: 2.5rem;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    @media (min-width: 992px) {
      .private-treaty-servicessection {
        padding-top: 2.2rem;
        padding-bottom: 3.5rem;
      }
    }

    .private-treaty-servicessection .pts-content {
      max-width: 900px;
      margin: 0 auto;
    }

    .private-treaty-servicessection h2 {
      font-weight: 700;
      font-size: 1.25em;
      margin-top: 2em;
      margin-bottom: 1em;
      line-height: 1.3333333;
      font-family: 'Montserrat';
    }

    .private-treaty-servicessection h2:first-child {
      margin-top: 0;
    }

    .private-treaty-servicessection p {
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 1rem;
    }

    .private-treaty-servicessection a {
      color: #e51e2a;
      text-decoration: underline;
    }

    .private-treaty-servicessection a:hover {
      text-decoration: none;
    }
    .meetauctioneerssection h2 , .trustedpartnersolicitorssection h2{
      font-size: 2.375rem;
      font-weight:600;
    }
    .auction-icon-col-img img{
      width: 80px;
    }
    .content-section h3{
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 600;
    }
  .content-section ul li a {
    color:var(--primary-color);
  }
    .content-section ul li::marker {
    color: var(--primary-color);
}
.futureautionbuttons{
  margin-top: 40px;
}
.calendar-buttons .theme-btn-primary{
  margin:0 !important
}
.past-auction-date{
      margin-right: 50px;
}
.past-aution-percentage{
  font-weight: 600;
}
.past-auction-lots .text-ser{
    font-size: 1.4375rem;
}
.past-auction-lots{
  padding-top:.625rem;
}
.past-auction-lots .number-ser{
    font-weight: 600;
    font-size: 1.4375rem;
}
.past-tabs-wrapper ul li{
          margin-left:0.6rem;
        margin-right: 0.6rem;
}
.past-auction-card .theme-btn-primary{
  margin:0 !important;
  margin-top:15px !important; 
}
/* social icons */
    .social-links a {
      color: #e31b23;
      margin-right: 25px;
      transition: color .18s ease, transform .18s ease;
    }
    .social-links a:last-child {
      margin-right: 0;
    }
    .social-links a:hover {
      color: rgba(227, 27, 35, 0.8);
      transform: translateY(-1px);
    }

   .social-links {
        margin-left: 25px;
        align-items:center;
      }
          .sell-propertyfirstsec .auction-wrapper {
      padding-top: 2.5rem;
      padding-bottom: 2.5rem;
      background-color: #ffffff;
    }

    .sell-propertyfirstsec .section-block {
      margin-bottom: 2rem;
      padding-bottom: 1.5rem;
    }

    .sell-propertyfirstsec .section-block:last-of-type {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .sell-propertyfirstsec .section-title {
      font-size: 1.125rem; /* 18px */
      font-weight: 700;
      line-height: 1.4;
      color: var(--secondry-color); /* text-blue */
    }

    @media (min-width: 768px) {
      .sell-propertyfirstsec .section-title {
        font-size: 1.375rem; /* 22px */
      }
    }

    .sell-propertyfirstsec .content-text p {
      margin-bottom: 0.75rem;
      line-height: 28px;
      color: #374151;
    }

    .sell-propertyfirstsec .content-text ul {
      padding-left: 1.2rem;
      margin-bottom: 0.75rem;
    }

    .sell-propertyfirstsec .content-text a {
      color: var(--primary-color);
      text-decoration: underline;
    }

    .sell-propertyfirstsec .content-text a:hover {
      text-decoration: none;
    }

    .sell-propertyfirstsec .icon-col img {
      max-width: 80px;
      height: auto;
    }

    .sell-propertyfirstsec .btn-red {
      background-color: var(--primary-color);
      color: #ffffff;
      font-weight: 700;
      font-size: 0.8125rem; /* 13px */
      padding: 0.75rem 1.5rem;
      border-radius: 8px;
      border: 1px solid transparent;
      transition: all 0.15s ease-in-out;
    }

    @media (min-width: 992px) {
      .sell-propertyfirstsec .btn-red {
        font-size: 1rem; /* 16px */
        padding-top: 0.875rem;
        padding-bottom: 0.875rem;
      }
    }

    .sell-propertyfirstsec .btn-red:hover,
    .sell-propertyfirstsec .btn-red:focus {
      color: #ffffff;
      border-color: var(--primary-color);
      box-shadow: 0 0 0 0.15rem rgba(214, 0, 0, 0.35);
    }

    .sell-propertyfirstsec .btn-red:focus-visible {
      outline: none;
    }
     /* Scope everything inside this section */
    .sell-propertysecondsec .experts-wrapper {
      position: relative;
      overflow: hidden;
      background-color: #ffffff;
      padding-top: 30px;
      padding-bottom: 20px;
    }

    @media (min-width: 992px) {
      .sell-propertysecondsec .experts-wrapper {
        padding-top: 55px;
      }
    }

    .sell-propertysecondsec .experts-container {
      max-width: 960px;
      margin: 0 auto;
      color: var(--secondry-color);
    }

    .sell-propertysecondsec .experts-title {
      font-weight: 600;
        font-size: 2.375rem;
      margin-bottom: 3.125rem;
      text-align: center;
    }

    .sell-propertysecondsec .expert-block {
      margin-bottom: 50px;
    }

    .sell-propertysecondsec .expert-image-wrapper {
      position: relative;
      width: 100%;
      height: 200px;
      overflow: hidden;
      border-radius: 20px;
    }

    .sell-propertysecondsec .expert-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: left center;
      display: block;
    }

    .sell-propertysecondsec .expert-name {
      font-size: 1rem; /* 16px */
      font-weight: 700;
    }

    .sell-propertysecondsec .expert-role {
      font-size: 1rem;
      color: var(--primary-color);
      margin-bottom: 0.25rem;
    }

    .sell-propertysecondsec .expert-text p {
      margin-bottom: 0.75rem;
    }

    .sell-propertysecondsec .expert-text a {
      color: var(--primary-color);
      text-decoration: underline;
    }

    .sell-propertysecondsec .expert-text a:hover {
      text-decoration: none;
    }
     /* Scope everything under this parent */
    .sell-propertythirdsec .partner-wrapper {
      position: relative;
      overflow: hidden;
      background-color: #ffffff;
      padding-top: 20px;
      padding-bottom: 30px;
    }

    @media (min-width: 992px) {
      .sell-propertythirdsec .partner-wrapper {
        padding-top: 35px;
        padding-bottom: 55px;
      }
    }

    .sell-propertythirdsec .partner-container {
      max-width: 900px;
      margin: 0 auto;
      color: var(--secondry-color);
    }

    .sell-propertythirdsec .partner-title {
      font-size: 2.375rem;
      font-weight: 600;
      text-align: center;
      padding-bottom: 0;
    }

    .sell-propertythirdsec .partner-block {
      margin-bottom: 50px;
      padding-top: 30px;
    }

    .sell-propertythirdsec .partner-logo img {
      max-width: 100%;
      height: auto;
      width: 325px;
      display: block;
    }

    .sell-propertythirdsec .partner-text {
      margin-top: 40px;
      max-width: 100%;
    }

    .sell-propertythirdsec .partner-text p {
      margin-bottom: 0.75rem;
    }

    .sell-propertythirdsec .partner-text a {
      color: var(--primary-color);
      text-decoration: underline;
    }

    .sell-propertythirdsec .partner-text a:hover {
      text-decoration: none;
    }
      /* Scoped to this section only */
    .sell-propertyfouthsec .sell-wrapper {
      position: relative;
      overflow: hidden;
      background-color: #ffffff;
      padding-top: 20px;
      padding-bottom: 30px;
    }

    @media (min-width: 992px) {
      .sell-propertyfouthsec .sell-wrapper {
        padding-top: 35px;
        padding-bottom: 55px;
      }
    }

    .sell-propertyfouthsec .sell-container {
      max-width: 900px; /* similar to container-sm feel */
      margin: 0 auto;
    }

    .sell-propertyfouthsec .sell-block {
      margin-bottom: 30px;
    }

    .sell-propertyfouthsec .sell-title {
      font-size: 1.125rem; /* 18px */
      font-weight: 700;
      line-height: 1.4;
      color: var(--secondry-color); /* text-blue */
    }

    @media (min-width: 768px) {
      .sell-propertyfouthsec .sell-title {
        font-size: 1.375rem; /* 22px */
      }
    }

    .sell-propertyfouthsec .sell-text {
      margin-top: 20px;
      max-width: 100%;
    }

    .sell-propertyfouthsec .sell-text p {
      margin-bottom: 0.75rem;
    }

    .sell-propertyfouthsec .btn-red {
      background-color: var(--primary-color);
      color: #ffffff;
      font-weight: 700;
      font-size: 0.8125rem; /* 13px */
      padding: 0.75rem 1.5rem;
      border-radius: 8px;
      border: 1px solid transparent;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
      letter-spacing: 0.02em;
      transition: all 0.15s ease-in-out;
    }

    @media (min-width: 992px) {
      .sell-propertyfouthsec .btn-red {
        font-size: 1rem; /* 16px */
        padding-top: 0.875rem;
        padding-bottom: 0.875rem;
      }
    }

    .sell-propertyfouthsec .btn-red:hover,
    .sell-propertyfouthsec .btn-red:focus {
      color: #ffffff;
      border-color: var(--primary-color);
      box-shadow: 0 0 0 0.15rem rgba(214, 0, 0, 0.35);
      text-decoration: none;
    }

    .sell-propertyfouthsec .btn-red:focus-visible {
      outline: none;
    }
    /* ===== Scoped to this section only ===== */
    .guidetosellingatauctionfirsec .guide-wrapper {
      position: relative;
      overflow: hidden;
      background-color: #ffffff;
      padding-top: 20px;
      padding-bottom: 30px;
    }

    @media (min-width: 992px) {
      .guidetosellingatauctionfirsec .guide-wrapper {
        padding-top: 35px;
        padding-bottom: 55px;
      }
    }

    .guidetosellingatauctionfirsec .guide-title {
      font-size: 1.125rem; /* 18px */
      font-weight: 700;
      line-height: 1.4;
      color: var(--secondry-color); /* text-blue */
    }

    @media (min-width: 768px) {
      .guidetosellingatauctionfirsec .guide-title {
        font-size: 1.375rem; /* 22px */
      }
    }

    .guidetosellingatauctionfirsec .guide-text {
      margin-top: 20px;
      max-width: 100%;
    }

    .guidetosellingatauctionfirsec .guide-text p {
      margin-bottom: 0.75rem;
      line-height: 28px;
      color: #374151;
    }

    .guidetosellingatauctionfirsec .guide-text h3 {
      font-size: 1.05rem;
      font-weight: 600;
      margin-top: 1.25rem;
      margin-bottom: 0.5rem;
    }

    .guidetosellingatauctionfirsec .icon-col img {
      max-width: 80px;
      height: auto;
    }


    .guidetosellingatauctionfirsec .btn-red {
      background-color: var(--primary-color);
      color: #ffffff;
      font-weight: 700;
      font-size: 0.8125rem; /* 13px */
      padding: 0.75rem 1.5rem;
      border-radius: 8px;
      border: 1px solid transparent;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
      letter-spacing: 0.02em;
      transition: all 0.15s ease-in-out;
    }

    @media (min-width: 992px) {
      .guidetosellingatauctionfirsec .btn-red {
        font-size: 1rem; /* 16px */
        padding-top: 0.875rem;
        padding-bottom: 0.875rem;
      }
    }

    .guidetosellingatauctionfirsec .btn-red:hover,
    .guidetosellingatauctionfirsec .btn-red:focus {
      color: #ffffff;
      border-color: var(--primary-color);
      box-shadow: 0 0 0 0.15rem rgba(214, 0, 0, 0.35);
      text-decoration: none;
    }

    .guidetosellingatauctionfirsec .btn-red:focus-visible {
      outline: none;
    }

    /* Big image cards */
    .guidetosellingatauctionfirsec .guide-image-card {
      position: relative;
      margin-bottom: 30px;
      margin-top: 50px;
      overflow: hidden;
      border-radius: 20px;
      border: 3px solid #ffffff;
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    }

    .guidetosellingatauctionfirsec .guide-image-card img {
      width: 100%;
      height: auto;
      display: block;
    }

    .guidetosellingatauctionfirsec .guide-image-card-overlay {
      position: absolute;
      inset: 0;
      border-top-left-radius: 20px;
      border-top-right-radius: 20px;
      box-shadow: inset 0 120px 120px rgba(0, 0, 0, 0.1);
      pointer-events: none;
    }

    .guidetosellingatauctionfirsec .guide-text a {
      color: var(--primary-color);
      text-decoration: underline;
    }

    .guidetosellingatauctionfirsec .guide-text a:hover {
      text-decoration: none;
    }
    .corporateandprobate-firsec .corp-wrapper {
      position: relative;
      overflow: hidden;
      background-color: #ffffff;
      padding-top: 20px;
      padding-bottom: 30px;
    }

    @media (min-width: 992px) {
      .corporateandprobate-firsec .corp-wrapper {
        padding-top: 35px;
        padding-bottom: 55px;
      }
    }

    
    .corporateandprobate-firsec .corp-content {
      max-width: 100%;
      line-height: 1.7;
      color: #222;
      font-size: 0.95rem;
    }

    @media (min-width: 768px) {
      .corporateandprobate-firsec .corp-content {
        font-size: 1rem;
      }
    }

    .corporateandprobate-firsec .corp-content p {
      margin-bottom: 0.75rem;
      line-height: 28px;
    color: #374151;
      
    }

    .corporateandprobate-firsec .corp-content h2 {
      font-size: 1.25em;
      font-weight: 700;
      margin-top: 1.8rem;
      margin-bottom: 0.8rem;
      color: var(--secondry-color); 
    }

    

    .corporateandprobate-firsec .corp-content h3 {
        font-size: 1rem;
     line-height: 1.5;
      margin-top: 1.2rem;
       color: var(--secondry-color); 
      margin-bottom: 0.7rem;
    }

    .corporateandprobate-firsec .corp-content h3 .text-red {
      color: var(--primary-color);
    }

    .corporateandprobate-firsec .text-red {
      color: var(--primary-color);
    }

    /* List with custom icons */
    .corporateandprobate-firsec .icons {
      list-style: none;
      padding-left: 0;
      margin-bottom: 1.2rem;
    }

    .corporateandprobate-firsec .icons li {
      position: relative;
      padding-left: 2.3rem;
      margin-bottom: 0.55rem;
    }

    .corporateandprobate-firsec .icons li::before {
         position: absolute;
          left: 0;
          top: .1875rem;
          width: 1.5rem;
          height: 1.5rem;
          content: "";
          background: url(../images/sell-property/corporate-and-probate-services/li.png) no-repeat 50% / 24px;
    }

    /* Optional blockquote styling (in case you add some later) */
    .corporateandprobate-firsec .corp-content blockquote {
      margin: 1.5rem auto;
      padding: 0;
      border-left: none;
      text-align: center;
      font-size: 1.125rem;
      font-weight: 300;
      font-style: normal;
      color: var(--primary-color);
    }

    @media (min-width: 768px) {
      .corporateandprobate-firsec .corp-content blockquote {
        font-size: 1.25rem;
        line-height: 1.4;
      }
    }
     .requestauctionvaluation-firsec .rav-wrapper {
      position: relative;
      overflow: hidden;
      background-color: #ffffff;
      padding-top: 20px;
      padding-bottom: 30px;
    }

    @media (min-width: 992px) {
      .requestauctionvaluation-firsec .rav-wrapper {
        padding-top: 35px;
        padding-bottom: 55px;
      }
    }

    .requestauctionvaluation-firsec .rav-heading {
      font-size: 2.375rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
      color: var(--secondry-color);
    }

    .requestauctionvaluation-firsec .rav-intro {
      margin-top: 1.5rem;
      font-size: 0.95rem;
      line-height: 1.7;
      color: #222;
    }

    @media (min-width: 768px) {
      .requestauctionvaluation-firsec .rav-intro {
        font-size: 1rem;
      }
    }

    /* Form layout */
    .requestauctionvaluation-firsec .rav-form {
      margin-top: 1.8rem;
    }

    .requestauctionvaluation-firsec .rav-form .row > [class*="col-"] {
      margin-bottom: 1.4rem;
    }

    /* Inputs & textarea */
    .requestauctionvaluation-firsec .rav-input,
    .requestauctionvaluation-firsec .rav-textarea {
      width: 100%;
      border-radius: 20px;
      border: 2px solid #ffffff;
      background-color: var(--gray-bg); /* light gray */
      padding: 0.75rem 1.25rem;
      font-size: 1rem;
      font-weight: 600;
       font-family: 'Montserrat';
      color: #111;
      box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.10),
    0 2px 10px 0 rgba(0, 0, 0, 0.05) !important;
      outline: none;
      transition: all 0.15s ease-in-out;
    }

    .requestauctionvaluation-firsec .rav-input::placeholder,
    .requestauctionvaluation-firsec .rav-textarea::placeholder {
      color: #76778F;
      font-weight: 600;
      font-size: 1.125rem;
    }

    .requestauctionvaluation-firsec .rav-input:focus,
    .requestauctionvaluation-firsec .rav-input:hover,
    .requestauctionvaluation-firsec .rav-textarea:focus,
    .requestauctionvaluation-firsec .rav-textarea:hover {
     /* border-color: rgba(238, 39, 55, .25);
      box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(238, 39, 55, .25); */

    border-color: #d1d5db;
    box-shadow: 0 0 0 0.15rem rgba(210, 32, 39, 0.25) !important;
    }

    /* Height behaviour */
    .requestauctionvaluation-firsec .rav-input {
      min-height: 54px;
    }

    @media (min-width: 992px) {
      .requestauctionvaluation-firsec .rav-input {
        min-height: 60px;
      }
    }

    .requestauctionvaluation-firsec .rav-textarea {
      min-height: 150px;
      resize: vertical;
      padding-top: 1.25rem;
      padding-bottom: 1.25rem;
    }

    /* Checkbox row */
    .requestauctionvaluation-firsec .rav-checkbox-row {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
    }

    .requestauctionvaluation-firsec .rav-checkbox {
      width: 26px;
      height: 26px;
      border-radius: 8px;
      border: 2px solid #ffffff;
      background-color: rgba(243, 244, 246, 0.9);
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
      margin-top: 0.15rem;
      cursor: pointer;
      accent-color: var(--primary-color); /* modern browsers */
    }

    .requestauctionvaluation-firsec .rav-checkbox-label {
      font-size: 0.78rem;
      font-weight: 500;
      line-height: 1.5;
      color: #111;
    }

    .requestauctionvaluation-firsec .rav-checkbox-label a {
      text-decoration: underline;
      color: var(--primary-color);
    }

    .requestauctionvaluation-firsec .rav-checkbox-label a:hover {
      text-decoration: none;
    }

    /* Submit button */
    .requestauctionvaluation-firsec .rav-submit-wrap {
      padding-top: 0.75rem;
      text-align: center;
    }

    .requestauctionvaluation-firsec .rav-btn {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 180px;
      padding: 0.75rem 1.5rem;
      border-radius: 8px;
      border: 1px solid transparent;
      background-color: var(--primary-color);
      color: #ffffff;
      font-size: 0.8125rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      text-transform: none;
      white-space: nowrap;
      transition: all 0.15s ease-in-out;
    }

    @media (min-width: 992px) {
      .requestauctionvaluation-firsec .rav-btn {
        font-size: 1rem;
        padding-top: 0.875rem;
        padding-bottom: 0.875rem;
      }
    }

    .requestauctionvaluation-firsec .rav-btn:hover,
    .requestauctionvaluation-firsec .rav-btn:focus {
      color: #ffffff;
      border-color: var(--primary-color);
      box-shadow: 0 0 0 0.16rem rgba(214, 0, 0, 0.35);
      text-decoration: none;
    }
    .requestauctionvaluation-sesec .rav2-wrapper {
      position: relative;
      overflow: hidden;
      background-color: #ffffff;
      padding-top: 20px;
      padding-bottom: 30px;
    }

    @media (min-width: 992px) {
      .requestauctionvaluation-sesec .rav2-wrapper {
        padding-top: 35px;
        padding-bottom: 55px;
      }
    }

    .requestauctionvaluation-sesec .rav2-container {
      max-width: 900px; /* similar to container-sm look */
      margin: 0 auto;
    }

    .requestauctionvaluation-sesec .rav2-content {
      max-width: 100%;
      line-height: 1.7;
      color: #222;
      font-size: 0.95rem;
    }

    @media (min-width: 768px) {
      .requestauctionvaluation-sesec .rav2-content {
        font-size: 1rem;
      }
    }

    /* Headings */
    .requestauctionvaluation-sesec .rav2-content h2 {
      font-weight: 600;
      margin-top: 1.8rem;
      margin-bottom: 0.9rem;
      color: var(--secondry-color); /* auction blue */
     font-size: 2.375rem !important;
    }

    .requestauctionvaluation-sesec .rav2-content h2:first-of-type {
      margin-top: 0; /* top heading closer */
    }

    .requestauctionvaluation-sesec .rav2-content p {
         margin-bottom: 1.25em;
    }

    /* List styling */
    .requestauctionvaluation-sesec .rav2-content ul {
      padding-left: 1.1rem;
      margin-bottom: 1.2rem;
    }

    .requestauctionvaluation-sesec .rav2-content ul li {
      margin-bottom: 0.45rem;
    }

    .requestauctionvaluation-sesec .rav2-content ul li strong {
      font-weight: 600;
    }

    /* Image wrapper */
    .requestauctionvaluation-sesec .rav2-image-wrapper {
      margin-top: 2rem;
      border-radius: 20px;
      overflow: hidden;
      border: 3px solid #ffffff;
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    }

    .requestauctionvaluation-sesec .rav2-image-wrapper img {
      display: block;
      width: 100%;
      height: auto;
    }
        .sellnow-firsec .sn-wrapper {
      position: relative;
      overflow: hidden;
      background-color: #ffffff;
      padding-top: 20px;
      padding-bottom: 30px;
    }

    .sellnow-firsec .sn-content {
      max-width: 100%;
      line-height: 1.7;
      color: #222;
      font-size: 0.95rem;
    }

    @media (min-width: 768px) {
      .sellnow-firsec .sn-content {
        font-size: 1rem;
      }
    }

    /* Main section headings */
    .sellnow-firsec .sn-content h2 {
      font-weight: 600;
      margin-top: 1.8rem;
      margin-bottom: 0.9rem;
      color: var(--secondry-color); /* blue tone */
      font-size: 2.375rem !important;
    }

    .sellnow-firsec .sn-content h2:first-of-type {
      margin-top: 0; /* top heading closer to top */
    }


    /* Red subheadings */
    .sellnow-firsec .sn-content h3 {
      font-weight: 600;
      margin-top: 1.4rem;
          font-size: 1rem;
    line-height: 1.5;
      margin-bottom: 0.4rem;
      color: var(--secondry-color);
    }

    .sellnow-firsec .sn-content p {
      margin-bottom: 0.9rem;
    }

    /* Bullet list */
    .sellnow-firsec .sn-content ul {
      padding-left: 1.1rem;
      margin-bottom: 1.2rem;
    }

    .sellnow-firsec .sn-content ul li {
      margin-bottom: 0.45rem;
    }

    .sellnow-firsec .sn-content ul li strong {
      font-weight: 600;
    }
     .aboutus-sec .about-wrapper {
      position: relative;
      overflow: hidden;
      background-color: #ffffff;
      padding-top: 20px;
      padding-bottom: 30px;
    }

    @media (min-width: 992px) {
      .aboutus-sec .about-wrapper {
        padding-top: 35px;
        padding-bottom: 55px;
      }
    }

    .aboutus-sec .about-content {
      max-width: 100%;
      line-height: 1.7;
      color: #222;
      font-size: 0.95rem;
    }

    @media (min-width: 768px) {
      .aboutus-sec .about-content {
        font-size: 1rem;
      }
    }

    .aboutus-sec .about-content p {
      margin-bottom: 0.9rem;
      line-height: 1.7;
    }

    /* Image wrappers */
    .aboutus-sec .about-image-wrapper {
      margin: 1.8rem 0;
      border-radius: 20px;
      overflow: hidden;
      border: 3px solid #ffffff;
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    }

    .aboutus-sec .about-image-wrapper img {
      display: block;
      width: 100%;
      height: auto;
    }

    /* Blockquote styling */
    .aboutus-sec .about-content blockquote {
      margin: 2rem auto;
      padding: 0;
      border-left: none;
      text-align: center;
      font-size: 1.125rem;
      font-weight: 300;
      font-style: normal;
      color:var(--primary-color);
    }

    @media (min-width: 768px) {
      .aboutus-sec .about-content blockquote {
        font-size: 1.25rem;
        line-height: 1.4;
      }
    }

    .aboutus-sec .about-content blockquote p {
      margin-bottom: 0;
      font-size:1.4375rem;
    }

    /* Links */
    .aboutus-sec .about-content a {
      color: var(--primary-color);
      text-decoration: underline;
    }

    .aboutus-sec .about-content a:hover {
      text-decoration: none;
    }
     .team-mainsec {
      position: relative;
      overflow: hidden;
      background-color: #ffffff;
      padding-top: 1.25rem;   /* ~pt-20 */
      padding-bottom: 1.875rem; /* ~pb-30 */
    }

    @media (min-width: 992px) {
      .team-mainsec {
        padding-bottom: 3.4375rem; /* ~pb-55 */
      }
    }

    /* Wrapper around the whole grid */
    .team-mainsec .team-grid {
      margin-left: -0.9375rem;  /* -mx-15 */
      margin-right: -0.9375rem;
      padding-top: 1.875rem;    /* md:pt-30 */
    }

    /* ===========================
       CARD BASE
       =========================== */
    .team-card {
      height: 100%;
      width: 100%;
      border-radius: 20px;
      border: 3px solid #ffffff;
      overflow: hidden;
      background-color: #ffffff;
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08); /* shadow-toast feel */
      position: relative;
    }

    .team-card-image {
      position: relative;
      width: 100%;
      padding-top: 67%; /* pb-[67%] */
      overflow: hidden;
    }

    .team-card-image img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* top image shadow overlay (shadow-menu-item-ish) */
    .team-card-image::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 20px 20px 0 0;
      box-shadow: inset 0 -40px 70px rgba(0, 0, 0, 0.35);
      pointer-events: none;
    }

    /* ===========================
       LINKEDIN ROUND BUTTON
       (top-right on mobile only)
       =========================== */
    .team-card-linkedin {
     
      right: 20px;
      bottom: 20px;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-color:var(--primary-color);
      color: #ffffff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      z-index: 3;
    }

    .team-card-linkedin svg {
      width: 26px;
      height: 26px;
    }

    /* ===========================
       DESKTOP HOVER OVERLAY
       =========================== */
    .team-card-overlay {
      position: absolute;
      inset: 0;
      padding: 1.25rem 1.25rem 2.5rem;
      border-radius: 15px 15px 0 0;
      background-color: rgba(0, 33, 71, 0.82); /* blue/80 feel */
      color: #ffffff;
      overflow-y: auto;
      transform: translateY(100%);
      transition: transform 0.3s ease;
      display: none; /* hidden on mobile */
      z-index: 2;
    }

    .team-card-overlay h3 {
      font-size: 1.25rem; /* text-20 */
      font-weight: 700;
      margin: 0;
      color: #ffffff;
    }

    .team-card-overlay .team-role {
      margin-top: 0.4rem;
      font-size: 1rem; /* text-16 */
      opacity: 0.9;
    }

    .team-card-overlay .team-bio {
      margin-top: 0.85rem; /* mt-14 */
      font-size: 0.875rem; /* text-14 */
      line-height: 1.6;
    }

    .team-card-overlay-footer {
      margin-top: 1.25rem; /* mt-20 */
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
    }

    /* simple red button similar to bg-red btn */
    .btn-red {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      padding: 0.75rem 1.5rem;
      font-size: 0.8125rem;
      font-weight: 700;
      text-decoration: none;
      background-color: var(--primary-color);
      color: #ffffff;
      border: none;
      transition: box-shadow 0.2s ease, transform 0.2s ease;
    }

    .btn-red:hover {
      box-shadow: 0 0 0 2px rgba(215, 38, 61, 0.6);
      transform: translateY(-1px);
      color: #ffffff;
    }

    /* ===========================
       MOBILE BODY (BELOW IMAGE)
       =========================== */
    .team-card-body-mobile {
      background-color: #ffffff;
      padding: 1.25rem;
    }

    .team-card-body-mobile h3 {
      font-size: 1.25rem;
      font-weight: 700;
      margin: 0;
    }

    .team-card-body-mobile .team-role {
      margin-top: 0.4rem;
      font-size: 1rem;
      color: #555;
    }

    .team-card-body-mobile .team-bio {
      margin-top: 0.85rem;
      font-size: 0.875rem;
      color: #555;
      line-height: 1.6;
    }

    /* ===========================
       RESPONSIVE BEHAVIOUR
       =========================== */

    /* Desktop (md and up): show overlay on hover, hide mobile body */
    @media (min-width: 768px) {
      .team-card-overlay {
        display: block;
      }

      .team-card:hover .team-card-overlay {
        transform: translateY(0);
      }

      .team-card-body-mobile {
        display: none;
      }

      /* top-right round LinkedIn only visible inside overlay on desktop */
      .team-card-linkedin.mobile-only {
        display: none !important;
      }
    }

    /* Mobile: hide overlay, show mobile body, keep round LinkedIn visible */
    @media (max-width: 767.98px) {
      .team-card-overlay {
        display: none;
      }

      .team-card-linkedin.desktop-only {
        display: none !important;
      }
    }
    .testimonials-firsec {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  padding-top: 20px;
  padding-bottom: 30px;
}

/* Card base */
.testimonials-firsec .testimonial-card {
  border-radius: 20px;
  border: 3px solid #ffffff;
  padding: 35px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* match original desktop height */
@media (min-width: 768px) {
  .testimonials-firsec .testimonial-card {
    min-height: 453px;
  }
}

/* Avatar */
.testimonials-firsec .testimonial-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ffffff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.testimonials-firsec .testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Stars */
.testimonials-firsec .testimonial-stars {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 4px;
}

.testimonials-firsec .testimonial-stars svg {
  width: 22px;
  height: 22px;
  fill: #f6ca45;
}

/* Text */
.testimonials-firsec .testimonial-text {
  margin-top: 30px;
  max-width: 320px;
  font-size: 15px;
  line-height: 1.45;
}

/* simple clamp like original */
.testimonials-firsec .clamp-5 {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Name */
.testimonials-firsec .testimonial-name {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
}

/* "Read more" link */
.testimonials-firsec .testimonial-link {
  background: none;
  border: 0;
  border-bottom: 1px solid currentColor;
  opacity: 0.7;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.testimonials-firsec .testimonial-link:hover {
  opacity: 1;
  border-color: transparent;
}

/* Video tile */
.testimonials-firsec .testimonial-video-card {
  border-radius: 20px;
  border: 3px solid #ffffff;
  max-height: 453px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.testimonials-firsec .object-fit-cover {
  object-fit: cover;
}

@media (max-width: 575.98px) {
  .testimonials-firsec .testimonial-card {
    padding: 25px;
  }
}

.modal-backdrop.show {
  opacity: 0.7;
}


.testimonial-modal .modal-dialog {
  max-width: 720px; 
  margin: 1.75rem auto;
}

.testimonial-modal .modal-content {
  background-color: var(--secondry-color); 
  border-radius: 24px;
  border: 3px solid #ffffff;
  padding: 60px 60px 45px;
  color: #ffffff;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}


.testimonial-modal .modal-close,
.testimonial-modal .modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;               
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background-color: transparent;   
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  opacity: 1;
}

.testimonial-modal .modal-close span,
.testimonial-modal .modal-close-btn span {
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
}

.testimonial-modal .modal-close:focus,
.testimonial-modal .modal-close-btn:focus {
  box-shadow: none;
}

/* Inner layout */
.testimonial-modal .testimonial-modal-body {
  text-align: center;
}

/* Large avatar at top */
.testimonial-modal .testimonial-avatar.large {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ffffff;
  margin: 0 auto 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.testimonial-modal .testimonial-avatar.large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Stars row */
.testimonial-modal .testimonial-stars {
  margin-top: 8px;
  margin-bottom: 26px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.testimonial-modal .testimonial-stars svg {
  width: 24px;
  height: 24px;
  fill: #f6ca45;
}

/* Title line (“Who knew selling by auction…”) */
.testimonial-modal .testimonial-modal-title {
  margin: 0 0 22px;
  font-size: 18px;
  font-weight: 600;
}

/* Paragraph text */
.testimonial-modal .testimonial-modal-text {
  max-width: 760px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
}

/* Name at bottom */
.testimonial-modal .testimonial-modal-name {
  margin-top: 26px;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
  .testimonial-modal .modal-content {
    padding: 40px 20px 30px;
    border-radius: 18px;
  }

  .testimonial-modal .modal-close,
  .testimonial-modal .modal-close-btn {
    right: 10px;
    top: 10px;         /* bring X inside on small screens */
  }

  .testimonial-modal .testimonial-modal-text {
    padding: 0 5px;
  }
}
.faq-firsec {
      background:#ffffff;
      padding:40px 0 30px;
    }

    .faq-firsec .text-blue { color:var(--secondry-color); }

    .faq-firsec .faq-title {
      margin-bottom:40px;
    }

    /* outer card for each accordion row */
    .faq-firsec .faq-card {
      background:#ffffff;
      border-radius:24px;
      box-shadow:0 10px 25px rgba(15,44,80,0.12);
      border:1px solid #f1f3f7;
      margin-bottom:20px;
    }

    .faq-firsec .accordion {
      --bs-accordion-bg:transparent;
      --bs-accordion-border-width:0;
      --bs-accordion-border-radius:0;
      --bs-accordion-inner-border-radius:0;
    }

    .faq-firsec .accordion-item {
      border:0;
      background:transparent;
    }

    /* header button */
    .faq-firsec .accordion-button {
      background:#e5e9f0;
      border-radius:22px;
      padding:18px 20px 18px 26px;
      font-weight:600;
      font-size:15px;
      line-height:1.4;
      color:var(--secondry-color);
      box-shadow:none;
      font-size: 1.25rem !important;
      border-radius: 1.25rem !important;
      border: 3px solid white;
      height: 80px;
    }

    .faq-firsec .accordion-button:focus {
      box-shadow:none;
    }

    .faq-firsec .accordion-button:not(.collapsed) {
      color:var(--secondry-color);
      background:#e5e9f0;
      border-bottom-left-radius:0;
      border-bottom-right-radius:0;
    }

    /* custom red chevron (down/up) */
    .faq-firsec .accordion-button::after {
      content:unset;
    }

    /* body */
    .faq-firsec .accordion-collapse {
      border-radius:0 0 22px 22px;
      overflow:hidden;
    }

    .faq-firsec .accordion-body {
      background:#ffffff;
      padding-top: 1.875rem;
      padding-bottom: 2.8125rem;
      padding-left: 1.5625rem;
        padding-right: 1.5625rem;
      font-size:16px;
      line-height:1.6;
      color:var(--secondry-color);
      border-radius:0 0 22px 22px;
    }

    @media (min-width:768px){
      .faq-firsec .accordion-button{ font-size:16px; }
    }
     .faq-secsect {
      background:#ffffff;
      padding-top:20px;
      padding-bottom:30px;
    }

    .faq-secsect .faq-image-wrapper {
      position:relative;
      width:100%;
      overflow:hidden;
      border-radius:20px;
      border:3px solid #ffffff;
      box-shadow:0 12px 30px rgba(15,44,80,0.18);
    }


    .faq-secsect .faq-image-wrapper img {
      display:block;
      width:100%;
      height:auto;
    }
    .contact-section {
      padding-top: 1.5rem;
      padding-bottom: 1.5rem;
    }

    .contact-card {
      border-radius: 20px;
      border: 3px solid #ffffff;
      background-color: var(--gray-bg);
      padding: 2.5rem 1.8rem;
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
      transition: box-shadow 0.2s ease, outline 0.2s ease;
    }

    @media (min-width: 992px) {
      .contact-card {
        padding: 65px;
      }
    }

    .contact-card:hover {
      box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.04);
    }

    .contact-heading {
      font-size: 2.375rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
    }

    .contact-lead {
      font-size: 1rem;
      line-height: 1.7;
    }

    @media (min-width: 768px) {
      .contact-lead {
        font-size: 1.1rem;
      }
    }

    @media (min-width: 1200px) {
      .contact-lead {
        font-size: 1.25rem;
      }
    }

    .contact-details {
      margin-top: auto;
      font-size: 0.95rem;
    }

    .contact-details a {
      color: inherit;
      text-decoration: none;
      border-bottom: 1px solid transparent;
     text-decoration: underline;
     font-weight: 500;
    }

    .contact-details a:hover {
      border-bottom-color: currentColor;
    }

    .social-links a {
      font-size: 1.35rem;
      color: var(--primary-color); 
      margin-right:25px;
      transition: color 0.2s ease, transform 0.2s ease;
    }

    .social-links a:last-child {
      margin-right: 0;
    }

    .social-links a:hover {
      color: #a51318;
      transform: translateY(-1px);
    }

    .contact-input {
      border-radius: 20px;
      padding: 0.75rem 1.1rem;
      font-weight: 600;
      font-size: 1rem;
      box-shadow: 0 1px 4px rgba(0,0,0,0.08);
      border-color: #d1d5db;
      height: 60px;
    }

    .contact-input::placeholder {
      color: rgba(0,0,0,0.6);
    }

    .contact-input:focus {
      border-color: #d1d5db;
      box-shadow: 0 0 0 0.15rem rgba(210, 32, 39, 0.25);
    }

    textarea.contact-input {
      min-height: 150px;
      resize: vertical;
    }

    .newsletter-wrap {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
    }

    .newsletter-wrap .form-check-input {
      width: 26px;
      height: 26px;
      margin-top: 0.1rem;
      box-shadow: 0 1px 4px rgba(0,0,0,0.08);
      border-radius: 8px;
      border-color: #d1d5db;
    }

    .newsletter-wrap .form-check-input:checked {
      background-color: var(--primary-color);
      border-color: var(--primary-color);
    }

    .newsletter-wrap label {
      font-size: 0.8rem;
      font-weight: 500;
      line-height: 1.5;
    }

    .newsletter-wrap label a {
      text-decoration: underline;
    }

    .btn-red {
      background-color: var(--primary-color);
      border-color: var(--primary-color);
      font-weight: 700;
      font-size: 0.85rem;
      padding: 0.75rem 1.5rem;
      border-radius: 8px;
      letter-spacing: 0.02em;
    }

    .btn-red:hover {
      background-color: #aa1a20;
      border-color: #aa1a20;
    }

    .map-card {
      border-radius: 20px;
      border: 3px solid #ffffff;
      box-shadow: 0 14px 30px rgba(0,0,0,0.08);
      overflow: hidden;
      background-color: #e5e3df;
      height: 360px;
    }

    @media (min-width: 768px) {
      .map-card {
        height: 540px;
      }
    }

    .map-card iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }
    .prose li::marker {
      color: var(--primary-color);   
}
.prose{
    list-style-type: disc;
    margin-top: 1.25em !important;
    margin-bottom: 1.25em !important; 
    padding-left: 1.625em !important; 
}
.prose li{
      margin-top: .5em;
    margin-bottom: .5em;
}
.sell-propertyfirstsec .content-text h3{
      font-size: 1rem;
    line-height: 1.5;
    font-weight:600;
}
.theme-btn-primary.eqniuer-form-btn{
  width: 180px;
  margin: 0;
}
.theme-btn-primary.footer-btn{
    font-size: .75rem;
    margin:0;
    padding-top: .625rem;
    padding-bottom: .625rem;
}
.requestauctionvaluation-firsec .rav-intro{
font-size: 1.125rem;
}
/* parent wrapper */
.form-customcheckbox {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: 500;
    font-size: .75rem;
    line-height: 1.6;
    color: var(--secondry-color); /* same dark blue tone as screenshot text */
}

/* hide native checkbox */
.form-customcheckbox-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* OUTER WHITE SQUARE with soft glow */
.form-customcheckbox-box {
    position: relative;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 7px;
    background: #ffffff;
    box-shadow: inset 0 0 4px 0 rgba(0, 0, 0, 0.15) !important;
    transition: box-shadow 0.18s ease, transform 0.12s ease;
}

/* INNER SQUARE (light grey when UNCHECKED) */
.form-customcheckbox-box::before {
    content: "";
    position: absolute;
    inset: 3px; /* distance between outer and inner square */
    border-radius: 3px;
    background: white; /* light grey center (unchecked) */
    transition: background 0.18s ease;
}

/* TICK (hidden by default) */
.form-customcheckbox-box::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 6px;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(-45deg);
    top: 50%;
    left: 50%;
    margin-left: -5px;
    margin-top: -4px;
    opacity: 0;
    transition: opacity 0.18s ease;
}

/* HOVER (small lift + stronger glow, optional) */
.form-customcheckbox:hover .form-customcheckbox-box {
    box-shadow:
        0 14px 26px rgba(15, 23, 42, 0.14),
        0 0 0 1px rgba(148, 163, 184, 0.35);
}

/* CHECKED STATE – red inner square + white tick */
.form-customcheckbox-input:checked + .form-customcheckbox-box::before {
    background: var(--primary-color); /* exact red from your screenshot */
}

.form-customcheckbox-input:checked + .form-customcheckbox-box::after {
    opacity: 1;
}

/* a bit more glow when checked */
.form-customcheckbox-input:checked + .form-customcheckbox-box {
    box-shadow:
        0 14px 28px rgba(238, 39, 55, 0.45),
        0 0 0 1px rgba(238, 39, 55, 0.6);
}

/* text & link styling */
.form-customcheckbox-text a {
    color: inherit;
    text-decoration: underline;
}
.requestauctionvaluation-sesec .rav2-content h3{
      font-weight: 600;
    font-size: 1.25em;
    margin-top: 2em;
    margin-bottom: 1em;
    line-height: 1.3333333;
}
.sell-now-newsletter{
  padding-bottom: 3.4375rem;
}

.quoteaboutus::before {
    content: open-quote;
}
.quoteaboutus::after {
    content: close-quote;
}
.contact-section-container{
  max-width: 1280px;
}
.meet-team-icons{
  padding-top: unset !important;
}
.meet-team-icons .social-links{
  margin-left:0 !important;
}
.meet-team-tagline{
  font-weight: 600;
}

 .teammember-firsec {
      background-color: #ffffff;
      padding-top: 10px;
      padding-bottom: 60px;
    }

    .teammember-firsec .tm-inner {
      position: relative;
    }

    .teammember-firsec .tm-photo-card,
    .teammember-firsec .tm-content-card {
      border-radius: 24px;
      border: 3px solid #ffffff;
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
    }

    .teammember-firsec .tm-photo-card {
      overflow: hidden;
      background-color: #ffffff;
      height: 100%;
    }

    .teammember-firsec .tm-photo-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    /* give image a nice tall feel */
    @media (min-width: 992px) {
      .teammember-firsec .tm-photo-card {
        min-height: 520px;
        height: 1010px;
      }
    }

    .teammember-firsec .tm-content-card {
      background: var(--gray-bg);
      padding: 40px 40px 40px 40px;
    }

    /* overlap effect on large screens */
    @media (min-width: 992px) {
      .teammember-firsec .tm-content-card {
        margin-left: -40px;
        padding-left: 80px;
      }
    }

    .teammember-firsec .tm-title {
     font-size: 2.375rem;
      font-weight: 600;
      color:var(--secondry-color);
      margin-bottom: 20px;
    }

    .teammember-firsec .tm-text p {
      line-height: 1.8;
      margin-bottom: 1rem;
    }
     
    .z-1 {
  z-index: 1 !important;
}


.teammember-thirdsec {
    background-color: #ffffff;
    padding: 30px 0;
  }

  @media (min-width: 992px) {
    .teammember-thirdsec {
      padding: 50px 0;
    }
  }

  @media (min-width: 1280px) {
    .teammember-thirdsec {
      padding: 80px 0;
    }
  }

  .tm3-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
  }

  .tm3-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  @media (min-width: 992px) {
    .tm3-wrapper {
      flex-direction: row;
      gap: 0;
      align-items: stretch;
    }
  }

  /* IMAGE CARD */
  .tm3-image-card {
    position: relative;
    width: 100%;
    height: 540px;
    border-radius: 20px;
    border: 3px solid #ffffff;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
    flex-shrink: 0;
  }


  @media (min-width: 992px) {
    .tm3-image-card {
      width: 38%;
      margin-right: -50px;
      margin-top: -40px;
      margin-bottom: -40px;
      z-index: 2;
    }
  }

  @media (min-width: 1280px) {
    .tm3-image-card {
      margin-top: -70px;
      margin-bottom: -70px;
    }
  }

  .tm3-image-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  /* CONTENT CARD */
  .tm3-content-card {
    border-radius: 20px;
    border: 3px solid #ffffff;
    background-color: var(--gray-bg); /* soft grey/blue */
    padding: 32px 24px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
    flex: 1 1 auto;
  }

  @media (min-width: 992px) {
    .tm3-content-card {
      min-height: 400px;
      padding: 40px 40px 40px 80px;
    }
  }

  @media (min-width: 1280px) {
    .tm3-content-card {
      padding-left: 100px;
    }
  }

  .tm3-title {
  font-size: 2.375rem;
    font-weight: 600;
    color: var(--secondry-color);
    margin-bottom: 20px;
  }

  .tm3-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
  }

  .tm3-text p:last-child {
    margin-bottom: 0;
  }

   .teammember-sec {
      background-color: #ffffff;
      padding: 60px 0;
    }

    .teammember-sec .accred-layout {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    /* TEXT CARD */
    .teammember-sec .accred-text-card {
      background: var(--gray-bg);
      border-radius: 24px;
      border: 3px solid #ffffff;
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
      padding: 40px 30px;
      position: relative;
      height: fit-content;
    }

    @media (min-width: 1200px) {
      .teammember-sec .accred-text-card {
        padding: 40px 60px;
        padding-right: 165px !important;
      }
    }

    .teammember-sec .accred-title {
      font-size: 2.375rem;
      font-weight: 600;
      color: var(--secondry-color);
      margin-bottom: 20px;
    }

    .teammember-sec .accred-list {
      margin: 0;
      padding-left: 1.1rem;
      list-style-type: disc;
    }

    .teammember-sec .accred-list li {
      font-size: 0.98rem;
      line-height: 1.8;
      margin-bottom: 0.55rem;
    }

    .teammember-sec .accred-list li::marker {
      color: var(--primary-color); /* red bullets */
    }

    /* IMAGE CARD */
    .teammember-sec .accred-image-card {
      border-radius: 24px;
      border: 3px solid #ffffff;
      overflow: hidden;
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
      background-color: var(--gray-bg);
      max-width: 515px;
      align-self: flex-end;
      z-index: 1;
      height: 260px;
    }

    .teammember-sec .accred-image-card img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    /* DESKTOP LAYOUT + OVERLAP */
    @media (min-width: 992px) {
      .teammember-sec .accred-layout {
        flex-direction: row;
        align-items: center;
        position: relative;
      }

      .teammember-sec .accred-text-card {
        flex: 1 1 auto;
      }

      .teammember-sec .accred-image-card {
        flex: 0 0 auto;
        height: auto;
        max-height: 420px;
        margin-left: -80px;   /* overlap into the text card */
        margin-top: -40px;    /* overlap vertically similar to screenshot */
        margin-bottom: -40px;
      }
    }

    /* Slightly taller image on very wide screens */
    @media (min-width: 1200px) {
      .teammember-sec .accred-image-card {
        max-height: 530px;
        height: 530px;
      }
    }
    /* FOLLOW SECTION UNDER ACCREDITATIONS */
.teammember-social-sec {
  background-color: #ffffff;
  padding-top: 50px;
  padding-bottom: 60px;
}

/* inner wrapper aligned to bottom-right on large screens */
.tm-social-inner {
  width: 100%;
}

@media (min-width: 1200px) {
  .tm-social-inner {
    width: 62%;          /* matches w-[62%] */
    margin-left: auto;   /* pushes to the right side */
    padding-left: 40px;  /* xl:pl-40 look */
  }
}

/* layout */
.tm-social-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

@media (min-width: 1200px) {
  .tm-social-layout {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

/* text + links */
.tm-social-text-wrap {
  text-align: center;
}

@media (min-width: 1200px) {
  .tm-social-text-wrap {
    text-align: left;
  }
}

.tm-social-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #1f2937;
  margin: 0;
}

@media (min-width: 768px) {
  .tm-social-text {
    font-size: 1.05rem;
  }
}

.tm-social-link {
  font-weight: 600;
  color: #e52433;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.tm-social-link:hover {
  color: rgba(229, 36, 51, 0.8);
}

/* icons row */
.tm-social-icons {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

@media (min-width: 1200px) {
  .tm-social-icons {
    justify-content: flex-start;
    gap: 30px;
  }
}

.tm-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e52433;
  transition: color 0.2s ease, transform 0.2s ease;
}

.tm-social-icon:hover {
  color: rgba(229, 36, 51, 0.8);
  transform: translateY(-1px);
}

/* Meet the Team button */
.tm-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  background-color: #102947; /* navy blue */
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition: box-shadow 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

@media (min-width: 992px) {
  .tm-social-btn {
    font-size: 1rem;
    padding: 14px 28px;
  }
}

.tm-social-btn:hover {
  background-color: #12325b;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
  transform: translateY(-1px);
}
.testimonial-text  p{
  letter-spacing: .08em;
  
}
.modal .testimonial-stars{
margin-bottom:15px !important;
}
.testimonial-modal{
      background-color: rgba(44, 44, 44, .5);
}
.contactus-innersec{
  max-width: 1280px;
  margin:0 auto;
}
.contact-lead{
  max-width:660px;
}
.contact-details p{
  font-size:18px;
}
.contact-text-secion{
  padding-top: 2.5rem;
}
.aboutus-sociallinks{
  margin-top: 30px;
  margin-left:0;
}
.contactus-innersec input::placeholder , .contactus-innersec textarea::placeholder{
   font-family: 'Montserrat';
   font-size: 1.125rem;
   color: #808080;
}
.contactus-innersec .form-customcheckbox-box::before{
background:white;
}
.faq-firstp{
  font-weight:600;
}
.faq-title h2{
    font-size: 2.875rem;
    font-weight:600; 
}
.accordion-item h2{
  position: relative;
}
.faq-card .accordion-item h2 svg{ 
  position: absolute;
    right: 15px;
    top: 23px;
    font-size: 39px;
    width: 40px;
    z-index: 100;
    height: 40px;
}
/* Animate the icon */
.faq-card .accordion-button svg {
  margin-left: auto;              /* push SVG to the right */
  transition: transform 0.2s ease;
}

/* Closed state – arrow down */
.faq-card .accordion-button.collapsed + svg {
  transform: rotate(0deg);
}

/* Open state – arrow up */
.faq-card .accordion-button:not(.collapsed) + svg {
  transform: rotate(180deg);
}


    .auction-innerpage-bidding .text-blue    { color: var(--secondry-color); font-size: 16px; }
    .auction-innerpage-bidding .text-red     { color: var(--primary-color); }
    .auction-innerpage-bidding .tag-pill {
      display: inline-block;
      
      border-radius: 999px;
      padding: 4px 14px;
      font-size: .8rem;
      font-weight: 600;
      background-color: var(--primary-color);
      color: #fff;
    }

    .auction-innerpage-bidding .lot-title {
      font-size: 1.125rem;
      margin: 0;
    }

    .auction-innerpage-bidding .lot-title .street {
      display: block;
      font-weight: 600;
    }
    .auction-innerpage-bidding .lot-title .address-line {
      display: block;
      font-weight: 400;
    }

    .auction-innerpage-bidding .guide-price {
      font-size: 1.5rem;
      font-weight: 700;
      text-align: right;
    }

    .auction-innerpage-bidding .guide-label {
      font-size: .85rem;
      font-weight: 500;
      text-align: right;
    }

    .auction-innerpage-bidding .lot-tagline {
      font-weight: 700;
      margin-top: 1.25rem;
      font-size: 28px;
    }

    .auction-innerpage-bidding .divider-line {
      height: 2px;
      background-color: rgba(15, 23, 42, .08);
      margin: .75rem 0;
    }

    .auction-innerpage-bidding .lot-section-title {
      font-size: 1.05rem;
      font-weight: 600;
      margin-top: 1.25rem;
      margin-bottom: .25rem;
    }

    .auction-innerpage-bidding .lot-details-body-text p {
      margin-bottom: .4rem;
      line-height: 1.75;
    }

    .auction-innerpage-bidding .panel-disclaimer {
      background-color: #E9ECEF;
      border-radius: .75rem;
      padding: 1rem 1.1rem;
      font-size: .9rem;
    }

    .auction-innerpage-bidding .panel-disclaimer li + li {
      margin-top: .75rem;
      font-size: 16px;
    }

    .auction-innerpage-bidding .bidding-card {
      background-color: #fff;
      border:1px solid #d6d6d6;
      border-radius: 16px;
      box-shadow: 0 4px 18px rgba(15, 23, 42, .10);
    }

    .auction-innerpage-bidding .bidding-card h2 {
      font-size: 1.7rem;
      margin: 0;
    }

    .auction-innerpage-bidding .bidding-card .text-lead {
        margin-bottom: 5px;
        font-weight: 500;
        color:var(--secondry-color);
          font-size: 1.1em;
      }

    .auction-innerpage-bidding .bidding-card .sep {
      border-top: 1px solid rgba(15, 23, 42, .08);
      margin: 20px 0;
    }

    .auction-innerpage-bidding .btn-bid-main {
      background-color: var(--primary-color);
      border-color: var(--primary-color);
      font-weight: 600;
      border-radius: 3px;
      height:40px;
      background-color:var(--primary-color);
      color:white;  
      font-size: 16px;
    }

    .auction-innerpage-bidding .btn-bid-main:hover {
      background-color:white;
      color:var(--primary-color);
    }

    .auction-innerpage-bidding .viewings-title {
        color: var(--secondry-color);
        font-size: 20px;
        font-weight: 600;
    }
    .auction-innerpage-bidding .viewings-title span{
          font-weight: 700 !important;
    }

    .auction-innerpage-bidding .viewing-row {
      font-size: 18px;
    }

    .auction-innerpage-bidding .viewing-row svg {
      margin-right: .4rem;
    }

    .auction-innerpage-bidding .lot-actions .btn {
      font-weight: 600;
      font-size: .9rem;
    }

    .auction-innerpage-bidding .enquiry-form-wrapper {
      background-color: #f4f5f7;
      border-radius: .75rem;
      padding: 1.5rem;
    }

    .auction-innerpage-bidding .enquiry-form-wrapper h3 {
      margin-bottom: .5rem;
    }

    .auction-innerpage-bidding .enquiry-form-wrapper .form-control {
      border-radius: .5rem;
      border-color: #d0d4dd;
    }

    .auction-innerpage-bidding .enquiry-form-wrapper .form-control:focus {
      box-shadow: 0 0 0 0.15rem rgba(228, 33, 43, .25);
      border-color: var(--primary-color);
    }

    .auction-innerpage-bidding .btn-red {
      background-color: var(--primary-color);
      border-color: var(--primary-color);
      color: #fff;
      font-weight: 600;
    }

    .auction-innerpage-bidding .btn-red:hover {
      background-color: #b91b23;
      border-color: #b91b23;
    }

    .auction-innerpage-bidding .carousel-main-img {
      border-radius: .75rem;
      overflow: hidden;
      background: #000;
    }

    .auction-innerpage-bidding .carousel-main-img img {
      width: 100%;
      height: 360px;
      object-fit: cover;
    }

    @media (min-width: 992px) {
      .auction-innerpage-bidding .carousel-main-img img {
        height: 600px;
      }
    }

    .auction-innerpage-bidding .carousel-thumbs {
      margin-top: .75rem;
      display: flex;
      flex-wrap: nowrap;
      gap: .5rem;
      overflow-x: auto;
      padding-bottom: .25rem;
    }

    .auction-innerpage-bidding .carousel-thumbs img {
      height: 70px;
      width: 100px;
      object-fit: cover;
      border-radius: .35rem;
      cursor: pointer;
      border: 2px solid transparent;
      flex-shrink: 0;
    }

    .auction-innerpage-bidding .carousel-thumbs img.active {
      border-color: var(--primary-color);
      box-shadow: 0 0 0 2px rgba(228, 33, 43, .35);
    }

    .auction-innerpage-bidding .map-wrapper iframe {
      border: 0;
      width: 100%;
      min-height: 260px;
    }

    .auction-innerpage-bidding .contact-line a {
      color: var(--primary-color);
      text-decoration: none;
      border-bottom: 1px solid transparent;
    }

    .auction-innerpage-bidding .contact-line a:hover {
      border-bottom-color: var(--primary-color);
    }

    @media (max-width: 575.98px) {
      .auction-innerpage-bidding .guide-price,
      .auction-innerpage-bidding .guide-label {
        text-align: left;
      }
    }
    .container-xxl{
          max-width: 1420px;
          margin:0 auto;
    }
    .alert-popup-heading{
      padding: 8px;
      text-align:center;
      background-color:#FCF8E3;
      color:#8a6d3b;
      font-size: 18px;
      font-weight: 700;
      border-top: none;
      border-bottom: 1px solid #ddd;
      border-left: none;
      border-right: none;
      border-radius: 16px 16px 0 0 ;
      margin-bottom: 10px;
      box-shadow: none;
    }
    .text-amount{
      font-weight: bold;
      margin: 3px 0;
      font-size: 30px;
      color:var(--primary-color);
    }
    .bidder-btn {
    width: 90%;
    margin: auto;

  }
.bidding-bid-box{
  padding:0 10px;
  padding-bottom: 15px;
}
.btn-bid-box{
  padding:5px 10px;
  display: block;
  background-color: #E6E6E6;
  font-size: 13px;
  color:black;
  font-weight:600;
  border: solid 1px #ccc;
}
.bidding-date{
  margin-bottom:10px;
}
.sechuldate {
  position:relative;
}
.sechuldate button{
      text-decoration: none;
    position: absolute;
    top: -8px;
}
.btn-bid-box:hover{
  background-color: #F5F5F5;
  color:black;
     border: solid 1px #ccc;
}
hr{
  margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #7b7b7b;
}
.for-future-div{
  font-size:20px !important;
}
.biddingflors{
    font-weight: 600;
}
.auction-innerpage-bidding .text-blue .fw-bold{
  font-weight: 600 !important;
}
.auction-innerpage-bidding .contact-main .container-lg{
  padding:0 !important;
}

.lot-header-wrapper {
      padding: 16px 0;
      background-color: #fff;
    }

    .lot-type {
      color: var(--primary-color);
      font-weight: 600;
      font-size: 16px;
      white-space: nowrap;
    }

    .lot-divider {
      width: 4px;
      height: 40px;
      background-color: var(--primary-color);
    }

    .lot-address {
      margin-left: 10px;
      line-height: 1.25;
    }

    .lot-address-street {
      font-weight: 600;
      font-size: 18px;
      color: var(--secondry-color);
      white-space: nowrap;
    }

    .lot-address-town {
      font-weight: 400;
      font-size: 18px;
      color: var(--secondry-color);
      white-space: nowrap;
    }

    .lot-price {
      margin-right: 28px;
      text-align: right;
      white-space: nowrap;
    }

    .lot-price-main {
      color: var(--primary-color);
      font-weight: 600;
      font-size: 23px;
      line-height: 1.1;
    }

    .lot-price-sub {
      color: var(--primary-color);
      font-weight: 500;
      font-size: 14px;
      margin-top: 3px;
    }

    .lot-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .lot-btn-icon,
    .lot-btn-all {
      border-radius: 999px;
      border: 2px solid var(--secondry-color);
      background-color: #fff;
      color: var(--secondry-color);
      font-size: 13px;
      font-weight: 600;
      line-height: 1;
      padding: 0;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .lot-btn-icon {
        width: 47px;
        height: 47px;
        font-size: 14px;
        padding-top: 12px;
        padding-bottom: 12px;
        border-radius: 16px;
    }

    .lot-btn-all {
      font-size: 14px;
      padding-top: 16px;
      padding-bottom: 16px;
      border: 2px solid var(--secondry-color);
      width:385px;
      color: var(--secondry-color);
      background: #fff;
      border-radius: 16px;
    }

    .lot-btn-icon:hover,
    .lot-btn-all:hover {
      background-color: var(--secondry-color);
      color: #fff;
    }

    .lot-login-icon {
      width: 16px;
      height: 16px;
    }

    @media (max-width: 767.98px) {
      .lot-row {
        row-gap: 12px;
      }
    }
     /* PARENT WRAPPER */
    .testimonial-clients {
      background-color: #ffffff;
      padding: 40px 0;
    }

    .testimonial-clients .testimonial-card-wrapper {
      padding: 20px;
    }

    .testimonial-clients .testimonial-card {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      overflow: hidden;
      border-radius: 20px;
      border: 4px solid #ffffff;
      height: 395px;
      background-color: var(--gray-bg);
      justify-content: space-between;
      padding-right: 30px;
      box-shadow: 0px 0px 50px -13px rgba(0,0,0,0.1);
      transition: box-shadow .2s ease, transform .2s ease;
      
    }

    .testimonial-clients .testimonial-image-wrap {
      position: relative;
      width: 100%;
      height: 200px;
      overflow: hidden;
    }

    .testimonial-clients .testimonial-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: right center;
      /* clip-path: polygon(0 0, 78% 0, 100% 50%, 78% 100%, 0 100%); */
    }

    .testimonial-clients .testimonial-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      width: 100%;
      padding: 40px 30px 40px;
      text-align: center;
    }

    .testimonial-clients .testimonial-text {
      margin: 20px auto 0;
      max-width: 770px;
      font-size: 18px;
      line-height: 1.7;
      font-weight: 300;
      color: #193452;
    }

    .testimonial-clients .testimonial-name {
      margin-top: 20px;
      font-size: 18px;
      font-weight: 600;
      color: #193452;
      text-align: right;
    }

    @media (min-width: 992px) {
      .testimonial-clients .testimonial-card {
        flex-wrap: nowrap;
        padding-right: 10px;
      }
      .testimonial-clients .testimonial-image-wrap {
        flex: 0 0 33.333%;
        max-width: 33.333%;
        height: auto;
      }
      .testimonial-clients .testimonial-content {
        flex: 0 0 66.666%;
        max-width: 55%;
        padding: 45px 40px 50px;
        text-align: right;
        padding-top: 2.8125rem;
        padding-bottom:2.8125rem;
      }
      .testimonial-clients .testimonial-text {
        font-size: 25px;
      }
      .testimonial-clients .testimonial-name {
        font-size: 21px;
      }
    }

    /* Indicators */
    .testimonial-clients .carousel-indicators {
      position: static;
      margin-top: 24px;
    }

    .testimonial-clients .carousel-indicators [data-bs-target] {
      width: 16px;
      height: 16px;
      margin: 0 6px;
      border-radius: 50%;
      border: 0;
      background-color: #d4d7dd;
      opacity: 1;
      transition: all 0.25s ease;
    }

    .testimonial-clients .carousel-indicators .active {
      width: 40px;
      border-radius: 999px;
      background-color: #ee2737;
    }

    .testimonial-clients .carousel-indicators [data-bs-target]:focus {
      outline: none;
      box-shadow: 0 0 0 2px rgba(238, 39, 55, 0.35);
    }
    .banner-btns{
      display: flex;
      justify-content: center;
      gap:25px;
    }
    .testimonial-card:hover{
          box-shadow: 0 0 0 8px rgba(219, 223, 229, 0.5);
              transition: box-shadow .2s ease, transform .2s ease;
    }
    .lots-still-availablepg .lot-actions{
      margin-top: 20px;
    }
  .featured-lots-main.lots-still-availablepg{
    padding-top:0 !important;
  }
  .hidden { display: none !important; }
.maxprice-scroll { max-height: 240px; overflow-y: auto; }

.search-row-wrapper .searchbar button{
  position: absolute;
    right: 15px;
    top: 12px;
}
.clear-btn.show {
  opacity: 1;
  visibility: visible;
}

/* =========================
   NAVBAR WISHLIST BADGE
========================= */
.ahl-icon-link.wishlist-nav{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ahl-icon-link.wishlist-nav .wishlist-badge{
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #e11d48;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* hide when 0 */
.ahl-icon-link.wishlist-nav .wishlist-badge.is-zero{
  display: none;
}


.wishlist-btn.is-active .wishlist-icon{
  fill: #e11d48;
  stroke: #e11d48;
}

.wishlist-btn:not(.is-active) .wishlist-icon{
  fill: none;
}

/* =========================
   RIGHT TOAST POPUP
========================= */
.wishlist-toast{
  position: fixed;
  right: 22px;
   bottom: 90px;
  width: min(430px, calc(100vw - 44px));
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  display: flex;
  gap: 12px;
  padding: 12px;
  z-index: 9999;
  opacity: 0;
  transform: translateX(18px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.wishlist-toast.show{
  opacity: 1;
  transform: translateX(0);
}

.wishlist-toast-img{
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  flex: 0 0 auto;
  border: 1px solid #f1f5f9;
}
.wishlist-icon { transition: .2s ease; }

.wishlist-toast-title{
  font-weight: 700;
  font-size: 16px;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 4px;
}

.wishlist-toast-msg{
  font-size: 14px;
  color: #475569;
}


/* keep your navbar layout same, just allow badge overlay */
.ahl-icon-link.wishlist-nav{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* badge */
.ahl-icon-link.wishlist-nav #wishlistCount.wishlist-badge{
    position: absolute;
    top: -11px;
    right: -12px;
    min-width: 24px;
    height: 24px;
    padding: 0 5px;
    border-radius: 999px;
    background: #e11d48;
    border: 2px solid white;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

/* hide badge when empty */
.ahl-icon-link.wishlist-nav #wishlistCount.is-zero{
  display: none !important;
}

.teaminnersec{
  display: flex;
  justify-content: space-between;
  padding-right: 15px;
}
.actions-half a{
  width: 100%;
}
.auctionbuyingsection .content-section a{
  color:var(--primary-color) !important;
}
.lotbiddingtext{
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.ahl-header-main:has(#ahlMobileMenu.show) .ahl-icon-link { 
  color: #fff; 
}

.ahl-header-main:has(#ahlMobileMenu.show) .navbar-toggler{
 opacity: 0;
}

.ahl-header-main:has(#ahlMobileMenu) .navbar-toggler{
 opacity: 1;
}
.offcanvas-header .btn-close{
  font-size:20px;
  opacity:1 !important;
}

/* default icons color (menu closed) */
.ahl-icon-link{ color:#0F2C50; }

/* when offcanvas is open */
body.menu-open .ahl-icon-link{ color:#fff; }

/* Wishlist SVG follows currentColor */
#navWishlistBtn svg path{
  stroke: currentColor;
  fill: none;          /* empty heart */
}

/* When wishlist has items -> red filled heart */
#navWishlistBtn.wish-active{
  color: var(--secondry-color);      /* your red */
}
#navWishlistBtn.wish-active svg path{
  fill: currentColor;  /* filled heart */
}
.d-sm-none{
  display: flex !important;
}
.footer-company{
  color: white!important;
  text-decoration:none !important;
}
.wishlistmaindiv{
  padding: 10px 0;
}
.ahl-header-main{
 background-color:#12315D;   
}
.ahl-header-main .ahl-nav-link{
    color:white;
}
.headerbtnonly.theme-btn-primary{
    background-color:#D69188 !important;
    color:white !important;
}