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

/* Body */
body {
  font-family: 'Segoe UI', sans-serif;
}

/* Header */
.header {
  position: relative;
  height: 500px;
  color: white;
  background: url('real state home.jpg') no-repeat center center/cover;
  overflow: hidden;
}

/* Overlay */
.header .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  animation: fadeIn 3s ease-in-out forwards;
}

/* Container */
.container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  height: 80px;
}

/* Logo */
.logo {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  animation: slideInLeft 1s ease;
}

/* Navbar */
.navbar {
  display: flex;
  gap: 30px;
  transition: max-height 0.3s ease;
}

.navbar a {
  text-decoration: none;
  color: white;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s;
}

.navbar a::after {
  content: '';
  height: 2px;
  width: 0;
  background: white;
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.navbar a:hover::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Content */
.hero-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  max-width: 500px;
  animation: fadeInUp 1s ease-in-out forwards;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

/* Buttons */
.btn {
  padding: 12px 24px;
  border: none;
  text-decoration: none;
  font-size: 1rem;
  margin-right: 15px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #4CAF50;
  color: white;
}

.btn-primary:hover {
  background-color: #3e8e41;
}

.btn-secondary {
  background-color: white;
  color: #333;
}

.btn-secondary:hover {
  background-color: #ddd;
  color: black;
}

/* Mobile nav */
@media (max-width: 768px) {
  .navbar {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.8);
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
  }

  .navbar.active {
    max-height: 300px;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    left: 5%;
    right: 5%;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

/* Animations */
@keyframes slideInLeft {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

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

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




/* About Section - Modern Card Style */
.about-section {
  padding: 60px 10%;
  background-color: #fff;
  text-align: center;
}

.about-title h2 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 10px;
}

.about-title p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.about-card {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  text-align: left;
  transition: transform 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
}

.about-card h3 {
  font-size: 1.4rem;
  color: #4CAF50;
  margin-bottom: 15px;
}

.about-card p {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

/* feature section*/
/* Features Section */
.features-section {
  background-color: #f0f4f7;
  padding: 70px 10%;
  text-align: center;
}

.features-title h2 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 10px;
}

.features-title p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.feature-box {
  background: white;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  text-align: center;
}

.feature-box:hover {
  transform: translateY(-7px);
}

.feature-box img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

.feature-box h3 {
  font-size: 1.3rem;
  color: #4CAF50;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* plot section*/
/* Plot Details Section */
.plot-details-section {
  background: #fff;
  padding: 70px 10%;
  text-align: center;
}

.plot-title h2 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 10px;
}

.plot-title p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

.plot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.plot-card {
  background: #f4f6f9;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.plot-card:hover {
  transform: translateY(-5px);
}

.plot-card h3 {
  font-size: 1.4rem;
  color: #4CAF50;
  margin-bottom: 10px;
}

.plot-card p {
  font-size: 1rem;
  color: #333;
}

.payment-plans {
  margin: 50px auto;
  max-width: 600px;
}

.payment-plans h3 {
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 15px;
}

.payment-plans ul {
  list-style: none;
  padding: 0;
}

.payment-plans li {
  font-size: 1rem;
  color: #444;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.price-table {
  margin-top: 40px;
  overflow-x: auto;
}

.price-table h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #222;
}

.price-table table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th, .price-table td {
  border: 1px solid #ddd;
  padding: 12px 16px;
  font-size: 0.95rem;
}

.price-table th {
  background: #f0f0f0;
  color: #333;
}

.price-table tr:hover {
  background: #f9f9f9;
}

/* blog section */
/* Blog Section */
.blog-section {
  background-color: #eef4f8;
  padding: 70px 10%;
  text-align: center;
}

.blog-title h2 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 10px;
}

.blog-title p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
  text-align: left;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
}

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

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}

.blog-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

.blog-content a {
  text-decoration: none;
  color: #4CAF50;
  font-weight: 500;
  font-size: 0.95rem;
}

/* map section*/
/* Location Section */
.location-section {
  background-color: #f9f9f9;
  padding: 70px 10%;
  text-align: center;
}

.location-title h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #222;
}

.location-title p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
}

.location-map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  margin-bottom: 40px;
}

.nearby-landmarks {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.nearby-landmarks h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #4CAF50;
}

.nearby-landmarks ul {
  list-style: disc;
  padding-left: 20px;
  color: #444;
  line-height: 1.7;
}

/* contact section */
/* Contact Simple Section */
.contact-simple-section {
  background: #f3f6fa;
  padding: 70px 10%;
  text-align: center;
}

.contact-info h2 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 10px;
}

.contact-info p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  font-size: 1rem;
  color: #444;
}

.contact-list li {
  margin: 10px 0;
}

.contact-list a {
  color: #4CAF50;
  text-decoration: none;
}

.contact-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.cta-btn {
  background: #4CAF50;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s;
}

.cta-btn:hover {
  background: #43a047;
}

.cta-btn.outline {
  background: transparent;
  color: #4CAF50;
  border: 2px solid #4CAF50;
}

.cta-btn.outline:hover {
  background: #e8f5e9;
}

/* footer section*/
/* Footer */
.site-footer {
  background: #1d1f27;
  color: #ccc;
  padding: 60px 10% 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  border-bottom: 1px solid #333;
  padding-bottom: 30px;
}

.footer-brand h3 {
  font-size: 1.8rem;
  color: #fff;
}

.footer-brand h3 span {
  color: #4CAF50;
}

.footer-brand p {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #bbb;
}

.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-links ul li a:hover {
  color: #4CAF50;
}

.footer-contact p,
.footer-contact a {
  font-size: 0.95rem;
  color: #bbb;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #4CAF50;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: #777;
}