body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.navbar {
    background-color: #222;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo h1{
  font-size: 22px;
}

.logo img {
    width: 99px;
    filter: invert(50%);
    filter: brightness(100);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    transition: 0.4s;
}

.nav-links li a:hover {
    background-color: #6c6c6cb2;
    border-radius: 5px;
    padding: 12px;
}

/* Responsive for mobile */
@media (max-width: 444px) {
    .nav-links {
        flex-direction: column;
        background-color: #222;
        width: 100%;
        /* position: absolute; */
        top: 60px;
        left: 0;
    }
    .logo{
      flex-direction: column;
    }

    .nav-links.active {
        display: flex;
    }

  
}
@media (max-width:444px) {
  .whatsapp-float{
    right: 0;
    bottom: 88px;
  }
}



/* Hero Section */
.hero {
    background-image: url('/images/residence2.jpg');
    /* You can change the image */
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    padding: 50px;
}

.hero-content {
    margin: auto;
    max-width: 450px;
    height: 50vh;
    background-color: #222222ac;
    /* optional for better readability */
    padding: 20px;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero h1 {
    margin: 25px;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    margin-bottom: 24px;
    margin-top: 14px;
}
.whatsapp-p{
    font-size: large;
    margin-bottom: 44px;
}
.whatsapp-button{
    margin: auto;
    text-align: center;
}


/* Responsive */
@media (max-width: 555px) {
    .nav-links {
        /* display: none; */
        flex-direction: column;
        background-color: #222;
        /* position: absolute; */
        top: 60px;
        left: 0;
        width: 100%;
    }

    .nav-links.active {
        display: flex;
    }

    .hero {
        padding: 30px;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero {
    padding: 3rem 1rem;
    min-height: 50vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .whatsapp-button {
    padding: 0.5rem 0.8rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: green;
  color: white;
  padding: 10px 15px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.whatsapp-button:hover {
  background-color: rgb(2, 255, 2);
}

.whatsapp-button img {
  width: 20px;
  height: 20px;
  filter:contrast(100%);
}

.grid-heading h3{
  text-align: center;
  margin-top: 44px;
  font-size: 33px;
  color: #333;
}

.grid-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.grid-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.text-block {
  padding: 20px;
}

.text-block h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #333;
}

.text-block p {
  font-size: 1rem;
  color: #555;
}

.image-block img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Reverse layout for second row */
.grid-row.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.grid-row.reverse .text-block,
.grid-row.reverse .image-block {
  direction: ltr;
}

/* Responsive design */
@media (max-width: 768px) {
  .grid-row,
  .grid-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .grid-row.reverse .text-block,
  .grid-row.reverse .image-block {
    order: 2;
  }
}

.footer {
  background-color: #222;
  color: #ddd;
  padding: 40px 20px 20px;
  font-size: 16px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-info h3 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-info p,
.footer-socials p {
  margin: 8px 0;
}

.footer-info a,
.footer-socials a {
  color: #25D366;
  text-decoration: none;
}

.footer-info a:hover,
.footer-socials a:hover {
  text-decoration: underline;
}

.footer-socials {
  display: flex;
  flex-direction: column;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #444;
  padding-top: 15px;
  font-size: 14px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-socials {
    margin-top: 20px;
  }
}


.social-link {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
      text-decoration: none;
      font-size: 18px;
      color: #000;
    }

    .social-link img {
      width: 25px;
      margin-right: 10px;
    }

    .social-link:hover {
      text-decoration: underline;
    }
