body {
  height:100%;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-orient:vertical;
  -webkit-box-direction:normal;
  -ms-flex-direction:column;
  flex-direction:column;
  margin:0;
  font-size:18px;
  font-family:Nunito,sans-serif;
  font-weight:400;
  line-height:1.5
}

h4,
h3,
h2,
h1,
p {
    margin-top: 20px;
}

::after,
::before,
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  -webkit-box-sizing:border-box;
  /*! box-sizing:border-box; */
}

.text-primary {
    color: #1648a9 !important;

}

.div-circle {
    width: 40px;
    height: 40px;
    font-size: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #797275 !important;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 15px 30px;
    color: #333;
    position: sticky;
    top: 0;
}

.navbar .logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #00a082;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 30px;
    left: 0;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    min-width: 200px;
}

.dropdown-content li {
    margin: 5px 0;
}

.dropdown-content a {
    color: #333;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Auth buttons */
.auth-buttons a {
    margin-left: 15px;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.login {
    color: #00a082;
}

.signup {
    background: #ff3b3b;
    color: #fff;
}

/* Hero */
.hero {
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 2.5em;
}

.hero .highlight {
    font-weight: bold;
    color: yellow;
}

.search-box {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.search-box select,
.search-box input {
    padding: 10px;
    border: none;
    border-radius: 5px;
}

.map-btn {
    background: #fff;
    color: #333;
    padding: 10px 15px;
    border-radius: 5px;
    border: none;
}

.search-btn {
    background: #ff3b3b;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    border: none;
}

/* Countries */
.countries {
    display: flex;
    justify-content: space-around;
    padding: 40px 20px;
    background: #f8f8f8;
    color: #333;
}

.country h3 {
    color: #00a082;
}

.country ul {
    list-style: none;
    padding: 0;
}

.property-list {
    list-style: none;
    padding: 0;
}

.property-list li {
    background: #fff;
    color: #333;
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* HERO background like the screenshot */
.hero {
    background: #224b9c;
    /* teal-green */
}

/* Navbar links */
.navbar .nav-link {
    font-weight: 500;
    color: #333 !important;
}

.navbar .nav-link:hover {
    color: #00a082 !important;
}

/* Search form inputs */
.form-select,
.form-control {
    border-radius: 8px;
    padding: 10px;
}

/* Buttons */
.btn-warning {
    background-color: #ff3b3b;
    border: none;
}

.btn-warning:hover {
    background-color: #e62e2e;
}




.search-form {
    display: flex;
    flex-wrap: wrap;
    background-color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 50px auto;
    align-items: center;
}

.search-form input[type="text"],
.search-form input[type="number"],
.search-form select {
    padding: 10px;
    margin: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    flex: 1;
    min-width: 10px;
}

.map-button {
    background-color: #ffffff;
    border: 1px solid #fd7e14;
    color: #fd7e14;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;   /* removes underline */
    display: inline-block;
    transition: background-color 0.3s;
}

.map-button:hover {
    background-color: #fd7e14;
    color: #fff;
}

.search-btn {
    background-color: #fd7e14;
    border: none;
    color: #fff;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.search-btn:hover {
    background-color: #e76f0f;
}




/* Responsive adjustments */

.property-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    margin-bottom: 30px;
}

.property-card img {
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.property-image {
    position: relative;
}

.property-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.bookmark {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    color: #555;
    transition: all 0.3s ease;
}

.bookmark.active {
    background: #009688;
    color: white;
}

.bookmark:hover {
    transform: scale(1.1);
}

.property-details {
    padding: 20px;
}

.property-details h5 {
    color: #009688;
    font-weight: 600;
    margin-bottom: 5px;
}

.location {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
}

.icons i {
    color: #009688;
}

.desc {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.price {
    color: #00b894;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.like,
.request {
    background: none;
    border: 1px solid #ddd;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}

.like:hover,
.request:hover {
    background: #009688;
    color: white;
    border-color: #009688;
}

.like.active {
    background: #e91e63;
    color: white;
    border-color: #e91e63;
}

.recommend {
    color: #555;
    font-size: 0.9rem;
    white-space: nowrap;
}

.verified-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    color: #fff;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.verified-badge.verified {
    background: #198754; /* green */
}

.verified-badge.not-verified {
    background: #dc3545; /* red */
}

.category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    color: #fff;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.category-badge.sale {
    background: #084197; /* blue */
}
.category-badge.rent {
    background: #38680c; /* green */
}
.category-badge.lease {
    background: #a75009; /* orange */
}
.category-badge.short-let {
    background: #441e8b; /* purple */
}
.category-badge.airbnb {
    background: #ad1265; /* pink */
}

.h-100p {
  height:100% !important
}

.news-content .article-content {
  word-break:break-word;
  background:#FFF;
  padding:90px
}
.news-content .article-content .start-img {
  margin:-90px -90px 90px -90px;
  position:relative
}
.news-content .article-content .start-img .article-buttons {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  position:absolute;
  top:30px;
  right:30px;
  z-index:1
}

.align-items-center {
  -webkit-box-align:center !important;
  -ms-flex-align:center !important;
  align-items:center !important;
}
.align-items-baseline {
  -webkit-box-align:baseline !important;
  -ms-flex-align:baseline !important;
  align-items:baseline !important
}

.wh-48 {
  width:48px;
  min-width:48px;
  height:48px
}
.wh-64 {
  width:64px;
  min-width:64px;
  height:64px
}
.wh-80 {
  width:80px;
  min-width:80px;
  height:80px
}
.wh-96 {
  width:96px;
  min-width:96px;
  height:96px
}

.mr-sm
 {
  margin-right:16px !important
}



