.md-custom-code {
  margin-bottom: 0px !important;
}

@media (min-width: 1200px) {
  .container {
    width: 1200px;
    position: relative;
    margin: 0 auto;
  }
}

.mg-container {
  width: auto !important;
}
* {
  margin: 0px;
  padding: 0px;
}
a {
  text-decoration: none;
}
.md-custom-code {
  margin-bottom: 0px !important;
}
.spacediv {
  min-height: 130px;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: BebasNeue-Regular;
}

@font-face {
  font-family: BebasNeue-Regular;
  src: url(assets/bebas_neue/BebasNeue-Regular.ttf);
}
@font-face {
  font-family: Montserrat-Regular;
  src: url(assets/montserrat/static/Montserrat-Regular.ttf);
}
@font-face {
  font-family: Montserrat-Light;
  src: url(assets/montserrat/static/Montserrat-Light.ttf);
}
@font-face {
  font-family: Montserrat-Bold;
  src: url(assets/montserrat/static/Montserrat-Bold.ttf);
}
/* Wrapper */
.simplifying_wrapper {
  background: url("assets/images/rectangle_233.png") center/cover no-repeat;
  padding: 100px 0px;
}

/* Section Title */
.image_collagesection h1 {
  color: #1e1e1e;
  text-align: center;
  font-size: 50px;
  font-weight: normal;
  margin-bottom: 50px;
}

/* Layout */
.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* padding: 20px; */
  max-width: 80%;
  margin: 0 auto;
}

.row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Columns */
.col {
  position: relative;
  flex: 1;
  min-height: 400px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.img1::before,
.img2::before,
.full::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s ease;
  z-index: 0;
}

/* Backgrounds */
.img1::before {
  background-image: url("assets/images/Rectangle203.png");
}
.img2::before {
  background-image: url("assets/images/Rectangle204.png");
}
.full::before {
  background-image: url("assets/images/Rectangle205.png");
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  transition: background 0.4s ease;
  z-index: 1;
}

/* Content */
.content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: #fff;
  z-index: 2;
}

.content h3 {
  font-size: 38px;
  font-weight: normal;
  margin-bottom: 10px;
}

.content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 15px;
  font-family: "Montserrat-Regular";
}

.img1 p {
  max-width: 100%;
}
.img2 p {
  max-width: 55%;
}

.content span {
  background: #ffffff;
  color: #000;
  font-family: "Montserrat-Regular";
  display: inline-block;
  padding: 12px 50px;
  border-radius: 9px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.content span:hover {
  background: #02b8bc;
  color: #fff;
}

/* Hover Effects */
.col:hover::before {
  transform: scale(1.1); /* Zoom background image only */
}

.col:hover .overlay {
  background: rgba(0, 0, 0, 0.6);
}

/*section 2*/

.hero {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  transition: background 0.6s ease;
}

.hero:hover img {
  transform: scale(1.15);
}

.explore-section {
  position: relative;
  top: -70px;
  background: #fff;
  border-radius: 20px 0px 0px 20px;
  padding: 40px 0px 40px 40px;
  width: 90%;
  margin-left: auto;
  background: #fff;
  box-shadow: -9px 12px 15px 0 rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.explore-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.explore-header h2 {
  color: #1e1e1e;
  font-size: 50px;
  font-style: normal;
  font-weight: normal;
  text-transform: uppercase;
  line-height: normal;
}


.explore-header .nav-buttons {
    display: flex;
    margin-right: 115px;
    gap: 10px;
}
.explore-header a svg {
  position: relative;
  top: 1px;
}
.explore-header a {
  background: transparent;
  border: 1px solid #000000;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;
}

.explore-header a:hover {
  background: #02b8bc;
  border-color: #02b8bc;
}

.explore-header a:hover svg path {
  fill: #fff;
}
.featured_areas_slider .owl-stage {
  padding-left: 0px !important;
}
/* AREA CARDS */
.areas-wrapper {
  overflow-x: auto;
}

.areas {
  display: flex;
  gap: 20px;
  padding-bottom: 10px;
}

.areas::-webkit-scrollbar {
  display: none;
}
.areas {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.area-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  background-color: #ccc;
}

.area-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.area-overlay {
  position: absolute;
  inset: 0;
  transition: background 0.6s ease;
  z-index: 1;
}

.area-content {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #fff;
  z-index: 2;
}

.area-content h3 {
  font-size: 30px;
  font-style: normal;
  font-weight: normal;
  line-height: normal;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.area-content a {
  color: #000;
  border: none;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 9px;
  background: #fff;
  font-size: 14px;
  font-family: Montserrat-Regular;
  line-height: normal;
  cursor: pointer;
  transition: all 0.3s ease;
}

.area-content a:hover {
  background: #02b8bc;
  color: #fff;
}

/* Hover effects */
.area-card:hover img {
  transform: scale(1.1);
}

.area-card:hover .area-overlay {
  background: rgba(0, 0, 0, 0.6);
}

.areas::-webkit-scrollbar {
  display: none;
}

/*section 3*/
.explore-map-section {
    width: 100%;
    background: #fff;
    padding: 80px 0;
    display: flex;
    justify-content: flex-end;
}

.explore-map-container {
  width: 90%;
  display: grid;
  grid-template-columns: 1fr 2.4fr;
  gap: 60px;
  justify-content: end;
  align-items: center;
}

/* Left Content */
.explore-map-content h2 {
  color: #1e1e1e;
  font-size: 45px;
  font-style: normal;
  font-weight: normal;
  line-height: normal;
}

#Locations .city {
  opacity: 1;
  transition: opacity 0.4s ease, fill 0.4s ease;
  cursor: pointer;
}

#Locations:hover .city {
  opacity: 0.3;
}

#Locations .city:hover {
  opacity: 1;
  fill: #02B8BC; 
  z-index: 10;
}

#Locations .city:hover .stroke_w,#Locations .highlight .stroke_w{
  stroke: #fff;stroke-width: 2px;
  fill: #02B8BC;
}

#Locations .city:hover .labs path,#Locations .highlight .labs path{
  fill: #fff;
}



#Lake_Lowell .st18,#Marketplace .st18,#Historic_x5F_Downtown_x5F_Nampa .st18,#Indian_x5F_Creek_x5F_Plaza .st18,
#Downtown_x5F_Middleton .st18, #Star_x5F_River_x5F_Walk .st18,#Downtown_Kuna .st18, #The_x5F_Village_x5F_At_x5F_Meridian .st18, #Historic_x5F_Downtown_x5F_Eagle .st18
,#Boise_x5F_River_x5F_Green_x5F_Belt .st18, #Boise_x5F_State_x5F_University .st18, #Boise_x5F_Airport .st18,#Micron_x5F_Technology .st18
{
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#Lake_Lowell:hover .st18,#Marketplace:hover .st18,#Historic_x5F_Downtown_x5F_Nampa:hover .st18,#Indian_x5F_Creek_x5F_Plaza:hover .st18,#Downtown_x5F_Middleton:hover .st18
, #Star_x5F_River_x5F_Walk:hover .st18, #Downtown_Kuna:hover .st18, #The_x5F_Village_x5F_At_x5F_Meridian:hover .st18, #Historic_x5F_Downtown_x5F_Eagle:hover .st18,
#Boise_x5F_River_x5F_Green_x5F_Belt:hover .st18, #Boise_x5F_State_x5F_University:hover .st18, #Boise_x5F_Airport:hover .st18,#Micron_x5F_Technology:hover .st18
{
  opacity: 1;
  visibility: visible;
}
.explore-map-content p {
  color: #1e1e1e;
  font-family: Montserrat-regular;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 20px;
  margin-bottom: 30px;
}

.city-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.hovered .st42 {
  fill: #02B8BC;
  opacity: 1;
  stroke-width: 1px;
  stroke: #fff;
  transition: fill 0.7s ease;
}

svg .st42 {
  transition: fill 0.4s ease, opacity 0.4s ease;
  opacity: 1;
}

svg .faded {
opacity: 0.3;
transition: opacity 0.5s ease;
}

svg .highlight {
  fill: #02b8bc; 
  opacity: 1  !important;
  stroke-width: 2px;
  stroke: #fff;
  transition: opacity 0.5s ease;
}

svg .Meridian_label.highlight path,svg .boise_landmark.highlight path{
  fill: #093B3B; 
}
svg .Meridian_landmark.highlight path,.boise_landmark{
  fill: #093B3B; 
}

.city-buttons a {
  padding: 9px 15px 6px 15px;
  border-radius: 10px;
  border: 1px solid #1E1E1E;
  color: #1e1e1e;
  text-align: center;
  font-size: 20px;
  font-family: BebasNeue-Regular;
  font-weight: normal;
  line-height: normal;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.city-buttons a:hover {
  background: #02b8bc;
  border: 1px solid #02b8bc;
  color: #fff;
}

/* Right Map */

/*section 4*/
.real-estate-section {
    width: 100%;
    background: #fff;
    padding: 100px 0;
    display: flex;
}

.real-estate-content {
  width: 50%;
}
.real-estate-container {
  display: flex;
  gap: 60px;
  width: 90%;
}

/* Image Section */
.real-estate-image {
  width: 50%;
}

.nav-buttons a {
  background: #fff;
  border: 1px solid #000000;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;
}
.nav-buttons a svg {
  position: relative;
  top: 2px;
}

.nav-buttons a:hover {
  background: #02b8bc;
  border-color: #02b8bc;
}
.nav .nav-buttons {
  display: flex;
  justify-content: flex-end;
  position: relative;
  top: -40px;
  right: 40px;
  z-index: 2000;
  gap: 8px;
}

.nav-buttons a:hover svg path {
  fill: #fff;
}
.single-slider .owl-stage {
  right: -100px !important;
  position: relative !important;
}

/* Text Section */
.real-estate-content h2 {
  color: #1e1e1e;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 60px;
  font-style: normal;
  font-weight: normal;
  line-height: 54px;
}

.real-estate-content p {
  color: #000;
  font-family: Montserrat-regular;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin: 20px 0px;
}

.cta-button {
  display: inline-block;
  background: #111;
  color: #fff;
  font-size: 20px;
  font-style: normal;
  line-height: normal;
  font-family: BebasNeue-Regular;
  text-transform: uppercase;
  font-weight: normal;
  padding: 12px 35px;
  border-radius: 9px;
  border: 1px solid #000;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-button:hover {
  background: #02b8bc;
  border: 1px solid #02b8bc;
  transform: translateY(-3px);
}


/*section 5*/
.section5{
  background: url('assets/images/Rectangle\ 230-min.png');
  padding-bottom: 70px;
}

.results-section {
  background: url('assets/images/bgseagreen.png');
  padding: 60px 0px;
  background-size: cover;
  position: relative;
  top: -100px;
  border-radius: 15px 0px 0px 15px;
  justify-content: center;
  width: 90%;
  margin-left: auto;
}

.results-container {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  padding: 0px;
}

.results-title {
  width: 100%;
  color: #FFF;
  font-size: 50px;
  font-style: normal;
  text-align: center;
  font-weight: normal;
  line-height: normal;
  margin-bottom: 40px;
}

.results-stats {
  width: 70%;
}

.stat h3 {
  color: #FFF;
  text-align: center;
  font-size: 50px;
  font-style: normal;
  font-weight: normal;
  line-height: normal;
}

.inner-flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}

.stat {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.border1{
  border-right: 1px solid rgba(255, 255, 255, 0.30);
  border-bottom: 1px solid rgba(255, 255, 255, 0.30);
}
.border2{
border-bottom: 1px solid rgba(255, 255, 255, 0.30);
}
.border3{
  border-right: 1px solid rgba(255, 255, 255, 0.30);
}

.stat p {
  color: #FFF;
  text-align: center;
  font-family: Montserrat-light;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 133.333% */
  margin-top: 5px;
}


.badge {
  flex-shrink: 0;
  width: 30%;
}

.badge img {
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.reviews_dic h1{
  color: #1E1E1E;
  text-align: center;
  font-size: 50px;
  font-style: normal;
  font-weight: normal;
  line-height: normal;
}
.quoteicon{text-align: center;padding: 50px 0px;}
.container_wrap{width: 90%;margin: auto;position: relative;}
.btn-prev-owl-google_slider{position: absolute;top: 40%;left: -20px;z-index: 2000;}
.btn-next-owl-google_slider{position: absolute;top: 40%;right: -20px;z-index: 2000;}

.btn-prev-owl-google_slider:hover svg circle,.btn-next-owl-google_slider:hover svg circle{
  fill: #02b8bc;
  cursor: pointer;
  transition: 0.5s ease;
  stroke: #02b8bc;
}

.btn-prev-owl-google_slider:hover svg path,.btn-next-owl-google_slider:hover svg path{
  fill: #fff;
  transition: 0.5s ease;
}

.testimonial-card {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 24px;
  border: 1px solid #e6e6e6;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.google-logo {
    width: auto !important;
}

.testimonial-text {
  color: #000;
  font-family: Montserrat-Regular;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px; 
  line-height: 1.6;
  margin-bottom: 10px;
  min-height: 180px;
}

.testimonial-author {
  color: #000;
  font-family: Montserrat-Bold;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

/*section 6*/
.lifestyle-section {
  text-align: center;
  padding: 0px 0px 60px 0px;
  width: 80%;
  margin: 0 auto;
}

.lifestyle-header h2 {
  color: #1E1E1E;
  text-align: center;
  font-size: 50px;
  font-style: normal;
  font-weight: normal;
  line-height: normal;
  margin-bottom: 8px;
}

.lifestyle-header p {
  color: #000;
  text-align: center;
  font-family: Montserrat-Light;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
  margin-bottom: 40px;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
  gap: 20px;
}

.lifestyle-card {
  position: relative;
  height: 370px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.lifestyle-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: inherit;
  transition: transform 0.6s ease;
  z-index: 1;
}

.lifestyle-card:hover::before {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
  color: #fff;
  background: rgba(0, 0, 0, 0);
  transition: background 0.4s ease;
  z-index: 2;
}

.lifestyle-card:hover .overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent 60%);
}

.overlay h3 {
  margin: 0 0 8px;
  color: #FFF;
  font-size: 30px;
  font-style: normal;
  font-weight: normal;
  line-height: normal;
  text-transform: uppercase;
}

.overlay a {
  background-color: #fff;
  color: #000;
  text-align: center;
  font-family: Montserrat-Regular;
  font-size: 16px;
  font-style: normal;
  border-radius: 9px;
  padding: 10px 32px;
  display: inline-block;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.overlay a:hover {
  background-color: #02b8bc;
  transition: 0.3s ease;
  color: #fff;
}

/*section 7*/
.itemimg {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.itemimg img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s ease;
}

.itemimg:hover img {
  transform: scale(1.2);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0); 
  transition: background 0.4s ease;
}

/*section 8*/
.home-valuation {
  width: 100%;
  display: flex;
  justify-content: center;
}

.valuation-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 80%;
  border-radius: 18px;
  overflow: hidden;
  background-color: #fff;
  position: relative;
}

.valuation-image {
  flex: 3;
  overflow: hidden;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
}

.valuation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.valuation-image:hover img {
  transform: scale(1.08);
}

.valuation-content {
  flex: 2;
  background-color: #fff;
  padding: 45px 50px;
  z-index: 2;
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 380px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 0;
}

.valuation-content h2 {
  color: #000;
  font-size: 50px;
  font-style: normal;
  font-weight: normal;
  line-height: normal;
  margin-bottom: 12px;
}

.valuation-content p {
  color: #000;
  font-family: Montserrat-Light;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; 
  margin-bottom: 25px;
}

.btn-outline {
  background: transparent;
  border-radius: 9px;
  border: 1px solid #000;
  background: #FFF;
  color: #000;
  padding: 11px 32px 9px 32px;
  font-weight: normal;
  font-size: 18px;
  font-family: BebasNeue-Regular;
  display: inline-block;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #02b8bc;
  border: 1px solid #02b8bc;
  color: #FFF;
}

/*section 9*/
.career-testimonial {
  display: flex;
  gap: 30px;
  width: 80%;
  margin:  auto;
}

.card {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.careers-card {
  background-image: url(assets/images/Rectangle224-min.png);
  background-size: 100%;
  position: relative;
  background-position: center;
  color: #fff;
  display: flex;
  border-radius: 25px;
  align-items: flex-end;
  padding: 0px;
  transition: transform 0.5s  ease, background-size 0.5s ease;
  min-height: 565px;
}
.card.careers-card:hover {
  background-size: 110%;
}
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  z-index: 1;
}

.careers-content {
  position: relative;
  z-index: 2;
  bottom: 40px;
  left: 40px;
}

.careers-content h2 {
  font-size: 50px;
  font-style: normal;
  font-weight: normal;
  line-height: normal;
  margin-bottom: 8px;
}

.careers-content p {
  font-family: Montserrat-Light;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 20px;
}

.btn-light {
  background-color: #fff;
  border: none;
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 10px 50px;
  font-weight: normal;
  font-family: BebasNeue-Regular;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-light:hover,.btn-light:visited,.btn-light:active{
  background-color: #02b8bc;
  color: #fff;
}

.real-estate-container {
    align-items: center;
}

.testimonial-card-2 {
  background:url('assets/images/Rectangle225.png');
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 35px;
}

.owl-theme .owl-dots .owl-dot span{
  background: none ;
  border: 1px solid #fff ;
}
button.owl-dot.active span {
  background: #02B8BC !important;
  border-color:#02B8BC !important;
}

.testimonial-content {
  max-width: 100%;
  text-align: left;
}
.owl-nav{
  display: none;
}
.owl-theme .owl-dots, .owl-theme .owl-nav{text-align: left !important;}
.quote-mark {
  font-size: 3rem;
  line-height: 0;
  margin-bottom: 20px;
  color: #fff;
}

.testimonial-text-2 {
  font-family: Montserrat-Light;
  font-size: 18px;
  min-height: 210px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; 
  margin-bottom: 25px;
  color: #e5e5e5;
}

.testimonial-author-2 {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
  font-family: Montserrat-bold;
  margin-bottom: 20px;
  color: #fff;
}

.testimonial-author-2 span{
  font-family: Montserrat-light;
}

.dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid #fff;
  opacity: 0.6;
}

.dot.active {
  background-color: #00bcd4;
  opacity: 1;
}


@media (max-width: 900px) {
  .real-estate-container {
    grid-template-columns: 1fr;
  }
  .career-testimonial {
    flex-direction: column;
  }

  .careers-card,
  .testimonial-card {
    height: 400px;
  }

  .testimonial-card {
    padding: 40px 30px;
  }

  .testimonial-content {
    text-align: center;
  }
  .real-estate-content {
    text-align: center;
  }

  .cta-button {
    margin: 0 auto;
  }
  .valuation-card {
    flex-direction: column-reverse;
  }

  .valuation-content {
    position: static;
    transform: none;
    padding: 40px 25px;
    text-align: center;
    max-width: 100%;
  }

  .btn-outline {
    margin: 0 auto;
  }

  .valuation-image {
    width: 100%;
    height: 300px;
  }
}

@media (max-width: 820px) {
  .row {
    flex-direction: column;
  }
  .badge img {
    width: 100%;
  }
  .real-estate-container {
    width: 100%;
  }
  .explore-map-section
  {
    justify-content: center;
  }
  .real-estate-section{margin-top: 200px;}
  .real-estate-container {
    flex-wrap: wrap;
  }
  .valuation-content p{font-size: 27px;}
  .real-estate-image,.real-estate-content {
    width: 100%;
  }
  .results-section{width: 100%;border-radius: 0px;padding: 60px 0px;}
  .results-container{padding: 0px;}
  .explore-section {
    top: -60px;
    padding: 25px;
  }

  .explore-header h2 {
    font-size: 22px;
  }
  .explore-map-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .city-buttons {
    margin: 0 auto;
    grid-template-columns: 1fr 1fr;
  }

  .explore-map-placeholder {
    height: 300px;
  }
}



@media (min-width: 1400px) {
  .image_collagesection h1,
  .explore-header h2,
  .real-estate-content h2,
  .results-title,
  .reviews_dic h1,
  .lifestyle-header h2 {
    font-size: 50px;
  }

  .content h3,
  .area-content h3 {
    font-size: 35px;
  }

  .city-buttons a {
    font-size: 26px;
  }

  .badge img {
    width: 100%;
  }

  .valuation-content h2 {
    font-size: 45px;
  }

  
}

/* MEDIUM SCREENS (Laptops / Small Desktops 992px–1399px) */
@media (max-width: 1399px) and (min-width: 900px) {
  .image_collagesection h1,
  .explore-header h2,
  .results-title,
  .reviews_dic h1 {
    font-size: 46px;
  }
  .career-testimonial,.lifestyle-section{
    width: 90%;
  }
  .valuation-content h2{font-size: 40px;}
  .testimonial-author-2, .testimonial-text-2{font-size: 17px;}
  .careers-card{background-size:cover ;}
  .results-section{padding: 0px;}
  .badge img{width: 100%;}
  .real-estate-image,.real-estate-content{
    width: 48%;
  }
  .single-slider .owl-stage {
    right: -50px !important;
  }

  .real-estate-content h2{
      font-size: 40px;
      line-height: 40px;
      margin-bottom: 0;
  }
  .cta-button {
    font-size: 16px;
    padding: 12px 30px 10px 30px;
  } 

  .real-estate-content p {
    font-size: 15px;
    line-height: 25px;
    margin: 10px 0px;
  }

  .real-estate-container{flex-wrap: wrap;}
  .results-container{ flex-direction: column;padding: 35px 0px 0px 0px;}
  .content h3 {
    font-size: 32px;
  }

  .content p,
  .area-content a {
    font-size: 16px;
  }

  .explore-map-content h2 {
    font-size: 45px;
  }

  .real-estate-container {
    gap: 30px;
  }

  .results-stats .stat h3 {
    font-size: 55px;
  }

  .valuation-card {
    width: 90%;
  }

  .valuation-content {
    padding: 40px;
    max-width: 350px;
  }
}

/* 📱 TABLETS (600px–991px) */
@media (max-width: 991px) and (min-width: 600px) {
  /* Stack elements vertically */
  .row,
  .career-testimonial {
    flex-direction: column;
  }
  .real-estate-content h2{
      font-size: 40px;
      line-height: 40px;
      margin-bottom: 0;
  }
  .cta-button {
    font-size: 16px;
    padding: 12px 30px 10px 30px;
  } 

  .real-estate-content p {
    font-size: 15px;
    line-height: 25px;
    margin: 10px 0px;
  }
  .section {
    padding: 40px 20px;
  }

  .content h3 {
    font-size: 28px;
  }

  .content p {
    font-size: 16px;
    line-height: 24px;
  }

  .explore-header h2 {
    font-size: 34px;
  }

  .explore-map-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .city-buttons {
    grid-template-columns: 1fr 1fr;
    justify-content: center;
  }

  .real-estate-content h2 {
    font-size: 40px;
  }

  .valuation-card {
    flex-direction: column-reverse;
    width: 90%;
  }

  .valuation-content {
    position: static;
    text-align: center;
    padding: 30px;
    max-width: 100%;
  }

  .valuation-image {
    width: 100%;
    height: 300px;
    border-radius: 20px;
  }

  .results-title {
    font-size: 40px;
  }

  .results-stats .stat h3 {
    font-size: 55px;
  }

  .lifestyle-header h2 {
    font-size: 38px;
  }

  .lifestyle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .real-estate-container {
    width: 100%;
  }
  .single-slider .owl-stage {
    right: -20px !important;
  }
  .btn-outline {
    margin: 0 auto;
    font-size: 32px;
    margin-top: 13px;
    display: inline-block;
  }

  .careers-card {
    min-height: 400px;
  }

  .testimonial-card-2 {
    padding: 30px;
  }
}

/* 📞 MOBILE (≤599px) */
@media (max-width: 599px) {
  h1,
  h2,
  h3 {
    line-height: 1.2;
  }
  .spacediv {
    min-height: 100px;
  }
  .media-content-v2 .site-title h2{
    font-size: 62px;
    line-height: 65px;
  }
  .featured_areas_slider .owl-stage {
      padding-left: initial !important;
  }
  .explore-header .nav-buttons{
    margin-right: 5px;
  }
  .image_collagesection h1, .results-title, .reviews_dic h1{
      font-size: 34px;
  }
  .layout2 .site-title h2 {
    font-size: 38px;
  }
  .explore-header h2{
    font-size: 35px;
  }
  .content p {
    font-size: 20px;
    max-width: 85% !important;
    line-height: 25px;
  }
  .section{
    max-width: 90%;
  }
  .real-estate-section {
    margin-top: 0px;
  }
  .real-estate-content h2{line-height: 40px;}
  .explore-map-section{justify-content: center;}
  .lifestyle-section {
    padding: 60px 0px;
    width: 90%;
  }
  .real-estate-section{ justify-content: center;}
  .explore-section{margin: auto;}
  .col{min-height: 265px;}
  .simplifying_wrapper {
    padding: 60px 0;
  }

  .image_collagesection h1,
  .explore-header h2,
  .results-title,
  .reviews_dic h1 {
    font-size: 28px;
  }
  .content {
    bottom: 20px;
    left: 20px;
  }
  .real-estate-content {
    width: 85%;
    margin: auto;
  }
  .real-estate-image{
    width: 100%;
  }
  .content h3 {
    font-size: 35px;
  }

  .content a {
    padding: 10px 25px;
    font-size: 14px;
  }

  .explore-section {
    top: -40px;
    padding: 25px 20px;
    border-radius: 12px;
    width: 90%;
  }
    .valuation-image {
        border-radius: 18px;
    }
  .explore-map-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .testimonial-card-2{
    padding: 50px 35px;
  }
  .city-buttons {
    grid-template-columns: 1fr;
    gap: 10px;
  }


  .real-estate-container {
    flex-direction: column;
    gap: 30px;
  }
  .lifestyle-header h2{font-size: 35px;}
  .real-estate-content h2 {
    font-size: 32px;
  }

  .real-estate-content p {
    font-size: 16px;
  }

  .valuation-card {
    width: 95%;
    flex-direction: column;
  }

  .valuation-content h2 {
    font-size: 30px;
  }
  .results-title{padding: 0px;text-align: center;}
  .valuation-content p {
    font-size: 15px;
  }
  .itemimg{border-radius: 0px;}
  .results-container {
    padding: 0px;
  }
  .results-section{margin: auto; padding: 20px 0px;}
  .results-title {
    font-size: 27px;
    margin-bottom: 20px;
  }
  .badge {
    flex-shrink: 0;
    width: 75%;
    margin: 20px auto;
  }
  .badge img {
    width: 100%;
  }
  .results-stats {
    width: 100%;
  }

  .stat h3 {
    font-size: 40px;
  }

  .lifestyle-grid {
    grid-template-columns: 1fr;
  }

  .lifestyle-card {
    height: 300px;
  }

  .overlay h3 {
    font-size: 25px;
  }

  .overlay a {
    padding: 8px 20px;
    font-size: 16px;
  }

  .career-testimonial {
    flex-direction: column;
    width: 90%;
  }

  .careers-card,
  .testimonial-card-2 {
    min-height: 300px;
  }
  .owl-theme .owl-dots, .owl-theme .owl-nav {
    text-align: center !important;
}
  .testimonial-text-2 {
    font-size: 16px;
  }
}


@media (min-width: 1800px) {
  .innercontent {
    width: 80%;
  }
  .single-slider .owl-stage {
    right: -90px !important;
  }
  .real-estate-container {
    gap: 50px;
  }
  .cta-button{
    padding: 15px 35px 11px 35px;
    margin-top: 20px;
    font-size: 25px;
  }
  .stat p{font-size: 20px;}
  .valuation-content p{    font-size: 20px;}
  .stat h3{font-size: 60px;} 
  .explore-map-content h2{font-size: 50px;}
  .explore-map-content p{font-size: 19px;}
  .real-estate-content p{font-size: 19px;margin: 30px 0px;}
  .image_collagesection h1, .explore-header h2, .real-estate-content h2, .results-title, .reviews_dic h1, .lifestyle-header h2 {
    font-size: 60px;
    line-height: normal;
  }
}