/*
Theme Name: Brokerage Theme
Theme URI: https://brokeragebd.com
Author: Md Mushfiqur Rahman
Description: Brokerage property listing theme with frontend dashboard & submission wizard.
Version: 6.9.2
Text Domain: brokerage
*/

/*
Basic Css
*/
/* 1) Global overflow guard */
html,
body {
  width: 100%;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}


img,
video,
svg {
  max-width: 100%;
  height: auto;
}

ul {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  overflow-x: hidden;
}

/* 2) Better container */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

/*
1. Menu css
*/

.site-header {
  position: relative;
  transition: all .25s ease;
}

.site-header.sticky {
  position: fixed;
  width: 100%;
  background: #fff;
  z-index: 9;
  left: 0;
  top: 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
}

.header-inner {
  display: flex;
  place-content: space-between;
  line-height: 60px;
  height: 60px;
}

.main-nav {
  /* navigation wrapper styles */
}

.main-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  /* horizontal menu */
  gap: 16px;
}

.main-menu li a {
  text-decoration: none;
  color: #111827;
  font-weight: 500;
}

.main-menu li a:hover {
  color: #2563eb;
}

.site-branding {
  display: flex;
  align-items: center;
}

.site-logo-link img {
  display: block;
}

.site-title {
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  color: #111827;
}

.main-menu li:last-child {
  background: #fff;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, .3);
}

.main-menu li:last-child a {

  padding: 20px;
}

/* Mobile Menu Css
*Hide mobile menu by default */
.mobile-menu {
  display: none;
}

#mobile-menu-toggle {
  display: none;
}

/*Responsive Css*/
/* Show it only on smaller screens */
/* Fix search layout overflow on mobile */
@media (max-width: 768px) {
  .brx-search-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .container {
    width: 100%;
  }

  .banner .container {
    width: 100%;
    max-width: 100%;
  }

  ul#menu-main-menu-1 {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .main-nav {
    display: none;
    visibility: hidden;
    opacity: 0;
  }

  /* Toggle button wrapper */
  #mobile-menu-toggle {
    position: relative;
    width: 80px;
    height: 60px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
  }

  /* The three lines */
  #mobile-menu-toggle .line {
    width: 40px;
    height: 2px;
    background: #111827;
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.2s ease;
  }

  /* When open -> X */
  #mobile-menu-toggle.is-open .line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  #mobile-menu-toggle.is-open .line:nth-child(2) {
    opacity: 0;
  }

  #mobile-menu-toggle.is-open .line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Mobile menu hidden by default */
  nav.mobile-menu {
    display: none;
  }

  /* Show when open */
  nav.mobile-menu.is-open {
    display: block;
    background: #fff;
    z-index: 9;
    position: absolute;
    right: 0px;
    top: 100%;
    width: 240px;
    padding: 20px;
    border: 1px solid #777;
  }
   nav.mobile-menu a {
    color: #111;
    text-decoration: none;
  }
  nav.mobile-menu a:hover,
  nav.mobile-menu a:focus {
    text-decoration: none;
    color: #111;
  }



}

/*Search filter*/
.brx-search-wrap {
  max-width: 540px;
  margin: 0 auto;
}



.brx-search-row {


  width: 100%;
}

.brx-search-field select {
  width: 100%;

  border: 1px solid #e5e7eb;
  padding: 10px 16px;
  font-size: 14px;
  color: #111827;
  background-color: #f9fafb;
}

.brx-search-btn-wrap {
  flex-shrink: 0;
}

.brx-search-btn {
  border: none;

  padding: 10px 24px;
  font-weight: 600;
  font-size: 14px;
  background: #005e9e;
  color: #ffffff;
  cursor: pointer;
}

.brx-search-btn:hover {
  background: #005EC9;
}

/* Results grid */
.brx-search-results {
  margin-top: 20px;
}

.brx-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.brx-property-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #ffffff;
}

.brx-card-thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.brx-card-body {
  padding: 12px 14px;
}

.brx-card-title {
  font-size: 16px;
  margin: 0 0 6px;
}

.brx-card-meta {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: #6b7280;
}

/* Mobile */
@media (max-width: 640px) {
  #brx-property-search-form {
    border-radius: 16px;
  }

  .brx-search-row {
    flex-direction: column;
  }

  .brx-search-btn-wrap {
    width: 100%;
  }

  .brx-search-btn {
    width: 100%;
    text-align: center;
  }
}

.brx-search-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  margin: 30px auto;
}

.brx-search-sidebar {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  background: #ffffff;
}

.brx-search-sidebar h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.brx-search-sidebar .field {
  margin-bottom: 10px;
}

.brx-search-sidebar label {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
  color: #4b5563;
}

.brx-search-sidebar input,
.brx-search-sidebar select {
  width: 100%;
  padding: 8px 0;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
}

.brx-sidebar-btn {
  margin-top: 8px;
  width: 100%;
  border: none;
  padding: 10px 12px;
  border-radius: 8px;
  background: #005e9e;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

/*
section title css
*/
/* ===============================
   BRX TITLE SECTION (Responsive)
================================*/
.brx-title-section {
  width: 100%;
  padding: 20px 20px 30px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.brx-title-inner {
  max-width: 800px;
  margin: 0 auto;
  font-family: sans-serif;
}

.brx-title-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 10px;
}

.brx-title-main {
  font-size: 30px;
  line-height: 1.25;
  font-weight: 500;
  margin-bottom: 12px;
  color: #0f172a;
}

.brx-title-sub {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 20px;
}

.brx-title-divider {
  display: inline-block;
  width: 80px;
  height: 4px;
  border-radius: 50px;
  background: #005e9e;
}

/* Tablet Responsive (768px and below) */
@media (max-width: 768px) {
  .brx-title-main {
    font-size: 32px;
  }

  .brx-title-sub {
    font-size: 15px;
  }

  .brx-title-divider {
    width: 70px;
  }
}

/* Mobile Responsive (480px and below) */
@media (max-width: 480px) {
  .brx-title-section {
    padding: 40px 16px 30px;
  }
    .brx-tab-img {
        min-height: 275px !important;    
    }

  .brx-title-main {
    font-size: 26px;
    line-height: 1.3;
  }

  .brx-title-sub {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .brx-title-divider {
    width: 60px;
    height: 3px;
  }
}


/* Results area reuse your earlier card CSS */

@media (max-width: 768px) {
  .brx-search-layout {
    grid-template-columns: 1fr;
  }
}

/*hero area*/
/*hero area*/
span.call-whatsapp {
    background: #004a7d;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    display: block;
    border-radius: 4px 4px 0 0;
    text-align: center;
}
.hero-hotline{
  position: fixed;
  right: 0;
  top: 30%;
  z-index: 9999;
}

.hero-hotline a{
  display: flex;
  align-items: center;
  gap: 8px;
  background: #005e9e;
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 0 25px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.hero-hotline a:hover{
  background: #004a7d;
}

.phone-icon{
  font-size:18px;
}

.hero .container{position:relative;z-index:1;}
.hero {
  position: relative;
  min-height: 670px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.hero .hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  z-index:0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  z-index: -1;
}

.hero-content {
  max-width: 1200px;
  padding: 0 20px;
}

.hero-label {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 400;
}

.hero h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 18px;
  color: #ffffff;
  font-weight: 400;
}

/* Tablet */
@media (max-width: 1024px) {
  

  .hero h1 {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  

  .hero-label {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .hero h1 {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 15px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  

  .hero-label {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .hero h1 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 14px;
  }
}

/*Card Css*/
/*
/* Utility */
.brx-properties-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1240px;
  margin: 30px auto;
}

.property-card {
  width: 360px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 15px;
  font-family: sans-serif;
}

.property-image {
  position: relative;
  height: 200px;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3));
  overflow: hidden;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bx-flex {
  display: flex;
}

.bx-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bx-space {
  justify-content: space-between;
}

.bx-col {
  flex-direction: column;
}

.bx-gap-8 {
  gap: 8px;
}

.bx-gap-16 {
  gap: 16px;
}

.bx-shadow {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.08);
}

.bx-rounded {
  border-radius: 14px;
}

.bx-bg-white {
  background: white;
}

.bx-badge {
  display: inline-block;
  background: #222;
  color: #fff;
  padding: 4px 8px;
  font-size: 13px;

  line-height: 19px;
  height: 26px;

}

/* Feature icon */
.bx-icon {
  width: 18px;
  height: 18px;
  stroke: #6b7280;
}

/* Price */
.bx-price {
  font-size: 18px;
  font-weight: 400;
  color: #005e9e;
  line-height: 24px;
}

/* Agent */
.bx-agent-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e5e7eb;
}

/*
Vertical card CSS
*/
.bx-icon {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
}

/* AREA ICON */
.bx-icon-area {
  width: 28px;
  height: 28px;
}

/* Outer rectangle */
.bx-icon-area::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 2px solid #111827;
  border-radius: 3px;
}

/* Horizontal arrow (left ↔ right) */
.bx-icon-area::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 4px;
  height: 2px;
  background: #111827;
}

/* Arrow heads */
.bx-icon-area span {
  display: none;
  /* in case you want text later */
}

/* left arrow head */
.bx-icon-area::marker {
  display: none;
}

/* safety */

/* Use extra elements via pseudo-lines */
.bx-icon-area::after,
.bx-icon-area::before {
  box-sizing: border-box;
}

/* Create arrow heads using extra elements */
.bx-icon-area::after {
  background: linear-gradient(to right, #111827 0 40%, transparent 40% 60%, #111827 60% 100%);
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 6px;
  height: 2px;
}

.bx-icon-area::before {
  border-width: 2px;
}

/* BED ICON */
.bx-icon-bed {
  width: 20px;
  height: 20px;
  position: relative;
}

/* Bed base */
.bx-icon-bed::before {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 5px;
  height: 8px;
  border-radius: 2px;
  background: #111827;
}

/* Pillow */
.bx-icon-bed::after {
  content: "";
  position: absolute;
  left: 3px;
  bottom: 10px;
  width: 8px;
  height: 5px;
  border-radius: 2px;
  background: #e5e7eb;
  border: 2px solid #111827;
}

/* Legs */
.bx-icon-bed .leg-left,
.bx-icon-bed .leg-right {
  content: "";
  position: absolute;
  bottom: 2px;
  width: 3px;
  height: 4px;
  background: #111827;
}

/* Create legs via extra HTML or pseudo-elements? 
   To keep it simple: use pseudo-elements via child span */

.bx-icon-bed {
  --leg-width: 3px;
  --leg-height: 4px;
}

.bx-icon-bed::marker {
  display: none;
}

/* BATH ICON */
.bx-icon-bath {
  width: 20px;
  height: 22px;
  position: relative;
}

/* Tub body */
.bx-icon-bath::before {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  bottom: 6px;
  height: 8px;
  border-radius: 0 0 4px 4px;
  border: 2px solid #111827;
  border-top: none;
}

/* Tub legs */
.bx-icon-bath::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: #111827;
}

/* Shower pipe + head */
.bx-icon-bath span {
  position: absolute;
  display: block;
}

/* Pipe */
.bx-icon-bath span.pipe {
  left: 6px;
  bottom: 14px;
  width: 2px;
  height: 8px;
  background: #111827;
}

/* Curved head (approx) */
.bx-icon-bath span.head {
  left: 6px;
  bottom: 20px;
  width: 8px;
  height: 6px;
  border-radius: 6px 6px 0 0;
  border: 2px solid #111827;
  border-bottom: none;
}

/* Water drops */
.bx-icon-bath span.drop1,
.bx-icon-bath span.drop2 {
  width: 2px;
  height: 4px;
  border-radius: 50%;
  background: #111827;
  position: absolute;
}

.bx-icon-bath span.drop1 {
  left: 10px;
  bottom: 14px;
}

.bx-icon-bath span.drop2 {
  left: 13px;
  bottom: 12px;
}



/*end icon sft, bed, bath*/
.bxv-card {
  max-width: 360px;
  overflow: hidden;
}

.bxv-img-box {
  position: relative;
  height: 240px;
}

.bxv-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bxv-featured {
  position: inherit;
  color: #4b5563;
  padding: 4px 8px;
  font-size: 13px;
  line-height: 22px;
  font-weight: 700;
  margin: 5px 0;
}

.brx-results-grid .bxv-featured {
  position: absolute;
  left: 0;
  top: 0;

  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  color: #fff;
}

.bxv-location {
  background: #4b5563;
  padding: 4px 8px;
  color: #ffffff;
  font-size: 13px;
  height: 30px;
  line-height: 21px;
  margin-top: 5px;
}

.bxv-content {
  padding: 20px 10px 20px 20px;
  width: 100%;
  background: #ffffff;
}

.bxv-title {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  margin-top: 0;

}

h2.bxv-title a {
  text-decoration: none;
  color: #0F172A;
}

.bxv-features {
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
}

.bxv-feature {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #4b5563;
}

.bxv-agent-name {
  line-height: 40px;
  margin-left: 10px;
  font-size: 16px;
  color: #4b5563;
}

.brx-tab-img {
  position: relative;
  display: block;
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  overflow: hidden;
}

.brx-tab-loc {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, .75);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  line-height: 1;
  z-index: 3;
  text-decoration: none;
}


/*
Horizontal card CSS
*/
.bxh-card {
  max-width: 580px;
  display: flex;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  border: 1px solid rgba(11, 102, 195, .10);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
  will-change: transform;
}

.bxh-card:hover {
  transform: translateY(-6px);
  border-color: rgba(11, 102, 195, .35);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .14);
}

.bxh-img-box {
  width: 60%;
  position: relative;
}

.bxh-img-box a {
  display: block;
  height: 100%;
}

.bxh-agent {
  position: relative;
}

.bxh-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bxh-featured {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #005e9e;
  padding: 4px 10px;
  color: #fff;
  border-radius: 6px;
}

.bxh-content {
  padding: 20px;
  width: 100%;
}

.bxh-title {
  font-size: 22px;
  margin: 12px 0;
}

.bxh-features {
  margin: 0;
  flex-wrap: wrap;
  padding: 10px 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  font-size: 15px;
}

.bxh-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #4b5563;
}


/*verified-icon*/
.verified-badge {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #3b82f6;
  /* blue badge */
  position: relative;
  box-shadow: 0 0 0 2px #fff inset;
}

/* Tick mark */
.verified-green {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #22c55e;
  position: relative;
  display: inline-block;
}

/* Tick */
.verified-green::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 2px;
  width: 5px;
  height: 12px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg);
}


.bxh-type.bx-badge {
  margin-bottom: 0;
  text-align: center;
  background: rgb(15 23 42 / 0.8);
  color: #ffffff;
  position: absolute;
  left: 10px;
  top: 10px;
  font-weight: 700;
  font-size:10px;
  text-transform:uppercase;
  height: inherit;
  padding:0 6px;
}



/*
Footer Area Css
*/
/* ===== Modern Footer ===== */
.site-footer {
  position: relative;
  background: radial-gradient(1200px 600px at 20% 0%, rgba(255, 255, 255, .10), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(255, 255, 255, .08), transparent 55%),
    linear-gradient(180deg, #0b0f14 0%, #070a0f 100%);
  color: #d7dde6;
  padding: 72px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-wrap {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.footer-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 18px;
  padding: 22px 22px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .28);
  backdrop-filter: blur(10px);
}

.footer-title {
  font-size: 18px;
  margin: 0 0 14px;
  color: #ffffff;
  letter-spacing: .2px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .55), rgba(255, 255, 255, .10));
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: rgba(215, 221, 230, .92);
  padding: 10px 12px;
  border-radius: 12px;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.footer-links a:hover {
  background: rgba(255, 255, 255, .06);
  transform: translateX(4px);
  color: #fff;
}

.footer-links .chev {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .80);
  font-size: 16px;
  line-height: 1;
}

/* Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(215, 221, 230, .92);
}

.footer-contact a {
  color: rgba(215, 221, 230, .92);
  text-decoration: none;
  transition: color .18s ease;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-contact .address span {
  line-height: 1.55;
  word-break: break-word;
}

/* Social */
.social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
  text-align:center;
}


.footer-note {
  margin: 14px 0 0;
  font-size: 13px;
  color: rgba(215, 221, 230, .75);
}

/* Bottom (FIXED) */
.footer-bottom {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .10);
  text-align: center;
}

/* ===== Responsive ===== */

/* Tablet */
@media (max-width: 980px) {
  .site-footer {
    padding: 56px 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .footer-card:nth-child(3) {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .site-footer {
    padding: 44px 0 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-card {
    padding: 18px 16px 16px;
    border-radius: 16px;
  }

  .footer-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .footer-links a {
    padding: 10px 10px;
  }

  .footer-contact li {
    gap: 10px;
  }

  .social-btn {
    width: 42px;
    height: 42px;
  }

  .footer-note {
    font-size: 12.5px;
  }
}

/* Very small */
@media (max-width: 380px) {
  .social-row {
    gap: 8px;
  }

  .social-btn {
    width: 40px;
    height: 40px;
  }
}

/* button base */
.social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}


/* Contact list */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(215, 221, 230, .92);
  line-height: 1.55;
}

.footer-contact a {
  color: rgba(215, 221, 230, .92);
  text-decoration: none;
}

.footer-contact a:hover {
  color: #fff;
}

/* Base icon */
.c-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  position: relative;
  flex: 0 0 36px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 8px 18px rgba(0, 0, 0, .35);
}

/* =========================
   MAIL ICON
   ========================= */
.c-mail::before {
  content: "";
  position: absolute;
  inset: 9px 7px;
  border: 1.6px solid rgba(255, 255, 255, .9);
  border-radius: 6px;
}

.c-mail::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 14px;
  height: 1.6px;
  background: rgba(255, 255, 255, .9);
  transform: skewY(-12deg);
}

/* =========================
   PHONE ICON
   ========================= */
.c-phone::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 7px;
  width: 14px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, .95);
  border-radius: 6px;
}

.c-phone::after {
  content: "";
  position: absolute;
  left: 15px;
  bottom: 10px;
  width: 6px;
  height: 2px;
  background: rgba(255, 255, 255, .95);
  border-radius: 2px;
}

/* =========================
   LOCATION ICON
   ========================= */
.c-location::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 6px;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, .95);
  border-radius: 50% 50% 50% 50%;
}

.c-location::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 20px;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, .95);
  border-radius: 50%;
}

/* =========================
   Facebook (pure CSS)
   ========================= */
.social-logo {
  width: 35px;
  height: 35px;
  border-radius: 100%;
  margin-top: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-logo.fb {
  background-color: #007fff;
}

a.social-btn {
  text-decoration: none;
}

a.social-btn.s-fb {
  color: white;
  font-size: 35px;
  font-family: sans-serif;
  margin-top: 4px;
}

/* =========================
   Linked in
   ========================= */

.social-logo.in {
  background-color: #0077B5;
}

a.social-btn.s-in:first-letter {
  font-size: 32px;
  color: #fff;
}

a.social-btn.s-in {
  font-size: 26px;
  color: #fff;
}

/* =========================
   YouTube (pure CSS)
   ========================= */
/* YouTube Icon – 35px */
.social-logo.youtube {
  width: 35px;
  height: 35px;
  display: inline-block;
}

.social-logo.youtube .square {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 10px;
  background: linear-gradient(135deg, #ff3d3d, #cc0000);
  box-shadow: 0 6px 14px rgba(0, 0, 0, .25);
  overflow: hidden;
}

/* Clickable layer */
.social-logo.youtube .social-link {
  position: absolute;
  inset: 0;
  z-index: 10;
  text-indent: -9999px;
}

/* Play button */
.social-logo.youtube .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #fff;
}

/* Hover */
.social-logo.youtube .square {
  transition: transform .18s ease, box-shadow .18s ease;
}

.social-logo.youtube .square:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, .35);
}

/* =========================
   Instagram (pure CSS)
   ========================= */

/* Instagram-like logo (pure CSS) */
/* Instagram Icon – 35px */
.social-logo.instagram {
  width: 35px;
  height: 35px;
  display: inline-block;
}

.social-logo.instagram .square {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 10px;
  background: radial-gradient(circle at 30% 110%,
      #fdf497 0%,
      #fdf497 8%,
      #fd5949 35%,
      #d6249f 62%,
      #285AEB 100%);
  box-shadow: 0 6px 14px rgba(0, 0, 0, .25);
  overflow: hidden;
}

/* Clickable layer */
.social-logo.instagram .social-link {
  position: absolute;
  inset: 0;
  z-index: 10;
  text-indent: -9999px;
}

/* Camera frame */
.social-logo.instagram .frame {
  position: absolute;
  inset: 7px;
  border: 2.5px solid #fff;
  border-radius: 7px;
  box-sizing: border-box;
}

/* Lens */
.social-logo.instagram .lens {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  border: 2.5px solid #fff;
  border-radius: 50%;
  box-sizing: border-box;
}

/* Small dot */
.social-logo.instagram .dot {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 3.5px;
  height: 3.5px;
  background: #fff;
  border-radius: 50%;
}

/* Hover */
.social-logo.instagram .square {
  transition: transform .18s ease, box-shadow .18s ease;
}

.social-logo.instagram .square:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, .35);
}

/*
* Banner Css
*/
/* =========================
   BASE
========================= */
.brx-cta {
  padding: 46px 0;
}

.brx-cta * {
  box-sizing: border-box;
}

.brx-cta a {
  -webkit-tap-highlight-color: transparent;
}

.brx-cta--light .brx-cta__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px;
  border-radius: 18px;
  background:
    radial-gradient(900px 340px at 10% 30%, rgba(37, 99, 235, .10), transparent 60%),
    radial-gradient(700px 320px at 90% 10%, rgba(16, 185, 129, .10), transparent 55%),
    #ffffff;
  border: 1px solid #e9eef6;
  box-shadow: 0 3px 30px rgba(15, 23, 42, .08);
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 18px;
}

.brx-cta__icon {
  width: 125px;
  height: 100%;
  border-radius: 16px;
  background: linear-gradient(180deg, #eef2ff 0%, #f8fafc 100%);
  border: 1px solid #e6edf6;
  position: relative;
  flex: 0 0 125px;
}



.brx-cta__text h2 {
  margin: 0 0 6px;
  font-size: 26px;
  letter-spacing: -.02em;
  color: #0f172a;
  font-weight: 500;
}

.brx-cta__text p {
  margin: 0;
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

.brx-cta__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.brx-cta__chip {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e6edf6;
  font-weight: 600;
}

.brx-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.brx-cta__ghost {
  padding: 12px 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e6edf6;
  color: #0f172a;
  text-decoration: none;
  font-weight: 500;
}

/* =========================================
   BRX CTA BUTTON – SLIDE → 3D (FIXED)
   ========================================= */

.brx-cta__btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  /* ✅ fix stacking issues */

  background: #005e9e;
  /* default flat color */
  color: #ffffff;

  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  /* ✅ stable for text */
  align-items: center;
  justify-content: center;
  gap: 8px;

  /* default: no 3D */
  box-shadow: none;
  transform: translateY(0);

  transition:
    color .25s ease,
    transform .22s ease,
    box-shadow .22s ease;
}

/* sliding black layer (behind text) */
.brx-cta__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000000;

  transform: translateX(-100%);
  transition: transform .38s cubic-bezier(.4, 0, .2, 1);

  z-index: -1;
  /* ✅ always behind text */
}

/* HOVER: slide black bg */
.brx-cta__btn:hover::before {
  transform: translateX(0);
}

/* HOVER: after slide, 3D */
.brx-cta__btn:hover {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow:
    0 8px 0 #000000,
    0 16px 30px rgba(0, 0, 0, .35);
}

/* ACTIVE press */
.brx-cta__btn:active {
  transform: translateY(2px);
  box-shadow:
    0 4px 0 #000000,
    0 8px 16px rgba(0, 0, 0, .30);
}

/* Focus */
.brx-cta__btn:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(0, 94, 158, .25),
    0 8px 0 #000000;
}

/* =========================
   TABLET (601–860px)
========================= */
@media (min-width:601px) and (max-width:860px) {
  .brx-cta__wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================
   MOBILE – PREMIUM CARD UI
========================= */
@media (max-width:600px) {

  .brx-cta {
    padding: 22px 0;
  }

  .brx-cta__wrap {
    padding: 20px 16px;
    border-radius: 22px;
    gap: 14px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, .10);
  }


  .brx-cta__text h2 {
    font-size: 30px;
    line-height: 1.12;
    margin: 6px 0 10px;
  }

  .brx-cta__text p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 14px;
  }

  .brx-cta__chips {
    margin-bottom: 16px;
  }

  .brx-cta__chip {
    font-size: 14px;
    padding: 10px 14px;
    background: #fff;
    box-shadow: 0 12px 22px rgba(15, 23, 42, .07);
    font-weight: 700;
  }

  

  .brx-cta__btn,
  .brx-cta__ghost {
    width: 100%;
    padding: 14px;
    border-radius: 18px;
    text-align: center;
    font-size: 15px;
  }
}
@media (max-width:767px) {
    .brx-cta__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
  }
}

/* very small phones */
@media (max-width:380px) {
  .brx-cta__actions {
    grid-template-columns: 1fr;
  }
}

/*
* Property tab css
*/

.brx-tabs {
  max-width: 1180px;
  margin: 0 auto 48px;
}

.brx-tabs-head {
  display: flex;
  border-bottom: 1px solid #e5e7eb;
  padding: 0 0 10px;
}

.brx-tab-btn {
  background: transparent;
  border: 0;
  padding: 12px 4px;
  cursor: pointer;
  font-size: 16px;
  color: #6b7280;
  position: relative;
}

.brx-tab-btn.is-active {
  color: #005e9e;
  font-weight: 600;
}

.brx-tab-btn.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -11px;
  height: 3px;
  background: #005e9e;
  border-radius: 3px;
}

.brx-tabs .brx-tab-btn {
  color: #374151;
}

.brx-tabs .brx-tab-btn.is-active {
  color: #005e9e;
}

.brx-tab-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

@media (max-width: 1024px) {
  .brx-tab-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .brx-tab-grid {
    grid-template-columns: 1fr;
  }
}

/* 3D Perspective Hover (No JS) */
.brx-tab-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .10);
  position: relative;
  background: #fff;

  /* 3D setup */
  transform-style: preserve-3d;
  perspective: 900px;
  /* depth */
  will-change: transform;
  transition: transform .28s ease, box-shadow .28s ease;
}

/* subtle 3D tilt on hover */
.brx-tab-card:hover {
  transform: rotateX(6deg) rotateY(-8deg) translateY(-4px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
}

/* image gets a little depth */
.brx-tab-card .brx-tab-img {
  display: block;
  transform: translateZ(0);
  transition: transform .28s ease, filter .28s ease;
  will-change: transform;
}

.brx-tab-card:hover .brx-tab-img {
  transform: translateZ(18px) scale(1.02);
  filter: saturate(1.05) contrast(1.03);
}

/* overlay appears closer */
.brx-tab-card .brx-tab-overlay {
  transform: translateZ(10px);
  transition: transform .28s ease;
  will-change: transform;
}

.brx-tab-card:hover .brx-tab-overlay {
  transform: translateZ(28px);
}

/* optional: smoother on touch devices */
@media (hover: none) {
  .brx-tab-card:hover {
    transform: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .10);
  }

  .brx-tab-card:hover .brx-tab-img,
  .brx-tab-card:hover .brx-tab-overlay {
    transform: none;
    filter: none;
  }
}


.brx-tab-img {
  display: block;
  min-height: 320px;
  background-size: cover;
  background-position: left;
}

.brx-tab-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, .65), rgba(0, 0, 0, 0));
  color: #fff;

  transition: .4s;

}

.brx-tab-title {
  margin: 0 0 8px;
  font-size: 18px;
}

.brx-tab-title a {
  color: #fff;
  text-decoration: none;
  min-height:24px;
   display: block;
}
@media (max-width:768px){
    .brx-tab-title a {
        min-height: 48px;
    }
    a.brx-tab-wa {
        min-height: 48px;
    }
}

.brx-tab-price {
  font-size: 18px;
  font-weight: 700;
  margin: 6px 0 10px;
}

.brx-tab-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  min-height: 44px;
}

.brx-archive-more {
  text-align: center;
  margin-top: 30px;
}

.brx-load-more {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1.5px solid #0b66c3;
  color: #0b66c3;
  font-weight: 600;
  font-size: 14px;
  background: transparent;
  overflow: hidden;
  /* important */
  transition: color 0.35s ease;
  z-index: 1;
  text-decoration: none;
}

.brx-load-more::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0b66c3;
  transform: translateX(-100%);
  /* start from left */
  transition: transform 0.35s ease;
  z-index: -1;
}

.brx-load-more:hover {
  color: #fff;
}

.brx-load-more:hover::before {
  transform: translateX(0);
  /* slide in */
}

/* Overlay  image click block  */
.brx-tab-overlay {
  pointer-events: none;
}

/*  verlay clickable items */
.brx-tab-overlay a {
  pointer-events: auto;
}

/*
page property archive css
*/
/* =========================
   Property Archive Layout UI
   Target: .brx-archive-layout + sidebar + cards
   ========================= */

/* Main page wrapper (center it) */
.brx-archive-layout {
  max-width: 1320px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Sidebar */
.brx-archive-sidebar {
  flex: 0 0 320px;
}

/* Sidebar */
.brx-archive-sidebar {


  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 16px;
  background: #ffffff;
}

.brx-filter-form .filter-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.brx-filter-form .filter-group {
  margin-bottom: 10px;
}

.brx-filter-form label {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
  color: #4b5563;
}

.brx-filter-form input {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  padding: 6px 8px;
  font-size: 13px;
}

.brx-filter-btn {
  width: 100%;
  margin-top: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  border: none;
  background: #111827;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
}

/* Filter card look  */
.brx-archive-sidebar .brx-filter-form {

  padding-right: 17px;

}

.brx-archive-list .bxh-img-box {
  width: 100%;
}

.brx-archive-list .bxh-card {
  max-width: 900px;
}

.brx-archive-list .brx-properties-grid {
  margin: 0;
}

/* Results area */
.brx-archive-results,
.brx-archive-list,
.brx-properties-list {
  flex: 1;
  min-width: 0;
}

/* Card list spacing (vertical gap) */
.brx-archive-results .bxh-card,
.brx-archive-list .bxh-card,
.brx-properties-list .bxh-card {
  margin: 0 0 22px;
}

/* If cards are inside a container, keep it centered */
.brx-archive-results {
  display: block;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 1024px) {
  .brx-archive-layout {
    max-width: 980px;
    gap: 24px;
  }

  .brx-archive-sidebar {
    flex-basis: 300px;
  }
}

@media (max-width: 900px) {
  .brx-archive-layout {
    flex-direction: column;
    padding: 24px 14px;
  }

  .brx-archive-sidebar {
    width: 100%;
    flex: 0 0 auto;
  }
}

/*
* bedroom wise section
*/

/* --- BRX Link Section Hard Fix (override theme conflicts) --- */
.brx-link-section,
.brx-link-section * {
  box-sizing: border-box;
}

.brx-link-section {
  width: 100%;
  padding: 24px 16px;
  /* mobile side padding */
  overflow-x: hidden;
  /* prevents horizontal scroll issues */
}

.brx-link-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: #f5f6fa;
  border: 1px solid #ececf1;
  border-radius: 12px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, .06);
  padding: 22px;
  display: grid !important;
  grid-template-columns: 360px 1px 1fr;
  gap: 22px;
  align-items: start;
}

.brx-link-divider {
  width: 1px;
  background: #e7e7ef;
  align-self: stretch;
  /* better than height:100% */
}

/* Force UL grid even if theme overrides list styles */
.brx-link-list {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}

/* Remove theme default li spacing */
.brx-link-item {
  margin: 0 !important;
  padding: 0 !important;
}

.brx-link-a {
  display: inline-flex;
  gap: 10px;
  align-items: flex-start;
  text-decoration: none;
  color: #444444;
  font-size: 16px;
  line-height: 1.35;
}

.brx-link-icon {
  color: #005e9e;
  font-weight: 700;
  margin-top: 1px;
}

.brx-link-a:hover .brx-link-text {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 767px) {
    .brx-cta--light .brx-cta__wrap {
        display: block;
        text-align: center;
    }
    .hero{ min-height: 420px; }
}
@media (max-width: 767px) {
    .brx-search-field {
        width: 100%;
    }
    .brx-cta__icon {
    	width: 72px;    
    	text-align: center;
    	margin: 0 auto;
	}
	.brx-cta__chips {
        justify-content: center;
        margin-bottom: 20px;
    }
}
@media (max-width: 480px) {
    .brx-cta--light .brx-cta__wrap {
        display: block;
        text-align: center;
    }
	
	
	.brx-cta__chip {     
      padding: 10px 10px;     
      font-weight: 400;
    }
	.brx-cta__chips {       
        text-align: center;
        display: block;
        margin-bottom: 35px;
        margin-top: 38px;
    }
	.brx-cta__chip {        
        font-weight: 400;
    }
	.brx-cta__chips span:nth-child(3) {
    	display: none;
	}
	.brx-search-field select {
      	padding: 12px 30px;    
	}
	
	nav.mobile-menu.is-open {
        top: 100%;       
    }
	
	
	
}
@media (max-width: 900px) {
  .brx-link-inner {
    grid-template-columns: 1fr !important;
  }

  .brx-link-divider {
    display: none;
  }

  .brx-link-list {
    grid-template-columns: 1fr;
  }
}

/*
About us page
*/
/* ===============================
   ABOUT PAGE – BROKERAGE
   =============================== */

.brx-about {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #111;
}

/* Hero */
.brx-about-hero {
  text-align: center;
  margin-bottom: 64px;
}

.brx-about-kicker {
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
  color: #005e9e;
  margin-bottom: 8px;

}

.brx-about-title {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 16px;
  font-family: sans-serif;
  color: #0f172a;
}

.brx-about-sub {
  max-width: 640px;
  margin: 0 auto;
  font-size: 16px;
  color: #6b7280;
  font-family: sans-serif;
}

/* Split */
.brx-about-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 64px;
}

.brx-about-split h2 {
  font-size: 24px;
  margin-bottom: 12px;
  font-family: sans-serif;
  font-weight: 500;
}

.brx-about-split p {
  color: #555;
  margin-bottom: 12px;
  font-family: sans-serif;
  text-align: justify;
}

.brx-about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat {
  background: #fff;
  border: 1px solid #ececf1;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 28px;
}

.stat span {
  color: #666;
  font-size: 14px;
}

/* Features */
.brx-about-features {
  margin-bottom: 64px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.feature {
  background: #fff;
  border: 1px solid #ececf1;
  border-radius: 12px;
  padding: 24px;
}

.feature h3 {
  margin-bottom: 8px;
}

/* Vision */
.brx-about-vision {
  background: linear-gradient(135deg, #f5f3ff, #fafafa);
  padding: 48px;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 64px;
}

/* CTA */
.brx-about-cta {
  text-align: center;
}

.cta-buttons {
  margin-top: 20px;
  display: flex;
  gap: 16px;
  justify-content: center;
}

.cta-buttons a {
  background: #005e9e;
  color: #ffffff;
}

.btn-primary,
.btn-secondary {
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  background: #6b46c1;
  color: #fff;
}

.btn-secondary {
  border: 1px solid #ddd;
  color: #111;
}

/* Responsive */
@media (max-width: 980px) {
  .brx-about-split {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .brx-about-title {
    font-size: 32px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }
}



/* ===== Light Sweep on Text ===== */
.hero-content .brx-light-sweep {
  position: relative;
  display: inline-block;
  font-weight: 700;

  /* Base text */
  color: #111;

  /* Needed for sweep highlight */
  -webkit-background-clip: text;
  background-clip: text;

  /* Keep text visible */
  background-image:
    linear-gradient(90deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 1) 40%,
      rgba(0, 94, 158, 0.95) 50%,
      rgba(255, 255, 255, 1) 60%,
      rgba(255, 255, 255, 1) 100%);
  background-size: 300% 100%;
  background-position: 0% 0;

  /* Trick: text stays visible + sweep appears */
  color: transparent;
  -webkit-text-fill-color: transparent;

  animation: brxLightSweep 6.2s ease-in-out infinite;
}

@keyframes brxLightSweep {
  0% {
    background-position: 0% 0;
    /* শুরু: একদম বাম */
  }

  100% {
    background-position: 100% 0;
    /* শেষ: একদম ডান */
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .hero-content .brx-light-sweep {
    animation: none;
    background: none;
    color: #111;
    -webkit-text-fill-color: initial;
  }
}


/*pagination*/
/* ===== BRX Pagination Design ===== */
.brx-pagination,
brx-archive-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin: 28px 0 10px;
  padding: 10px 0;
}

/* all links + current */
.brx-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1;
  border: 1px solid rgba(0, 0, 0, .12);
  background: #fff;
  color: #111;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}

/* hover */
.brx-pagination a.page-numbers:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
  border-color: rgba(0, 0, 0, .18);
}

/* active page */
.brx-pagination .page-numbers.current {
  background: #111;
  color: #fff;
  border-color: #111;
  box-shadow: 0 12px 22px rgba(0, 0, 0, .18);
}

/* Next/Prev bigger pill */
.brx-pagination .page-numbers.next,
.brx-pagination .page-numbers.prev {
  padding: 0 16px;
  min-width: unset;
}

/* optional: add arrow spacing */
.brx-pagination .page-numbers.next::after {
  content: "→";
  margin-left: 8px;
  font-weight: 700;
}

.brx-pagination .page-numbers.prev::before {
  content: "←";
  margin-right: 8px;
  font-weight: 700;
}

/* dots style (if WP outputs ...) */
.brx-pagination .page-numbers.dots {
  border: 0;
  background: transparent;
  min-width: unset;
  padding: 0 6px;
  color: rgba(0, 0, 0, .55);
}

/* small screens */
@media (max-width: 480px) {
  .brx-pagination {
    gap: 8px;
  }

  .brx-pagination .page-numbers {
    min-width: 38px;
    height: 38px;
    border-radius: 10px;
    padding: 0 12px;
  }
}

.bxh-card.style_two.bx-bg-white.bx-rounded.bx-shadow {
  max-width: 576px;
}

.bxh-card.style_two.bx-bg-white.bx-rounded.bx-shadow {
  max-width: 576px;
}
.sp-root .sp-block ul li {
    display: inline-block;
    padding: 0 15px;
}
.sp-root .sp-block ul {
    list-style: none;
}
/* ===== Mobile: make style_two cards vertical (image top, content bottom) ===== */
@media (max-width: 480px){
  /* Grid container full width */
  .brx-properties-grid{
    display: block !important;      /* stop flex centering */
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 12px !important;     /* optional: small side padding */
  }

  /* Each card full width */
  .brx-properties-grid .bxh-card.style_two{
    width: 100% !important;
    margin: 0 0 16px !important;    /* spacing between cards */
  }

  /* Prevent any inner fixed width */
  .brx-properties-grid .bxh-card.style_two *{
    max-width: 100% !important;
  }

  /* Card layout */
  .brx-properties-grid .bxh-card.style_two{
    display: flex !important;
    flex-direction: column !important;
    border-radius: 14px;
    overflow: hidden;
  }

  /* Image container full width */
  .brx-properties-grid .bxh-card.style_two .bxh-img-box{
    width: 100% !important;
    flex: 0 0 auto !important;
    position: relative;
  }

  /* Image height fixed like a hero thumb */
  .brx-properties-grid .bxh-card.style_two img.bxh-img{
    width: 100% !important;
    min-height: 270px !important;
    object-fit: cover !important;
    display: block;
  }

  /* Content below image */
  .brx-properties-grid .bxh-card.style_two .bxv-content{
    width: 100% !important;
    padding: 14px 14px 16px !important;
  }

  /* Badge “Buy” stays on image */
  .brx-properties-grid .bxh-card.style_two .bxh-type{
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    z-index: 5 !important;
  }

  /* If there is any “flex row” on inner content, allow wrap */
  .brx-properties-grid .bxh-card.style_two .bx-flex{
    flex-wrap: wrap !important;
    gap: 8px !important;
  }
  .brx-tabs-head{
    display: flex !important;
    gap: 10px !important;
    padding: 8px 12px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    white-space: nowrap !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    margin-bottom: 20px;
  }

  .brx-tabs-head::-webkit-scrollbar{
    display: none; /* Chrome/Safari */
  }

  .brx-tabs-head .brx-tab-btn{
    flex: 0 0 auto !important;
    white-space: nowrap !important;
    padding: 10px 14px !important;
    border-radius: 999px !important;
  }
  .brx-tabs-head{
    position: relative; /* needed for overlay */
  }

  /*for scroll button*/
  .brx-tabs-head{
    display: flex !important;
    gap: 10px !important;
    padding: 8px 12px 6px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    white-space: nowrap !important;
    -webkit-overflow-scrolling: touch;

    /* IMPORTANT: scrollbar visible */
    scrollbar-width: thin;               /* Firefox */
    scrollbar-color: #999 transparent;   /* Firefox */
  }

  /* Chrome / Safari scrollbar */
  .brx-tabs-head::-webkit-scrollbar{
    height: 4px;
  }

  .brx-tabs-head::-webkit-scrollbar-track{
    background: transparent;
  }

  .brx-tabs-head::-webkit-scrollbar-thumb{
    background: #999;
    border-radius: 4px;
  }

  .brx-tabs-head .brx-tab-btn{
    flex: 0 0 auto !important;
    white-space: nowrap !important;
    padding: 10px 14px !important;
    border-radius: 999px !important;
  }
  
  
}
select#account_type {
    border: 2px solid #e0e0e0;
    padding: 16px 10px;
}
#agent-fields textarea {
    width: 100%;
}
