    
            body {
                font-family: 'Inter', sans-serif;

            background-color: #f8f9fa;
        }
    
    
    
    /* 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;
}











        /* Hero Section Background */
    .hero-section {
      background: url('images/85f3a0b985d078a95d8ae00ba61d5a7f2cebfb2c.png') center center/cover no-repeat;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-align: center;
      position: relative;
      /* filter:brightness(0.8); */
    
    }

.hero-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.55);  /* Increase opacity for darker image */
  z-index: 1;
}


@media (max-width: 992px) {
  .hero-section {
    padding-top: 140px; /* adjust based on navbar height */
  }
}



    /* Hero Content */
    .hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1100px;
      padding: 20px;
      font-family: poppins, sans-serif;

    }

    .hero-content h1 {
      font-size: 2rem;
      font-weight: 700;
      color: #FFFFFF !important;
    }

    .hero-content h1 span {
      color: #EF314B !important;
    }

    .hero-content p {
      font-size: 1rem;
      margin-top: 10px;
      color: #c3c3c3;
      font-weight: 400;
    }

    /* Tabs (Buy, Rent, Off Plan) */
    .option-tabs {
      background: #fff;
      border-radius: 10px 10px 0 0;
      display: flex;
      width: fit-content;
      overflow: hidden;
      margin-top: 40px;
    }

    .option-tabs a {
      color: #000;
      padding: 10px 25px;
      font-weight: 600;
      text-decoration: none;
      transition: 0.3s;
      border-bottom: 2px solid transparent;
      font-size: 1rem !important;

    }

    .option-tabs a:hover,
    .option-tabs a.active {
      color: #EF314B;
      border-bottom: 2px solid #e63950;
    }

    /* Filter Card */
    .filter-card {
      background: #fff;
 
      border-bottom-left-radius: 10px;
      border-bottom-right-radius: 10px;
      border-top-right-radius: 10px;
      border-top-left-radius: 0px;
      padding: 25px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 15px;
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    }

    .filter-item {
      flex: 1 1 220px;
      text-align: left;
      border-right: 1px solid #ddd;
      padding-right: 20px;
    }

    .filter-item:last-child {
      border-right: none;
    }

    .filter-item h6 {
      font-weight: 600;
      color: #000;
    }

    .filter-item select {
      border: none;
      outline: none;
      width: 100%;
      color: #777;
      background: transparent;
      border-bottom: 1px solid #ddd;
      font-size: 0.95rem;
      padding: 5px 0;
      cursor: pointer;
    }

    /* Search Button */
    .search-btn {
      background-color: #e63950;
      color: #fff;
      border: none;
      padding: 12px 25px;
      border-radius: 10px;
      font-weight: 400;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: 0.3s;
        width: 100%; 
  /* max-width: 300px; */
    }

    .search-btn:hover {
      background-color: #d32f45;
    }

    /* Responsive adjustments */
   @media (max-width: 992px) {
  .filter-card {
    flex-direction: row;
    align-items: stretch;

  }

}



/* Responsive size adjustment for mobile */
@media (max-width: 768px) {
  /* Hero title and paragraph smaller */
  /* .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  } */

  /* Tabs smaller */
  .option-tabs a {
    padding: 8px 15px;
    font-size: 0.9rem;
  }

  /* Filter section adjustments */


  .filter-item {
    padding: 0;
    margin: 0;
    border: none;
  }

  .filter-item h6 {
    font-size: 0.85rem;
    margin-bottom: 3px;
  }

  .filter-item select {
    font-size: 0.85rem;
    padding: 4px 0;
  }

  /* Search button smaller */
  .search-btn {
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 8px;
    width: 100%;
  }
}

/* Even smaller devices (phones under 480px) */
@media (max-width: 480px) {
  /* .hero-content h1 {
    font-size: 1.25rem;
  } */

  /* .hero-content p {
    font-size: 0.8rem;
  } */

  .filter-item h6 {
    font-size: 0.8rem;
  }

  .filter-item select {
    font-size: 0.8rem;
  }

  .search-btn {
    font-size: 0.85rem;
    padding: 8px 18px;
  }
}























.listing-section {
    padding: 60px 0;
    text-align: center;
    font-family: 'Poppins', sans-serif;

    
  }

  .listing-section h2 {
    font-size: 2.3rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #1C1C1E;
    font-family: 'Inter', sans-serif;
  }

  .listing-section p.subtitle {
    font-size: 14px;
    color: #8E8E93;
    margin-bottom: 40px;
    font-weight: 400;
  }


.listing-item {
  display: flex;
  flex-direction: column; /* Stack image + text vertically */
  align-items: center;   
  text-align: center;
  margin: 10px;
}

.listing-item img {
    width: 105px !important;
    height: 105px !important;
    object-fit: cover;
    border-radius: 50% !important;
    margin-bottom: 10px;
}

.listing-item h6 {
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
    /* Remove margin-left completely */
}

.listing-item span {
    font-size: 0.9rem;
    color: #777;
}







/* Custom Owl Carousel arrows */
  .listing-carousel .owl-nav button.owl-prev,
  .listing-carousel .owl-nav button.owl-next {
    background-color: #EF314B !important;
    color: #fff !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    position: absolute;
    top: 30% !important;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
  }

  .listing-carousel .owl-nav button.owl-prev {
    left: -20px; /* gap from left */
  }

  .listing-carousel .owl-nav button.owl-next {
    right: -20px; 
  }

  .listing-carousel .owl-nav button:hover {
    background-color: #e63950 !important;
  }

  .listing-carousel .owl-nav button:focus {
    outline: none;
  }

  .listing-carousel .owl-dots {
    display: none;
  }
  @media (max-width: 768px) {
    .listing-carousel .owl-nav button{
        display: none !important;
    }
     .listing-carousel  .owl-dots {
    display: block !important;
  }

    
  }




  



















  .feature-item {

    margin-bottom: 30px;
   
  }

  .feature-item i {
 font-size: 2.2rem !important;
 stroke-width: 1.5 !important;
 color: #FF6D81 !important;


    /* margin-right: 15px; */
  }

  .feature-item .feature-text h6 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #0D263B;
    margin-top: 8px;
  


  }

  .feature-item .feature-text p {
    font-size: 13px;
    color: #7C8893;
    margin: 0;
    font-family: 'Inter', sans-serif;
    min-width: 180px;
    line-height: 25px !important;
  



  }

  .about-content .btn-learn {
    margin-top: 20px;
 
    color: #FF6D81;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    font-size: 13px;

  }

  .about-content .btn-learn:hover {
    background-color: #e63950;
    color: #fff;
  }

  /* Responsive adjustments */
  @media (max-width: 767px) {
    .feature-item {
      flex-direction: row;
      align-items: center;
    }

    .feature-item img {
      margin-bottom: 0;
    }
  }




























.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;
}




































  
  .Featured-title{
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #060606;
    font-size: 2.3rem;
    margin-bottom: 20px;
}


.Featured-description{
    color: #060606;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    max-width: 550px;
    text-align: start;
    /* margin: 0 auto; */
 

}
.desc button{
    border: 1px solid #E3DDDD;
    padding: 0.57rem 1.3rem;
    border-radius: 12px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    
}





.Featured-carousel .item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    /*filter: brightness(60%); */
}



.carousel-caption h5 {
    font-size: 16px;
    font-weight: 600;
}

.carousel-caption p {
    font-size: 14px;
    margin: 0;
}




/* Custom Owl Carousel arrows */
  .Featured-carousel .owl-nav button.owl-prev,
  .Featured-carousel .owl-nav button.owl-next {
    background-color: #EF314B !important;
    color: #faf8f8 !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    position: absolute;
    top: 30% !important;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
    z-index: 10;
  }

  .Featured-carousel .owl-nav button.owl-prev {
    left: -60px; /* gap from left */
  }

  .Featured-carousel .owl-nav button.owl-next {
    right: -60px; 
  }

  .Featured-carousel .owl-nav button:hover {
    background-color: #f34f65 !important;
    color: white !important;
  }

  .Featured-carousel .owl-nav button:focus {
    outline: none;
  }
/* 
  .trending-carousel .owl-dots {
    display: block;
  } */
  @media (max-width: 768px) {
   .Featured-carousel .owl-nav button{
        display: none !important;
    }
    .Featured-carousel  .owl-dots {
    display: block !important;

  }

    
  }




























.subcribe-section{
    font-family: 'Inter', sans-serif;

}


        .subscribe-wrapper {
            background-image: url('images/3b15984528108fab836cf541428bd05aadfb3044.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border-radius: 25px;
            padding: 80px 60px;
            position: relative;
            overflow: hidden;
            height: 400px !important;
        }

        .subscribe-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
            z-index: 1;
        }

        .subscribe-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
        }

        .subscribe-title {
            font-size: 24px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 15px;
            line-height: 1.3;
    font-family: 'Inter', sans-serif;

        }

        .subscribe-description {
            font-size: 16px;
            color: #E4E4E4;
            margin-bottom: 30px;
            line-height: 1.6;
            opacity: 0.95;
            font-weight: 400;
        }

        .subscribe-form {
            position: relative;
            max-width: 550px;
        }

        .email-input-wrapper {
            position: relative;
            display: flex;
            background-color: #ffffff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .email-icon {
            position: absolute;
            left: 25px;
            top: 50%;
            transform: translateY(-50%);
            color: #999999;
            font-size: 16px;
            z-index: 3;
        }

        .email-input {
            flex: 1;
            border: none;
            padding: 18px 25px 18px 55px;
            font-size: 15px;
            outline: none;
            color: #333333;
        }

        .email-input::placeholder {
            color: #999999;
        }

        .subscribe-button {
            background-color: #e63946;
            color: #ffffff;
            border: none;
            padding: 13px 35px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            margin: 5px;
            border-radius: 10px;

        }

        .subscribe-button:hover {
            background-color: #d62828;
            transform: scale(1.02);
        }

        @media (max-width: 768px) {
            .subscribe-wrapper {
                padding: 80px 30px;
                border-radius: 20px;
            }

            .subscribe-title {
                font-size: 22px;
                margin-bottom: 14px;
            }

            .subscribe-description {
                font-size: 12px;
                margin-bottom: 25px;
            }

            /* .email-input-wrapper {
                flex-direction: column;
                border-radius: 15px;
            } */

            .email-input {
                padding: 16px 20px 16px 45px;
                font-size: 14px;
                border-radius: 15px 15px 0 0;
            }

            .subscribe-button {
                padding: 6px 10px;
                font-size: 12px;
                /* border-radius: 0 0 15px 15px; */
            }

            .email-icon {
                left: 20px;
            }
        }

        @media (max-width: 576px) {
            .subscribe-wrapper {
                padding: 80px 20px;
                border-radius: 15px;
            }

            .subscribe-title {
                font-size: 18px;
            }

            .subscribe-description {
                font-size: 12px;
            }
        }



        @media (max-width: 576px) {
    .email-input-wrapper {
        flex-direction: row; /* keep horizontal */
        padding: 0;
        height: auto;
    }

    .email-input {
        padding: 10px 10px 10px 40px; /* smaller padding */
        font-size: 13px; /* smaller font */
    }

    .email-icon {
        font-size: 14px; /* smaller icon */
        left: 15px; 
    }

    .subscribe-button {
        padding: 8px 15px; /* smaller button */
        font-size: 13px;
        margin: 2px; /* remove extra margin */
    }


    .email-input {
    flex: 1 1 auto; /* allow shrinking */
    min-width: 0; /* prevent overflow */
}

}








































 
  .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;
            }
        }
























































        .back-link {
            color: #6E6464;
            text-decoration: none;
    font-family: 'Inter', sans-serif;

            font-size: 14px;
            margin-bottom: 15px;
            display: inline-block;
        }
        .back-link:hover {
            color: #333;
        }



      

        .heading {
            font-size: 2.12rem;
            font-weight: 500;
            color: #1C1C1E;
            font-family: 'Inter', sans-serif;

        }


        .desc {
            font-size: 14px;
            color: #666;
            font-family: 'Inter', sans-serif;

        }



        .for-sale-badge {
            position: absolute;
            top: 20px;
            left: 25px;
            background-color: #8EDA53;
            color: white;
            padding: 5px 15px;
            border-radius: 4px;
            font-size: 16px;
            font-weight: bold;
            z-index: 10;
        }








        .main-image {
            position: relative;
            width: 100%;
            height: 450px;
            overflow: hidden;
            border-radius: 8px;
        }
        .main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .side-images  {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 10px;
        }






        .property-info {
            display: flex;
            align-items: center;
            gap: 35px;
            margin: 20px 0;
            font-size: 17px;
            color: #3A3A3C;
    font-family: 'Poppins', sans-serif;

        }
        .property-info span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .price {
            color: #CC0001;
            font-size: 28px;
            font-weight: 600;
            margin: 20px 0;
    font-family: 'Poppins', sans-serif;

        }








        .section-title {
            font-size: 1.37rem;
            font-weight: 500;
            margin-bottom: 15px;
            color: #1C1C1E;
        }
        .property-description {
            /* background: white; */
            /* padding: 25px; */
            border-radius: 8px;
            margin-bottom: 20px;
            
        }
        .property-description p {
            color: #8E8E93;
            line-height: 1.8;
            font-weight: 400;
            font-size: 14px;
    font-family: 'Poppins', sans-serif;

        }
        .read-more {
            color: #EF314B;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            font-family: 'Inter', sans-serif;

        }







.property-details {
  margin-top: 2rem;
  border-radius: 8px;
}

.section-title {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #111;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 13px;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-row .label {
  color: #7A7474;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.detail-row .value {
  color: #000000;
  font-weight: 500;
}

.detail-row i {
  color: #7A7474;
  font-size: 13px;
}







.floor{
    color: #EF314B;
    text-decoration: none;
    font-weight: 400;

}


.floor i{
    color: #515155 !important;
}


        .floorplan img {
            width: 100%;
            height: 100%;
            border-radius: 0px;
        }







        .map-container {
            /* background: white; */
            /* padding: 25px; */
            border-radius: 8px;
            margin-bottom: 20px;
        }
        .map-container img {
            width: 100%;
            height: 100%;
            border-radius: 0px;
        }








        .video-section {
            /* background: white; */
            /* padding: 25px; */
            border-radius: 8px;
            margin-bottom: 20px;
            margin-top: 50px;
        }
        .video-thumbnail {
            width: 100%;
            height: 100%;
            border-radius: 0px;
            object-fit: cover;
        }


















.nearby-section {
    /* background: white; */

    padding: 0;
}

/* .nearby-title {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 1.5rem;
} */

.nearby-category {
    border-bottom: 1px solid #7A747433;
    padding-bottom: 1.5rem;
          font-family: 'Gantari', sans-serif;

}

.nearby-category:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.category-header {
    margin-bottom: 1rem;
}

.category-icon {
    font-size: 22px;
    display: inline-flex;
    align-items: center;
}

.category-title {
    font-size: 19px;
    font-weight: 600;
    color: #000000;
}

.nearby-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nearby-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.place-name {
    font-size: 15px;
    color: #7A7474;
    font-weight: 500;
}

.distance {
    font-size: 15px;
    color: #000000;
    font-weight: 500;
    white-space: nowrap;
}








        .sidebar-box {
            /* background: white; */
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
        }
        .btn-callback {
            /* background: white; */
            border: 1px solid #000000;
            color: #1C1C1E;
            width: 100%;
            padding: 15px;
            border-radius: 6px;
            margin-bottom: 10px;
            font-size: 17px;
            font-weight: 400;
        }
        .btn-whatsapp {
            background: #DBFFD7;
            border: 1px solid #207F1F;
            color: #1C1C1E;
            width: 100%;
            padding: 15px;
            border-radius: 6px;
            margin-bottom: 10px;
            font-size: 17px;
        }



        .btn-inquiry {
            background: none;
            /* border: 1px solid #ddd; */
            color: #1C1C1E;
            width: 100%;
            padding: 10px;
            /* border-radius: 6px; */
            font-size: 17px;
            border: none;
            font-weight: 400;
        }

        
        .form-control {
            font-size: 14px;
            margin-bottom: 10px;
        }




        .sidebar-box input{
            background-color: none !important;
            border: 1px solid #BCBCBC;
            padding: 15px;
        }

        .sidebar-box textarea{
            background-color: none !important;
            border: 1px solid #BCBCBC;
            padding: 15px;
        }

        .sidebar-box input:focus, .sidebar-box textarea:focus {
            box-shadow: none;
            border-color: #1C1C1E;
        }

        .sidebar-box input::placeholder, .sidebar-box textarea::placeholder {
            color: #BCBCBC;
            font-size: 15px;
            padding: 5px;
        }

        .sidebar-box .submit-button {
            background: #EF314B;
            color: white;
            border: none;
            width: 40%;
            padding: 10px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 500;
  display: block;              
  margin: 15px auto 0 auto;    
  text-align: center; 
        }









.feature {
  background-color: #FFFFFF;
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}



        .featured-listing {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            background-color: #FFFFFF;
        }



        .featured-listing .price{
            color: #100E2C;
            font-size: 16px;
            font-weight: 600;
            margin-top: 5px;
        }


        .featured-listing:last-child {
            border-bottom: none;
        }
        .featured-listing img {
            width: 80px;
            height: 60px;
            border-radius: 6px;
            object-fit: cover;
        }
        .featured-info h6 {
            font-size: 16px;
            margin-bottom: 5px;
            font-weight: 500;
            color: #000000;
        }
        .featured-info p {
            font-size: 12px;
            color: #666;
            margin: 0;
        }






/* 
        .related{
    background-color: #FFFFFF;
        }




        .related-property {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            height: 250px;
        }
        .related-property img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .related-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            padding: 20px;
            color: white;
        }
        .related-overlay h6 {
            font-size: 16px;
            margin-bottom: 10px;
        }
        .related-overlay .price {
            font-size: 20px;
            color: white;
        }
        .related-overlay .info {
            font-size: 12px;
            margin-top: 10px;
        }
 */





 .related-card {
  background-color: #fff;
  border-radius: 16px;
}



.property-item img {
  height: 180px;
  object-fit: cover;
}

.property-item .badge {
  font-size: 13px;
  border-radius: 6px;
}




.related-content h6 {
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 500;
  color: #000000;
}


.related-content .small{
    font-size: 12px !important;
    color: #7A7474 !important;
    font-weight: 400;
}



.related-content .price {
  color: #100E2C;
  font-size: 22px;
  font-weight: 500;
  /* margin-top: 5px; */
}




/* .related-details p {
  font-size: 12px !important;  
  color: #100E2C !important;
    font-weight: 400 !important;
} */


.related-details {
  gap: 8px; 
}


.detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 6px;
  min-width: 0;          
}

.top-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}


.detail-icon {
  font-size: 18px;      
  color: #100E2C;       
  line-height: 1;
}


.detail-count {
  font-size: 10px;
  font-weight: 500;
  color: #100E2C;
  line-height: 1;
}

/* Modifier classes so you can adjust number sizes per-item */
.detail-count--small { font-size: 14px; font-weight: 600; }
.detail-count--large { font-size: 18px; font-weight: 800; }


.detail-label {
  margin-top: 6px;
  font-size: 12px;
  color: #100E2C;   
  text-align: center;
  line-height: 1.1;
  font-weight: 400;
}

/* Optional: reduce left/right inset on small screens */
@media (max-width: 576px) {
  .related-details { gap: 6px; }
  .detail-icon { font-size: 16px; }
  .detail-count { font-size: 14px; }
  .detail-label { font-size: 12px; }
}





        /* .floor-plan-btn {
            background: #e74c3c;
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 6px;
            font-size: 13px;
        } */







.topsection{
  margin-top: 8rem;
}