#home-page .background-video {
  position: relative;
  /* height: 100vh;  */
  overflow: hidden;
  /* To prevent overflow */
}
#home-page .desktop {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  /* Ensures video covers entire area */
  pointer-events: none;
  /* Prevents interaction with video */
}

/* ============= 
header 
============= */
header {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 999;
}
header .top-header {
  color: #fff;
  background: #0159a9;
  padding: 10px 0px;
}
header .top-header .main-top-header {
  display: flex;
}
header .top-header .item {
  flex: 1;
}
header .top-header ul {
  display: flex;
  align-items: center;
  gap: 15px;
}
header .top-header a {
  color: #fff;
}
header .top-header .user-details {
  display: flex;
  justify-content: end;
}
header .top-header .user-details i {
  margin-right: 10px;
}
header .top-header .tagline {
  text-align: center;
  font-size: 16px;
  letter-spacing: 2px;
}
header .top-header .tagline span {
  text-decoration: underline;
}
header .top-header .top-social ul {
  gap: 30px;
}
header .top-header .user-account {
  background: #274c66;
  padding: 8px;
  font-size: 16px;
}
header .bottom-header {
  background-color: #fff;
  padding: 10px 0;
}
header .bottom-header .main-bottom-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .bottom-header .logo a {
  display: flex;
}
header .bottom-header .logo img {
  width: 160px;
}
header .bottom-header .primary-menu ul {
  display: flex;
  align-items: center;
  gap: 15px;
}
header .bottom-header .primary-menu li a {
  padding: 8px 10px;
  color: #000;
  font-size: 16 px;
  position: relative;
  text-align: center;
}
header .bottom-header .primary-menu .active-menu::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
}
header .bottom-header .primary-menu li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: #000;
  transition: all 0.2s linear;
}
header .bottom-header .primary-menu li a:hover:before {
  width: 100%;
}
header .toggle {
  width: 50px;
  height: 50px;
  /* border: 1px solid; */
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  z-index: 99;
  display: none;
}
header .toggle span {
  display: block;
  width: 100%;
  height: 4px;
  background: #102939;
  border-radius: 20px;
  transition: all 0.2s linear;
}
header .toggle span:nth-child(2) {
  width: 80%;
  margin: 0 0 0 auto;
  transition: all 0.2s linear;
}
header .active-toggle span:nth-child(2) {
  width: 0%;
  margin: 0 0 0 auto;
}
header .active-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(0px, 10px);
}
header .active-toggle span:nth-child(3) {
  transform: rotate(314deg) translate(8px, -15px);
}

/* ===============
hero section
=============== */
.hero-section {
  position: relative;
  overflow: hidden;
}
.hero-section .hero-content {
  background-color: rgba(36, 36, 36, 0);
  z-index: 9;
  padding: 250px 0px 200px;
}
.hero-section .hero-content .main-content {
  width: 60%;
  height: auto;
  background-color: rgba(0, 0, 0, 0.3882352941);
  padding: 30px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* align-items: self-start; */
}
.hero-section .hero-content .main-content .home-link-logo {
  width: 150px;
  height: auto;
}
.hero-section .hero-content .banner-title {
  font-size: 45px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-section .hero-content .banner-title img {
  width: 150px;
}
.hero-section .hero-content .features {
  margin-top: 30px;
}
.hero-section .hero-content .features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hero-section .hero-content .features ul li {
  width: 48%;
  display: flex;
  align-items: center;
  gap: 15px;
}
.hero-section .hero-content .features .icon {
  width: 40px;
  display: flex;
}
.hero-section .hero-content .features .icon svg {
  fill: #E9EFF2;
}
.hero-section .hero-content .features path.iconlist-arrow {
  fill: #000;
}
.hero-section .hero-content .features a {
  color: #fff;
}
.hero-section .hero-content .hero-btn {
  display: flex;
  justify-content: space-between;
}

.about-section .about-main {
  display: flex;
  gap: 60px;
}
.about-section .about-main .about-img {
  width: 50%;
}
.about-section .about-main .about-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: self-start;
  gap: 20px;
  background: rgba(0, 0, 0, 0.231372549);
  color: #fff;
  padding: 15px;
}
.about-section .about-main .sold-grid {
  margin: 20px 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  grid-gap: 20px;
  align-items: stretch;
}
.about-section .about-main .img-item {
  display: flex;
  overflow: hidden;
}
.about-section .about-main .img-item img {
  transition: all 0.4s ease-in-out;
}
.about-section .about-main .img-item:hover img {
  transform: scale(1.1);
}
.about-section .about-main .about-tab ul {
  background: #E9EFF2;
  padding: 10px 15px;
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (max-width: 992px) {
  .about-section .about-main .about-tab ul {
    gap: 10px;
  }
}
.about-section .about-main .about-tab li {
  cursor: pointer;
  color: #000;
}
.about-section .about-main .about-tab .active-tab {
  padding: 5px 10px;
  background: #000;
  color: #fff;
}
.about-section .about-tab-box {
  display: none;
}
.about-section .about-tab-box.active {
  display: block;
}

/* =========== 
Buying Process 
=========== */
.buying-process {
  background-color: rgba(0, 0, 0, 0.231372549);
  color: #fff;
}
.buying-process .process-heading {
  text-align: center;
  width: 50%;
  margin: 0 auto;
}
.buying-process .process-items {
  margin-top: 80px;
  display: flex;
  gap: 80px;
}
.buying-process .items {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.buying-process .items span {
  display: block;
}
.buying-process .items .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #9bdafa;
  color: #102939;
  font-size: 24px;
  display: grid;
  place-items: center;
  transition: all 0.3s linear;
}
.buying-process .items .title {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
}
.buying-process .items .number {
  position: absolute;
  font-size: 200px;
  font-weight: 600;
  top: 50px;
  right: 20px;
  line-height: 0;
  z-index: -1;
  color: rgba(217, 222, 224, 0.3019607843);
}
.buying-process .items:hover .icon {
  transform: translateY(-20px);
}

.amenities .amenities-heading {
  display: flex;
  justify-content: space-between;
  color: #fff;
}
.amenities .box {
  width: 30%;
}
.amenities .secondary-btn {
  margin-top: 20px;
}
.amenities .amenities-items {
  margin-top: 50px;
}
.amenities .item {
  position: relative;
}
.amenities .item .img-box {
  display: flex;
}
.amenities .item-title {
  position: absolute;
  text-align: center;
  visibility: hidden;
  width: 0px;
  bottom: 20px;
  display: inline-block;
  right: 15px;
  background-color: #000;
  color: #fff;
  padding: 8px 0;
  font-size: 20px;
  text-transform: uppercase;
  transition: all 0.4s linear;
}
.amenities .item:hover .item-title {
  visibility: visible;
  width: 200px;
}

/* ================ 
FAQ 
=============== */
.faq-section .main-faq-section {
  display: flex;
  gap: 100px;
}
.faq-section .main-faq-section .faq-img {
  width: 50%;
  position: relative;
}
.faq-section .main-faq-section .faq-contentn {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.2s linear;
  background: rgba(0, 0, 0, 0.231372549);
  padding: 15px;
  color: #fff;
}
.faq-section .faq-feature {
  position: absolute;
  bottom: 0;
  padding: 30px;
}
.faq-section .faq-feature ul {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.faq-section .faq-feature ul li {
  background: #e9eff2;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.faq-section .faq-ques {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-section .faq-ques .faq-item {
  background: #ffffff;
  border: 1px solid #000000;
  padding: 15px;
  cursor: pointer;
  color: #000;
}
.faq-section .faq-ques .faq-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-section .faq-ques .faq-title h4 {
  font-weight: 500;
}
.faq-section .faq-ques .faq-title .icon {
  font-size: 24px;
}
.faq-section .faq-ques .faq-content {
  margin-top: 20px;
}
.faq-section .faq-ques .active-faq {
  background: #e9eff2;
  border: 1px solid #ccc;
  transition: all 0.2s linear;
}
.faq-section .faq-ques .active-faq .faq-title .icon {
  transform: rotate(45deg);
}
.faq-section .faq-ques .faq-item:hover {
  background: #e9eff2;
}

/* ============
services
============ */
.services {
  /* background: #E9EFF2; */
  text-align: center;
  color: #fff;
}
.services .service-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
.services .service-card {
  flex: 1 1 30%;
  margin: 10px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.231372549);
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: transform 0.2s;
}
.services .service-card:hover {
  transform: scale(1.05);
}
.services .service-icon {
  width: 100px;
  height: 100px;
}
.services .service-card h3 {
  font-size: 28px;
  margin: 10px 0;
}
.services .service-card p {
  color: #ffffff;
}

footer {
  background-color: #0159a9;
  color: #fff;
}
footer .logo-img {
  width: 250px;
  margin-bottom: 20px;
}
footer a {
  color: #fff;
}
footer .box li {
  text-transform: capitalize;
}
footer .top-footer .footer-main {
  padding: 50px 0px 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .top-footer .footer-main .box {
  width: 30%;
}
@media (max-width: 992px) {
  footer .top-footer .footer-main .box {
    width: 48%;
  }
}
@media (max-width: 700px) {
  footer .top-footer .footer-main .box {
    width: 100%;
  }
}
footer .top-footer .about-box {
  width: 30%;
}
footer .top-footer h5 {
  margin-bottom: 20px;
}
footer .top-footer ul a {
  padding: 5px 0px;
  display: block;
}
footer .bottom-footer {
  padding-top: 20px;
  border-top: 1px solid #ccc;
  text-align: center;
  font-size: 14px;
}
footer .bottom-footer img {
  width: 90px;
}
footer .contact-box ul li a {
  display: flex;
  gap: 15px;
  align-items: center;
}
footer .contact-box img {
  width: 150px;
  display: block;
  margin: 20px 0px 10px;
}
footer .call-btn {
  display: flex;
  align-items: center;
  gap: 10px;
}
footer .call-btn a {
  padding: 5px 12px !important;
  background-color: #fff;
  color: #000;
  display: block;
}

/* ================
inner pages
================ */
.inner-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../upload/banner/inner-banner.jpg);
  background-position: center;
  background-size: cover;
  padding: 250px 0px 130px;
  text-align: center;
  color: #fff;
}

.about-us-section .about-main {
  display: flex;
  gap: 50px;
}
.about-us-section .about-img {
  width: 50%;
  text-align: center;
}
.about-us-section .about-img img {
  width: auto;
}
.about-us-section .about-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-us-section .secondary-btn a {
  color: #000;
}
.about-us-section .secondary-btn a .icon {
  background-color: #000;
  color: #fff;
}

.contact-us-section .main-contact-us {
  display: flex;
  gap: 50px;
}
.contact-us-section .contact-content {
  width: 50%;
}
.contact-us-section .contact-content a {
  display: block;
}
.contact-us-section .contact-content .item a {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  color: #000;
}
.contact-us-section .contact-content .item a span {
  display: block;
}
.contact-us-section .contact-content .item a .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #000;
  color: #fff;
  font-size: 25px;
  display: grid;
  place-items: center;
}
.contact-us-section .contact-content .item a .content {
  font-size: 20px;
}
.contact-us-section .contact-form {
  width: 50%;
}

form {
  padding: 40px;
  background-color: #4ba4f5;
  color: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
form label {
  display: block;
  margin-bottom: 5px;
}
form label span {
  color: red;
}
form input, form textarea, form select {
  width: 100%;
  padding: 10px 15px;
}
form textarea {
  resize: none;
}
form input[type=radio] {
  width: auto;
}
form .group-box {
  display: flex;
  gap: 20px;
}
form .group-box .box {
  width: 50%;
}
form .radio-grup {
  display: flex;
  gap: 20px;
}
form input[type=submit] {
  width: 170px;
  padding: 12px;
  background-color: #ac6320;
  border: none;
  font-size: 16px;
  text-transform: capitalize;
  cursor: pointer;
  color: #fff;
}

.neighbourhood .neighbour-heading {
  text-align: center;
}
.neighbourhood .neighbour-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.neighbourhood .neighbour-list li {
  padding: 8px 20px;
  background-color: #102939;
  color: #fff;
  border-radius: 5px;
}

.rental-home-form .main-rental-home {
  display: flex;
  gap: 40px;
}
.rental-home-form .main-rental-home .rental-home {
  width: 50%;
}
.rental-home-form .main-rental-home .rental-home-img {
  width: 50%;
}
@media (max-width: 992px) {
  .rental-home-form .main-rental-home .rental-home {
    width: 100%;
  }
  .rental-home-form .main-rental-home .rental-home-img {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */