
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
}

/* Sticky header with shadow */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #2c3e50;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Logo */
.logo img {
  height: 80px;
}

/* Centered nav links */
.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 4rem;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

/* Hover effect */
.nav-links li a:hover {
  color: #e67e22;
}

.cta-button-1 {
  margin-left: auto;
}

.cta-1 {
  background-color: #4CAF50;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  color: white !important;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.cta-1:hover {
  background-color: #d35400;
}

/* Hamburger menu */
.hamburger {
  display: none;
  font-size: 2rem;
  color: #f1f1f1;
  cursor: pointer;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .nav-center,
  .cta-button {
    display: none;
  }

  .nav-links {
    flex-direction: column;
    background-color: #2c3e50;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    padding: 1rem;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .nav-links li a {
    padding: 0.5rem 0;
  }
}

marquee{
    font-size: 20px;
    font-weight: bold;
    animation-duration: 7s;
    color: #ffffff;
    background-color: #001529;
}

.hero {
  background: linear-gradient(to right, #e67e22, #27ae60);
  background-image: url(Pictures/Bg.jpg);
  height: 500px;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.cta-button {
  background-color: #4CAF50;
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #d35400;
  color: #ffffff;
}

.properties {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  text-align: center;
}

.properties h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 2rem;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.property-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.property-card:hover {
  transform: translateY(-5px);
}

.property-card img {
  width: 100%;
  height: 380px;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.property-card h3 {
  font-size: 1.2rem;
  color: #0e2642;
  margin-bottom: 0.5rem;
}

.property-card p {
  font-size: 1rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.property-card .cta {
  background-color: #4CAF50;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.property-card .cta:hover {
  background-color: #d35400;
}

.property-services {
  padding: 4rem 2rem;
  background-color: #fff;
  text-align: center;
}

.property-services h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.property-services .intro {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, opacity 0.6s ease;
  opacity: 0;
  transform: translateY(30px);
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card .icon img{
  height: 100px;
  width: 100px;
}

.service-card h3 {
  font-size: 1.2rem;
  color: #e67e22;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 1rem;
  color: #2c3e50;
  line-height: 1.6;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .property-services {
    padding: 2rem 1rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.95rem;
  }

  .service-card .icon {
    font-size: 1.8rem;
  }
}

.vision-mission {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 4rem 2rem;
  justify-content: center;
  background-color: #f9f9f9;
}

.box {
  background-color: #fff;
  border: 2px solid #e67e22;
  border-radius: 10px;
  padding: 2rem;
  width: 80%;
  max-width: 300px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.box:hover {
  transform: translateY(-5px);
}

.contact-home {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  text-align: center;
}

.contact-home h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.contact-home p {
  color: #555;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.contact-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  text-align: left;
}

.contact-info p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #2c3e50;
}

.social-icons a {
  margin-right: 10px;
  font-size: 1.5rem;
  color: #2c3e50;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #e67e22;
}

.contact-form {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 1rem;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form button {
  background-color: #4CAF50;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #d35400;
}

.popup {
  position: fixed;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #2ecc71;
  color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  display: none;
  z-index: 1000;
  text-align: center;
}

.popup button {
  margin-top: 1rem;
  background-color: white;
  color: #2ecc71;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
    align-items: center;
  }

  .contact-info,
  .contact-form {
    text-align: center;
  }

  .contact-info p {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

.site-footer {
  background-color: #2c3e50;
  color: white;
  padding: 3rem 2rem 1rem;
  font-size: 0.95rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand img {
  width: 120px;
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 250px;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 1rem;
  color: #e67e22;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #4CAF50;
}

.footer-contact p {
  margin-bottom: 0.5rem;
}

.footer-social {
  text-align: center;
  margin-top: 1.5rem;
}

.footer-social a {
  color: white;
  margin: 0 10px;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #4CAF50;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #444;
  padding-top: 1rem;
  font-size: 0.85rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand p,
  .footer-contact p {
    max-width: 100%;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  font-size: 2rem;
  padding: 0.6rem 1rem;
  border-radius: 50px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  /* Removed opacity and transform */
}

.chat-label {
  font-size: 1rem;
  font-weight: bold;
  white-space: nowrap;
}