/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: #32cd32;
  --title-color: hsl(228, 12%, 15%);
  --text-color: hsl(228, 8%, 50%);
  --body-color: #ebf6f7;
  --container-color: #ebf6f7;

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Barlow", sans-serif;
  --normal-font-size: .938rem;
}
html{
  scroll-behavior: smooth;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: .60rem;
  border-radius: .5rem;
}

::-webkit-scrollbar-thumb {
  background-color: var(--first-color);
  border-radius: .5rem;
}




/*=================nav-header =======================*/
.nav-header {
  top: 20px;
  display: flex;
  justify-content: right;
  align-items: right;
  gap: 10px;
}

.nav-links a{
  text-decoration: none;
  color:var(--first-color);
 font-size: 1.1rem;
 text-decoration: none;
 color: var(--text-color);
 border: 2px solid #32cd32;
 border-radius: 6px;
 padding: 3px;
}
.nav-links a i{
  color: var(--first-color);
  transition: transform 0.3s ease-in-out;
}

.nav-header a i{
  color: var(--first-color);
  transition: transform 0.3s ease-in-out;
}
.nav-header a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  border: 2px solid #32cd32;
  border-radius: 6px;
}

.nav-header a:hover i {
  transform: translateY(-5px);
} 
.nav-links a:hover i {
  transform: translateY(-5px);
} 
@media (min-width: 768px) {
  .nav-links{
    display: flex;
    justify-content: right;
    align-items: right;
   gap: 10px;
}
  .find{
    margin-left: 20px;
  }

}
@media screen and (max-width: 768px) {
  .nav-header {
    top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    background-color: #333;
    max-width: 100%;
  }
  .nav-links{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-style: normal;
    top: 18px;
  }
  .nav-header .hero{
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-family: "Barlow", sans-serif;
    font-weight: 500;
    font-style: normal;
    top: 18px;
    text-decoration: none;
    color:var(--first-color);
   font-size: 1.3rem;
  }
  
}

/*===========steps section ============*/
.main-steps{
  width: 100%;
  height: 30vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--body-font);
  flex-direction: column;
}
.head{
  text-align: center;
}
.head_1{
  font-size: 30px;
  font-weight: 600;
  color: var(--title-color);
}
.head_1 span{
  color: var(--first-color);
}

ul{
  display: flex;
  margin-top: 30px;
}
ul li{
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
ul li .icon{
  font-size: 35px;
  color: var(--first-color);
  margin: 0 60px;
}
ul li .text{
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
}
/*=============== Progress Div Css====================  */

ul li .progress{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--first-color);
  margin: 14px 0;
  display: grid;
  place-items: center;
  color: #fff;
  position: relative;
  cursor: pointer;
}
.progress::after{
  content: " ";
  position: absolute;
  width: 125px;
  height: 5px;
  background-color: var(--first-color);
  display: grid;
  place-items: center;
  right: 30px;
}
.one::after{
  width: 0;
  height: 0;
}
ul li .progress .uil{
  display: none;
}
ul li .progress p{
  font-size: 13px;
  color: #fff;
}


/*======================comments section=============================*/

.full-boxer{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.box-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.comment-box:hover{
  margin-top: 12px;
}

.comment-box{
  width: 350px;
  background: white;
  padding: 20px;
  margin: 15px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 3px 3px 25px rgba(0,0,0,0.3);
}

.Profile{
  display: flex;
  align-items: center;
}

.profile-image{
  width: 70px;
  height: 70px;
  box-shadow: 2px 2px 30px rgba(0,0,0,0.3);
  overflow: hidden;
  border-radius: 50%;
  margin-right: 10px;
}

.profile-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.Name{
  display: flex;
  flex-direction: column;
  margin-left: 10px;
}

.Name strong{
  color: black;
  font-size: 18px;
}

.Name span{
  color: gray;
  margin-top: 2px;
}

.comment p{
  color: black;
}
/*==================Become agent============*/
section .become-agent {
  justify-content: center;
  display: flex;
  margin: 50px;
  height: 45vh;
  align-items: center;
  background-color: #f9f9f9;
  
}
@media screen and (max-width: 768px) {
  section .become-agent{
    height: 60vh;
  }

}

.become-agent-content {
  flex: 1;
  padding: 20px;
}

.become-agent-content h1{
  font-size: 30px;
  margin-bottom: 10px;
}

.become-agent-content b{
color: #333;
}
.become-agent-content p {
  font-size: 16px;
  margin-bottom: 20px;
}

.btn {
  background-color: var(--container-color);
  color: #fff;
  padding: 10px 20px;
  border: 1px solid var(--first-color);
  color: var(--text-color);
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
}

.agent-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.agent-image img {
  max-width: 100%;
  height: auto;
}
.registration-form {
  background-color: white;
  padding: 2rem;
  margin: 2rem auto;
  margin-bottom: 30px;
  max-width: 650px;
  height: 175vh;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}


/* ====================Form styles================*/
form {
  display: grid;
  gap: 1rem;
}

label {
  font-weight: bold;
}

input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  color: white;
  border: none;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background-color 0.2s;
}


/* ====================Steps guides find================*/
.wrapper{
  display: grid;
  margin: 05px 300px auto;
  margin-bottom: 30px;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  justify-content: center;

}

.wrapper .box{
  width: 320px;
  margin: 10px auto;
  position: relative;
  perspective: 1000px;
}
.wrapper .box .front-face{
  background: var(--first-color);
  height: 220px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--container-color);
  transition: all 0.5s ease;
  border: 1px solid #0005;
  border-radius: 3px;
}
.box .front-face .icon{
  height: 80px;
  text-align: center;
}
.box .front-face .icon i{
  font-size: 65px;
  
}
.box .front-face span,
.box .back-face span{
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  color: var(--first-color);
}
.box .front-face .icon i,
.box .front-face span{
  background:#fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.box .back-face{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 250px;
  width: 100%;
  padding: 30px;
  color: #fff;
  opacity: 0;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  background:var(--container-color);
  transform: translateY(110px) rotateX(-90deg);
  box-shadow: 0px 5px 20px 0px rgba(0, 81, 250, 0.1);
  transition: all 0.5s ease;
}
.box .back-face p{
  margin-top: 10px;
  text-align: justify;
}
.box:hover .back-face{
  opacity: 1;
  transform: rotateX(0deg);
}
.box:hover .front-face{
  opacity: 0;
  transform: translateY(-110px) rotateX(90deg);
}
@media (max-width: 700px) {
  .wrapper{
    margin: 10px ;
    margin-bottom: 100px;
    
  }
  .wrapper .box{
    width: 293px;

  }

}

/*================= About section ==================*/
.about-container {
  background-color: var(--body-color);
  padding: 60px;
  text-align: center;
}
.about-heading {
  font-size: 28px;
  margin-bottom: 20px;
}
.about-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}
.about-image {
  margin-top: 30px;
}
.about-image img {
  max-width: 20%;
  height: 10%;
  margin-left: 38%;
}
.about-content span{
  color: #1F7502;
}
.about-content {
  padding: 1rem;
  color: white;
  border-width: 3px;
  border-style: solid;
  border-image: 
    linear-gradient(
      to bottom, 
      
      #0AD328, 
      rgba(0, 0, 0, 0)
    ) 1 100%;
}

/*------------Terms--------------*/
.terms-policies {
  margin-top: 40px;
  text-align: center;
}
.team-section {
  text-align: center;
  padding: 50px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.team-member {
  margin: 20px;
  max-width: 300px;
}

.team-member img {
  border-radius: 50%;
  max-width: 100%;
}

.team-member h3 {
  margin: 10px 0;
}

.team-member p {
  color: #555;
}

@media (min-width: 768px) {
  .team-member {
      flex: 0 0 calc(33.33% - 40px);
  }
}

@media screen and (max-width: 768px) {
  .about-content {
    padding: 0 20px;}
  .social-media-links{
    margin-bottom: 40px;
    }
  
  
}

.about-iMeriConnect{
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-left: 5vw;
  margin-right: 20px;
  margin-bottom: 15vh;
}
.about-iMeriConnect img{
  height: 150px;
  width: 150px;
}
/*================= Contact section ==================*/
.contact-details-section {

  text-align: center;
  max-width: 100vw;
}

.contact-details-container {
 
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-item {
  margin: 30px;
}

.contact-item i {
  font-size: 30px;
  margin-bottom: 10px;
  color: var(--first-color);
}

.contact-item p {
  font-size: 16px;
  color: #333;
  
}



.contact-section {
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 30px;
}

.contact-section h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 30px;
}


.contact-section input[type="text"],
.contact-section input[type="email"],
.contact-section textarea {
  display: block;
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

.contact-section textarea {
  resize: vertical;
}

.contact-section button {
  background-color: var(--first-color);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 12px 30px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-section button:hover {
  background-color: var(--container-color);
  color: #32cd32;
  border: 1px solid var(--first-color) ;
  border-radius: 2px;
}
#contactForm{
  display: flex;
  flex-direction: column;
  width: 500px;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 70px;
}
/*========================Basic Styling=================== */
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  background-color: #f7f7f7;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Add shadow effect */
}


.left-contact {
  flex: 1;
  padding: 20px;
}



/* Responsiveness */
@media screen and (max-width: 768px) {
  .contact-box {
    flex-direction: column;
  }
  .creative-title {
    font-size: .8rem;
}
}

/* Shadow effect for the circles */
.small-circle,
.big-circle {
  position: absolute;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); /* Add shadow effect */
}

.small-circle {
  width: 100px;
  height: 100px;
  background-color: #fff;
  top: 40px;
  right: 20px;
}

.big-circle {
  width: 200px;
  height: 200px;
  background-color: #fff;
  bottom: 40px;
  left: 20px;
}

/*===================User contact form=========================*/
.form-container {
  background-color: #fff;
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Add shadow effect */
  margin-bottom: 100px;
}

.form-container form {
  display: flex;
  flex-direction: column;
}

.form-container input,
.form-container select,
.form-container textarea {
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-container button {
  padding: 10px 20px;
  background-color: var(--container-color);
  color: var(--first-color);
  border: 1px solid var(--first-color);
  border-radius: 5px;
  cursor: pointer;
}

.form-container button:hover {
  background-color: var(--first-color);
  color: var(--container-color);
}


/* Additional Styling */
.heading {
  text-align: center;
}

.left-icon {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.left-icon i {
  margin-right: 10px;
}

/* Clear default margin on h1 and h3 tags */
h1,
h3 {
  margin: 0;
}

/* Set max-width for the select to prevent overflow */
select {
  max-width: 100%;
}

/*================service section======================*/
section {
  height:70vh;
  width: 100%;
  margin-left: 2vw;
  display: grid;
  place-items: center;
}


.service .section-heading{
  text-align: center;
  left: 0;
  right: 0;
  padding: 0;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
  align-items: center;
}

.column {
  width: 100%;
  padding: 0 1em 1em 1em;
  text-align: center;
}
.card {
  width: 100%;
  height: 100%;
  padding: 2em 1.5em;
  background: linear-gradient(#ffffff 50%, #32cd32 50%);
  background-size: 100% 200%;
  background-position: 0 2.5%;
  border-radius: 5px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: 0.5s;
}
h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--title-color);
  margin: 1em 0;
}
p {
  color: #575a7b;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
.icon-wrapper {
  background-color: #32cd32;
  margin: auto;
  font-size: 30px;
  height: 2.5em;
  width: 2.5em;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.5s;
}
.card:hover {
  background-position: 0 100%;
}
.card:hover .icon-wrapper {
  background-color: #ffffff;
  color: #32cd32;
}
.card:hover h3 {
  color: #ffffff;
}
.card:hover p {
  color: #f0f0f0;
}

/* Personalized form */
.listing-not-found {
  display: flex;
  justify-content: center;
  background-color: #f4f4f4;
  align-items: center;
  height:auto;
  border:  1px solid #32cd32;
 padding: 20px;
  border-radius: 5px;
}
.listing-not-found .message {
  text-align: center;
}
.listing-not-found .message img {
  max-width: 50%;
  margin-bottom: 0px;
}
.listing-not-found .message a.button {
  display: inline-block;
  padding: 10px 20px;
  background-color:var(--body-font);
  color: #555;
  border: 1px solid #32cd32;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  text-decoration: none; /* Added for link styling */
}
.listing-not-found .message a.button:hover{
  background-color: var(--first-color);
  color: var(--text-color);
}

/*===========================Agents listings=================================*/
.see-more-demands{
  text-align: center;
  font-weight: bold;
}

.list-property h2 {
  text-align: center;
  margin-bottom: 20px;
  color: var(--first-color);
}
.list-property{
  margin: 10vw;
  border: 1px solid #32cd32;
  border-radius: 5px;
  padding: 10px;
  background-color: #f9f9f9
}

/*====================== iMeri connect =============================*/


.banner-container{
  margin: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
   
}

.banner-container .banner{
    background:linear-gradient(-55deg, #1F7502 29%, #0AD328 29.1%, #EFEF1C 68%, #1F7502 68.1%);
    border-radius: 5px;
    margin:10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    box-shadow: 0 5px 10px #0005;
    overflow: hidden;
    position: relative;
  animation: slideIn 1s ease-out; /* Slide-in animation */
}

.shoe,
.content,
.women {
  opacity: 0; /* Initially hidden */
  animation: fadeIn 1s forwards; /* Fade-in animation */
}

.shoe img,
.women img {
  max-width: 100%;
  height: auto;
}
.banner-container .banner .shoe{
    flex:1 1 250px;
    padding:15px;
    text-align: center;
}

.banner-container .banner .shoe img{
    width:80%;
}

.banner-container .banner .content{
    flex:1 1 250px;
    text-align: center;
    padding:10px;
    text-transform: uppercase;
}

.banner-container .banner .content span{
    color:#eee;
    font-size: 20px;
}

.banner-container .banner .content h3{
    color:#fff;
    font-size: 40px;
}

.banner-container .banner .content p{
    color:#eee;
    font-size: 20px;
    padding:10px 0;
}

.banner-container .banner .content .btn{
    display: block;
    height:55px;
    width:150px;
    line-height: 20px;
    background: #fff;
    color:var(--first-color);
    margin:5px auto;
    text-decoration: none;
}

.banner-container .banner .women{
    position: relative;
    bottom: -33px;
    padding:10px;
    flex:1 1 250px;
}

.banner-container .banner .women img{
    width:100%;
}
.banner-container .banner .content .btn:hover{
  color: #fff;
  background-color: #0AD328;
}
@media (max-width:768px){
    .banner-container .banner .women{
        display: none;
    }
}
@keyframes slideIn {
  from {
      transform: translateX(-100%); /* Start off-screen to the left */
  }
  to {
      transform: translateX(0); /* Slide in to the center */
  }
}

@keyframes fadeIn {
  to {
      opacity: 1; /* Fade in */
  }
}



/*====================== Partners section=============================*/

.our-clients {
	width:fit-content;
	height: auto;
	text-align: center;
}



.our-clients ul li {
	list-style: none;
	display: inline-block;
	width:100px;
	height:100px;
	position: relative;
	overflow: hidden;
	cursor:pointer;
	margin: 10px;
	box-shadow: 0px 0px 10px -7px #555;
	transition: .5s;
}

.our-clients ul li img {
	width: 100%;
	height: 100%;
}
.our-clients ul li img:nth-child(1) {
	transform: translateY(0);
	transition: .5s;
}
.our-clients ul li img:nth-child(2) {
	transform: translateY(0);
	transition: .5s;
}
/* Center vertically on mobile */
@media (max-width: 767px) {
  .our-clients {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
  }
}

/* Horizontal alignment on desktop */
@media (min-width: 768px) {
  .our-clients {
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
  }
  .our-clients ul {
      display: flex;
      justify-content: center;
      align-items: center;
      list-style-type: none;
      padding: 0;
  }
  .our-clients ul li {
      margin: 0 10px;
  }
}

 /*===================== Style the social media links container================== */
 .social-media-links {
  font-family: 'Roboto', sans-serif;
  background-color: var(--container-color);
  padding-bottom: 50px;
  text-align: center;
}

.social-media-icon {
  display: inline-block;
  margin: 0 10px;
  font-size: 20px;
  color: var(--first-color);
}

/* Style the social media icons on hover */
.social-media-icon:hover {
  color: var(--text-color); /* Change to your desired hover color */
}


/*============== Rent Properties=================== */
/* Gallery Container */
.gallery-container {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 10px;
  
}

/* Gallery Images */
.gallery img {
  width: 100%;
  height: auto;
  cursor: pointer;

}




/* Media Query for smaller devices */
@media screen and (max-width: 768px) {
  /* Change grid layout to vertical */
  .gallery {
      grid-template-columns: 1fr;
  }
}

/*find map*/

.Map-find {
  position: relative;
  width: 100%;
  padding-bottom: 36.25%; /* Aspect ratio for 16:9 */
  margin-left: 30px;
}

.Map-find iframe {
  position: absolute;
  top: 0;
  left: 8vw;
  width: 80%;
  height: 100%;
  border: 1px solid #0AD328;
  border-radius: 5px;
}
@media only screen and (max-width: 768px) {
  .Map-find iframe{
  position: absolute;
  top: VW;
  left: 0;
  width: 97%;
  height: 70vh;
 
  }
  .Map-find {
    margin-bottom: 55vh;
    margin-left: 8.9px;
   
  }
  
}

.main-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
  max-width: 1200px;
  padding: 20px;
}

.listing,
.accommodation-card {
  width: calc(33.33% - 20px); /* Adjust width based on your design */
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .listing,
  .accommodation-card {
    width: 100%; /* Full width on smaller screens */
  }
 
}

.find-navbar {
  background-color: var(--body-color);
  overflow: hidden;
  padding: 10px;
  text-align: center; /* Center the navigation links */
}

.find-navbar a {
  margin: 2px;
  display: inline-block; /* Display the links in a line */
  color: var(--text-color);
  border: 1px solid var(--first-color);
  border-radius: 5px;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.find-navbar a:hover {
  background-color: #ddd;
  color: var(--first-color);
}

/* Media Query for responsiveness */
@media screen and (max-width: 768px) {
  .find-navbar {
    margin-left: 0;
  }

  .find-navbar a {
    display: block;
    width: 100%; /* Make links take up full width */
    box-sizing: border-box; /* Include padding and border in the width */
    margin: 5px 0; /* Add spacing between links */
  }
}
.find{
  margin-top: 50px;
  margin-bottom: 50px;
}
.accommodation-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
}

.accommodation-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
}

.accommodation-details {
  padding: 15px;
}

.accommodation-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.accommodation-description {
  color: #555;
}
.find header { 
  color: #fff;
  text-align: center;
  padding-left: 45px;
}


.find .listing {
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 2px 5px var(--first-color);
  padding: 20px;
  height: fit-content;
  text-align: center;
  margin: 0 auto;
  max-width: 600px;
  max-height: 500px;

}

.listing-container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap; /* Ensure items wrap to the next line on smaller screens */
}

.accommodation-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin: 10px;
  flex: 0 0 calc(100% - 20px); /* Adjust width of each card, considering margins */
}

.accommodation-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.accommodation-details {
  padding: 15px;
}

.accommodation-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.accommodation-title span{
  color: #32cd32;
}
.accommodation-description {
  color: #555;
}

@media (min-width: 768px) {
  .accommodation-card {
      flex: 0 0 calc(50% - 20px);
  }
}


/*==============Student Demand market=================== */

.demands {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 90px;
}
.demands h2{
  text-align: center;
}
.demand {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fff;
  text-align: center;
}

.demand img {
  max-width: 10vw;
  max-height: 10vh;
  border: 1px solid #32cd32;
  border-radius: 50px;
}
.demands {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.demand {
  flex: 1;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fff;
  text-align: center;
  transition: transform 0.2s ease-in-out;
}
.demand:hover {
  transform: scale(1.05);
}
.demand img {
  max-width: 100%;
  height: auto;
}
h3 {
  margin: 10px 0;
}
.landlord-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #32cd32;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  margin-top: 10px;
  cursor: pointer;
}
.find .listing img {
  max-width: 100%;
  border-radius: 5px;
  margin-bottom: 10px;
}



/* Add a hover effect to the image */
.image-gallery-link:hover img {
  opacity: 0.7;
}
/* Property details container */
.property-details {
  max-width: 80%;
  height: auto;
  margin-left: 10vw;
  margin-bottom: 20vh;
  padding: 10px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
     
/* Property details title */
.property-details h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

/* Amenities list */
.property-details h3 {
  font-size: 20px;
  margin-top: 20px;
}

.property-details ul {

  list-style-type: circle;
  color: #32cd32;
  margin-left: 20px;
}
.property-details ul li{
  margin: 10px;
  padding: 2px;
}

/* Agent details */
.property-details h3 + p {
  margin-top: 10px;
}

/* Image gallery */
.image-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  justify-content: center; /* Center the images horizontally */
}

.image-gallery img {
  max-width: 70%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

/* Back to Property Listing link */
.property-details a {
  display: block;
  text-align: center;
  margin-top: 20px;
  text-decoration: none;
  color: var(--first-color);
  font-weight: bold;
}

.book{
  border: 1px solid #333;
  align-items: center;
  background-color: #0AD328;
  border-radius: 5px;
 
  
}
.book a{
  color: #ffff;
  margin-bottom: 13px;
}

.back-to-prpty a {
  margin-top: 20px;
  color: #FF0000;
  height: 60px;
}
/*-------Map container--------------------*/
.map-container {
  margin: 20px;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
}
.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Make the page responsive */
@media screen and (max-width: 768px) {
  /* Adjust styles for smaller screens here */
  .image-gallery {
      flex-direction: column; /* Display images vertically */
      align-items: center; /* Center the images vertically */
  }
}

/*=================Hover-Section=================================*/

.our-clients ul li:hover img:nth-child(1) {
	transform: translateY(-100%);
	transition: .5s;
}
.our-clients ul li:hover img:nth-child(2) {
	transform: translateY(-100%);
	transition: .5s;
}
/*============================ Responsive Css===================  */

@media (max-width: 980px){
  .main-steps{
    height: 55vh;}
  ul{
      flex-direction: column;
  }
  ul li{
      flex-direction: row;
  }
  ul li .progress{
      margin: 0 30px;
  }
  .progress::after{
      width: 5px;
      height: 55px;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      z-index: -1;
  }
  .one::after{
      height: 0;
  }
  ul li .icon{
      margin: 15px 0;
  }
  .our-clients ul {
    padding-left: 35%;
    margin-bottom: 30%;
  
  }
}

@media (max-width: 600px) {
  .head .head_1{
      font-size: 24px;
  }
  
  .head .head_2{
      font-size: 16px;
  }
  .our-clients ul {
    padding-left: 1%;
    margin-bottom: 30%;
  }
}
@media screen and (min-width: 968px) {
  :root {
    --normal-font-size: 1rem;
  }
  .map-container {
   
    padding-bottom: 26.25%; /* 16:9 aspect ratio */
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  position: relative;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

h1 {
  color: var(--title-color);
}

a {
  text-decoration: none;
}

/*=============== NAV ===============*/
.container-nav{
  margin-top: 10px;
  padding-top: 10px;
}
.container {
  margin-left: 1rem;
  margin-right: 1rem;
}

.section {
  padding: 2rem 0;
}
 .hero {
  display: none;
}


@media screen and (min-width: 768px) {
  .nav__logo, 
  .nav__toggle, 
  .nav__name {
    display: none;
  }
  section {
    padding: 0 2em;
  }
  .column {
    flex: 0 50%;
    max-width: 50%;
  }
  .our-clients ul {
    padding-left: 1%;
    margin-bottom: 30%;

  }
 
}
 

@media screen and (min-width: 992px) {
  section {
    padding: 1em 3em;
  }
  .column {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}
/*=================nav=====================*/
@media screen and (max-width: 767px) {
  .nav__logo, 
  .nav__toggle, 
  .nav__name {
    display: none;
  }
  
  .hero{
    display: block;
  
    
  }
  .service{
    text-align: center;
   margin: 0 auto;
   max-width: 600px;
 }
  .nav__list {
    position: fixed;
    bottom: 2rem;
    background-color: var(--container-color);
    box-shadow: 0 8px 24px hsla(228, 81%, 24%, .15);
    width: 90%;
    padding: 30px 40px;
    border-radius: 1rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 36px;
    transition: .4s;
  
  }
}

.nav__link {
  display: flex;
  color: var(--text-color);
  font-weight: 500;
  transition: .3s;
}

.nav__link i {
  font-size: 1.78rem;
}

.nav__link:hover {
  color: var(--first-color);
}
/* Active link */
.active-link {
  color: var(--first-color);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 320px) {
  .nav__list {
    column-gap: 20px;
  }

}

/* For medium devices */
@media screen and (min-width: 576px) {
  .nav__list {
    width: 332px;
  }
  
}

@media screen and (min-width: 767px) {
  .container {
    margin-left: 7rem;
    margin-right: 1.5rem;
  }
  .nav {
    position: fixed;
    left: 0;
    background-color: var(--container-color);
    box-shadow: 1px 0 4px hsla(228, 81%, 49%, .15);
    width: 84px;
    height: 100vh;
    padding: 1rem;
    transition: .3s;
  }
  .nav__logo {
    display: flex;
  }
  .nav__logo i {
    font-size: 3rem;
    color: var(--first-color);
  }
  .nav__logo-name {
    color: var(--first-color);
    font-weight: 600;
    padding-top: 5px;
    font-size: 1.7rem;
  }
  .nav__logo, .nav__link {
    align-items: center;
    column-gap: 1rem;
  }
  .nav__list {
    display: grid;
    row-gap: 2.5rem;
    margin-top: 10.5rem;
  }
  .nav__content {
    overflow: hidden;
    height: 100%;

  }
  .nav__toggle {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--title-color);
    color: #fff;
    border-radius: 50%;
    font-size: 1.20rem;
    display: grid;
    place-items: center;
    top: 2rem;
    right: -8px;
    cursor: pointer;
    transition: .4s;
  }
  .findeth{
    margin-left: 60px;
  }
}

/* Show menu */
.show-menu {
  width: 240px;
}

/* Rotate toggle icon */
.rotate-icon {
  transform: rotate(180deg);
}
.intermen {
  margin-left: 3.5vw;
  text-align: center;
  
}
  
  .intermen img {
    max-width: 100%; 
    border-radius: 8px; 
}


/* For 2K & 4K resolutions */
@media screen and (min-width: 2048px) {
  body {
    zoom: 1.7;
  }

}

@media screen and (min-width: 3840px) {
  body {
    zoom: 2.5;
  }
}


@media screen and (max-width: 480px) {
  #contactForm{
    width: 98%;
  }
  .contact-item {
    flex-basis: 100%;
  }
  .listing-not-found{
    width: 90%;
  
  }
}

@font-face {
  font-family:MemphisRiver;
  src: url(fonts/MemphisRiver.otf);
}

/* =================Sign in form =========================*/
   .logo-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.logo {
    max-width: 100px; /* Adjust the size of the logo as needed */
    height: auto;
}
 
  
  .sign-in-container {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    width: 90vw;
    margin-bottom:10px;
    height: 98vh ;
  }

  .sign-in-container form {
    width: 50%;
  }
  
  .responsive-image {
    max-width: 100%;
    height: 20vh auto;
  }
  
  .sign-image-container {
    margin-top: 20px;
    text-align: center;
  }
   /* =================Sign up form =========================*/
   .form-container {
    display: flex;
    align-items: center;
    width: 80%; 
    margin: auto;
    margin-top: 10px;
}

/* Style for the image */
.left-image {
    flex: 1; /* Takes up one-third of the container width */
    padding: 1px; /* Adjust spacing as needed */
}

/* Style for the form */
.embedded-form {
    flex: 2; /* Takes up two-thirds of the container width */
    padding: 20px; /* Adjust spacing as needed */
}
 /* Styles for the preloader */
 .preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000; /* Make sure it's on top of everything */
}

/* Styles for the preloader animation (you can customize this) */
.loader{
  border: 6px solid var(--first-color); /* Blue border */
  border-top: 6px solid #f3f3f3; /* White border on top */
  border-radius: 50%;
  width: 70px;
  height: 70px;
  animation: spin 3s linear infinite; /* Rotate animation */
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Hide the preloader when the content is loaded */
.loaded .preloader {
  display: none;
}
 /* Media query for smaller screens */
 @media (max-width: 768px) {
  .form-container {
      width: 90%; /* Full width on smaller screens */
  }
  .left-image {
    width: 50%;
  
}
}