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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

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

/* Header Styles */
header {
  background-color: #333;
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

header .logo {
  font-size: 28px;
  font-weight: bold;
  color: #ff6600;
}
nav{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

header .nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

header .nav-links a:hover {
  color: #ff6600;
}

/* Hamburger Menu for Mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background-color: #fff;
  margin: 4px 0;
  transition: all 0.3s ease;
}

/* Hero Section Styles */
.hero {
  background: url('assets/hero-bg.jpg') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 150px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  animation: fadeInDown 1s ease;
}

.hero p {
  font-size: 24px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease;
}

.hero form {
  display: flex;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 1;
  animation: fadeIn 1.5s ease;
}

.hero input[type="text"] {
  padding: 12px;
  width: 300px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}

.hero button {
  padding: 12px 24px;
  border: none;
  background-color: #ff6600;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.hero button:hover {
  background-color: #e65c00;
}

/* Properties Section Styles */
.properties {
  padding: 80px 20px;
  text-align: center;
}

.properties h1, .properties h2 {
  font-size: 36px;
  margin-bottom: 40px;
  animation: fadeIn 1s ease;
}

.property-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.property-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.property-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

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

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

.property-card a {
  text-decoration: none;
  color: #ff6600;
  font-weight: bold;
  transition: color 0.3s ease;
}

.property-card a:hover {
  color: #e65c00;
}

/* About Page Styles */
.about {
  padding: 80px 20px;
  text-align: center;
}

.about h1 {
  font-size: 36px;
  margin-bottom: 20px;
  animation: fadeIn 1s ease;
}

.about p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
  color: #666;
}

/* Services Page Styles */
.services {
  padding: 80px 20px;
  text-align: center;
}

.services h1 {
  font-size: 36px;
  margin-bottom: 40px;
  animation: fadeIn 1s ease;
}

.services ul {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.services ul li {
  font-size: 18px;
  margin-bottom: 10px;
  padding: 15px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.services ul li:hover {
  transform: translateX(10px);
}

/* Contact Page Styles */
.contact {
  padding: 80px 20px;
  text-align: center;
}

.contact h1 {
  font-size: 36px;
  margin-bottom: 40px;
  animation: fadeIn 1s ease;
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact form input, .contact form textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.contact form input:focus, .contact form textarea:focus {
  border-color: #ff6600;
  outline: none;
}

.contact form textarea {
  resize: vertical;
  height: 150px;
}

.contact form button {
  padding: 12px 24px;
  border: none;
  background-color: #ff6600;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.contact form button:hover {
  background-color: #e65c00;
}

/* Property Details Page Styles */
.property-details {
  padding: 80px 20px;
  text-align: center;
}

.property-details h1 {
  font-size: 36px;
  margin-bottom: 20px;
  animation: fadeIn 1s ease;
}

.property-details img {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.property-details p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 20px;
  color: #666;
}

.property-details ul {
  list-style: none;
  max-width: 600px;
  margin: 0 auto 20px;
  text-align: left;
}

.property-details ul li {
  font-size: 18px;
  margin-bottom: 10px;
  padding: 15px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.property-details a {
  display: inline-block;
  padding: 12px 24px;
  background-color: #ff6600;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.property-details a:hover {
  background-color: #e65c00;
}

/* Footer Styles */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 80px;
}

footer p {
  margin: 0;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
  header .nav-links {
      display: none;
      flex-direction: column;
      background-color: #333;
      position: absolute;
      top: 60px;
      right: 0;
      width: 100%;
      padding: 20px;
  }

  header .nav-links.active {
      display: flex;
  }

  .menu-toggle {
      display: flex;
  }

  .hero h1 {
      font-size: 36px;
  }

  .hero p {
      font-size: 18px;
  }

  .hero form {
      flex-direction: column;
      align-items: center;
  }

  .hero input[type="text"] {
      width: 100%;
      margin-bottom: 10px;
  }

  .property-list {
      flex-direction: column;
      align-items: center;
  }

  .property-card {
      width: 100%;
  }
}