@import url("https://fonts.googleapis.com/css2?family=Monsieur+La+Doulaise&family=Poppins:wght@400;500;600;700;800;900&display=swap");
html {
  min-height: 100%;
}

body {
  margin: 0;
  width: 100%;
  font-weight: 400;
  overflow-x: hidden;
  display: inline-block;
  background-color: #fff;
  font-family: "Poppins", sans-serif;
}
/*====================================================================================
POPUP STYLE + ANIMATIONS
======================================================================================*/

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 9999; /* always on top */
}

.popup-content {
  position: relative;
  background: #fff;
  padding: 25px 25px 35px;
  width: 500px;
  text-align: center;
  border-radius: 10px;
  transform: translateY(-40px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  font-family: "Poppins", sans-serif;
}

/* When popup is shown */
.popup.show {
  visibility: visible;
  opacity: 1;
}

.popup.show .popup-content {
  transform: translateY(0);
  opacity: 1;
}

/* When hiding */
.popup.hide {
  opacity: 0;
}

.popup.hide .popup-content {
  transform: translateY(-40px);
  opacity: 0;
}

/* Close button (X) */
.close-x {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  color: #444;
  transition: 0.2s;
}

.close-x:hover {
color: #3E48A8;
  transform: scale(1.2);
}

.popup-content a {
  color: #3E48A8;
  font-weight: 600;
}

.popup-content a:hover {
  text-decoration: underline;
}

img {
  height: auto;
  max-width: 100%;
  overflow: hidden;
}

a {
  text-decoration: none;
  transition: all ease-in-out 0.2s;
  -moz-transition: all ease-in-out 0.2s;
  -ms-transition: all ease-in-out 0.2s;
  -o-transition: all ease-in-out 0.2s;
  -webkit-transition: all ease-in-out 0.2s;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  color: #111111;
}

*:before,
*:after,
* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style-type: none;
}

.Wrapper {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
}

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

section {
  padding-top: 80px;
}

.Column {
  width: 50%;
  padding: 0 25px;
}

.H1, .H2, .H6 {
  color: #fff;
}

.H1 {
  font-size: 14px;
  font-weight: 500;
}

.H2 {
  font-size: 60px;
  font-weight: 700;
  line-height: 65px;
  padding: 30px 0;
}

.H3 {
  display: flex;
  font-size: 16px;
  font-weight: 600;
  color: #3E48A8;
  align-items: center;
  text-transform: uppercase;
}
.H3 span {
  width: 50px;
  height: 2.5px;
  display: block;
  margin: 0 12px;
  border-radius: 5px;
  background-color: #3E48A8;
}

.H4 {
  font-size: 42px;
  font-weight: 600;
  line-height: 50px;
  padding: 20px 0 30px;
}
.H4 span {
  color: #3E48A8;
}

.H5 {
  font-size: 20px;
  font-weight: 600;
}

.H6 {
  font-size: 32px;
  font-weight: 600;
  padding-bottom: 20px;
}

.P1 {
  font-size: 16px;
  padding-bottom: 20px;
}

.P2 {
  font-size: 12px;
  font-weight: 500;
}

.BtnFill, .BtnBorder {
  font-size: 14px;
  border-radius: 8px;
  padding: 13px 24px;
  display: inline-block;
}

.BtnFill {
  color: #111111;
  background-color: #fff;
}

.BtnBorder {
  color: #3E48A8;
  border: 1px solid #3E48A8;
  background-color: transparent;
}
.BtnBorder:hover {
  color: #fff;
  background-color: #3E48A8;
}

/*====================================================================================
PAGES STYLE
======================================================================================*/
.MainSection {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.MainSection.HomeBanner {
  background-image: url(../img/home_banner.png);
}
.MainSection.AboutBanner {
  background-image: url(../img/about_banner.jpg);
}
.MainSection.ServicesBanner {
  background-image: url(../img/services_banner.png);
}
/* New Landlords Banner Style */
.MainSection.LandlordsBanner {
  background-image: url(../img/services_banner.png); 
}

.MainSection .Header {
  padding: 25px;
  justify-content: space-between;
}
.MainSection .Header ul li {
  padding-right: 25px;
}
.MainSection .Header ul li:last-child {
  padding-left: 25px;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}
.MainSection .Header ul li:last-child svg {
  display: block;
}
.MainSection .Header ul li:last-child svg path {
  fill: #fff;
}
.MainSection .Header ul li a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.MainSection .Header ul li a svg {
  display: none;
}
.MainSection .Header ul li a:hover {
  color: #3E48A8;
}
.MainSection .Header ul li a:hover svg path {
  fill: #3E48A8;
}
.MainSection .Content {
  width: 650px;
  padding: 70px 25px 90px;
}
.MainSection .Content p {
  color: #fff;
  padding-bottom: 30px;
}

.Service {
  padding: 0 25px;
  padding-top: 80px;
  text-align: center;
}
.Service h3 {
  justify-content: center;
}
.Service .Block {
  flex-wrap: wrap;
  justify-content: space-between;
}
.Service .Block .Box {
  width: 32%;
  cursor: pointer;
  margin-top: 25px;
  padding: 40px 25px;
  border-radius: 2px;
  border: 1px solid rgba(17, 17, 17, 0.05);
  box-shadow: -2px -1px 17px 0px rgba(62, 72, 168, 0.1);
}
.Service .Block .Box svg path {
  fill: #3E48A8;
}
.Service .Block .Box svg .Stroke {
  stroke: #fff;
}
.Service .Block .Box h5 {
  padding: 20px 0 10px;
}
.Service .Block .Box:hover {
  background-color: #3E48A8;
}
.Service .Block .Box:hover svg path {
  fill: #fff;
}
.Service .Block .Box:hover svg .Stroke {
  stroke: #3E48A8;
}
.Service .Block .Box:hover h5, .Service .Block .Box:hover p {
  color: #fff;
}

.Message {
  text-align: center;
}
.Message h3 {
  justify-content: center;
}
.Message p, .Message .Signature {
  text-align: left;
}
.Message .Signature {
  display: block;
  font-size: 46px;
  color: #3E48A8;
  font-weight: bold;
  font-family: "Monsieur La Doulaise", cursive;
}
.Message .Row {
  margin: 0 auto;
  text-align: left;
}
.Message .Row .Column {
  width: 75%;
  padding: 0;
}
.Message .Row .Column:first-child {
  width: 25%;
}

.Icon li {
  font-size: 18px;
  padding: 10px 0;
  color: #111111;
}
.Icon li img {
  margin-right: 15px;
}

/* Landlords Page Specific Styles */
/* --- Section 3: Benefits Grid --- */
.BenefitGrid {
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
  align-items: stretch;
}
.BenefitCard {
  width: 30%; /* 3 columns per row */
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 5px;
  background-color: #f8f8f8;
  border-left: 5px solid #3E48A8;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.BenefitCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}
.BenefitCard .H3 {
  color: #111111; /* Use default text color for heading in the card */
  text-transform: none;
  font-size: 18px;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}
.BenefitCard .H3 span {
  display: none; /* Hide the span element (decorative line) inside the card heading */
}
.BenefitCard p {
  padding-bottom: 0;
  font-size: 14px;
}

/* --- Section 5: Steps List --- */
.StepsList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.StepItem {
  width: 18%; /* 5 steps per row, allowing space for margins */
  text-align: center;
  padding: 20px 10px;
  border-top: 3px solid #3E48A8;
}
.StepItem .H3 {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #3E48A8;
}
.StepItem .H3 span {
    display: none;
}
.StepItem p {
  font-size: 14px;
  padding-top: 10px;
}

/* --- Section 6: Form Styles --- */
.FormSection {
    padding-top: 80px;
    background-color: #f2f2f9; /* Light background for form section */
}
.LandlordForm {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 30px auto 20px;
  padding: 40px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
.LandlordForm input[type="text"],
.LandlordForm input[type="email"],
.LandlordForm input[type="tel"],
.LandlordForm input[type="number"],
.LandlordForm select,
.LandlordForm textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}
.LandlordForm textarea {
  resize: vertical;
  min-height: 100px;
}
.LandlordForm select {
    appearance: none; /* Remove default select styling */
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23000000%22%20d%3D%22M287%20197.8%20146.2%2057%205.4%20197.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 10px top 50%;
    background-size: 12px auto;
}
.LandlordForm label {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #111111;
}
.LandlordForm .RadioGroup {
    justify-content: flex-start;
    margin-bottom: 15px;
    align-items: center;
}
.LandlordForm .RadioGroup label {
    margin-left: 5px;
    margin-right: 20px;
    font-weight: 400;
}
.LandlordForm .BtnFill {
  width: 100%;
  text-align: center;
  background-color: #3E48A8;
  color: #fff;
  border: none;
  cursor: pointer;
}
.LandlordForm .BtnFill:hover {
  background-color: #2e3579;
}

/* --- Section 7: FAQ --- */
.FaqSection {
    padding-top: 80px;
}
.FaqItem {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}
.FaqItem:first-child {
    border-top: 1px solid #eee;
}
.FaqItem .H3 {
    font-size: 18px;
    color: #3E48A8;
    margin-bottom: 5px;
}
.FaqItem p {
    font-size: 14px;
    padding-bottom: 0;
}


footer .Footer {
  margin-top: 80px;
  padding: 100px 0;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/footer_banner.jpg);
}
footer .Footer span {
  color: #fff;
  display: block;
  font-size: 24px;
  padding-bottom: 20px;
  text-transform: uppercase;
}
footer p {
  padding: 20px 0;
  text-align: center;
}


/*====================================================================================
RESPONSIVE
======================================================================================*/
@media (max-width: 480px) {
  .Wrapper {
    max-width: 100%;
  }
  .DFlex {
    flex-direction: column-reverse;
  }
  section {
    padding-top: 40px;
  }
  .Column {
    width: 100%;
    padding: 0 10px;
    padding-bottom: 20px;
  }
  .H1 {
    font-size: 12px;
  }
  .H2 {
    font-size: 28px;
    padding: 15px 0;
    line-height: 35px;
  }
  .H2 br {
    display: none;
  }
  .H3 {
    font-size: 14px;
  }
  .H4 {
    font-size: 28px;
    padding: 15px 0;
    line-height: 36px;
  }
  .H5 {
    font-size: 20px;
    font-weight: 600;
  }
  .H6 {
    font-size: 20px;
    padding-bottom: 10px;
  }
  .P1 {
    font-size: 14px;
    padding-bottom: 15px;
  }
  .P2 {
    font-size: 12px;
  }
  .BtnFill, .BtnBorder {
    font-size: 12px;
    padding: 10px 20px;
  }
  /*====================================================================================
  PAGE STYLE
  ======================================================================================*/
  .MainSection .Header {
    padding: 25px;
    justify-content: space-between;
  }
  .MainSection .Header ul {
    bottom: 0;
    width: 100%;
    padding: 15px;
    position: fixed;
    flex-direction: initial;
    background-color: #fff;
    justify-content: space-evenly;
    box-shadow: -2px -1px 17px 0px rgba(62, 72, 168, 0.1);
  }
  .MainSection .Header ul li {
    padding-right: 0;
  }
  .MainSection .Header ul li:last-child {
    display: none;
  }
  .MainSection .Header ul li a {
    font-size: 14px;
    flex-wrap: wrap;
    color: #111111;
    flex-direction: initial;
    justify-content: center;
  }
  .MainSection .Header ul li a svg {
    display: block;
  }
  .MainSection .Header ul li a span {
    width: 100%;
    text-align: center;
    display: inline-block;
  }
  .MainSection .Content {
    width: 100%;
    padding: 30px 10px;
    text-align: center;
  }
  .Service {
    padding: 0 10px;
    padding-top: 20px;
  }
  .Service h3 {
    justify-content: center;
  }
  .Service .Block {
    flex-wrap: wrap;
    flex-direction: initial;
    justify-content: space-between;
  }
  .Service .Block .Box {
    width: 100%;
    margin-top: 20px;
    padding: 40px 20px;
  }
  .Service .Block .Box h5 {
    padding: 10px 0;
  }
  .What {
    display: block;
  }
  .Message .Signature {
    font-size: 26px;
    padding-bottom: 40px;
  }
  .Message .Row {
    flex-direction: column;
  }
  .Message .Row .Column {
    width: 100%;
  }
  .Message .Row .Column:first-child {
    width: 100%;
    text-align: center;
  }
  .Icon li {
    font-size: 15px;
    flex-direction: initial;
  }
  .Padding {
    padding-top: 0;
  }
  .OrderChange {
    padding-top: 0;
    flex-wrap: wrap;
    flex-direction: initial;
  }
  
  /* Landlords Page Responsive Styles */
  .BenefitCard {
    width: 100%;
  }
  
  .StepsList {
    flex-direction: column;
  }
  .StepItem {
    width: 100%;
    margin-bottom: 15px;
    text-align: left;
    padding: 15px 0;
    border-top: none;
    border-left: 3px solid #3E48A8;
    padding-left: 15px;
  }
  
  .LandlordForm {
    padding: 20px;
  }
  .LandlordForm .RadioGroup {
      flex-direction: row;
      flex-wrap: wrap;
  }

  footer .Footer {
    padding: 50px 0;
    margin-top: 40px;
  }
  footer .Footer span {
    font-size: 14px;
    padding-bottom: 10px;
  }
  footer p {
    padding: 15px 0 80px;
  }
}
/*# sourceMappingURL=custom.css.map */