/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  color: #222;
  scroll-behavior: smooth;
  /* Enables smooth scrolling */
}

/* Special font for headings or decorative text */
.heading-special {
  font-family: "Nothing You Could Do", cursive;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}



/* Header */
header {
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 12;
  background: #fff;
  box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  max-width: 100%;
  height: auto;
  margin-right: 10px;
}

#navigation .navigation-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu {
  display: flex;
  gap: 24px;
}

.nav-menu a {
  color: #313131;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 8px;
  opacity: 0.92;
  transition: opacity .2s;
  transition: color 0.3s;
}

.nav-menu a:hover {
  opacity: 1;
  color: #f2545b;
}

.btn-header {
  background: linear-gradient(0deg, #E13435 0%, #E13435 100%);
  color: #fff;
  border: none;
  padding: 8px 19px;
  border-radius: 10px;
  cursor: pointer;
  margin-left: 16px;
  transition: background 0.2s;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.btn-header:hover {
  background: linear-gradient(0deg, #ca3c3c 0%, #ca3c3c 100%);
}

.navbar-toggle {
  display: none;
  cursor: pointer;
}

.lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: all 0.3s ease;
}

.lines span {
  display: block;
  width: 22px;
  height: 2px;
  background: #333;
  transition: all 0.3s ease;
}

/* When active - change to X */
.navbar-toggle.active .lines span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active .lines span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active .lines span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive */
@media (max-width: 768px) {
  #navigation {
    position: absolute;
    top: 60px;
    right: 0;
    background: #fff;
    width: 100%;
    display: none;
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  #navigation.active {
    display: flex;
  }

  #navigation .navigation-menu {
    flex-direction: column;
    gap: 15px;
    padding: 15px 0;
  }

  .navbar-toggle {
    display: block;
  }

  .primary-btn.d-xs-none {
    display: none;
  }
}


/* Hero Section */
.hero-section {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.00) 20.5%, rgba(0, 0, 0, 0.19) 35.5%, rgba(0, 0, 0, 0.39) 51.78%, rgba(0, 0, 0, 0.57) 65.91%, rgba(0, 0, 0, 0.74) 79.4%, rgba(0, 0, 0, 0.90) 91.61%, #000 99.93%), url('https://images.thesqua.re/APS/campaign_page/pms-bg.png') lightgray 50% / cover no-repeat;
  /* background: url('/static/images/campaign_page/pms-bg.png') center/cover no-repeat; */
  min-height: 420px;
  position: relative;
}

.hero-content {
  color: #fff;
  padding: 50px 0;
  width: 100%;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
}

.hero-text-block {
  flex: 1.5 1 320px;
  max-width: 600px;
}

.hero-title {
  color: #FFF;
  font-size: 3rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 13px;
}

.hero-desc {
  color: #FFF;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 20px;
}

.feature-container {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: space-between; */
  max-width: 600px;
  gap: 40px;
}

/* .feature-list {
  width: 50%;
} */

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.feature-item .icon {
  margin-right: 8px;
  color: #00c3a5;
  /* or any brand green/check color */
  font-weight: bold;
  font-size: 18px;
}

.btn-cta-lg {
  border-radius: 10px;
  background: #E13435;
  border: none;
  color: #fff;
  padding: 8px 20px;
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 14px;
  line-height: normal;

}

.btn-cta-lg:hover {
  background: #ca3c3c;
}

/* Hero Form */
.hero-form-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.11);
  padding: 15px 24px 22px 24px;
  min-width: 360px;
  width: 360px;
  align-self: flex-start;
  color: #222;
}

.hero-form-title {
  font-weight: bold;
  font-size: 1.12rem;
  margin-bottom: 2px;
  text-align: center;
  color: #20232e;
}

.hero-form-subtxt {
  font-size: 0.98em;
  color: #7d7d7d;
  text-align: center;
  margin-bottom: 18px;
}

.hero-form input,
.hero-form select {
  width: 100%;
  padding: 8px 10px;
  /* margin-bottom: 15px; */
  border-radius: 10px;
  border: 1px solid #F0F0F0;
  font-size: 1rem;
  color: #898888;
  font-family: inherit;
  background-color: #fff;
}

.mb-15 {
  margin-bottom: 15px;
}

.hero-form input:focus,
.hero-form select:focus {
  border-color: #f2545b;
  outline: none;
  background: #fff;
}

.hero-form small {
  font-size: 0.625rem;
  display: block;
  color: #575757;
  font-weight: 400;
  margin-block: 13px;
  text-align: center;
}

.btn-form-submit {
  border-radius: 10px;
  background: #E13435;
  color: #fff;
  border: none;
  padding: 8px 10px;
  width: 100%;
  cursor: pointer;
  margin-top: 12px;
  font-size: 1rem;
  font-weight: 400;
  transition: background .2s;
}

.btn-form-submit:hover {
  background: #ca3c3c;
}

/* Reviews / Badges */
.review-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  margin: 48px 0;
}

.review-block {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}


/* Free Trial Banner */
.banner-trial {
  text-align: center;
  padding: 26px 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  margin-bottom: 80px;
  border-radius: 10px;
  background: linear-gradient(180deg, #606060 0%, #020202 100%);
}

.banner-trial span {
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.banner-trial .cta-btn {
  background: #f2545b;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 28px;
  font-weight: 600;
  font-size: 1.06rem;
  margin-left: 10px;
  cursor: pointer;
  transition: background .2s;
}

.banner-trial .cta-btn:hover {
  background: #ca3c3c;
}

/* Core Features Section */


.main-title {
  color: #1F1F1F;
  text-align: center;
  font-size: 3rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 60px;
}

.main-title .accent {
  color: #ca3c3c;
  font-size: 1.23em;
  font-style: italic;
  font-weight: 500;
}

/* Tabbed Menu */
.tabs-row {
  display: flex;
  /* gap: 18px; */
  justify-content: center;
  border-bottom: 1.7px dashed #d0d0d0;
  max-width: 100%;
  margin-bottom: 40px;

}

.tab-link {
  position: relative;
  color: #7E7E7E;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;


  padding: 0 34px 20px;
  background: none;
  border: none;
  border-bottom: 2.6px solid transparent;
  cursor: pointer;
  transition: border-bottom 0.2s, color .2s;
  /* margin-right: 7px; */
  outline: none;
}

.tab-link.active {
  color: #E13435;
}

.tab-content-wrapper {
  background-color: #FBF8EF;
}


.tab-link.active::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 144px;
  background-color: #d72626;
  transform: translate(-50%, -33%);
  top: 100%;
  left: 50%;
}


/* Grey separator after each tab except last */
.tab-link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 49px;
  background-color: #BABABA;
}

.tab-link:last-child::after {
  display: none;
}

/* Tab content blocks */
.tab-content {
  display: none;
  /* border: 1px solid #ccc;
  padding: 15px;
  border-radius: 4px;
  background: #fff; */
}

.tab-content.active {
  display: block;
}

/* Main Feature Section */
.feature-block {
  /* margin-top: 23px; */
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  /* background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 27px 2px rgba(50, 48, 48, 0.07);
  padding: 42px 30px 34px 30px; */
  justify-content: space-between;
  padding-block: 44px;
}

.feat-text {
  flex: 1 1 330px;
}

.feat-title {
  color: #1F1F1F;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  font-size: 2rem;
  margin-bottom: 23px;
}

.feat-desc {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #1F1F1F;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.feat-list {
  margin-left: 13px;
  margin-bottom: 22px;
  color: #6d6f77;
}

.feat-list li {
  margin-bottom: 8px;
  color: #1F1F1F;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.tabs-content-img {
  flex: 2 1 250px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  min-width: 200px;
  justify-content: center;
  align-items: center;
}

/* msite accordion */
.accordion {
  display: none;
  width: 100%;
  max-width: 400px;
  margin: auto;
}

.accordion-item {
  background: #fdfaf2;
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid #f0e6d6;
}

.accordion-header {
  padding: 14px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
}

.accordion-header:hover {
  background-color: #f8f3e8;
}

.accordion-content {
  padding: 0 16px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  font-size: 14px;
  color: #555;
  background-color: #fff;
}

.accordion-item.active .accordion-content {
  padding: 14px;
  max-height: 100%;
  /* adjust for content height */
}

.arrow {
  transition: transform 0.3s ease;
}

.accordion-item.active .arrow {
  transform: rotate(180deg);
}



/* Main Buttons Row */
.btns-row-main {
  text-align: center;
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.w-100 {
  width: 100%;
}

.primary-btn {
  border-radius: 10px;
  background: #E13435;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-weight: 400;
  font-size: 1.08rem;
  cursor: pointer;
  transition: background 0.2s;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}

.primary-btn:hover {
  background: #ca3c3c;
}

.call-primary-btn {
  border-radius: 10px;
  background: #E13435;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-weight: 400;
  font-size: 1.08rem;
  cursor: pointer;
  transition: background 0.2s;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}

.call-primary-btn {
  background: #ca3c3c;
}

.primary-btn.outline {
  background: #fff;
  color: #1F1F1F;
  border: 1px solid #1F1F1F;
}

.btn-main:hover {
  background: #ca3c3c;
  color: #fff;
}

.btn-main.outline:hover {
  background: #fee6e6;
  color: #ca3c3c;
  border-color: #ca3c3c;
}

/* Responsive Design */
@media (max-width: 950px) {
  .hero-content {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1.1rem;
  }

  .hero-text-block {
    max-width: 100%;
    width: 100%;
  }

  .hero-form-box {
    align-self: unset;
    /* margin-top: 32px; */
  }

  .feature-block {
    flex-direction: column;
    gap: 32px;
    padding: 32px 16px;
  }

  .demo-imgs {
    flex-direction: row;
  }
}

@media (max-width: 700px) {
  .navbar {
    flex-direction: row;
    gap: 7px;
  }

  .hero-title {
    font-size: 1.45rem;
  }

  .section-main {
    padding: 0 7px;
  }

  .feature-block {
    padding: 17px 6px;
  }

  .tabs-row {
    flex-wrap: wrap;
  }
}

@media (max-width: 540px) {
  .hero-content {
    padding: 24px 5px 24px 5px;
  }

  .hero-form-box {
    min-width: 95%;
    width: 100%;
  }

  .review-row {
    gap: 7px;
  }

  .banner-trial {
    flex-direction: column;
    gap: 14px;
    padding: 10px 0 14px 0;
  }

  .main-title {
    font-size: 1.32rem;
  }

  .btn-main,
  .btn-header,
  .btn-cta-lg {
    font-size: 1em;
    padding: 8px 13px;
  }
}

/* Custom Scrollbar for modern look */
::-webkit-scrollbar {
  height: 7px;
  width: 9px;
  background: #f8f8f8;
}

::-webkit-scrollbar-thumb {
  background: #e9e9e9;
  border-radius: 4px;
}


/* Testimonials layout */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}

.testimonial {
  background: #FBF8EF;
  /* border-radius: 8px; */
  padding: 24px;
  max-width: 370px;
  flex: 1 1 300px;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
  position: relative;
}

/* Quotation marks before and after in blockquotes */
.testimonial blockquote {
  margin: 0 0 1.5rem 0;
  color: #1F1F1F;
  text-align: center;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
}

.testimonial blockquote::before {
  /* content: "“"; */
  content: url("/static/images/campaign_page/left-double-quotes.png");
  font-size: 3rem;
  color: #d3d3d3;
  position: absolute;
  left: -5px;
  top: -31px;
  font-weight: 700;
}

.testimonial blockquote::after {
  /* content: "”"; */
  content: url("/static/images/campaign_page/right-double-arrow.png");
  font-size: 3rem;
  color: #ccc;
  position: absolute;
  right: -6px;
  bottom: -22px;
  font-weight: 700;
}

/* Client name & icon container */
.client-info {
  color: #1F1F1F;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}

.client-logo {
  margin: 10px auto 0 auto;
  object-fit: contain;
  display: block;
  width: 66px;
  height: 60px;
  flex-shrink: 0;
  aspect-ratio: 11/10;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .testimonials {
    justify-content: space-around;
  }

  .tabs-row {
    flex-wrap: wrap;
  }
}


/* Common Marquee Styles */
.partners-section {
  padding: 40px 0;



}


.partner-brand-logo-wrapper {
  overflow: hidden;
  border-radius: 10px;
  background:
    radial-gradient(85.23% 15.9% at 47.06% 50.09%,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.8) 100%),
    url('https://images.thesqua.re/APS/campaign_page/partner-brand-bg.jpg') center / cover no-repeat,
    linear-gradient(180deg, #6472A1 0%, #31426D 100%);

}

.brand_heading_wrapper {
  max-width: 553px;
  padding: 54px 0 70px 70px;
}

.brand_title {
  color: #FFF;
  font-size: 3rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 18px;
}

.brand_description {
  color: #FFF;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}



:root {
  --speed-row1: 20s;
  --speed-row2: 24s;
  --logo-height: 40px;
}

/* body{
    margin:0;
    padding:60px 0;
    background:#111;
    color:#fff;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  } */

/* .partners {
    max-width:1200px;
    margin:0 auto;
    padding: 0 20px;
  } */

/* fade mask on edges */
.logos__marquee {
  overflow: hidden;
  user-select: none;
  -webkit-mask-image: linear-gradient(to right,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 1) 12%,
      rgba(0, 0, 0, 1) 88%,
      rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to right,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 1) 12%,
      rgba(0, 0, 0, 1) 88%,
      rgba(0, 0, 0, 0) 100%);
  padding: 18px 0;
  box-sizing: border-box;
  background-color: #fff;
}

/* THE KEY: inner wrapper is twice the container width */
.marquee__inner {
  display: flex;
  width: 200%;
  /* <- important: two copies side-by-side */
  box-sizing: border-box;
  align-items: center;
  gap: 0;
  animation-name: marquee;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-play-state: running;
}

/* reverse direction for the second row */
.marquee__inner.reverse {
  animation-direction: reverse;
}

/* each track takes half of the inner (50% each) */
.marquee__track {
  /* flex: 0 0 50%; */
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 2rem;
  padding-inline: 2rem;
  box-sizing: border-box;
}

/* logo styling */
.marquee__track img {
  display: block;
  height: var(--logo-height);
  max-height: 56px;
  width: auto;
  /* margin: 0 1rem; */
  object-fit: contain;
  /* optional look: make logos lighter on dark bg
       remove filter if you prefer original colors */
  filter: brightness(1);
}

/* different speeds */
.marquee__inner.row1 {
  animation-duration: var(--speed-row1);
}

.marquee__inner.row2 {
  animation-duration: var(--speed-row2);
}

/* Hover to pause */
.logos__marquee:hover .marquee__inner {
  animation-play-state: paused;
}

/* keyframes - move one full copy (50% of inner width) */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* small responsive tweak */
@media (max-width:600px) {
  :root {
    --logo-height: 28px;
    --speed-row1: 28s;
    --speed-row2: 32s;
  }

  .marquee__track {
    gap: 1rem;
    padding-inline: 1rem;
  }
}

.top_property_manager_section {
  padding: 100px 0;
}

/* top_property_manager_wrapper */
.top_property_manager_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

/* Left Content */
.left {
  flex: 2 1 100px;
}

.left h2.main-title {
  text-align: left;
}

.left h2 em {
  font-style: italic;
  font-weight: 400;
}

.left p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
}

.btn {
  background: #ff4d4d;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #e03d3d;
}

/* Right Stats Grid */
.stats {
  flex: 1 1 500px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, minmax(150px, auto));
  overflow: hidden;
  /* gap: 15px; */
}

/* Black gradient box */
.stat.black {

  background:
    url('https://images.thesqua.re/APS/campaign_page/bl-gradient.png') center/cover no-repeat,
    #7E8892;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  border-radius: 10px 0 0 10px;
  text-align: center;
  padding: 20px;
  grid-row: span 2;
}

.stat.black h3 {
  font-size: 50px;
  font-weight: bold;
  text-align: left;
}

.double-arrow {
  margin-top: 60px;
}

.stat.black p {
  font-size: 16px;
  color: #fff;
}

/* Pink top-left */
.stat.pink {
  border-radius: 0 0 0 150px;
  background: #FFF2F2;
  padding: 14px;
}

/* Beige top-right */
.stat.beige {
  border-radius: 156px 10px 0 156px;
  background: #FBF8EF;
  padding: 20px;
  text-align: center;
}

.pink p {
  text-align: right;
  margin-left: auto;
}

.beige p {
  margin-bottom: 40px;
  margin-left: auto;
  text-align: right;
}

.beige h3 {
  text-align: right;
  justify-content: end;
}

.blue h3 {
  margin-bottom: 40px;
}

.blue p {
  text-align: left;
}

/* Yellow middle */
.stat.yellow {
  border-radius: 0 120px 0 0;
  background: #EDF7FD;
  padding: 20px;
  text-align: center;
}

.yellow h3 {
  text-align: left;
}

.yellow p {
  text-align: left;
}


/* Blue bottom-right */
.stat.blue {
  border-radius: 0 0 10px 0;
  background: #DADFE1;
  padding: 20px;
  text-align: center;
}

.stat h3 {
  font-size: 3rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;

  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pink h3 {
  margin-bottom: 40px;
}

.stat h3 span {
  color: #1F1F1F;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  justify-content: start;

}

.stat p {
  font-size: 16px;
  color: #555;
  max-width: 170px;
  /* margin-left: auto;
  text-align: right; */
}

.stars {
  display: flex;
  justify-content: start;
  align-items: center;
  margin: 60px 0 0 -16px;
}

/* msite sticky btn */
.button-container {
  display: none;
  position: sticky;
  bottom: 0;
  background: #FBF8EF;
  box-shadow: 0 -2px 9px 0 rgba(0, 0, 0, 0.25);
  padding: 14px 14px 19px 19px;
  justify-content: center;
  align-items: center;
  gap: 34px;
}

.flex-1 {
  flex: 1;
}

/* Responsive */
@media (max-width: 900px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .double-arrow {
    margin: 0;
  }

  .stat.black {
    grid-row: auto;
    order: 5;
    grid-column: 1 / -1;
    align-items: end;
  }
}

@media (max-width: 600px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .stats {
    /* grid-template-columns: 1fr; */
    /* grid-template-rows: 130px 130px auto; */
  }

  .stars {
    margin: 0;
  }

  .blue h3 {
    margin: 0;
  }
}

.mb-100 {
  margin-bottom: 100px;
}

/* Small devices (phones, <576px) */
@media (max-width: 575.98px) {
  .container {
    max-width: 100%;
  }
}

/* Medium devices (tablets, ≥576px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .container {
    max-width: 540px;
  }

}

/* Large devices (desktops, ≥768px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .container {
    max-width: 720px;
  }
}

/* Extra large devices (≥992px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .container {
    max-width: 960px;
  }
}

/* XXL (≥1200px) */
@media (min-width: 1200px) {
  .container {
    max-width: 1300px;
  }
}

@media (max-width:767px) {
  .d-xs-none {
    display: none;
  }

  .banner-trial {
    padding: 20px;
  }

  .banner-trial span {
    font-size: 20px;
  }

  .stat h3 {
    font-size: 2rem;
  }


  .main-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .hero-section {
    background: url('https://images.thesqua.re/APS/campaign_page/hero-banner-msite.png') center / cover no-repeat
  }

  .hero-title {
    font-size: 2rem;
    margin-top: 3rem;
  }

  .brand_title {
    font-size: 2rem;
  }

  .banner-trial {
    margin-bottom: 40px;
  }

  .testimonial {
    max-width: 100%;
  }

  .brand_heading_wrapper {
    max-width: 100%;
    padding: 40px 20px 100px 20px;
  }

  .accordion {
    display: block;
  }

  .feat-title {
    font-size: 1.2rem;
    margin-top: 30px;
  }

  .feat-list {
    list-style-position: inside;
  }

  .button-container {
    display: flex;
  }

  .feat-list li {
    list-style-type: none;
    font-weight: 600;
  }

  .top_property_manager_section {
    padding: 80px 0;
  }
}

.error {
  color: red;
  font-size: 13px;
  display: block;
  margin: 4px 10px 0px 14px;
}

.iti{
  width: 100%;
}

.flash-messages {
  margin: 1rem auto;
  max-width: 800px;
  padding: 0 1rem;
}

.flash {
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 10px;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Category-specific colors */



.flash-warning {
  background-color: #fff8e1;
  color: #f57c00;
  border: 1px solid #ffe082;
  position: relative;
}



.flash-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: inherit;
}
.flash-close:hover {
  opacity: 0.6;
}

