* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;

    background-color: #fff;
}
    





    /* Navbar styling */
    .navbar {
      padding: 0.8rem 2rem;
      background-color: #fefefe;
      box-shadow: 0 1px 5px rgba(0,0,0,0.05);
      position: fixed;
      font-family: poppins, sans-serif;

    }

    .navbar-brand img {
      height: 55px;
    }

    .navbar-nav .nav-link {
      color: #000;
      font-weight: 500;
      margin: 0 10px;
      transition: color 0.3s ease;
            font-size: 0.9rem !important;

    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: #e63950;
    }

    /* Language switch */
    .lang-switch a {
      color: #000;
      font-weight: 600;
      text-decoration: none;
      margin-left: 5px;
      transition: color 0.3s ease;
    }

    .lang-switch a.active,
    .lang-switch a:hover {
      color: #e63950;
    }

    /* Call button */
    .call-btn {
      background-color: #e63950;
      color: white;
      border: none;
      border-radius: 8px;
      padding: 8px 18px;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: all 0.3s ease;
            font-family: 'Rubik', sans-serif !important;

    }

    .call-btn:hover {
      background-color: #d32f45;
    }

    /* Make sure right content stays aligned */
    .right-section {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    @media (max-width: 992px) {
      .navbar-nav {
        text-align: center;
      }
      .right-section {
        flex-direction: column;
        align-items: start;
        gap: 10px;
      }
    }

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
    /* border: none; */
}














.area-nav {
    opacity: 0;
    visibility: hidden; /* hide completely when not hovered */
    height: 500px;
    background-color: rgb(254, 254, 254);
    z-index: 10;
    border-top: 1px solid rgb(182, 180, 180);
    transition: opacity 0.4s ease, visibility 0.4s ease;
    position: absolute; /* make sure it's absolute */
    top: 100%;
    left: 0;
    width: 100%;
}

/* Hover effect */
.nav-item:hover .area-nav {
    opacity: 1;
    visibility: visible; /* make it visible */
}


.area-nav .area-title {
    color: #6c757d; /* light grey color */
    font-weight: 600;
    font-size: 1.25rem; /* adjust size if needed */
    margin-bottom: 1rem;
}

/* List styles */
.area-nav ul {
    list-style: none; /* remove bullets */
    padding: 0;
    margin: 0;
}

/* Anchor styles */
.area-nav ul li a {
    text-decoration: none; /* remove underline */
    color: #343a40; /* dark grey color for links */
    transition: color 0.3s ease;
    display: block; /* so the link fills the li */
    padding: 0.25rem 0;
    transition: 0.6s ease;
}

.area-nav ul li a:hover {
    color: #000000; /* hover color */
    font-size: 1.3rem !important;
}










.area-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.97);
    z-index: 1050;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px); /* slight slide up */
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
}

.area-overlay.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* slide into place */
}

.area-overlay .close-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}






/* Overlay basic styling */
.area-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.97);
    z-index: 1050;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
    padding-top: 1rem;
}

.area-overlay.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Close button */
.area-overlay .close-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* Headings */
.area-overlay h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #333;
}

.area-overlay h5.area-title {
    text-align: center;
    font-weight: 500;
    color: #6c757d; /* dim/light grey */
    margin-top: 1rem; /* spacing between sections */
    margin-bottom: 0.75rem;
}

/* Lists */
.area-overlay ul {
    list-style: none;
    padding: 0;
    margin: 0 auto 1.5rem auto;
    max-width: 220px; /* optional, controls width of list */
    text-align: center;
}

/* List items */
.area-overlay ul li {
    margin-bottom: 0.5rem;
}

/* Links */
.area-overlay ul li a {
    text-decoration: none;
    font-size: 1rem; /* slightly bigger font */
    color: #343a40;
    transition: color 0.3s ease;
    display: inline-block;
}

.area-overlay ul li a:hover {
    color: #007bff; /* hover effect */
}

/* Responsive columns spacing */
.area-overlay .row > [class*="col-"] {
    margin-bottom: 1rem; /* gap between all columns */
}

/* Optional: adjust vertical spacing for Living Abroad after Family Living */
.area-overlay .row > [class*="col-"]:last-child {
    margin-top: 1rem;
}

/* Paragraph styling if you have <p> inside overlay */
.area-overlay p {
    color: #6c757d; /* dim color */
    text-align: center;
    margin-bottom: 1rem;
}

/* Center everything horizontally */
.area-overlay .container,
.area-overlay .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}















        /* Header */
        .area-header {
            text-align: center;
            font-family: 'Poppins', sans-serif;

            padding: 4rem 1rem 2rem 1rem;
        }

        .area-header h1 {
            font-size: 2.8rem;
            font-weight: 700;
            color: #343a40;
            margin-bottom: 1rem;
        }

        .area-header p {
            font-size: 1.2rem;
            color: #6c757d;
        }


        @media (max-width: 768px) {
            .area-header h1 {
                font-size: 2rem;
            }
        }





























        /* Property Cards */
    .property-card {
      border: none;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.2s;
    }

    .property-card:hover {
      transform: scale(1.03);
    }

    .property-img {
      height: 200px;
      object-fit: cover;
    }


    .mobile-filter-btn {
      display: none;
    }

    @media (max-width: 768px) {
      .filter-card {
        display: none;
      }

      .mobile-filter-btn {
        display: inline-block;
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: #e63950;
        color: #fff;
        border: none;
        padding: 12px 20px;
        border-radius: 10px;
        z-index: 999;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      font-family: poppins, sans-serif;

      }
    }
























    
.discover-title{
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #060606;
    font-size: 2.3rem;
    margin-bottom: 20px;
}


.discover-description{
    color: #060606;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    max-width: 350px;
    text-align: center;
    margin: 0 auto;
}



  .property-filter .btn {
    border-radius: 50px;
    border: 1px solid #C5C5C5;
    padding: 0.35rem 1.2rem;
    font-size: 0.9rem;
    transition: all 0.3s;
    margin: 5px 10px;
    font-family: 'Poppins', sans-serif;

}
.property-filter .btn.active {
    background-color: #ff3b57;
    color: #fff;
    border-color: #ff3b57;
}

/* Cards */
.property-card {
    border: 1px solid #dee2e6;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
}
.property-card:hover {
    transform: translateY(-5px);
}
.property-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 15px;
}
.property-card .card-body {
    padding: 1rem;
    text-align: left !important;
}
.property-card .card-title {
    font-weight: 600;
    color: #060606;
    font-family: 'Poppins', sans-serif;


}
.property-card .property-location {
    font-size: 0.85rem;
    color: #060606;
    margin-bottom: 0.5rem;
}
.property-card .property-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: #060606;
}
.property-card .property-icons i {
    margin-right: 0.25rem;
}
.property-card .btn-view {
    background-color: #EF314B;
    color: #fff;
    border-radius: 10px !important;
    padding: 0.8rem 1rem;
  
    border: none;
    float: right;
    width: 30%;
    font-weight: 400;
    font-size: 12px;
    font-family: 'Poppins', sans-serif;

}
.property-card .btn-view:hover {
    background-color: #e0334d;
}

/* View All Button */
.view-all-btn {
    border: 1px solid #ff3b57;
    color: #282828;
    border-radius: 10px;
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    background-color: transparent;
    transition: all 0.3s;
}
.view-all-btn:hover {
    background-color: #ff3b57;
    color: #fff;
}



p{
    font-family: 'Poppins', sans-serif;

}




























  /*.footer-section {*/
  /*          background-color: #000000;*/
  /*          color: #ffffff;*/
  /*          padding: 60px 0 30px;*/
  /*      }*/

  /*      .footer-logo {*/
  /*          max-width: 200px;*/
  /*          margin-bottom: 20px;*/
  /*      }*/

  /*      .footer-tagline {*/
  /*          font-size: 16px;*/
  /*          color: #ffffff;*/
  /*          margin-bottom: 30px;*/
  /*          line-height: 1.5;*/
  /*      }*/

  /*      .footer-heading {*/
  /*          font-size: 18px;*/
  /*          font-weight: 600;*/
  /*          margin-bottom: 20px;*/
  /*          color: #ffffff;*/
  /*      }*/

  /*      .footer-links {*/
  /*          list-style: none;*/
  /*          padding: 0;*/
  /*      }*/

  /*      .footer-links li {*/
  /*          margin-bottom: 12px;*/
  /*      }*/

  /*      .footer-links a {*/
  /*          color: #cccccc;*/
  /*          text-decoration: none;*/
  /*          font-size: 15px;*/
  /*          transition: color 0.3s ease;*/
  /*      }*/

  /*      .footer-links a:hover {*/
  /*          color: #ffffff;*/
  /*      }*/

  /*      .contact-info p {*/
  /*          color: #cccccc;*/
  /*          margin-bottom: 10px;*/
  /*          font-size: 15px;*/
  /*          line-height: 1.6;*/
  /*      }*/

  /*      .contact-info a {*/
  /*          color: #cccccc;*/
  /*          text-decoration: none;*/
  /*          transition: color 0.3s ease;*/
  /*      }*/

  /*      .contact-info a:hover {*/
  /*          color: #ffffff;*/
  /*      }*/

  /*      .social-icons {*/
  /*          display: flex;*/
  /*          gap: 20px;*/
  /*          margin-top: 40px;*/
  /*      }*/

  /*      .social-icons a {*/
  /*          color: #ffffff;*/
  /*          font-size: 24px;*/
  /*          transition: color 0.3s ease, transform 0.3s ease;*/
  /*      }*/

  /*      .social-icons a:hover {*/
  /*          color: #cccccc;*/
  /*          transform: translateY(-3px);*/
  /*      }*/

  /*      .footer-bottom {*/
  /*          border-top: 1px solid #333333;*/
  /*          margin-top: 40px;*/
  /*          padding-top: 25px;*/
  /*      }*/

  /*      .footer-bottom-content {*/
  /*          display: flex;*/
  /*          justify-content: space-between;*/
  /*          align-items: center;*/
  /*          flex-wrap: wrap;*/
  /*          gap: 20px;*/
  /*      }*/

  /*      .copyright-text {*/
  /*          color: #888888;*/
  /*          font-size: 14px;*/
  /*      }*/

  /*      .footer-bottom-links {*/
  /*          display: flex;*/
  /*          gap: 30px;*/
  /*          list-style: none;*/
  /*          padding: 0;*/
  /*          margin: 0;*/
  /*      }*/

  /*      .footer-bottom-links a {*/
  /*          color: #888888;*/
  /*          text-decoration: none;*/
  /*          font-size: 14px;*/
  /*          transition: color 0.3s ease;*/
  /*      }*/

  /*      .footer-bottom-links a:hover {*/
  /*          color: #ffffff;*/
  /*      }*/

  /*      @media (max-width: 768px) {*/
  /*          .footer-section {*/
  /*              padding: 40px 0 20px;*/
  /*          }*/


  /*                  .footer-logo {*/
  /*          max-width: 150px;*/
  /*          margin-bottom: 20px;*/
  /*      }*/


  /*          .footer-heading {*/
  /*              margin-top: 30px;*/
  /*          }*/

  /*          .footer-bottom-content {*/
  /*              flex-direction: column;*/
  /*              text-align: center;*/
  /*          }*/

  /*          .footer-bottom-links {*/
  /*              flex-direction: column;*/
  /*              gap: 15px;*/
  /*          }*/

  /*          .social-icons {*/
  /*              justify-content: center;*/
  /*          }*/
  /*      }*/





  .footer-section {
            background-color: #000000;
            color: #ffffff;
            padding: 40px 0 30px;
        }

        .footer-logo {
            max-width: 130px;
            /* margin-bottom: 20px; */
        }

        .footer-tagline {
            font-size: 16px;
            color: #ffffff;
            /* margin-bottom: 30px; */
            line-height: 1.5;
        }

        .footer-heading {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #cccccc;
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #ffffff;
        }

        .contact-info p {
            color: #cccccc;
            margin-bottom: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .contact-info a {
            color: #cccccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-info a:hover {
            color: #ffffff;
        }

        .social-icons {
            display: flex;
            gap: 20px;
            margin-top: 5px;
        }

        .social-icons a {
            color: #ffffff;
            font-size: 24px;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .social-icons a:hover {
            color: #cccccc;
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid #333333;
            /* margin-top: 40px; */
            padding-top: 25px;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright-text {
            color: #888888;
            font-size: 14px;
        }

        .footer-bottom-links {
            display: flex;
            gap: 30px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-bottom-links a {
            color: #888888;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: #ffffff;
        }

        @media (max-width: 768px) {
            .footer-section {
                padding: 40px 0 20px;
            }


                    .footer-logo {
            max-width: 150px;
            margin-bottom: 20px;
        }


            .footer-heading {
                margin-top: 30px;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-bottom-links {
                flex-direction: column;
                gap: 15px;
            }

            .social-icons {
                justify-content: center;
            }
        }

