/* === General Reset === */
* {
  margin: 0;
  padding: 0;
}

/* === Body === */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f5f5;
  padding: 0 !important;
  margin: 0 !important;
  color: #333;
  padding-top: 100px; /* Prevent content under fixed header */
}

/* === Headings === */
h1, h2, h3 {
  color: #1a1a1a;
  margin-bottom: 15px;
}

/* === Container === */
.container {
  width: 100%;
  max-width: 1900px !important;
  margin: 0 auto;
  /* padding: 20px; */
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

/* === Hero Section === */
.hero {
  background-color: #121C59;
  color: #fff;
  text-align: center;
  margin-top: 10px !important;
  padding: 80px 20px;
}
.hero h1 {
  font-size: 2.8em;
  margin-bottom: 15px;
}
.hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

/* === Buttons === */
button,
.btn-primary {
  padding: 12px 20px;
  background: #ffc107;
  color: #000;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  
}
button:hover,
.btn-primary:hover {
  background: #e0a800;
  text-decoration: none;
  color: #fbfbfb;
}

/* === Links === */
a {
  color: #007bff;
  text-decoration: none;
}
a:hover {
  text-decoration: none !important;
  color: #fbfbfb;
}

/* === Forms === */
form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* === Utilities === */
.text-center {
  text-align: center;
}
.text-white {
  color: #fff;
}
.bg-dark {
  background-color: #121C59;
}
.mt-4 {
  margin-top: 1.5rem;
}

/* === Header Styling (Fixed) === */
header {
  background-color: #121C59 !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 30px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.8em;
  font-weight: bold;
  color: #ffc107;
}
.navbar a {
  color: #ffc107;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
  transition: color 0.3s ease;
}
.navbar a:hover {
  color: #fff;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2em;
  }

  .container {
    padding: 20px;
  }

  button, .btn-primary {
    width: 100%;
  }

  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar {
    margin-top: 10px;
  }

  .navbar a {
    display: block;
    margin: 8px 0;
  }
}

/* === Section Wrapper === */
.section {
  padding: 30px 20px !important;
  background: #f9f9f9;
}
.section-title {
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
  color: #121C59;
}

/* === Featured Plots Grid === */
.plots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns large screen */
  gap: 25px;
  margin-top: 30px;
}

@media (max-width: 1024px) {
  .plots-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns medium screen */
  }
}

@media (max-width: 768px) {
  .plots-grid {
    grid-template-columns: 1fr; /* 1 column mobile */
  }
   .plot-card img {
    height: 180px;
  }
}

/* Rest of your CSS remains unchanged */
.plot-card {
background: #fff;
border: 1px solid #ddd;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
will-change: transform;
transform-style: preserve-3d;
padding: 30px;
}

.plot-card img {
width: 100%;
height: 280px;
object-fit: cover;
border: 3px solid #121C59;
border-radius: 8px;
background-color: #f0f0f0;
transition: border 0.3s ease;
}

.plot-card:hover {
background-color: #121C59;
color: #ffffff;
}

.plot-card:hover img {
border-color: #ffffff;
}

.plot-info {
padding: 15px;
text-align: center;
min-height: 120px;
transition: color 0.3s ease;
}

.plot-info h3,
.plot-info p {
margin: 4px 0;
color: #222;
transition: color 0.3s ease;
}

.plot-card:hover .plot-info h3,
.plot-card:hover .plot-info p {
color: #ffffff;
}

.plot-info .btn-primary {
  margin-top: 10px;
  display: inline-block;
}




/* === Testimonials Section === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.testimonial-card {
  background: #121C59;
  color: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-style: italic;
}
.testimonial-card span {
  display: block;
  margin-top: 12px;
  font-weight: bold;
  color: #ffc107;
}

/* === Gallery Section === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 25px;
}
.gallery-grid img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
}

/* === News & Offers Section === */
.news-list {
  list-style: none;
  padding-left: 0;
  max-width: 900px;
  margin: 25px auto 0;
}
.news-list li {
  background: #fffbe6;
  border-left: 5px solid #ffc107;
  padding: 12px 16px;
  margin-bottom: 12px;
}
.news-list li strong {
  color: #c0392b;
}

/* === Section Mobile Grid Tweaks === */
@media (max-width: 600px) {
  .plots-grid,
  .testimonials-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
