/* Global Styles */
html {
  font-size: 16px; /* 1rem = 16px */
}

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 4rem;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position:relative;
  top: 0;
  z-index: 1000;
}
/* Left & Right Columns (50% each) */
.header-left,
.header-right {
  width: 50%;
  border: 1px dashed red; /* for debug */
}
.logo img {
  height: 3.125rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
}

.nav-right input {
  padding: 0.375rem 0.75rem;
  border-radius: 1.25rem;
  border: 1px solid #ccc;
}

.contact-btn {
  padding: 0.625rem 1.125rem;
  border-radius: 1.25rem;
  border: none;
  background: #000;
  color: white;
  cursor: pointer;
}

/* Hero */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5rem 4rem;
  background: linear-gradient(to right, #94cfff, #b3b3ff);
  flex-wrap: wrap;
}

.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 4rem;
  margin-bottom: 0.625rem;
}

.hero-text p {
  margin-bottom: 1.25rem;
}

.cta {
  display: flex;
  gap: 0.625rem;
}

.cta input {
  padding: 0.625rem;
  border-radius: 0.375rem;
  border: 1px solid #ccc;
  width: 12.5rem;
}

.cta button {
  background: #000;
  color: #fff;
  border: none;
  padding: 0.625rem 1.25rem;
  border-radius: 0.375rem;
  cursor: pointer;
}

.hero-image img {
  height: 20.875rem;
}
/* about */
.about-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: nowrap;
  padding: 4rem 2rem;
}

.about-text {
  flex: 1;
}

.about-img {
  flex: 1;
  max-width: 400px; /* adjust as needed */
  max-height: 350px; /* limits height */
  overflow: hidden;
  border-radius: 1rem;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

.stats {
  display: flex;
  gap: 2rem;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 1rem 0;
}

.button-group {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.btn {
  padding: 0.8rem 1.5rem;
  border-radius: 0.5rem;
  color: white;
  font-weight: bold;
  text-decoration: none;
}

.btn.whatsapp {
  background-color: #25D366;
}

.btn.services {
  background-color: #000;
}
@media (max-width: 992px) {
  .about-content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-text, .about-img {
    width: 100%;
  }

  .stats {
    justify-content: center;
  }

  .button-group {
    justify-content: center;
    flex-wrap: wrap;
  }
}


/* Properties */
.properties {
  padding: 4rem;
  background: #f8f8f8;
}

.properties h2 {
  text-align: center;
  margin-bottom: 1.875rem;
  font-size: 2rem;
}

.property-list {
  display: flex;
  justify-content: center;
  gap: 1.25rem;

}
.property-card {
  min-width: 250px;
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  flex-shrink: 0;
}


.property-card img {
  width: 100%;
  border-radius: 0.625rem;
  margin-bottom: 0.625rem;
}

.knowmore {
  margin: 2rem auto 0;
  display: block;
  padding: 0.625rem 1.25rem;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
}

/* Developers */
.developers {
  padding: 4rem;
  text-align: center;
}

.developer-logos {
  display: flex;
  justify-content: space-evenly; /* Distribute logos evenly */
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin-top: 1.25rem;
}

.developer-logos img {
  height: 4rem;
  object-fit: contain;
  max-width: 100%;
}


/* Contact */
.contact {
  display: flex;
  justify-content: space-between;
  padding: 5rem 4rem;
  background: linear-gradient(to right, #94cfff, #b3b3ff);
  flex-wrap: wrap;
}

.contact-left {
  max-width: 50%;
}

.contact-map img {
  height: 15.625rem;
  border-radius: 0.625rem;
  width: 100%;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
  .developer-logos img {
    height: 3rem;
  }
}

/* Tablets */
@media (max-width: 992px) {
  header {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 2rem;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
  }

  .hero-text,
  .hero-image {
    max-width: 100%;
  }

  .about {
    flex-direction: column;
    padding: 3rem 2rem;
    text-align: center;
  }

  .contact {
    flex-direction: column;
    text-align: center;
  }

  .contact-left,
  .contact-map {
    max-width: 100%;
  }

  .developer-logos {
    gap: 1rem;
  }
}

/* Mobile */
@media (max-width: 576px) {
  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .about-img {
    height: 21.875rem;
    width: 12.5rem;
  }

  /* ✅ Fix: Keep property cards horizontal and scrollable */
  .property-list.scrollable {
    flex-direction: row;
    overflow-x: auto;
    gap: 1rem;
    scroll-snap-type: x mandatory;
    
  }

  .property-card {
    min-width: 250px;
    scroll-snap-align: start;
    flex-shrink: 0;
  }

  .contact-map img {
    height: auto;
  }
  .property-list.scrollable {
  -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
  padding: 1rem 1.5rem; /* ✅ Fix for mobile too */
}

}

/* Hamburger styles */
.nav-toggle {
  display: none;
}

.nav-icon {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  user-select: none;
  padding: 0 1rem;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  header {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem;
  }
@media (max-width: 576px) {
  .scroll-btn.left {
    left: 0.5rem;
  }

  .scroll-btn.right {
    right: 0.5rem;
  }
}

  .nav-icon {
    display: block;
    margin-left: auto;
  }

  nav {
    width: 100%;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 1rem 0;
    background: #fff;
    text-align: left;
    gap: 1rem;
  }

  .nav-toggle:checked + .nav-icon + nav .nav-menu {
    display: flex;
  }

  .nav-right {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
  }

  .nav-right input {
    width: 60%;
  }
}
.map-container {
  position: relative;
  width: 50%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  /* optional rounded corners */
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* Default: hide mobile version on desktop */
.nav-right-mobile {
  display: none;
}

/* Show mobile version only on small screens */
@media (max-width: 768px) {
  .nav-right {
    display: none; /* hide desktop version */
  }

  .nav-right-mobile {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    padding: 0 1rem;
  }

  .nav-right-mobile input {
    padding: 0.5rem 1rem;
    border: 1px solid #ccc;
    border-radius: 2rem;
    width: 100%;
  }

  .nav-right-mobile .contact-btn {
    background: black;
    color: white;
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 2rem;
    cursor: pointer;
    width: 100%;
  }
.hero-image img {
  height: 18rem;
}
.about {
  flex-direction: column;
  padding: 2rem 1rem;
  gap: 2rem;
  text-align: center;
  align-items: center;
}

.about-img {
 height: 18rem;
 width:  18rem;
 }
.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 1.5rem;
  margin-bottom: 0.625rem;
}

.about-text .stats {
  display: flex;
  gap: 2rem;
  margin: 1.25rem 0;
}

.stats div {
  text-align: left;
}

.about.knowmore {
  margin-top: 5%;
  padding: 0.7rem 2rem;
  background: black;
  color: white;
  border: none;
 
  cursor: pointer;
}

.knowmore:hover {
  background: #333;
}

.about-cta .whatsapp {
  background: #25D366;
  color: #fff;
}

}
.properties {
  position: relative;
  padding: 2rem;
  text-align: center;
  background: #f9f9f9;
}

.properties h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

/* Scroll buttons */
.scroll-buttons {
  position: absolute;
  right: 2rem;
  top: 2.5rem;
  display: flex;
  gap: 10px;
}

.scroll-btn {
  background: black;
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  font-size: 1.2rem;
}

.scroll-btn:hover {
  background: #333;
}

/* Scrollable container */

.property-card {
  flex: 0 0 auto;
  width: 250px;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1rem;
}

.property-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}
/* Scroll Wrapper */
.scroll-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 2rem 0;
}

/* Scrollable container */
.property-list.scrollable {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 2rem;

  /* ✅ Hide scrollbar */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.property-list.scrollable::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}


/* Property card */
.property-card {
  min-width: 50px;
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  flex-shrink: 0;
}

/* Scroll Buttons */
.scroll-btn {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 1rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  font-size: 1.5rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.scroll-btn.left {
  left: -2rem;
}

.scroll-btn.right {
  right: -2rem;
}
/*animated css */
/* Fade In Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Slide In Left */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Slide In Right */
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Animate on load */
.animate-fade-in {
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}

.animate-slide-left {
  animation: slideInLeft 1s ease forwards;
  opacity: 0;
}

.animate-slide-right {
  animation: slideInRight 1s ease forwards;
  opacity: 0;
}

/* Delayed animations (optional) */
.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }
.delay-4 { animation-delay: 0.12s; }
.delay-5 {animation-delay:0.15s}
/* Button hover scale 
button:hover,
.contact-btn:hover,
.scroll-btn:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}
/*

/* Image hover effect for trending properties home page */
.property-card img:hover,
.hero-image img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.trending-properties {
  position: relative;
}

.scroll-wrapper {
  position: relative;
}
 /* this is the naigoan buttons scrollable adjustment done */
.scroll-controls {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.scroll-btn {
  background-color: black;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.responsive-map {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
}

.responsive-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* ===== CONTACT SECTION STYLES ===== */
/* ===== CONTACT SECTION STYLES ===== */
.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6rem 1rem;
  background: linear-gradient(to right, #c1dfff, #e3e9ff);
  min-height: 100vh;
  animation: fadeIn 1.2s ease-in-out;
  box-sizing: border-box;
}

.contact-container {
  background-color: #ffffff;
  padding: 3rem;
  max-width: 500px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  animation: slideUp 1s ease;
  box-sizing: border-box;
}

.contact-container h1 {
  font-size: 2.5rem;
  color: #222;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.contact-container p {
  font-size: 1.05rem;
  color: #000000;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.contact-container form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-container form input,
.contact-container form textarea {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  outline: none;
  transition: all 0.3s ease;
  font-family: inherit;
  box-sizing: border-box;
}

.contact-container form input:focus,
.contact-container form textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.2);
}

.contact-container form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-container button {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-container button:hover {
  background-color: #444;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .contact-container {
    padding: 2rem;
  }

  .contact-container h1 {
    font-size: 2rem;
  }

  .contact-container button {
    width: 100%;
  }
}
/* ===== Thank You Popup ===== */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-content {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.4s ease;
}

.popup-content h2 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.popup-content p {
  margin-bottom: 1.2rem;
  color: #555;
}

.popup-content button {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 8px;
  background-color: #000;
  color: #fff;
  cursor: pointer;
}

.popup-content button:hover {
  background-color: #333;
}

.hidden {
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.map-container {
  position: relative;
  width: 50%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px; /* optional rounded corners */
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* Sidebar Sticky Social Panel */
.sidebar {
  position: fixed;
  top: 50%;
  right: 0;
  
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 9999;
  width: 60px; /* Lock width */
  height: auto; /* Allow height to grow with items */
}

.sidebar {
  position: fixed;
  top: 50%;
  right: 0;
  
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 9999;
  width: 60px; /* Lock width */
  height: auto; /* Allow height to grow with items */
}

.sidebar-item {
  width: 60px;
  height: 60px;
  color: rgb(254, 254, 254);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  flex-shrink: 0; /* Prevent shrinking */

}
/* Prevent <a> from changing appearance */
.sidebar a {
  text-decoration: none;
  color: inherit;
  display: block;
}
html, body {
  width: 100%;
  overflow-x: hidden;
}

/* Make the entire a tag act like a sidebar-item */
.sidebar a .sidebar-item {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  border-radius: 25px 0 0 25px;
  margin: 5px 0;
  transition: none;
  cursor: pointer;
}

/* Retain existing background colors */
.sidebar .whatsapp  { background-color: #25D366; }
.sidebar .call      { background-color: #34B7F1; }
.sidebar .facebook  { background-color: #3b5998; }
.sidebar .instagram { background-color: #E1306C; }
.sidebar .youtube   { background-color: #FF0000; }

/* On hover, expand the item */
.sidebar a .sidebar-item:hover {
  width: 180px;
  justify-content: flex-start;
  padding-left: 20px;
}

/* Reveal text on hover */
.sidebar a .sidebar-item:hover span {
  opacity: 1;
  right: 20px;
}

.sidebar-item:hover {
  width: 60px;
  cursor: pointer;
}
.sidebar-item i {
  font-size: 20px;
  z-index: 2;
}

.sidebar-item span {
  position: absolute;
  right: 60px;
  white-space: nowrap;
  padding: 0 15px;
  opacity: 0;
  transition: none;
  font-size: 14px;
  z-index: 1;
}

.sidebar-item:hover {
  width: 180px;
  justify-content: flex-start;
  padding-left: 20px;
}

.sidebar-item:hover span {
  opacity: 1;
  right: 20px;
}
.enquiry-form {
  position: absolute;
  right: 60px;
  top: 0;
  width: 250px;
  background: #7e57c2;
  padding: 7px;
  display: none;
  flex-direction: column;
  gap: 10px;
  border-radius: 8px 0 0 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999; /* ensure it's above background image */
}

.enquiry-form form {
  display: flex;
  flex-direction: column;
}

.enquiry-form input,
.enquiry-form textarea {
  padding: 8px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
}

.enquiry-form textarea {
  resize: vertical;
  height: 60px;
}

.enquiry-form button {
  margin-top: 10px;
  background: white;
  color: #7e57c2;
  padding: 8px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.sidebar-item.enquiry.active .enquiry-form {
  display: flex;
}

/* Individual colors */
.enquiry {
  background-color: #7e57c2;
  border-top-left-radius: 12px;
}

.whatsapp {
  background-color: #25D366;
}

.call {
  background-color: #2ECC71;
}

.facebook {
  background-color: #3b5998;
}

.instagram {
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
}

.youtube {
  background-color: #FF0000;
  border-bottom-left-radius: 12px;
}
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: center;
  }
  .footer-left, .footer-middle, .footer-map {
    text-align: center;
  }
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #ffffff;
  color: #000000;
  padding: 3rem 2rem;
  font-family: 'Segoe UI', sans-serif;
}

.footer-left, .footer-middle, .footer-map {
  flex: 1;
  min-width: 280px;
  margin: 1rem;
}

.footer .logo {
  width: 140px;
  margin-bottom: 1rem;
}

.footer h3, .footer h4 {
  margin-bottom: 0.5rem;
}

.footer p {
  font-size: 0.95rem;
  margin: 0.4rem 0;
}

.social-icons {
  margin-top: 1rem;
}

.social-icons a {
  color: rgb(0, 0, 0);
  margin-right: 15px;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ffcc00;
}

.map-container iframe {
  width: 100%;
  height: 220px;
  border: none;
  border-radius: 10px;
  margin-top: 0.5rem;
}

.footer-bottom {
  width: 100%;
  text-align: center;
  margin-top: 3rem;
  font-size: 0.85rem;
  color: #060606;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
}
/* Wraps both scrollable container and buttons */
.scroll-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

/* Scrollable container */
.property-list.scrollable {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 20px;
  scroll-snap-type: x mandatory;
  scroll-padding: 10px;
  width: 100%;
}

/* Bottom center buttons */
.scroll-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* Buttons */
.scroll-btn {
  background-color: black;
  color: white;
  border: none;
  font-size: 22px;
  padding: 12px 16px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}

.scroll-btn:hover {
  transform: scale(1.1);
}
.whatsapp-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #25D366;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.developer-carousel {
  text-align: center;
  padding: 50px 0;
}
.section-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-slide img {
  max-width: 150px;
  height: auto;
  filter: grayscale(20%);
  transition: transform 0.3s;
}
.swiper-slide img:hover {
  transform: scale(1.05);
  filter: none;
}

.property-card {
  background: #fff;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}
.property-card img {
  max-width: 100%;
  border-radius: 8px;
}
.property-card:hover {
  transform: scale(1.03);
}
.swiper-slide {
  display: flex;
  justify-content: center;
}
.knowmore {
  margin-top: 20px;
  padding: 10px 25px;
  font-size: 1rem;
  cursor: pointer;
}
/* Ensure Swiper container has proper width */
.swiper-container {
  width: 100%;
  padding: 20px 0;
}

/* Fix swiper slide spacing */
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: relative;
  height: auto;
  box-sizing: border-box;
}

/* Card layout inside slide naigaon property card scrollable horizontal */
.property-card {
  width: 100%;
  max-width: 280px;
  background: #fff;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Make sure image fits nicely */
.property-card img {
  width: 100%;
  height: 200px; /* consistent height */
  object-fit: cover;
  border-radius: 10px;
  display: block;
}


/* Responsive rating layout */
.property-card span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  font-weight: 500;
}

.swiper-button-prev,
.swiper-button-next {
  color: #fdfeff; /* or any theme color */
  font-size: 24px;
  top: 50%;
  
}

.swiper-button-prev {
  left: -20px; /* pull slightly outside the container */
}
.swiper-button-next {
  right: -20px;
}
@media (max-width: 600px) {
  .button-group {
    flex-direction: column;
    align-items: center;
  }
}

.button-group {
  display: flex;
  gap: 20px; /* space between buttons */
  margin-top: 20px;
}

.btn {
  padding: 14px 28px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  display: inline-block;
}

.whatsapp {
  background-color: #25D366;
  color: white;
}

.services {
  background-color: #000;
  color: white;
}
.btn {
  padding: 14px 28px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  transition: all 0.3s ease;
}

.whatsapp {
  background-color: #25D366;
  color: white;
}

.whatsapp:hover {
  background-color: #1eb851;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

.services {
  background-color: #fffefe;
  color: white;
}

.services:hover {
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

.testimonial-section {
  padding: 60px 20px;
  background: linear-gradient(to right, #94cfff, #b3b3ff);
}

.testimonial-slider {
  max-width: 1200px;
  margin: auto;
  padding: 20px 0;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  max-width: 350px;
  margin: auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}

.testimonial-card h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: bold;
}

.position {
  color: gray;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.stars {
  color: #ffbf00;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.message {
  font-size: 0.95rem;
  color: #444;
}

/* Swiper Buttons */
.swiper-button-prev,
.swiper-button-next {
  color: white;
}

/* Swiper Pagination Dots */
.swiper-pagination-bullet {
  background: white;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: #ffffff;
  opacity: 1;
}
/* Make all Swiper slides use equal height */
.swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

/* Make each card stretch full height */
.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.testimonial-card .message {
  margin-top: auto;
}
.testimonial-card .message {
  margin-top: auto;
}


.testimonials-heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 700;
  color: #333;
}

.swiper-button-prev,
.swiper-button-next {
  color: black !important; /* Or any color you prefer */
  font-size: 2rem; /* optional: make arrows larger */
}
/* Swiper Pagination Dots */
.swiper-pagination-bullet {
  background: white;
  opacity: 0.5;
}
.swiper-pagination-bullet {
  background: white;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: #ffffff;
  opacity: 1;
}
/* Sidebar toggle button */
.sidebar-toggle {
  position: absolute;
  top: 10px;
  left: -25px;
  width: 25px;
  height: 25px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1001;
  transition: left 0.3s ease;
}

.arrow-icon {
  font-size: 16px;
  transition: transform 0.3s ease;
}

/* Collapsed sidebar */
.sidebar.collapsed {
  right: -140px; /* adjust if needed */
  transition: right 0.3s ease;
}

.sidebar.collapsed .sidebar-toggle {
  left: 100%;
}

.sidebar.collapsed .arrow-icon {
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .sidebar {
    right: 5px; /* Pull it slightly inward */
    width: 50px;
  }

  .sidebar-item {
    width: 50px;
    height: 50px;
  }
}
/* Swiper Global Fixes */
.swiper-container,
.testimonial-slider {
  width: 100%;
  padding: 20px 0;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.developer-logos .swiper-slide img {
  width: 100%;
  max-width: 120px;
  margin: auto;
  display: block;
  transition: transform 0.3s ease;
}

.developer-logos .swiper-slide img:hover {
  transform: scale(1.05);
}

/* Testimonial cards */
.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  max-width: 350px;
  margin: auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}

.testimonial-card .message {
  margin-top: auto;
}

/* Swiper navigation arrows */
.swiper-button-prev,
.swiper-button-next {
  color: black !important;
}

/* Swiper pagination */
.swiper-pagination-bullet {
  background: black !important;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background: black !important;
  opacity: 1;
}
