/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Burger Code */
.burger {
  display: none;
  position: absolute;
  cursor: pointer;
  right: 5%;
  top: 15px;
}

.burger-line {
  width: 33px;
  background-color: white;
  height: 4px;
  margin: 5px 3px;
}

/* Ending */

/* Scrollable Background Container */
.main-back {
  position: relative;
  height: 90vh;
  overflow: hidden;
  white-space: nowrap;
}

/* Image strip that scrolls */
.scroll-bg {
  display: flex;
  width: max-content;
  transition: transform 1s ease-in-out;
}

.scroll-bg img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  flex-shrink: 0;
}

/* Overlay content */
.bg-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px;
  /* background: #0000008c; */
  background: #1e1e1eed;
}

.logo img {
  width: 200px;
}

.nav-list-p {
  display: flex;
  gap: 35px;
  margin: 0px;
  padding: 0px;
}

.nav-list-p li {
  background: transparent;
  list-style: none;
}

.nav-list-p li a {
  text-decoration: none;
  color: white;
  font-size: 20px;
  display: block;
  padding: 10px 20px;
}

/* When li is hovered, change its background */
.nav-list-p li:hover {
  background: white;
  border-radius: 10px;
}

/* When li is hovered, change a color */
.nav-list-p li:hover > a {
  color: #0066ff;
}

.show {
  position: relative;
}

.join {
  visibility: hidden;
  position: absolute;
  top: 50px;
  width: 120px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
  /* background: white; */
  background-color: rgba(255, 255, 255, 0.333);
  border-radius: 10px;
  padding: 5px;
  z-index: 10;
  opacity: 0;
}

.show:hover .join {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(5px);
}

.join li {
  text-align: center;
}

.join li .dropdownText {
  /* color: #0066ff; */
  color: black;
}

/* Show submenu on hover */
.show:hover .join {
  display: block;
}

/* ICON change using pseudo-element */
.show > a i::before {
  content: "\f106"; /* up arrow */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  transition: all 0.3s ease;
}

.show:hover > a i::before {
  content: "\f107"; /* down arrow */
}

/* Main content in center */
.main-home {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80vh;
  text-align: center;
  padding: 20px;
}

.text-small {
  font-size: 25px;
  font-weight: bold;
  /* letter-spacing: 5px; */
  color: white;
}

.text-big {
  font-size: 30px;
  font-weight: bold;
  /* letter-spacing: 5px; */
  color: white;
}

#element {
  color: #0066ff;
}

/* Search Bar */

.mode-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.mode-btn {
  height: 100%;
  width: 100%;
  padding: 10px 10px;
  font-size: 18px;
  background-color: rgba(255, 255, 255, 0.752);
  color: #0066ff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 20px;
  font-weight: bolder;
}

/* Right button should not have border-right */
.mode-btn:last-child {
  border-right: none;
}

/* Active = blue */
.mode-btn.active {
  background-color: #0066ff;
  color: white;
}

.modeBtn_container {
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 5);
  height: 50px;
  width: 200px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mode-button-left {
  height: 100%;
  width: 100px;
  border: 1px solid black;
}

.searchBar_container {
  gap: 20px;
  padding: 20px;
  height: 100px;
  width: 700px;
  background-color: #ffffff1f;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px 20px 20px 20px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 5);
}

.box1 {
  flex: 1 1 200px;
}

.box svg {
  width: 25px;
}

.formText {
  margin-bottom: 10px;
}

.box1Text {
  font-size: 20px;
  margin-bottom: 5px;
  color: #f0f0f0;
}

.dropdown {
  position: relative;
  width: 100%;
}

.dropdown-input {
  width: 80%;
  padding: 10px;
  font-size: 20px;
  color: #333;
  background-color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  color: black;
}

.dropdown-options {
  margin-top: 5px;
  position: absolute;
  top: 100%;
  left: 24px;
  height: 150px;
  width: 200px;
  background-color: rgba(255, 255, 255, 0.482);
  border: 1px solid #ccc;
  z-index: 100;
  display: none;
  border-radius: 5px;
  overflow-y: auto;
}

.dropdown-option {
  padding: 10px;
  font-size: 20px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.333);
  color: black;
  z-index: 100;
}

.dropdown-option:hover {
  background-color: white;
  color: #0066ff;
}

/* Style scrollbar track */
.dropdown-options::-webkit-scrollbar {
  width: 10px;
}

/* Style scrollbar thumb */
.dropdown-options::-webkit-scrollbar-thumb {
  /* background-color: #888; */
  background-color: #0066ffb3;
  border-radius: 4px;
}

/* On hover over scrollbar */
.dropdown-options::-webkit-scrollbar-thumb:hover {
  /* background-color: #555; */
  background-color: #0066ff;
}

/* Optional: scrollbar track background */
.dropdown-options::-webkit-scrollbar-track {
  background-color: #f0f0f0;
  border-radius: 4px;
}

.btn {
  align-self: center;
}

.submitBtn {
  padding: 10px 20px;
  font-size: 18px;
  background-color: #0066ff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.submitBtn:hover {
  background-color: #0066ffc0;
}

/* Highlights */
.first-home-sec {
  z-index: 99;
  padding: 10px;
  width: 100%;
}

.first-home-one {
  padding: 10px;
  /* background: linear-gradient(122deg, #0000ffad, orange); */
  /* background-color: rgb(210, 209, 209);  */
  border-radius: 16px;
  height: 50%;
}

.first-home-one > h2 {
  text-align: center;
  margin-top: 30px;
  /* font-weight: bolder; */
  font-size: 30px;
}

/* card */

.scroll-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.488);
  color: white;
  border: none;
  font-size: 24px;
  /* padding: 10px 15px; */
  height: 50px;
  width: 50px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.scroll-btn:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.scroll-btn.left {
  left: 5px;
}

.scroll-btn.right {
  right: 5px;
}

.high-lights {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 16px;
  padding: 10px;
  scrollbar-width: thin;
  scrollbar-color: #bcbcbc transparent;
  width: 99%;
}

.high-lights::-webkit-scrollbar {
  height: 6px;
}
.high-lights::-webkit-scrollbar-thumb {
  background: #a3a2a2;
  border-radius: 10px;
}

.property-card {
  flex: 0 0 auto;
  /* flex-shrink: 0; */
}

.property-card {
  width: 300px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); */
  transition: transform 0.3s;
  font-family: "Segoe UI", sans-serif;
  margin: 20px auto;
}

.property-card:hover {
  box-shadow: 9px 9px 20px 0px rgb(0 0 0 / 65%);
  transform: translateY(-10px);
}

.image-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-count {
  position: absolute;
  bottom: 10px;
  right: 12px;
  background: rgb(96 94 94 / 61%);
  color: #fff;
  font-size: 17px;
  padding: 4px 10px;
  border-radius: 20px;
}

.price-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(45deg, #2ecc71, #27ae60);
  color: #fff;
  font-weight: bold;
  font-size: 1em;
  padding: 6px 12px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.property-info {
  padding: 15px 18px;
}

.property-info h2 {
  font-size: 1.3em;
  margin: 0 0 10px;
  color: #333;
}

.property-info p {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 15px;
}

.property-info i {
  color: #2c3e50;
  margin-right: 6px;
}

.button-group {
  display: flex;
  gap: 10px;
}

.btn {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: #fff;
  font-weight: 600;
  transition: background 0.3s;
}

.btn.view {
  background: linear-gradient(45deg, #3498db, #2980b9);
}

.view a {
  color: white;
  text-decoration: none;
}

.btn.call {
  background: linear-gradient(45deg, #f39c12, #e67e22);
}

.btn:hover {
  opacity: 0.9;
}

/* Contact Section */
.contact {
  display: flex;
  flex-wrap: wrap;
  padding: 50px;
  gap: 20px;
  background-color: white;
}

.form1 {
  flex: 1;
  min-width: 300px;
  background-color: #ccd5f1;
  border-radius: 20px;
  padding: 30px;
}

.heading {
  font-size: 36px;
  margin-bottom: 10px;
}

.paragraph {
  font-size: 18px;
  color: #333;
}

.form {
  margin-top: 40px;
}

.name-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.input-box {
  flex: 1;
}

.inputs {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

.labels {
  font-size: 18px;
  margin-bottom: 8px;
  display: block;
}

textarea.inputs {
  height: 120px;
  resize: none;
}

.button {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  font-size: 16px;
  background-color: #458ffd;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.button:hover {
  background-color: #458ffd;
}

/* Info Section */
.form2 {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  margin-top: 15px;
}

.info-card {
  background-color: #ccd5f1;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.info-card:hover {
  background-color: #458ffd;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.2);
}

.icon {
  font-size: 24px;
}

.text h3 {
  margin: 0;
  font-size: 18px;
}

.text p {
  margin: 5px 0 0;
  font-size: 14px;
}

/* Map Section */
.map {
  height: 300px;
  width: 80%;
  max-width: 1100px;
  margin: 40px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

/*about page*/

/* General Reset */

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Hero Section */
.hero {
  background-color: #ffffff;
  padding: 4rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  /* font-size: 2.8rem; */
  color: #0a2d5c;
  margin-bottom: 0.5rem;
}

.hero-text p {
  color: #777;
  font-size: 1.1rem;
}

.hero-image {
  flex: 1;
  max-width: 100%;
  border-radius: 10px;
}

/* Who We Are */
.who-we-are {
  background-color: #0066ffb8;
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.who-we-are h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.who-we-are p {
  max-width: 700px;
  margin: auto;
  font-size: 1.1rem;
}

/* Mission & Vision */
.mission-vision {
  background-color: #ffffff;
  padding: 3rem 0;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  /* justify-content: space-around; */
}

/* .box-v {
  flex: 1;
  min-width: 300px;
} */

.box-v h3 {
  font-size: 1.5rem;
  color: #0a2d5c;
  margin-bottom: 0.5rem;
}

.box-v p {
  color: #555;
}

/* Services */
.services {
  background-color: #f1f5f9;
  padding: 4rem 0;
  text-align: center;
}

.services h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #0a2d5c;
}

.cards {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.service-box {
  background-color: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

/* Values & Stats */

.values-stats {
  background: linear-gradient(to bottom right, #f7f8fc, #e8f0ff);
  padding: 80px 20px;
  text-align: center;
  color: #1a1a1a;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #003366;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.value-card {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.value-card .icon {
  font-size: 30px;
  color: #0066cc;
  margin-bottom: 10px;
}

.value-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: #555;
}

.stats-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 40px;
  font-weight: bold;
  color: #0099cc;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  color: #666;
}

/*footer*/

.footer {
  /* background-color: #333333; */
  background-color: #1e1e1eed;
  color: #ffffff;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.footerBox1 {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  justify-content: space-around;
  gap: 30px;
}

.ftext h2 {
  font-size: 18px;
  margin-bottom: 10px;
  border-bottom: 2px solid #ffffff;
  display: inline-block;
  padding-bottom: 5px;
}

.listContainer {
  list-style: none;
  padding: 0;
}

.listContainer li {
  margin: 8px 0;
}

.listContainer a {
  text-decoration: none;
  color: white;
  transition: color 0.3s ease;
}

.listContainer a:hover {
  color: rgba(255, 255, 255, 0.621);
}

.footerBottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid white;
  margin-top: 30px;
  font-size: 14px;
}

/* login */

/* .loginContainer {
  height: 89vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  overflow: hidden;
  background-color: #4791ff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
} */
.loginContainer {
  /* height: 89vh; */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  overflow: hidden;
  background-color: #4791ff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.Left {
  width: 50%;
  color: white;
  padding: 60px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.Left h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.Left h2 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 400;
}

.Left p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

/* .Right {
  width: 40%;
  height: 80%;
  padding: 60px 40px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: white;
} */

.Right {
  width: 40%;
  height: 80%;
  padding: 25px;
  margin: 25px auto;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: white;
}

/* .Right h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 30px;
} */

.Right h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.input-field {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 25px;
  outline: none;
}

.forgot {
  text-align: right;
  font-size: 15px;
  margin-bottom: 20px;
  color: #4791ff;
  cursor: pointer;
}

.login-btn {
  background: #4791ff;
  color: white;
  padding: 12px;
  border: none;
  width: 100%;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  margin: 20px 0px;
}

.or {
  text-align: center;
  margin: 10px 0;
  font-size: 14px;
  color: #888;
}

.social-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.social-buttons button {
  width: 100px;
  padding: 10px;
  border-radius: 25px;
  border: 1px solid #ccc;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.social-buttons img {
  height: 18px;
  margin-right: 8px;
}

.signup {
  text-align: center;
  font-size: 14px;
}

.signup a {
  color: #4791ff;
  text-decoration: none;
  font-weight: 600;
}

/* listing */

.listing-container {
  margin: auto;
  padding: 30px;
  background-color: #458ffd;
}

.listing-title {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 20px;
}

.listing-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/*images gallery */

/* Grid layout */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* Each slot */
.image-slot {
  background: #fff;
  border: 2px dashed #ccc;
  border-radius: 10px;
  padding: 15px;
  position: relative;
  transition: border 0.3s ease;
}

.image-slot:hover {
  border-color: #007bff;
}

/* Upload Button */
.upload-btn {
  display: inline-block;
  background: #007bff;
  color: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s;
}

.upload-btn:hover {
  background: #0056b3;
}

.upload-btn input {
  display: none;
}

/* Preview Box */
.preview-box {
  margin-top: 12px;
  position: relative;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fafafa;
  border-radius: 8px;
  overflow: hidden;
}

.preview-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
}

/* Image Name */
.image-name {
  margin-top: 8px;
  font-size: 14px;
  color: #444;
}

/* Fullscreen Preview */
.fullscreen-preview {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.fullscreen-preview img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.listing-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.listing-submit-btn {
  padding: 14px 20px;
  background-color: #458ffd;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.listing-submit-btn:hover {
  background-color: #2c77e8;
}

/* Form Container */
.listing-form {
  max-width: 900px;
  margin: auto;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Grid for Form Inputs */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* Form Group Styling */
.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  padding: 10px 14px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: border 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #007bff;
}

/* Full Width Textarea */
.form-group.full-width {
  grid-column: 1 / -1;
}

/* Amenities Grid (Checkboxes) */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  background-color: #f1f1f1;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.checkbox-grid label:hover {
  background-color: #e0e0e0;
}

.checkbox-grid input[type="checkbox"] {
  accent-color: #007bff;
  transform: scale(1.2);
}

/* Servies */
/* Servies */
.second-home-third {
  padding: 10px;
}

.second-home-out {
  padding: 10px 20px;
  background-color: #d2d1d1;
  border-radius: 10px;
}

.second-home-out h2 {
  text-align: center;
  padding: 15px;
}

.second-home-card-out {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.second-home-card {
  height: 350px;
  width: 350px;
  background: whitesmoke;
  padding: 10px;
  border-radius: 10px;
}

.second-home-card-img {
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* gap: 10px; */
}

.second-home-card-img svg {
  height: 80px;
}

.second-home-card-text {
  /* align-items: center; */
  text-align: center;
}

/* Rent / Sell Page */
.card-in {
  border: 1px solid black;
  margin: 25px 10px;
  border-radius: 20px;
  overflow: hidden;
  height: 655px;
}

.card-flex {
  display: flex;
  height: 100%;
}

.card-slider {
  width: 45%;
}

.card-slider img {
  width: 100%;
}

.card-body-details {
  width: 55%;
  padding: 25px;
}

.card-body-details-title {
  margin-bottom: 10px;
}

.card-body-details-text table {
  width: 100%;
}

.card-body-details-text table tr {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-body-details-text table tr td {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
  margin: 10px;
  width: 50%;
}

.table-head {
  margin-bottom: 7px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.amenities {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.amenities-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin: 10px 20px;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.box {
  background-color: #fff;
  margin: 10px;
  padding: 10px;
  /* border: 2px solid black; */
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.box p {
  margin: 0px;
  padding: 10px;
}

.card-desc {
  margin: 10px;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 10px;
  background-color: #dceaf7;
  border-radius: 10px;
}

/* Hight-light */
.row {
  flex-direction: row;
  gap: 10px;
}

/* whatsapp */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 1000;
  cursor: pointer;
}

.whatsapp-svg svg {
  width: 70px;
  background: #da2c99;
  filter: invert(1);
  /* color: wheat; */
  border-radius: 50px;
  cursor: pointer;
}

/* Bootstrap Css Overwrite */
.carousel {
  position: relative;
  height: 100%;
}

.carousel-control-prev {
  left: 0;
  /* z-index: 10; */
  /* display: none; */
}

.carousel-control-next {
  /* z-index: 10; */
  right: 0;
  /* display: none; */
}

.navbar {
  --bs-navbar-padding-x: 0;
  --bs-navbar-padding-y: 0.5rem;
  --bs-navbar-color: rgba(var(--bs-emphasis-color-rgb), 0.65);
  --bs-navbar-hover-color: rgba(var(--bs-emphasis-color-rgb), 0.8);
  --bs-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), 0.3);
  --bs-navbar-active-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-brand-padding-y: 0.3125rem;
  --bs-navbar-brand-margin-end: 1rem;
  --bs-navbar-brand-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-brand-hover-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-nav-link-padding-x: 0.5rem;
  --bs-navbar-toggler-padding-y: 0.25rem;
  --bs-navbar-toggler-padding-x: 0.75rem;
  --bs-navbar-toggler-font-size: 1.25rem;
  --bs-navbar-toggler-icon-bg: url(
    data:image/svg + xml,
    %3csvgxmlns="http://www.w3.org/2000/svg"viewBox="0 0 30 30"%3e%3cpathstroke="rgba%2833, 37, 41, 0.75%29"stroke-linecap="round"stroke-miterlimit="10"stroke-width="2"d="M4 7h22M4 15h22M4 23h22"/%3e%3c/svg%3e
  );
  --bs-navbar-toggler-border-color: rgba(var(--bs-emphasis-color-rgb), 0.15);
  --bs-navbar-toggler-border-radius: var(--bs-border-radius);
  --bs-navbar-toggler-focus-width: 0.25rem;
  --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
  position: relative;
  /* display: flex; */
  /* flex-wrap: wrap; */
  /* align-items: center; */
  /* justify-content: space-between; */
  /* padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x); */
}

.carousel-h {
  position: relative;
  height: 86%;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 100%;
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
  height: 100%;
}

.d-block {
  display: block !important;
  height: 100%;
}

/* Buy-List */
.buy-container {
  text-align: center;
  padding: 10px;
}

.buy-container h2 {
  margin: 15px;
}

.buy-container-inner {
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
}

/*Review page*/

/* Section layout */
#container {
  padding: 15px 10px;
}

.reviews-section {
  padding: 15px 10px;
  text-align: center;
}

.section-title {
  /* font-size: 2rem; */
  color: black;
  margin-bottom: 30px;
  font-weight: 600;
}

/* Container for all cards */
.reviews-container {
  display: flex;
  flex-wrap: wrap; /* ✅ allows wrapping */
  align-items: center;
  justify-content: center;
  gap: 25px;
}

/* Review Card */
.review-card {
  background-color: #004a77;
  color: #fff;
  border-radius: 20px;
  padding: 15px;
  width: 320px;
  min-height: 300px;
  max-height: 300px;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Header part */
.review-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 15px;
  flex-wrap: wrap; /* ✅ ensures it adapts on small screens */
  gap: 10px;
}

/* Profile Image */
.profile-pic {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 3px solid #000000;
  flex-shrink: 0;
  background: white;
}

.profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Name + Date */
.review-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review-name {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.review-date {
  font-size: 0.9rem;
  color: #e3e3e3;
  margin: 2px 0 0;
}

/* Message area */
.review-message {
  background-color: #42799b;
  border-radius: 12px;
  padding: 15px 10px;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: left;
  overflow: hidden;
  overflow-y: auto; /* ✅ adds vertical scrollbar */
  scrollbar-width: thin; /* for Firefox */
  scrollbar-color: #ffffff #007bff; /* thumb and track color */
  border-radius: 10px;
  /* flex-grow: 1; 
  word-wrap: break-word;  */
}

/* Optional — for Chrome, Edge, Safari */
.review-message::-webkit-scrollbar {
  width: 6px;
}
.review-message::-webkit-scrollbar-thumb {
  background-color: #ffffff;
  border-radius: 4px;
}
.review-message::-webkit-scrollbar-track {
  background-color: #007bff;
}

/*toastify*/
/* Custom Toast Styles */
.gsap-toast {
  margin: auto;
  padding: 10px 35px;
  text-align: center;
  border-radius: 8px;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  z-index: 9999;
}

.gsap-toast .toast-close {
  position: absolute;
  top: 9px;
  right: 12px;
  font-size: 18px;
  font-weight: bold;
  color: white;
  background: transparent;
  border: none;
  cursor: pointer;
  opacity: 0.9;
  transition: 0.2s;
}

.gsap-toast .toast-close:hover {
  transform: scale(1.2);
  opacity: 1;
}
