/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
}

/* Container */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Header */
.header {
  background-color: #ffffff;
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #007bff;
}

/* Navigation */
.navbar {
  display: flex;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #007bff;
}

/* Auth links */
.nav-links .auth a {
  color: #007bff;
  font-weight: bold;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #333;
  border-radius: 3px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    justify-content: left;
    align-items: flex-start;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 20px;
    width: 200px;
    padding: 15px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

.hero-section {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0,0,0,0.3)),
              url('https://images.unsplash.com/photo-1580587771525-78b9dba3b914?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  padding: 75px 20px;
  color: white;
}

.hero-content {
    display: flex;
    flex-direction: column;
  text-align: center;
  max-width: 1000px;
  margin: auto;
}

/* Text on top */
.hero-text h1 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Filter Form Layout */
.filter-form {
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: 12px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
  align-items: center;
}

/* Form Elements */
.filter-form input,
.filter-form select {
  padding: 10px;
  font-size: 0.95rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* Plot range container */
.plot-range {
  display: flex;
  gap: 10px;
  grid-column: span 2;
}

.plot-range input {
  flex: 1;
}

/* Button */
.filter-form button {
  grid-column: span 2;
  padding: 12px;
  font-size: 1rem;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.filter-form button:hover {
  background-color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .plot-range {
    flex-direction: column;
    grid-column: span 1;
  }

  .filter-form button {
    grid-column: span 1;
  }
}

/* Featured Properties Section */
.featured-properties {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* Property Card */
.property-card {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.property-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.property-info {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.property-info h3 {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 8px;
}

.property-info p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 5px;
}

.property-info .desc {
  margin: 10px 0;
  font-size: 0.85rem;
  color: #666;
  flex-grow: 1;
  overflow: hidden;
}

.view-btn {
  display: inline-block;
  margin-top: auto;
  padding: 10px 15px;
  background-color: #007bff;
  color: white;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.view-btn:hover {
  background-color: #0056b3;
}

/* See All Button */
.see-all {
  text-align: center;
  margin-top: 40px;
}

.see-all-btn {
  padding: 12px 24px;
  background-color: #28a745;
  color: white;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.see-all-btn:hover {
  background-color: #218838;
}

/* Responsive Grid */
@media (min-width: 1200px) {
  .properties-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .properties-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .properties-grid {
    grid-template-columns: 1fr;
  }
}

/* listing end  */

/* Trust Section */
.ln-trust-section {
  background-color: #fff;
  padding: 60px 20px;
  border-top: 1px solid #eee;
}

.ln-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.ln-section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}

.ln-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.ln-trust-card {
  padding: 30px 20px;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  background-color: #fefefe;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ln-trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.ln-trust-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.ln-trust-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #007bff;
}

.ln-trust-card p {
  font-size: 0.95rem;
  color: #555;
}

/* CTA Section */
.ln1-cta-section {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.ln1-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ln1-cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.ln1-cta-content p {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

.ln1-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.ln1-btn {
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.ln1-btn-primary {
  background-color: #fff;
  color: #007bff;
  font-weight: 600;
}

.ln1-btn-primary:hover {
  background-color: #f2f2f2;
}

.ln1-btn-outline {
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
}

.ln1-btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* testimonial start  */

.ln2-testimonials {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.ln2-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ln2-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}

.ln2-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.ln2-testimonial-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.ln2-testimonial-card:hover {
  transform: translateY(-5px);
}

.ln2-quote {
  font-style: italic;
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
}

.ln2-client {
  font-weight: bold;
  color: #007bff;
  font-size: 0.95rem;
}



/* ln6 Login/Register Styling */
body.ln6-body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f1f5f9;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.ln6-container {
  width: 100%;
  max-width: 400px;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.ln6-form-box {
  display: flex;
  flex-direction: column;
}

.ln6-toggle {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.ln6-toggle button {
  flex: 1;
  padding: 10px;
  border: none;
  background: #e2e8f0;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.ln6-toggle .ln6-active {
  background: #007bff;
  color: white;
  border-radius: 6px;
}

.ln6-form {
  display: flex;
  flex-direction: column;
}

.ln6-form input {
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.ln6-form button {
  padding: 12px;
  background: #007bff;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
}

.ln6-form button:hover {
  background: #0056b3;
}

.ln6-form .ln6-title {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
  font-size: 1.4rem;
}

.ln6-alt {
  font-size: 0.9rem;
  text-align: center;
  margin-top: 12px;
  color: #666;
}

.ln6-alt span {
  color: #007bff;
  cursor: pointer;
  font-weight: 600;
}

.ln6-hidden {
  display: none;
}

/* Responsive */
@media (max-width: 500px) {
  .ln6-container {
    padding: 30px 20px;
  }
}

