/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
  padding-top: 70px;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #2c3e50;
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

header h1 {
  font-size: 1.5rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.logo {
  height: 60px;
  margin-right: 1rem;
  vertical-align: middle;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}


/* Mobile Menu Toggle */
#menu-toggle {
  display: none;
  background: none;
  font-size: 2rem;
  border: none;
  color: white;
  cursor: pointer;
}

@media (max-width: 600px) {
  nav ul {
    display: none;
    flex-direction: column;
    background: #34495e;
    padding: 1rem;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
  }

  nav.open ul {
    display: flex;
  }

  #menu-toggle {
    display: block;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Hero Section */
@keyframes fadeZoom {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.hero {
  background: url('https://images.unsplash.com/photo-1570129477492-45c003edd2be') center/cover no-repeat;
  color: white;
  text-align: left;
  padding: 5rem 2rem;
  animation: fadeZoom 6s ease-out;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.btn {
  background: #3498db;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 1rem;
}

/* Property Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1rem;
  padding: 2rem;
}

.property {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  text-align: left;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.property img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Contact Form */
form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

input, textarea, button {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background: #3498db;
  color: white;
  border: none;
  cursor: pointer;
}

button:hover {
  background: #2980b9;
}

/* Footer */
footer {
  background: #ecf0f1;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

.property-listings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.property-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.property-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.property-card h3 {
  margin: 1rem 0 0.5rem;
}

.property-card p {
  color: #555;
  margin-bottom: 1rem;
}

.property-card .btn {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  background: #0078D4;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}

.services {
  padding: 4rem 2rem;
  background: #f9f9f9;
  text-align: left;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.service h3 {
  margin-bottom: 1rem;
  color: #000000;
}

.service p {
  color: #000000;
}

.about {
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  color: #000000;
}

.about h2, .about h3 {
  color: #000000;
  margin-bottom: 1rem;
}

.about p {
  margin-bottom: 2rem;
}

.home-content {
  padding: 2rem;
  text-align: left;
}

.property-card {
  display: inline-block;
  width: 280px;
  margin: 1rem;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.property-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.inline-enquiry {
  background: #eef2f5;
  padding: 2rem;
  text-align: center;
  border-radius: 8px;
  max-width: 700px;
  margin: 2rem auto;
}

.inline-enquiry h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.inline-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.inline-form input {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  flex: 1 1 200px;
}

.inline-form button {
  padding: 0.75rem 1.5rem;
  background: #0078D4;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.success-message {
  margin-top: 1rem;
  color: green;
  font-weight: bold;
  text-align: center;
}
.director-info {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-align: center;
}
.director-info i {
  margin-right: 8px;
  color: #333;
}
.director-info a {
  color: #007BFF;
  text-decoration: none;
}
.director-info a:hover {
  text-decoration: underline;
}


