/* General Reset  */
body,
html {
  margin: 0;
  padding: 0;
  font-family: 'Times New Roman', Times, serif;
  background-color: #f5f5f5;
}

.dropdown option {
  color: black;
  font-family: 'Times New Roman', Times, serif;
  font-size: 18px;
}

/* Search Section */
.search-section {
  background-image: url("/real-estate-project/Frontend/static/images/bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 50px;
  margin-left: 50px;
  margin-top: 10px;
  height: 300px;
  width: 90%;
}

.search {
  height: 160px;
  width: 70%;
  background-color: white;
  border: 1px solid white;
  box-shadow: 0 2px 5px rgba(9, 9, 9, 0.917);
  margin-left: 160px;
  margin-top: 140px;
  border-radius: 20px;
}

.search-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  margin-top: 40px;

  display: flex;
  align-items: center;
}

.tab-btn {
  padding: 10px 15px;
  background-color: #fff;
  border: none;
  border-radius: 20px;
  color: black;
  font-weight: bold;
  cursor: pointer;
}

.tab-btn:hover {
  background-color: #f0f0f0;
}

.tab-btn.active {
  background-color: red;
  color: white;
  border-color: red;
}

.search-bar-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.search-bar {
  width: 40%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
}

.dropdown {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fff;
  font-size: 14px;
}

.icon-btn {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  cursor: pointer;
}

.search-btn {
  padding: 10px 20px;
  background-color: red;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.search-btn:hover {
  background-color: rgb(247, 98, 98);
}


.explore-options {
  margin-top: 80px;
  text-align: center;
  padding: 20px;
  background-color: white;
}

.explore-options a {
  text-decoration: none;
}

.explore-options h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

.options-grid {
  display: flex;
  flex-wrap: wrap; /* Allows wrapping on smaller screens */
  justify-content: center; /* Centers items horizontally */
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.option {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
  background-size: cover;
  object-fit: contain;
  height: 150px;
  width: 150px;
}


.option img {
  margin-top: 10px;
  width: 50%;
  height: 50%;
  object-fit: cover;
  /* Crops the image to fill the div */
  border-radius: 8px;
  /* Optional: Rounded corners */
}


.option p {
  font-size: 16px;
  font-weight: bolder;
  color: black;
  margin-top: 20px;
}

.option:hover {
  transform: scale(1.10);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Section Styling */
.why-choose-us {
  text-align: center;
  padding: 40px 20px;
  background-color: white;
  margin-top: 10px;
}

.why-choose-us h2 {
  font-size: 28px;
  font-weight: bolder;
  margin-bottom: 10px;
  color: black;
}

.why-choose-us .subtitle {
  font-size: 18px;
  color: black;
  margin-bottom: 30px;
}

/* Benefits Container */
.benefits-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual Benefit Item */
.benefit {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.benefit img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.benefit h3 {
  font-size: 18px;
  color: black;
  margin-bottom: 10px;
}

.benefit p {
  font-size: 14px;
  /* color: rgb(56, 88, 103); */
  color: black;
}

/*explore property*/
.explore-section {
  text-align: center;
  padding: 20px;
  background-color: white;
}

.explore-section h2 {
  margin-bottom: 10px;
  font-size: 24px;
  color: #333;
  text-align: center;
  margin-left: 10px;
}

.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.tab {
  padding: 10px 20px;
  margin: 0 5px;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.tab.active {
  background-color: #f5f5f5;
  font-weight: bold;
}

.content {
  display: none;
}

.content.active {
  display: flex;
  /* Flexbox for horizontal alignment */
  gap: 20px;
  /* Space between cards */
  justify-content: space-between;
  /* Even spacing between cards */
  flex-wrap: wrap;
  /* Ensure wrapping for smaller screens */
}

.card {
  background-color: #fff;
  width: 300px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  text-align: center;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 10px;
  margin-left: 20px;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.card p {
  font-size: 14px;
  margin-bottom: 15px;
  color: #666;
}

.card a {
  text-decoration: none;
  color: #007bff;
  font-weight: bold;
}

.card a:hover {
  text-decoration: underline;
}

.explore-section .content {
  display: none;
}

.explore-section .content.active {

  display: flex;
  /* Flexbox for horizontal alignment */
  gap: 20px;
  /* Space between cards */
  justify-content: space-evenly;
  /* Even spacing between cards */
  flex-wrap: wrap;
  /* Ensure wrapping for smaller screens */
}

.tab.active {
  font-weight: bold;
  border-bottom: 2px solid #007BFF;
}

/* Section Styling */
.magic-home {
  text-align: center;
  padding: 20px;
  background-color: #eafcff;
  border-radius: 10px;
  max-width: 900px;
  margin: 50px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.new-launch {
  background-color: #ffe08a;
  color: #444;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 0px;
}

.title {
  font-size: 28px;
  color: #ff5e5e;
  margin: 10px 0;
}

.title span {
  color: #000;
}

.subtitle {
  font-size: 18px;
  color: black;
  font-weight: bold;
  font-family: sans-serif;
  margin-bottom: 20px;
}

.features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.feature {
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
  width: 250px;
  height: 80px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin: 10px;
  display: flex;
  flex-direction: column;
  /* Arrange the icon and text vertically */
  align-items: center;
  /* Center items horizontally */
  justify-content: center;
  /* Center items vertically */
  text-align: center;
  /* Center the paragraph text */
  width: 30%;
  /* Adjust width of each feature as needed */
  padding: 20px;
  font-family: sans-serif;
  font-size: 15px;
}

#one {
  background-color: #cbeff6;
}

#two {
  background-color: rgb(245, 215, 220);
}

#three {
  background-color: rgb(242, 225, 193);
}

.feature p {
  margin-bottom: 10px;
  font-size: 14px;
  color: black;
  float: calc();
}

.icon {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  background-size: contain;
  background-repeat: no-repeat;
}

.folder {
  background-image: url('folder-icon.png');
  /* Replace with actual folder iconURL */
}

.report {
  background-image: url('report-icon.png');
  /* Replace with actual report icon URL */
}

.advice {
  background-image: url('advice-icon.png');
  /* Replace with actual advice icon URL */
}

.view-projects {
  background-color: #ff5e5e;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.view-projects:hover {
  background-color: #e04d4d;
}

/* Button Styling */
.btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px;
  background: red;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn:hover {
  background: rgb(247, 98, 98);
}

.section {
  text-align: center;
  padding: 30px;
  background-color: white;
}

.section h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.cities-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  padding: 0 20px;
  max-width: 800px;
  margin: 0 auto;
}

.city-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

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

.city-card:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.city-card h3 {
  font-size: 18px;
  margin: 10px 0;
}

.city-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.whatsapp-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 10px;
  z-index: 1000;
}

.whatsapp-logo {
  background-color: #25d366;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-logo img {
  width: 30px;
  height: 30px;
}

.whatsapp-message-box {
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 10px 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 250px;
  text-align: center;
}

.whatsapp-message-box p {
  margin: 0;
  font-size: 14px;
  color: #333;
}

.whatsapp-message-box a {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  color: white;
  background-color: #25d366;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
}

.whatsapp-message-box a:hover {
  background-color: #1ebe57;
} */
/* General Reset */
body,
html {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #e9e4e4;
}

/* Global Styles */
body {
  background-color: #f5f5f5;
  font-family: 'Arial', sans-serif;
}

h1, h2, h3 {
  color: #333;
  font-weight: bold;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Search Section */
.search-section {
  background-image: url("/real-estate-project/Frontend/static/images/bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 80px;
  margin-top: 10px;
  height: 400px;
  width: 100%;
  position: relative;
  text-align: center;
  color: white;
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5); /* Dark overlay */
}

.search-section h2 {
  font-size: 40px;
  color: white;
  margin-bottom: 20px;
}

.search {
  height: 60px;
  width: 70%;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.tab-btn {
  padding: 10px 20px;
  background-color: #fff;
  border: none;
  border-radius: 25px;
  color: black;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.tab-btn:hover {
  background-color: #f0f0f0;
}

.tab-btn.active {
  background-color: #ff5e5e;
  color: white;
  border-color: #ff5e5e;
}

.search-bar-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.search-bar {
  width: 40%;
  padding: 15px;
  border-radius: 30px;
  border: 1px solid #ddd;
  font-size: 16px;
  color: #333;
}

.dropdown {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 30px;
  background-color: #fff;
  font-size: 14px;
}

.icon-btn {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  cursor: pointer;
}

.search-btn {
  padding: 10px 20px;
  background-color: #ff5e5e;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.search-btn:hover {
  background-color: #e04d4d;
}

/* Explore Options */
.explore-options {
  text-align: center;
  padding: 40px;
  background-color: #ffffff;
}

.explore-options h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.options-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.option {
  text-decoration: none;
  text-align: center;
  background-color: #e90d0d; /* Slightly lighter than background */
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

/* Image Styling */
.option img {
  width: 60px; /* Adjust size */
  height: 60px;
}

/* Text Styling */
.option p {
  color: rgb(12, 11, 11);
  font-size: 10px;
  font-weight: bold;
  margin-top: 10px;
}

/* Hover Effects */
.option:hover {
  background-color: #f0eaea; /* Netflix Red */
  transform: scale(1.1);
  box-shadow: 0px 0px 15px rgba(229, 9, 20, 0.6);
}


/* Why Choose Us Section */
.why-choose-us {
  text-align: center;
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.why-choose-us h2 {
  font-size: 36px;
  font-weight: bolder;
  margin-bottom: 10px;
  color: #333;
}

.why-choose-us .subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}

/* Benefits Section */
.benefits-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit {
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.benefit img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.benefit h3 {
  font-size: 20px;
  color: #333;
}

.benefit p {
  font-size: 14px;
  color: #666;
}

/* Explore Property */
.explore-section {
  text-align: center;
  padding: 40px;
  background-color: #ffffff;
}

.explore-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.tab {
  padding: 10px 20px;
  margin: 0 5px;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.tab.active {
  background-color: #f5f5f5;
  font-weight: bold;
  border-bottom: 3px solid #ff5e5e;
}

.content {
  display: none;
}

.content.active {
  display: flex;
  gap: 20px;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.card {
  background-color: #fff;
  width: 300px;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 30px;
  transition: box-shadow 0.3s ease;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.card h3 {
  font-size: 20px;
  color: #333;
  margin-top: 15px;
}

.card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.card a {
  color: #ff5e5e;
  font-weight: bold;
}

.card a:hover {
  text-decoration: underline;
}

/* Magic Home Section */
.magic-home {
  text-align: center;
  padding: 40px;
  background-color: #eafcff;
  border-radius: 12px;
  max-width: 900px;
  margin: 40px auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.magic-home .title {
  font-size: 32px;
  color: #ff5e5e;
  margin: 10px 0;
}

.magic-home .subtitle {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.features {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
  gap: 30px;
}

.feature {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 30%;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.feature p {
  font-size: 14px;
  color: #333;
}

.icon {
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 15px;
}

/* WhatsApp Container */
.whatsapp-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 10px;
  z-index: 1000;
}

.whatsapp-logo {
  background-color: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0)
}
/* Netflix Background Animation */
@keyframes bgFade {
  0% { background: #141414; }
  50% { background: #1a1a1a; }
  100% { background: #141414; }
}

body {
  background: #141414;
  animation: bgFade 5s infinite alternate ease-in-out;
  color: white;
  font-family: Arial, sans-serif;
}

/* Netflix Button Glow */
.button {
  background: #E50914;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(229, 9, 20, 0.5);
}

.button:hover {
  background: #ff0a16;
  box-shadow: 0 0 20px rgba(229, 9, 20, 0.8);
}

/* Text Fade-In Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

h1, p {
  animation: fadeIn 2s ease-in-out;
}

/* Netflix Logo Flicker Effect */
@keyframes flicker {
  0% { opacity: 1; }
  50% { opacity: 0.8; }
  100% { opacity: 1; }
}

.logo {
  color: #E50914;
  font-size: 32px;
  font-weight: bold;
  animation: flicker 1.5s infinite alternate ease-in-out;
}
/* Background Animation */
@keyframes bgFade {
  0% { background: #141414; }
  50% { background: #1a1a1a; }
  100% { background: #141414; }
}

body {
  background: #141414;
  animation: bgFade 5s infinite alternate ease-in-out;
  color: white;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Explore Options Section */
.explore-options {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
  transition: 0.3s;
}

/* Option Grid */
.options-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.option {
  background: #222;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  width: 160px;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
  transition: 0.3s;
}

.option:hover {
  background: #e50914;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
}

.option img {
  width: 64px;
  height: 64px;
  margin-bottom: 10px;
}

/* Section Titles */
h2 {
  color: #E50914;
  font-size: 28px;
  margin-bottom: 20px;
}

/* Why Choose Us Section */
.why-choose-us {
  background: linear-gradient(135deg, #202020, #111);
  padding: 40px 20px;
  text-align: center;
  border-radius: 10px;
}

.benefits-container {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.benefit {
  background: #222;
  padding: 20px;
  border-radius: 8px;
  width: 220px;
  text-align: center;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
  transition: 0.3s;
}

.benefit:hover {
  transform: scale(1.05);
  background: #e50914;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
}

.benefit img {
  width: 50px;
  margin-bottom: 10px;
}

/* Explore Section */
.explore-section {
  padding: 40px 20px;
  text-align: center;
  background: #111;
  border-radius: 10px;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.tab {
  background: #222;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.tab:hover,
.tab.active {
  background: #e50914;
  color: white;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}

.card {
  background: #222;
  padding: 20px;
  border-radius: 8px;
  margin: 10px auto;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
  transition: 0.3s;
}

.card:hover {
  transform: scale(1.05);
  background: #e50914;
}

/* City Cards */
.city-card {
  background: #222;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
  transition: 0.3s;
}

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

/* ================= WHATSAPP CONTACT ================= */
.whatsapp-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
}
.whatsapp-logo img {
  width: 60px;
  transition: transform 0.3s ease-in-out;
}
.whatsapp-logo img:hover {
  transform: scale(1.2);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

/* ================= RESPONSIVE ================= */
@media screen and (max-width: 768px) {
  .tabs {
      flex-direction: column;
      align-items: center;
  }
  .content {
      flex-direction: column;
      align-items: center;
  }
  .card, .city-card {
      width: 90%;
  }
  .benefits-container {
      flex-direction: column;
      align-items: center;
  }
  .nav-links {
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px;
  }
  .navbar {
      padding: 15px 20px;
  }
}
