@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* ===== General Styles ===== */
:root {
  --primary-blue: #2d5f8d;
  --primary-dark: #1a3a52;
  --accent-cyan: #00aff0;
  --accent-green: #6fba1c;
  --accent-orange: #ff8c00;
  --accent-red: #dc3545;
  --text-dark: #333333;
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif !important;
  color: var(--text-dark);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
}

p {
  margin-bottom: 10px !important;
}

ul {
  padding-left: 0px !important;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0px 15px;
}

.sub-container {
  padding: 40px 100px;
}

.section-padding {
  padding: 80px 0px;

}

#feature-listing {
  padding-top: 0px !important;
}

/* ===== Navigation Bar ===== */
.navbar {
  padding: 22px 0px;
}

.logo a img {
  width: 127px;
  aspect-ratio: auto 127 / 24;
  margin-bottom: 10px;
}

.nav-item a {
  font-family: "Roboto";
  font-size: 12px;
  font-weight: 500;
  text-align: left;
  text-transform: uppercase;
  color: #004274 !important;
  transition: 0.5s;
}

.nav-item a:hover {
  color: #00aeef !important;
  background-color: rgba(0, 174, 255, 0.1);
}

.right-btn a {
  font-family: "Roboto";
  font-size: 12px;
  font-weight: 500;
  text-align: left;
  text-transform: uppercase;
}

.nav-middle {
  display: flex;
  justify-content: flex-end;
}

.right-btn {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 20px;
}

.navbar>.container {
  display: inline-block !important;
}

.phone-no a {
  color: #004274 !important;
  font-size: 14px;
  font-weight: 400;
}

.user_btn button {
  border: 0px !important;
  background-color: transparent !important;
}

.user_btn button i {
  color: #004274 !important;
  font-size: 20px;
}

.btn-info {
  border-radius: 4px !important;
  font-family: "Roboto";
  font-size: 12px;
  font-weight: 500;
  text-align: left;
  text-transform: uppercase;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
}

.navbar-brand i {
  font-size: 1.8rem;
}

.nav-link {
  color: #004274;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  color: var(--text-dark) !important;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-blue) !important;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
  margin-top: 25px;
  border-radius: 0px !important;
}

.dropdown-item {
  padding: 0.5rem 1.5rem;
  transition: background-color 0.3s ease;
}

.dropdown-item:hover {
  background-color: var(--bg-light);
  color: var(--primary-blue);
}

/* .post-btn a span{
  background-color:rgb(40, 199, 111);  
  font-size: 12px;
  padding: 3px 8px;
  margin-left: 5px;
} */

/* -------button------- */
.new__outerwrap {
  background-color: rgb(40, 199, 111);
  font-size: 10px;
  padding: 2px 6px;
  margin-left: 5px;
  border: 1px solid #fff;
  border-radius: 3px;
  font-weight: 700;
  line-height: 12px;
  color: #fff;
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-transform: capitalize;
}

.new__outerwrap .new__innerwrap {
  width: 150%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -50%;
  background: linear-gradient(120deg,
      transparent 0%,
      rgba(255, 255, 255, 0.6) 50%,
      transparent 100%);
  transform: skewX(-25deg);
  animation: shine 2s linear infinite;
}

@keyframes shine {
  0% {
    left: -50%;
  }

  100% {
    left: 100%;
  }
}



/* ===== Hero Section ===== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
  background-image: url('../images/banner-image.png');
  background-size: cover;
  background-position: center;
  /* background-attachment: fixed; */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0px 40px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(29, 53, 87, 0.7);
  background-color: #002E51;
  opacity: 0.7;
  mix-blend-mode: multiply;
  transition: background 0.3s;
  border-radius: 0.3s;
  opacity: 0.3s;
}


.hero-content {
  position: relative;
  z-index: 2;
  top: 130px;
}

.banner-text h1 {
  font-family: "Roboto", Sans-serif;
  font-size: 42px;
  font-weight: 300;
}

.banner-text p {
  font-family: "Roboto", Sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5em;
}

/* ========feature section======== */
.heading h2 {
  font-family: "Roboto", Sans-serif;
  font-size: 35px;
  font-weight: 300;
  color: #000000;
}

.heading p {
  color: #7A7A7A;
  font-family: "Roboto", Sans-serif;
  font-size: 16px;
  font-weight: 300;
}

.feature-section {
  background-color: #f7f8f9;
}

.card {
  border-radius: 4px !important;
}

.card img {
  border-radius: 4px !important;
  padding: 10px;
}

.card-text {
  color: #154373;
}

#featuredListings {
  margin-top: 25px;
}

.card-title {
  color: #000000;
  font-family: "Roboto", Sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.property-card p {
  font-family: "Roboto", Sans-serif;
}

.text-muted {
  font-family: "Roboto", Sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.text-muted i {
  font-size: 15px;
  margin-right: 5px;
}

.property-card .card-body {
  display: flex;
  flex-direction: column;
}

.property-card .card-body div:last-child {
  margin-top: auto;
}

.property-card .btn {
  background: var(--accent-cyan) !important;
  border-radius: 4px;
  border: 0px !important;
  color: #ffffff;
  font-family: "Roboto", Sans-serif;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  transition: 0.5s;
}

.property-card .btn:hover {
  background-color: #11befd !important;
}

/* ===== Search Form ===== */
.search-form-container {
  padding: 0px 0px 2rem;
  border-radius: 12px;
}

.search-form {
  max-width: 1010px;
  margin: 0 auto;
  background-color: transparent;
  /* Changed from white to transparent as the wrapper has the background */
  padding: 10px;
  /* Reduced padding */
  box-shadow: none;
  /* Shadow moved to wrapper */
}

/* New Horizontal Search Bar Design */
.hero-search-wrapper {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  /* Pillow shape for modern look */
  background: #FFFFFF;
  overflow: visible;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
  /* Strong shadow */
  padding: 6px;
  border-radius: 80px;
}

/* Dropdown Section */
.hero-search-dropdown {
  flex: 0 0 auto;
  min-width: 160px;
  position: relative;
  border-right: 1px solid #e0e0e0;
  /* Divider */
}

.hero-search-dropdown .form-select {
  border: none !important;
  border-radius: 50px 0 0 50px;
  padding: 0 16px 0 20px;
  background-color: transparent;
  color: #333;
  font-size: 15px;
  font-weight: 600;
  outline: none !important;
  box-shadow: none !important;
  height: 48px;
  cursor: pointer;
  background-image: none;
  /* Remove default arrow */
}

/* Custom Arrow for Dropdown */
.hero-search-dropdown::after {
  content: '\f078';
  /* FontAwesome chevron down */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #004274;
  pointer-events: none;
}

/* Input Section */
.hero-search-input-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.search-icon {
  position: absolute;
  left: 20px;
  color: #555;
  font-size: 18px;
  pointer-events: none;
}

.hero-search-input {
  width: 100%;
  border: none !important;
  outline: none !important;
  padding: 0 45px 0 45px;
  /* Space for search icon and location icon */
  font-size: 15px;
  color: #333;
  background: transparent;
  height: 48px;
}

.hero-search-input::placeholder {
  color: #888;
}

/* Location Button */
.location-btn {
  position: absolute;
  right: 10px;
  background: #f0f7ff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  color: #004274;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.location-btn:hover {
  background: #004274;
  color: #fff;
}

/* Search Button */
.hero-search-btn {
  flex: 0 0 auto;
  background-color: #007bff;
  /* Bright blue */
  border: none;
  border-radius: 50px;
  padding: 0 32px;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 48px;
  margin-left: 5px;
}

.hero-search-btn:hover {
  background-color: #0056b3;
}

.status-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

button {
  border: 0px !important;
}

.status-btn {
  font-weight: 600;
  font-size: 14px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px 24px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
  /* Transparent glass look */
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0;
}

.status-btn.active,
.status-btn:hover {
  background: #007bff;
  color: #ffffff !important;
  border-color: #007bff;
}

.status-btn[data-status="rent"].active {
  background: var(--accent-cyan);
  color: #ffffff !important;
}

.status-btn[data-status="sale"].active {
  background: var(--accent-red);
}

.search-form .form-label {
  display: none;
}

/* Legacy overrides */
.search-form .form-select,
.search-form .form-control {
  border: none;
}

.search-form-container .submit-btn {
  display: none;
  /* Hide old submit button if present */
}

/* ===== Property Type Cards ===== */
.property-type-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 2px 4px 10px #6c757d;
}

.bottom-text {
  padding-top: 310px;
}

.property-type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.property-type-content h3 {
  font-family: "Roboto", Sans-serif;
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 10px;
  color: #000000;
}

.property-type-content p {
  color: #7A7A7A;
  font-family: "Roboto", Sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7em;
  margin-bottom: 30px;
}

.property-type-image {
  height: 300px;
  background-size: cover;
  background-position: center;
}

.elementor-divider-separator {
  width: 30%;
  direction: ltr;
  display: flex;
  margin: 0;
  border: 1px solid #000;
  border-width: 1px !important;
}

.card-border {
  margin-top: 58px;
}

.residential-bg {
  background-image: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=800&q=80');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 6px;
}

.commercial-bg {
  background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=800&q=80');
}

.property-type-content {
  padding: 1.6rem;
  background: var(--white);
}

.property-type-content h3 {
  margin-bottom: 1rem;
  font-size: 25px;
  color: #000000;
}

.property-type-content .btn {
  padding: 10px 40px;
  margin-top: 14px;
  border-radius: 4px;
  font-family: "Roboto";
  font-size: 16px;
  transition: 0.5s;
}

.property-type-content .btn:hover {
  background-color: #00aeff !important;
  border: 1px solid #00aeff !important;
}

/* --------------Commercial-section---------------- */
.in-heading {
  font-family: "Roboto", Sans-serif;
  font-size: 31px;
  font-weight: 300;
  line-height: 1.6em;
  margin-bottom: 15px;
  color: #ffffff !important;
  position: relative;
  z-index: 1;
}

.inquiry {
  position: relative;
  z-index: 1;
  color: #ffffff !important;
}

.inquiry .elementor-divider-separator {
  width: 30%;
  direction: ltr;
  display: flex;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-width: 1px !important;
  margin-top: 50px;
}

#in-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.inquiry h5 {
  font-family: "Roboto", Sans-serif;
  font-size: 25px;
  font-weight: 300;
  line-height: 1.4em;
  letter-spacing: 0px;
  margin-bottom: 15px;
}

.inquiry p {
  color: rgba(255, 255, 255, 0.63);
  font-family: "Roboto", Sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5em;
}

/* ===== Feature Cards ===== */
.container-padding {
  padding: 0px 50px;
}

.feature-card {
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 2px 4px 10px #dfdfdf;
  border-radius: 10px;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-number {
  font-family: "Noto Serif JP", Sans-serif;
  font-size: 40px;
  font-weight: 300;
  color: #FFFFFF;
}

.feature-card h4 {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

/* ===== Inquiry Section ===== */
.inquiry-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
  background-color: #FFFFFF;
  background-image: url("../images/image.png");
  background-position: center left;
  background-repeat: repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;

}

.elementor-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #00335A;
  opacity: 0.85;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.inquiry-section .card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ===== City Cards ===== */
.city-card {
  position: relative;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.city-card:hover {
  transform: scale(1.05);
}

.city-image {
  height: 100%;
  background-size: cover;
  background-position: center;
}

.chicago-bg {
  background-image: url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?w=800&q=80');
}

.miami-bg {
  background-image: url('https://images.unsplash.com/photo-1506966953602-c20cc11f75e3?w=800&q=80');
}

.newyork-bg {
  background-image: url('https://images.unsplash.com/photo-1496442226666-8d4d0e62e6e9?w=800&q=80');
}

.losangeles-bg {
  background-image: url('https://images.unsplash.com/photo-1534190239940-9ba8944ea261?w=800&q=80');
}

.city-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--white);
}

.city-info h5 {
  margin-bottom: 0.5rem;
}

.city-info p {
  margin-bottom: 0.5rem;
}

/* ===== Agent Cards ===== */
.agent-card {
  padding: 20px 10px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.agent-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.agent-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--bg-light);
}

.agent-card h5 {
  color: #00aeff;
  font-family: "Roboto", Sans-serif;
  font-size: 14px;
  font-weight: 300;
}

.agent-card p {
  color: #000000;
  font-family: "Roboto", Sans-serif;
  font-size: 15px;
  font-weight: 300;
}

a {
  text-decoration: none !important;
}

.agent-card a {
  margin: 20px 0px;
  display: inline-block;
}

.agent-btn {
  background-color: #00aeff;
  color: #ffffff;
  padding: 5px 30px;
  font-family: "Roboto", Sans-serif;
  font-size: 15px;
  font-weight: 500;
}

/* ===== Testimonial Cards ===== */
.review-section {
  margin: 60px 0px 80px;
}

.testimonial-card {
  padding: 15px;
  background: #edf9ff;
  border-radius: 12px;
  border-left: 4px solid var(--primary-blue);
  transition: transform 0.3s ease;
  margin: 30px 0px;
}

.testimonial-card p {
  font-family: "Roboto", Sans-serif;
  font-size: 15px;
  font-weight: 300;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.quote-icon {
  font-size: 2rem;
  color: var(--primary-blue);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 15px;
}

.testimonial-author {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid #dee2e6;
  display: flex;
  align-items: center;
  gap: 10px;
}

.test-img {
  width: 55px;
  height: 55px;
}

.test-img img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}

.test-text strong {
  font-family: "Roboto", Sans-serif;
  font-size: 15px;
  font-weight: 500;
}

.test-text small {
  font-family: "Roboto", Sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #5c5c5c;
  font-style: italic;
}

/* ============ad section============ */
.ad-section {
  background-color: #f7f8f9 !important;
}

.ad-item .row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.ad-item .row .col-xl-2 img {
  width: 100%;
}

/* ===== Footer ===== */


footer h5 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

footer ul li {
  margin-bottom: 0.5rem;
}

footer a:hover {
  color: var(--accent-cyan) !important;
  text-decoration: underline !important;
}

/* ===== Buttons ===== */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--primary-blue);
  border: none;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 95, 141, 0.3);
}

.btn-info {
  background: var(--accent-cyan);
  border: none;
}

.btn-info:hover {
  background: #0099d6;
  transform: translateY(-2px);
}

.btn-outline-primary:hover {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
}

/* ===== Modal Styles ===== */
.modal-content {
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.modal-header {
  border-bottom: 2px solid var(--bg-light);
  padding: 1.5rem;
}

.modal-body {
  padding: 2rem;
}

.nav-tabs {
  border-bottom: 2px solid var(--bg-light);
}

.nav-tabs .nav-link {
  border: none;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-tabs .nav-link.active {
  color: var(--primary-blue);
  border-bottom: 3px solid var(--primary-blue);
}

/* ===== Form Styles ===== */
.form-control,
.form-select {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(45, 95, 141, 0.25);
}

.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}


/* ===== Animations ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* ===== Utility Classes ===== */
.shadow-sm {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.shadow {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2) !important;
}

/* ================form================= */
.form-container {
  background: #fff;
  padding: 50px 50px;
  border-radius: 1px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  position: relative;
  z-index: 1;
}

.form-container h2 {
  margin: 0 0 10px;
  font-family: "Roboto", Sans-serif;
  font-size: 25px;
  font-weight: 400;
  color: #000000;
}

.form-container p {
  margin: 0 0 25px;
  font-family: "Roboto", Sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5em;
  margin-bottom: 20px !important;
  color: #000000;
}

label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  font-family: "Playfair Display", serif;
}

select,
input[type="text"],
input[type="email"],
input[type="number"] {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  background: #fff;
  outline: none;
  transition: border 0.2s;
  background-color: #ffffff;
  border-color: #dce0e0;
  border-width: 2px 2px 2px 2px;
  color: #5c5c5c;
  font-family: inherit;
  font-size: inherit;
}

select:focus,
input:focus {
  border-color: #0078ff;
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-row input,
.form-row select {
  flex: 1;
}

.checkbox-group {
  display: flex;
  gap: 12px;
  font-size: 14px;
  align-items: center;
  margin-bottom: 15px;
}

.gdpr-group {
  margin-top: 20px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0;
  margin-right: 8px;
  flex-shrink: 0;
}

.checkbox-group label {
  font-weight: normal;
  line-height: 1.5;
  margin-bottom: 0;
  cursor: pointer;
  color: #121212;
}

.submit_btn {
  width: 100%;
  background-color: #00a9ff;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 15px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 15px;
}

.submit-btn:hover {
  background-color: #0090e6;
}

#gdpr label {
  color: #c1c1c1 !important;
  font-weight: 300;
  font-size: 16px;
}

/* ===========why chose us============= */
.property-card {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  background: #fff;
  transition: transform 0.3s ease;
}

.property-card:hover {
  transform: scale(1.02);
}

.property-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.property-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 10px 0px 10px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: #fff;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #77c720;
  color: #ffffff;
  font-size: 10px;
  padding: 3px 7px;
  border-radius: 0px;
  font-weight: 300;
}

.badge.hot {
  background: #e53935;
}

.for-rent {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #333;
  color: #fff;
  font-size: 12px;
  font-size: 10px;
  padding: 3px 7px;
  border-radius: 0px;
  font-weight: 300;
}

.info {
  margin-top: 5px;
  font-size: 14px;
}

.price {
  font-weight: 700;
  margin-top: 5px;
  color: #fff;
}

.overlay h3 {
  font-size: 17px;
  font-family: "Roboto", Sans-serif;
  font-weight: 400;
}

.load-more {
  width: 20%;
  margin: 0 auto;
  display: inline-block;
  padding: 12px 25px;
  border: none;
  background: #0078ff;
  color: #fff;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.load-more:hover {
  background: #005fcc;
}

.hidden {
  display: none;
}


/* -- Explore Cities Section --    */
.explore-section .heading h2 {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 10px;
  color: #000000;
}

.explore-section .heading p {
  color: #7A7A7A;
  font-size: 14px;
}

.city-container .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.city-card {
  position: relative;
  width: 250px;
  height: 360px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.city-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
  transition: filter 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}

.city-card:hover img {
  filter: brightness(100%);
  transform: scale(1.05);
  overflow: hidden;
}

.city-top {
  position: absolute;
  top: -270px;
}

.city-info {
  position: absolute;
  bottom: 0px;
  left: 0px;
  color: #fff;
}

.city-info p {
  font-family: "Roboto", Sans-serif;
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 0px !important;
}

.city-info h3 {
  font-family: "Roboto", Sans-serif;
  font-size: 20px;
  font-weight: 300;
}

.city-info .city-details {
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
 
}

/* ===============footer============== */
.top-footer {
  background-color: #02457a !important;
  color: #fff;
  padding: 50px 100px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin: 10px 20px;
}

.footer-section h3 {
  margin-bottom: 20px;
  font-family: "Roboto", Sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.contact-info li i {
  color: #FFFFFF;
}

.footer-section ul li {
  margin-bottom: 10px;
  color: #c9e3ff;
  font-size: 14px;
}

.footer-section ul li a {
  color: #c9e3ff;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 14px;
}

.footer-section ul li i {
  font-size: 14px;
}

.footer-section ul li a:hover {
  color: #fff;
}

.contact-info i {
  margin-right: 8px;
  color: #00aaff;
}

.newsletter {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.newsletter input[type="email"] {
  padding: 10px;
  border: none;
  border-radius: 4px 0px 0px 4px;
  outline: none;
  width: 100%;
  font-size: 15px;
}

.newsletter button {
  padding: 10px 20px;
  background-color: #00aaff;
  color: #fff;
  border: none;
  border-radius: 0px 4px 4px 0px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-bottom: 16px;
  font-size: 15px;
}

.newsletter button:hover {
  background-color: #0088cc;
}

.newsletter-text {
  font-family: "Roboto";
  font-size: 14px;
  font-weight: 300;
  text-transform: none;
}


/* -------sub-footer------ */
.houzez-footer {
  background-color: #00365c;
  color: #fff;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  padding: 0 20px;
}

.footer-left {
  font-size: 14px;
}

.footer-center .footer-logo {
  height: 25px;
}

.footer-right a {
  color: #fff;
  margin: 0 8px;
  font-size: 16px;
  transition: color 0.3s;
}

.footer-right a:hover {
  color: #00bfff;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #00bfff;
  border: none;
  color: #fff;
  font-size: 18px;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
  z-index: 3;
}

@media(max-width:786px) {
  .back-to-top {
    bottom: 80px;
    right: 15px;
  }
}



.back-to-top:hover {
  background-color: #0099cc;
}

/* -----------inner page-------------- */
.Commercial-section {
  background-color: #f7f8f9;
}

.property_card {
  background-color: #ffffff;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0px 4px 10px #6c757d;
}

.property_card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
  transition: filter 0.3s ease, transform 0.3s ease;
  overflow: hidden !important;
}

.property_card:hover img {
  filter: brightness(100%);
}

.com-right {
  background-color: #ffffff;
  padding: 30px;
}

.featured img {
  width: 100%;
}

.property-info {
  margin-top: 20px;
}

.property-info h3 {
  font-family: "Roboto";
  font-weight: 400;
  text-transform: capitalize;
  font-size: 16px;
  line-height: 26px;
}

.property-info p {
  color: #636363;
  font-size: 13px;
}

#side-title {
  display: flex;
  justify-content: flex-end;
}

.details-btn {
  color: #fff;
  background-color: #00aeff;
  border-color: #00aeff;
  font-size: 15px;
  font-weight: 500;
  padding: 3px 12px;
  border-radius: 4px;
  font-family: "Roboto";
  margin-top: 15px;
}


.featured h3 {
  font-family: "Roboto";
  font-weight: 400;
  text-transform: capitalize;
  font-size: 24px;
  margin-bottom: 10px;
}

.featured p {
  color: #636363;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.featured p strong {
  color: #000000;
  font-size: 13px;
  margin-top: 10px !important;
  display: inline-block;
}

.filters {
  border-top: 1px solid #6c757d;
  margin-bottom: 10px;
}

.filters h3 {
  font-family: "Roboto";
  font-weight: 600;
  text-transform: capitalize;
  font-size: 20px;
  margin-top: 30px;
}

.filters ul li {
  list-style-type: square;
}

.filters ul li a {
  font-family: "Roboto";
  font-weight: 400;
  font-size: 15px;
  margin-top: 5px;
  display: inline-block;
  color: #000;
}

.cities {
  border-top: 1px solid #6c757d;
  padding-top: 20px;
}

.cities h3 {
  font-family: "Roboto";
  font-weight: 600;
  text-transform: capitalize;
  font-size: 20px;
  margin-bottom: 10px;
}

.cities ul li {
  list-style-type: square;
}

.cities ul li a {
  font-family: "Roboto";
  font-weight: 400;
  font-size: 15px;
  margin-top: 5px;
  display: inline-block;
  color: #000;
}



/* =====================================inner page============================================= */


/* Breadcrumb */
.breadcrumb {
  font-size: 24px;
  color: #555;
  display: flex;
  align-items: center !important;
}

.breadcrumb a {
  color: #00aeff;
  font-size: 13px;
  margin-right: 10px;
  text-decoration: none;
}

.breadcrumb span {
  font-size: 13px !important;
}

/* Header */
.property-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px 20px !important;
}

.title-section h1 {
  font-size: 30px;
  margin-bottom: 10px;
  font-family: "Roboto";
  font-weight: 400;
  text-transform: capitalize;
}

.location {
  color: #777;
  font-size: 15px;
}

.tags {
  margin-top: 10px;
}

.tag {
  display: inline-block;
  background: #ddd;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  margin-right: 6px;
  color: #fff;
  margin: 5px 0px 10px;
}

.featured {
  background: #77c720;
}

.rent {
  background: rgba(0, 0, 0, .65);
}

.property-card .price {
  color: #ffffff;
}

.price {
  font-size: 24px;
  font-weight: bold;
  color: #000000;
  font-family: "Roboto";
}

.price span {
  font-size: 16px;
  color: #555;
}

.left-content {
  flex: 2;
}

.property-image {
  width: 100%;
  aspect-ratio: 2 / .7;
  border-radius: 10px;
  margin-bottom: 20px;
}

.right-sidebar {
  flex: 1;
  position: sticky;
  top: 20px;
  align-self: flex-start;
}

.tour-box {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  background: #fafafa;
}

.tour-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.two-menu {
  margin-bottom: 30px;
  margin-top: 5px;
}

.two-menu ul li {
  list-style-type: none;
  display: inline-block;
  font-size: 16px;
  color: #00aeff !important;
  text-decoration: none;
  list-style-type: none;
}

.two-menu ul li a {
  color: #00aeff;
}

.agent {
  display: flex;
  align-items: center;
  margin: 15px 0;
}

.agent img {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  margin-right: 10px;
}

.agent h4 {
  margin: 0;
  font-size: 15px;
  font-family: "Roboto";
  color: #222222 !important;
}

.agent a {
  font-size: 13px;
  color: #00aeff;
  text-decoration: none;
  font-family: "Roboto";
}

/* Calendar */
.calendar .days {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 15px 0;
  gap: 5px;
  flex-wrap: wrap;
}

.calendar button {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #0077ff;
}

.calendar span {
  background: #f2f2f2;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
}

/* Tour type */
.tour-type {
  display: flex;
  margin-bottom: 15px;
  margin-top: 15px;
}

.tour-type button {
  flex: 1;
  padding: 8px;
  border: 1px solid #00aeff;
  background: #fff;
  color: #0077ff;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s;
}

.tour-type button.active {
  background: #00aeff;
  color: #fff;
}

.tour-type button:not(:last-child) {
  margin-right: 8px;
}

.tour-up {
  font-size: 14px;
  color: #000;
  font-family: "Roboto";
}

/* Form */
.tour-form input,
.tour-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.tour-form textarea {
  resize: vertical;
  height: 80px;
}

.terms {
  font-size: 12px;
  color: #777;
}

.submit-btn {
  width: 100%;
  background: #28a745;
  border: none;
  color: #fff;
  padding: 10px;
  font-size: 15px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #218838;
}

/* Responsive */
@media (max-width: 900px) {
  .main-content {
    flex-direction: column;
  }

  .right-sidebar {
    position: relative;
    top: 0;
    width: 100%;
  }
}

.nav-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background-color: #fff;
  cursor: pointer;
  font-size: 20px;
  color: #333;
  transition: all 0.2s ease;
}

.nav-btn:hover {
  background-color: #f5f5f5;
}

.dates-container {
  display: flex;
  gap: 10px;
  overflow: hidden;
}

.date-card {
  width: 80px;
  height: 100px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.date-card.active {
  border: 2px solid #000;
}

.date-card .day {
  font-size: 14px;
  color: #555;
}

.date-card .date {
  font-size: 22px;
  font-weight: 600;
  color: #000;
}

.date-card .month {
  font-size: 13px;
  color: #777;
}

.info-property-info {
  background: #fff;
  border-radius: 6px;
  padding: 20px 30px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.head {
  display: flex;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 15px;
  border-bottom: 1px solid #dce0e0;
  padding-bottom: 15px;
}

.head h3 {
  font-size: 18px;
  font-family: "Roboto";
  font-weight: 400;
  text-transform: capitalize;
}

.head h6 {
  font-weight: 700;
  font-size: 16px;
}

.head h6 span {
  font-weight: 400;
}

.info-box {
  text-align: center;
  margin: 15px 0;
}

.info-box i {
  font-size: 18px;
  color: #5c6872;
  margin-bottom: 8px;
  margin-right: 10px;
}

.info-box h3 {
  font-size: 14px;
  margin: 5px 0px 0px;
  font-weight: 600;
  color: #222222;
}

.info-box p {
  font-size: 14px;
  color: #5c6872;
  margin: 0;
  font-weight: 300;
}

.description-box {
  background: #fff;
  border-radius: 6px;
  padding: 25px 30px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.description-box h2 {
  font-size: 18px;
  margin-bottom: 25px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 25px;
  font-weight: 400;
  font-family: "Roboto";
}

.description-box p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.address-table {
  width: 100%;
  border-collapse: collapse;
}

.address-table td {
  padding: 10px 4px;
  font-size: 15px;
  border-bottom: 1px solid #dce0e0;
}

.address-table td:first-child {
  font-weight: 600;
  width: 20%;
}

.address-table td:nth-child(2) {
  width: 30%;
}

.address-table td:nth-child(3) {
  border-left: 1px solid #e0e0e0;
  padding-left: 20px;
}

.address-table td:nth-child(3) {
  font-weight: 600;
  width: 20%;
}

.address-table td:nth-child(4) {
  width: 30%;
}

.google-map-btn {
  float: right;
  background: #007bff;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.google-map-btn:hover {
  background: #0056b3;
}

/* Details Section */
.details-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
}

.details-box {
  background: #eaf5ff;
  border: 1px solid #bcd9ff;
  border-radius: 5px;
  padding: 15px 20px;
}

.details-box td:nth-child(3) {
  border-left: 1px solid #e0e0e0;
}

.additional-table td:nth-child(3) {
  border-left: 1px solid #e0e0e0;
}

.details-table {
  width: 100%;
  border-collapse: collapse;
}

.details-table td {
  padding: 8px 12px;
  font-size: 15px;
}

.details-table td:first-child {
  font-weight: 600;
  width: 25%;
}

.details-table td:nth-child(2) {
  width: 25%;
}

.details-table td:nth-child(3) {
  font-weight: 600;
  width: 25%;
}

.details-table td:nth-child(4) {
  width: 25%;
}

@media (max-width: 768px) {

  .address-table td,
  .details-table td,
  .additional-table td {
    display: block;
    width: 100% !important;
    border-left: none !important;
    padding: 8px 0;
  }

  .address-table td:first-child,
  .details-table td:first-child,
  .details-table td:nth-child(3),
  .additional-table td:first-child,
  .additional-table td:nth-child(3) {
    background: #f8f9fa;
    padding-left: 10px;
    margin-top: 5px;
  }

  .address-table tr,
  .details-table tr,
  .additional-table tr {
    display: block;
    border: none;
    margin-bottom: 15px;
  }
}

/* Additional Details */
.additional-table {
  width: 100%;
  border-collapse: collapse;
}

table {
  margin-top: 20px;
}

.additional-table td {
  padding: 10px 15px;
  font-size: 14px;
  border-bottom: 1px solid #dce0e0;
}

.additional-table td:first-child {
  font-weight: 600;
  width: 20%;
}

.additional-table td:nth-child(2) {
  width: 30%;
}

.additional-table td:nth-child(3) {
  font-weight: 600;
  width: 20%;
}

.additional-table td:nth-child(4) {
  width: 30%;
}

.inner-section {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  padding: 25px 30px;

}

.inner-section h2 {
  font-size: 20px;
  color: #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Roboto";
  font-weight: 400;
}

tr {
  border: 1px solid #e0e0e0;
}

#col-img img {
  width: 100%;
  padding: 10px 0px;
}

.in-features ul li {
  list-style-type: circle;
  color: #004274;

}

.in-features ul li a {
  color: #222222 !important;
  font-weight: 300;
  margin-top: 15px !important;
  display: inline-block;
}

/* Floor Details */
.floor-details {
  background: #f8f9fb;
  border-radius: 8px;
  padding: 15px 25px;
  margin-bottom: 25px;
}

.floor {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.floor:last-child {
  border-bottom: none;
}

.floor-title {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #0a58ca;
}

.floor-info span {
  margin-left: 15px;
  font-size: 14px;
}

/* Tour Section */
.tour-section {
  display: flex;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  flex-wrap: wrap;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-image {
  flex: 1 1 45%;
  min-width: 300px;
}

.tour-form {
  flex: 1 1 55%;
  padding: 30px;
}

.tour-form h2 {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 400;
}

/* Date Picker */
.date-picker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.nav-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
}

.dates {
  display: flex;
  gap: 10px;
}

.date {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  text-align: center;
  padding: 8px 14px;
  cursor: pointer;
  transition: 0.3s;
}

.date.active,
.date:hover {
  background: #007bff;
  color: #fff;
  border-color: #007bff;
}

/* Tour Type Buttons */
.tour-type {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.tour-type button {
  flex: 1;
  padding: 10px;
  border: 1px solid #007bff;
  background: #fff;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.tour-type button.active {
  background: #007bff;
  color: #fff;
}

/* Form */
form input,
form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 10px;
  font-size: 14px;
}

textarea {
  resize: none;
  height: 80px;
}

.terms {
  font-size: 12px;
  color: #777;
  margin: 8px 0;
}

.terms a {
  color: #007bff;
  text-decoration: none;
}

.submit-btn {
  width: 100%;
  background: #28a745;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #218838;
}

/* Responsive */
@media (max-width: 768px) {
  .tour-section {
    flex-direction: column;
  }

  .tour-image,
  .tour-form {
    width: 100%;
  }
}

/* ======next====== */

.btn-blue {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

.btn-blue:hover {
  background: #0069d9;
}

.btn-green {
  background: #28a745;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 5px;
  width: 100%;
  cursor: pointer;
  font-size: 15px;
}

.btn-green:hover {
  background: #218838;
}

/* Contact Section */
.contact-part {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  background: #fff;
  margin-top: 30px;
}

.contact-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
  margin-bottom: 20px;

  h3 {
    font-size: 18px;
    font-weight: 300;
  }
}

.agent-info {
  display: flex;
  align-items: center;
  margin: 15px 0 25px;
}

.agent-info img {
  margin-right: 15px;
  max-width: 65px;
}

.agent-info h4 {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 100;
}

/* Form Styles */
form {
  margin-top: 10px;
}

.form-title {
  font-size: 15px;
  font-weight: 200;
  margin-bottom: 18px !important;
}

.form-grid {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

textarea {
  resize: none;
  height: 80px;
  margin-bottom: 10px;
}

.terms {
  font-size: 12px;
  color: #777;
  margin-bottom: 10px;
}

.terms a {
  color: #007bff;
  text-decoration: none;
}

/* Review Section */

.review-part {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 25px;
  background: #fff;

  h3 {
    font-size: 17px;
  }
}

.review-header {
  margin-bottom: 20px;
}

.review-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-actions select {
  padding: 10px;
  width: 70%;
  margin-bottom: 0px !important;
}

.rating {
  color: #f1c40f;
  font-size: 14px;
}

@media (max-width: 768px) {
  .form-grid {
    flex-direction: column;
  }

  .contact-header,
  .review-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}















/* ===== Responsive Styles ===== */

@media (max-width: 1024px) {
  .hero-section {
    background-image: url('../images/banner-image.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0px 0px !important;
    max-height: 600px;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    top: 350px;
  }

  .status-tabs {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .search-form {
    padding: 20px 20px 20px 20px;
  }

  select {
    margin-bottom: 0px !important;
  }

  .feature-section {
    margin-top: 80%;
  }

  .sub-container {
    padding: 0px 0px;
  }

  .heading h2 {
    font-size: 25px;
    max-width: 320px;
    margin: 0 auto 10px;
  }

  .section-padding {
    padding: 80px 0px 0px !important;
  }

  .bottom-text {
    padding-top: 10px;
  }

  .container-padding {
    padding: 0px 0px;
  }

  .inquiry-section {
    padding: 0px 10px !important;
  }

  #inquiry-left {
    padding: 0px 30px !important;
  }

  .form-row {
    display: flex;
    flex-direction: column;
    gap: 0px !important;
  }

  .inquiry-section select,
  input[type="text"],
  input[type="email"],
  input[type="number"] {
    margin-bottom: 10px !important;
  }

  .py-5 {
    padding-bottom: 0px !important;
  }

  .property-card {
    margin: 0px 20px 20px;
  }

  .my-4 {
    margin: 0px !important;
  }

  .commercial-section {
    margin-bottom: 70px;
  }

  .load-more {
    width: 80%;
  }

  .city-container .row .col-12 {
    display: flex;
    align-items: center !important;
    justify-content: center !important;

  }


  .city-image {
    max-height: 400px;
  }

  .explore-section {
    margin: 100px 15px;
  }

  .explore-section .heading {
    text-align: center;
  }

  .agent-card {
    padding: 20px 20px 20px;
    background: var(--white);
    border-radius: 0px;
    box-shadow: 0px 0px 0px transparent;

  }

  .mb-4 {
    margin-bottom: 0px !important;
  }

  .our-agents-section {
    padding-bottom: 60px;
  }

  .review-section {
    padding: 60px 0px;
  }

  .testimonial-card {
    margin-bottom: 20px;
    box-shadow: 0 0px 0px transparent;
  }

  .owl-theme .owl-nav {
    display: none;
  }

  .ad-item .row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
  }

  .ad-item .row img {
    width: 100%;
    margin-bottom: 30px;
  }

  .ad-section {
    padding-top: 30px;
  }

  .top-footer {
    padding: 60px 0px !important;
  }

  .footer-section {
    margin: 0px 0px !important;
  }

  .newsletter button {
    margin-bottom: 10px !important;
  }

  .footer-center {
    margin: 10px 0px;
  }

  .review-section {
    padding: 0px 0px !important;
  }

  .property-type-card {
    margin-top: 40px;
  }

  .city-card {
    margin-bottom: 30px;
  }

  .city-card {
    position: relative;
    width: 100%;
    height: 360px;
  }







}




/* ---------992px---------- */
@media (max-width: 992px) {
  .navbar {
    display: block;
  }
}












@media (max-width: 768px) {

  /* .search-form-container {
        padding: 1.5rem;
    } */

  /* .status-tabs {
        flex-direction: column;
    } */

  /* .status-btn {
        width: 100%;
    } */

  .feature-number {
    font-size: 2rem;
  }


  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .newsletter {
    justify-content: center;
  }
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #2d5f8d;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ===== Mobile Responsiveness & UI Enhancements ===== */

@media (max-width: 991px) {
  .navbar {
    padding: 10px 0px !important;
  }

  .hero-section {
    height: auto !important;
    padding: 20px 0 !important;
  }

  .hero-content {
    top: 0 !important;
  }

  .search-form-container {
    padding-bottom: 0 !important;
  }

  .search-form {
    padding: 15px !important;
    background: transparent;
  }

  /* Fixed Bottom Nav Active State */
  .mobile-bottom-nav a.active-nav-item {
    color: #00aeff !important;
  }

  /* Adjust main content padding for bottom nav */
  body {
    padding-bottom: 70px !important;
  }

  /* Hide some elements on mobile to clear space as requested */
  .status-tabs {
    display: none !important;
  }

  .search-form .row>div {
    margin-bottom: 10px;
  }

  .search-form label {
    display: none !important;
    /* Remove labels on mobile for cleaner look */
  }

  .hero-section #banner-img {
    background-attachment: scroll !important;
  }

  /* Reduce gaps on mobile */
  .sub-container {
    padding: 20px 15px !important;
  }

  .section-padding {
    padding: 40px 0 !important;
  }

  .mt-5,
  .py-5 {
    margin-top: 1.5rem !important;
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .feature-section {
    margin-top: 0 !important;
  }

  /* Property Details Page Mobile Enhancements */
  .head {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px;
  }

  .info-property-info {
    padding: 15px !important;
  }

  /* Stack info boxes in 2 columns on mobile */
  .info-property-info .row>div {
    width: 50% !important;
  }

  .info-box {
    margin: 10px 0;
  }

  /* Tables: Stack rows for better mobile viewing */
  .address-table,
  .details-table,
  .additional-table {
    display: block;
    width: 100%;
  }

  .address-table tr,
  .details-table tr,
  .additional-table tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
  }

  .address-table td,
  .details-table td,
  .additional-table td {
    display: block;
    width: 100% !important;
    padding: 8px 0 !important;
    border: none !important;
  }

  .address-table td:nth-child(odd),
  .details-table td:nth-child(odd),
  .additional-table td:nth-child(odd) {
    font-weight: 700 !important;
    color: #444;
    padding-bottom: 0 !important;
  }

  .address-table td:nth-child(even),
  .details-table td:nth-child(even),
  .additional-table td:nth-child(even) {
    padding-top: 2px !important;
    color: #666;
  }

  /* Fix for content area overlap with bottom nav */
  .main-content {
    padding-bottom: 80px !important;
  }
}

.mobile-sticky-search .form-control:focus {
  box-shadow: none;
  border-color: #00aeff;
}

.mobile-post-btn .new__outerwrap {
  background-color: #28c76f;
  padding: 1px 4px;
  font-size: 8px;
  line-height: 10px;
}

/* Ensure bottom nav icons are centered */
.mobile-bottom-nav i {
  margin-bottom: 2px;
}

/* Sell/Rent Plus Button Pulse Effect */
.sell-rent-plus .btn-primary {
  background-color: #00aeff !important;
  border-color: #00aeff !important;
}

/* Fix for profile button in mobile menu */
.mobile-menu .user_btn button {
  padding: 0;
  border: none;
  background: none;
}

.mobile-menu .user_btn i {
  font-size: 24px;
  color: #004274;

  /* Responsive fixes for small devices: center GDPR checkbox and ensure owl carousel shows one card */
  @media (max-width: 600px) {
    .checkbox-group {
      align-items: center;
      gap: 8px;
    }

    .checkbox-group label {
      line-height: 1.25;
    }

    /* Make owl carousel items occupy full width to avoid showing partial/extra cards */
    .owl-carousel .owl-stage-outer {
      overflow: hidden;
    }

    .owl-carousel .owl-item {
      width: 100% !important;
      max-width: 100% !important;
      display: block;
    }

    .owl-carousel .owl-item .property-card {
      margin: 0 6px 12px !important;
    }
  }
}

/* Responsive Search Bar Styles */
/* Responsive Search Bar Styles */
@media (max-width: 768px) {

  /* Responsive Search Bar */
  .hero-search-wrapper {
    flex-direction: row;
    /* Keep horizontal */
    border: 1px solid #e0e0e0;
    background: #FFFFFF;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 2px;
    /* Slightly tighter padding */
    align-items: center;
  }

  .hero-search-dropdown {
    width: auto;
    min-width: unset;
    margin-bottom: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    border-right: 1px solid #eee;
    padding-right: 5px;
  }

  .hero-search-dropdown .form-select {
    border-radius: 50px 0 0 50px !important;
    border: none !important;
    padding: 0 10px 0 10px;
    height: 40px;
    font-size: 13px;
    width: auto;
    background: transparent;
    /* Hide text on very small screens if needed, or just let it shrink */
    max-width: 110px;
    text-overflow: ellipsis;
  }

  /* Custom arrow adjustment for mobile */
  .hero-search-dropdown::after {
    right: 5px;
  }

  .hero-search-input-wrapper {
    width: auto;
    flex: 1;
    margin-bottom: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    padding: 0 5px;
  }

  .search-icon {
    left: 8px;
    font-size: 14px;
  }

  .hero-search-input {
    height: 40px;
    padding: 0 35px 0 30px;
    /* Reduced padding */
    font-size: 13px;
  }

  .location-btn {
    width: 30px;
    height: 30px;
    font-size: 14px;
    right: 5px;
  }

  .hero-search-btn {
    width: auto;
    border-radius: 50px;
    margin-left: 0;
    padding: 0 15px;
    height: 40px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Circular Project Spotlight Styles */
.project-circular-spotlight {
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin-bottom: 20px;
  padding: 5px;
}

.project-circular-spotlight:hover {
  transform: translateY(-8px);
}

.circular-image-wrapper {
  width: 190px;
  height: 190px;
  margin: 0 auto 15px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.circular-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-circular-spotlight:hover .circular-image-wrapper img {
  transform: scale(1.15);
}

.circular-badge {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(45deg, #00aff0, #0078ff);
  color: #fff;
  padding: 4px 15px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 12px rgba(0, 120, 255, 0.3);
  z-index: 2;
}

.circular-info h4 {
  font-size: 19px !important;
  font-weight: 700 !important;
  color: #002e51 !important;
  margin-bottom: 6px !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.2px;
}

.circular-info p {
  font-size: 13.5px !important;
  color: #777 !important;
  margin: 0 !important;
  font-weight: 400;
}

/* Grid Mode specific adjustments */
.project-circular-spotlight.grid-mode .circular-image-wrapper {
  width: 230px;
  height: 230px;
}