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

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #222222;
}

/* Hero Section */
.hero {
  background: url('images/realestate-hero.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 160px 20px;
  position: relative;
}

/* Navigation Bar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 34, 68, 0.85); /* Navy with opacity */
  padding: 10px 20px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #cba135; /* Gold */
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #cba135; /* Gold hover */
}

/* Hero Content */
.hero-content h2 {
  font-size: 48px;
  margin-bottom: 10px;
  color: #fff;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

/* Primary Button */
.btn {
  background: #cba135;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
}

.btn:hover {
  background: #b5892f;
}

/* Section Styles */
.section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* Property Cards */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background: #f5f5f5;
  border: 1px solid #ddd;
  width: 300px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

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

.card-info {
  padding: 15px;
}

/* Small Button */
.btn-sm {
  display: inline-block;
  margin-top: 10px;
  background: #002244; /* Navy */
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
}

.btn-sm:hover {
  background: #00172e;
}

/* Alternate Background */
.light {
  background: #f5f5f5;
}

/* Features Section */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  text-align: left;
  margin-top: 30px;
}

.feature {
  background: white;
  padding: 20px;
  border-left: 5px solid #cba135;
}

/* Visit Booking Form */
.visit-form {
  max-width: 400px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.visit-form input, 
.visit-form select {
  padding: 10px;
  border: 1px solid #ccc;
}

.visit-form button {
  padding: 10px;
  background: #002244;
  color: white;
  border: none;
  cursor: pointer;
}

.visit-form button:hover {
  background: #00172e;
}

/* Footer */
.footer {
  background: #002244;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cards {
    flex-direction: column;
    align-items: center;
  }

  .navbar ul {
    flex-direction: column;
    background-color: #002244cc;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    display: none;
  }

  .navbar:hover ul {
    display: flex;
  }
}






/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #f5f5f5; /* Changed from white to soft gray */
  color: #222222;
}

/* Navbar */
.navbar {
  background: #ffffff; /* Clean white navbar */
  padding: 20px;
  border-bottom: 1px solid #ddd;
}

/* Section Backgrounds */
section {
  padding: 60px 20px;
}

#hero {
  background: #ffffff; /* White hero section */
}

#properties {
  background: #f0f0f0; /* Light gray background */
}

#about {
  background: #ffffff;
}

#site-visit {
  background: #f0f0f0;
}

#contact {
  background: #ffffff;
}


/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f5f5;
  color: #222;
}

/* Navbar */
.navbar {
  background-color: #003366; /* Deep blue */
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  color: white;
  font-size: 24px;
}

/* Navigat



/* Footer Section */
.footer {
  background-color: #003366; /* deep blue */
  color: #ffffff;
  text-align: center;
  padding: 40px 20px;
  margin-top: 60px;
}

.footer h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.footer p {
  font-size: 16px;
  margin: 5px 0;
}

@media (max-width: 768px) {
  .footer {
    padding: 30px 10px;
  }

  .footer h2 {
    font-size: 20px;
  }

  .footer p {
    font-size: 14px;
  }
}




.footer {
  background-color: #003366;
  color: #ffffff;
  text-align: center;
  padding: 20px 10px;
  font-size: 14px;
}
