@font-face {
  font-family: Speda-Bold;
  src: url(../font/Speda-Bold.ttf);
  font-style: normal;
}

* {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none;
  font-weight: 100;
}

body {
  margin: 0;
  padding: 0;
  background-color: #e0f7fa; /* Light cyan background */
  font-family: Speda-Bold, sans-serif;
  color: #333; /* Dark text for contrast */
  font-weight: 100;
}

div.container-of-suggestion {
  margin-right: 1%;
  margin-top: 11% ;
  direction: rtl;
}

div.suggestion {
  display: contents;
  justify-content: space-evenly;
  position: relative;
  width: 500px;
}

div.suggestion div.h3-top {
  position: absolute;
  font-size: 25px;
  margin-top: 0%;
  margin-right: 35%;
  text-align: center;
  width: 70%;
  display: flex;
}

div.suggestion div.suggestion-container {
  display: grid;
  grid-template-columns: auto auto auto auto;
  padding-top: 15%;
  gap: 10px; 
  margin-right: 3%;
}

div.suggestion div.suggestion-container a {
  display: block; 
  text-decoration: none;
  color: inherit;
  position: relative;
  width: 300px;
  padding-top:8%;
}

div.suggestion div.suggestion-container a div.card {
  position: relative;
  background-color: #ffffff; 
  border-radius: 15px; 
  transition: transform 0.3s ease; /* Smooth transition */
  height: 312px;
  width: 300px;
  z-index: 1; /* Ensure card is on top */
}

div.suggestion div.suggestion-container a div.card:hover {
  transform: scale(1.03); /* Slightly smaller scale to avoid layout shifts */
  z-index: 2; /* Ensure card hover effect is above other elements */
  pointer-events: auto; /* Allow pointer events */
}

div.suggestion div.suggestion-container a div.card img {
  width: 300px;
  height: 200px;
}

div.suggestion div.suggestion-container a div.card div.img-container div.img-nawaza,
div.suggestion div.suggestion-container a div.card div.img-container div.img-price,
div.suggestion div.suggestion-container a div.card div.img-container div.img-status {
  position: absolute;
  display: inline;
  border-radius: 5px;
  color: white;
  text-align: center;
}

div.suggestion div.suggestion-container a div.card div.img-container div.img-nawaza {
  background-color: #2196f3; /* Blue color */
  width: 52px;
  margin-top: 4%;
  font-size: 16px;
  margin-right: 5%;
  height: 23px;
}

div.suggestion div.suggestion-container a div.card div.img-container div.img-nawaza h4,
div.suggestion div.suggestion-container a div.card div.img-container div.img-status h4 {
  margin-top: 6%;
  font-size: 12px;
}

div.suggestion div.suggestion-container a div.card div.img-container div.img-price {
  background-color: transparent;
  margin-top: 55%;
  margin-right: 69%;
  font-size: 20px;
  font-weight: normal;
  color: white; /* Blue color */
}

div.suggestion div.suggestion-container a div.card div.img-container div.img-status {
  background-color: #2196f3; /* Blue color */
  width: 52px;
  margin-top: 4%;
  margin-right: 78%;
  font-size: 16px;
  height: 23px;
}

div.suggestion div.suggestion-container a div.card div.house-detail {
  margin-top: 0%;
  font-size: 8px;
  display: flex;
  justify-content: space-between;
  width: 261px;
  margin-right: 6%;
}

div.suggestion div.suggestion-container a div.card p.land-detail {
  color: #2196f3; /* Blue color */
  text-align: center;
  font-weight: bold;
  margin-top: 2%;
}

/* About Us section */
div.about_us {
  background-color: rgba(255, 255, 255, 0.6); /* Light background with transparency */
  backdrop-filter: blur(11px);
  height: 200px;
  width: 100%;
  text-align: center;
  margin-top: 15%;
}

div.about_us h1 {
  color: #333;
  border-right: 3px #2196f3; /* Blue color for border */
  padding-top: 2%;
  text-align: center;
}

div.about_us h1 span.my_home {
  color: #2196f3; /* Blue color */
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

div.p-detail {
  display: flex;
  justify-content: space-around;
}

div.p-detail img.myhome_logo {
  width: 205px;
  height: 175px;
  margin-top: -5%;
  margin-left: -6%;
}

div.p-detail p {
  margin-right: -9%;
  line-height: 25px;
  font-size: 18px;
  text-align: right;
}


