* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* Visually Hidden */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.logo img {
  height: 40px;
  width: auto;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #f7f5f4;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #ffffff;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  color: #f7f5f4;
  cursor: pointer;
}

.help-button {
  display: inline-block;
  padding: 8px 16px;
  background-color: #4b2fc1;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.help-button:hover {
  background-color: #c0392b;
}

/* === Hero Section === */
.hero {
  position: relative;
  height: 60vh;
  background-image: url('../image/heroimg.png');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.1);
  height: 55vh;
  width: 100%;
  position: relative;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 150px;
  transform: translateY(-50%);
  color: white;
  max-width: 650px;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.4);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  text-align: left;
}

.hero-title {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 20px 0;
  color: #e0dfde;
}

.search-box {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.search-box input {
  padding: 15px 20px;
  font-size: 16px;
  flex: 1;
  min-width: 250px;
  border: none;
  border-radius: 5px 0 0 5px;
  width: 100%;
  outline: none;
}

.search-box button {
  padding: 15px 25px;
  background-color: #e74c3c;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

.search-box button:hover {
  background-color: #c0392b;
}

.suggestions {
  list-style: none;
  padding: 0;
  margin-top: 5px;
  background-color: white;
  border: 1px solid #ccc;
  max-height: 180px;
  overflow-y: auto;
  border-radius: 5px;
  position: absolute;
  z-index: 1001;
  width: 100%;
}

.suggestions li {
  padding: 10px 15px;
  cursor: pointer;
  color: #333;
}

.suggestions li:hover {
  background-color: #f0f0f0;
}

.suggestions:empty {
  display: none;
  border: none;
}


.property-list {
  padding: 60px 150px;
}

.section-header {
  margin-bottom: 30px;
  text-align: left;
}

.section-header h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #111;
}

.section-header p {
  color: #555;
  font-size: 15px;
  max-width: 500px;
  line-height: 1.5;
}

.card-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}

.card-container::-webkit-scrollbar {
  height: 8px;
}
.card-container::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 5px;
}

.card {
  flex: 0 0 calc(25% - 15px); /* 4 cards per row on large screens */
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-info {
  padding: 15px;
}

.card-info h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.card-info p {
  font-size: 14px;
  margin-bottom: 5px;
  color: #444;
}

.card-info span {
  font-size: 13px;
  color: #777;
}

.service-list {
  padding: 60px 150px;
  background-color: #f1f1f1;
}

.service-list .section-header {
  text-align: left;
  margin-bottom: 30px;
}

.service-list .section-header h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.service-list .section-header p {
  color: #555;
  font-size: 14px;
}

.service-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #111;
}

.service-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

.service-btn {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid #111;
  border-radius: 6px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.service-btn:hover {
  background: #111;
  color: #fff;
}

.tour-section {
  padding: 60px 150px;
  background-color: #fff;
}

.tour-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap; /* ensures it stacks on mobile */
}

.tour-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

.tour-content {
  flex: 1;
  min-width: 300px;
}

.tour-content h2 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 700;
}

.tour-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

.tour-btn {
  display: inline-block;
  padding: 12px 20px;
  background-color: #111;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.tour-btn:hover {
  background-color: #333;
}
















.footer {
  background-color: #f9f9f9;
  padding: 40px 20px;
  font-size: 14px;
  color: #444;
  border-top: 1px solid #ddd;
}

.footer p {
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-top {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.footer-categories {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.footer-categories div {
  font-weight: bold;
  cursor: pointer;
  position: relative;
}

.category-toggle::after {
  content: ' ▼';
  font-size: 10px;
}

.category-toggle.active::after {
  content: ' ▲';
  font-size: 10px;
}

.category-content {
  display: none;
  text-align: center;
  margin-top: 15px;
  flex-wrap: wrap;
  gap: 10px;
}

.category-content a {
  display: inline-block;
  margin: 5px 10px;
  color: #0057b3;
  text-decoration: none;
}

.category-content a:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 20px auto;
  max-width: 1000px;
  text-align: center;
}

.footer-links a {
  color: #444;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-company {
  max-width: 1000px;
  margin: 30px auto;
  text-align: center;
}

.footer-apps img {
  height: 40px;
  margin: 10px;
}

.footer-social a img {
  height: 24px;
  margin: 0 10px;
  vertical-align: middle;
}

.footer-social {
  margin-top: 15px;
}








