/* FONT IMPORT */

/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --white: #fff;
  --black: #000;
  --primary: #b99037;
  --secondary: #333333;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  font-family: "Work Sans", sans-serif;
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #828282;
  margin: 0;
}

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

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.img {
  perspective: none;
  overflow: hidden;
  transform-style: preserve-3d;
}

.img img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform, box-shadow;
  display: block;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

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

figure {
  margin: 0;
}

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  opacity: 0.3;
}

/* Cursor End */

/* PRELOADER */

.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.preLoader.black {
  background-color: var(--black);
  z-index: 11113;
}

.preLoader.white {
  z-index: 11112;
  background-color: var(--primary);
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
  background-color: var(--primary);
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  padding: 1.295rem 1.875rem;
  line-height: normal;
  align-items: center;
}

.themeBtn.borderBtn {
  background: transparent;
  border: 1px solid #fff;
  padding: 1.04em 2em;
}

/* NAV HEADER CSS */

header {
  margin: 0 auto;
  width: 100%;
  padding: 1.25rem 0;
  transition: 0.3s ease-in-out;
  background-color: #000;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-brand img {
  width: 135px;
}

.navbar-nav {
  align-items: center;
  gap: 2.5rem;
}

.navbar-nav .nav-item .nav-link {
  font-size: 0.9375rem;
  color: var(--white);
  text-transform: capitalize;
  font-weight: 500;
  padding: 0 0;
  display: inline-block;
  position: relative;
}

/* !NAV HEADER CSS */

/* Main Banner Css Start  */

.slideOne h1 {
  margin: 0;
  color: var(--white);
  font-size: 5.625rem;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -6px;
}

.slideOne p {
  color: var(--white);
  font-weight: 500;
  line-height: 1.5;
  margin: 0.625rem auto 2rem;
  font-size: 1.5rem;
  width: 74%;
}

.main-banner {
  background: url(../images/mainBnnr.webp) center/cover no-repeat;
  z-index: 1;
  padding: 14.25rem 0 9.375rem;
}

.themeBtn i {
  transform: rotate(-49deg);
  margin-left: 1rem;
}

.slideOne h2 {
  font-size: 2.875rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -4px;
}

.main-form .form-control {
  height: 4.125rem;
  border: 1px solid var(--white);
  background-color: rgb(255 255 255 / 2%);
  outline: unset;
  box-shadow: unset;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--white);
  font-family: "Work Sans";
}

.main-form .form-control::placeholder {
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--white);
  font-family: "Work Sans";
}

form.main-form button {
  width: 100%;
  justify-content: center;
  border: unset;
  margin-top: 1rem;
}

.main-banner::before {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(45deg, rgb(30 58 138 / 40%), rgb(0 0 0 / 50%));
  z-index: -1;
}

/* Main Banner Css End  */

/* Video Sec Css Start */

.videowrap .subHead::after {
  width: 45%;
}

figure.videofig1 a:hover {
  transform: scale(1.1);
  transition: 0.6s ease;
}

.videowrap .subHead::before {
  width: 46%;
}

.videowrap h2 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #000;
  line-height: 1.5;
  text-align: center;
  width: 90%;
  margin: 0 auto 5rem;
}

figure.videofig1 {
  position: relative;
}

figure.videofig1 a {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b99037;
  font-size: 2rem;
  background: #fff;
  width: 118px;
  height: 118px;
  margin: auto;
  border-radius: 50%;
}

/* Video Sec Css End  */

/* Choose Sec Css Start */

.subHead {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
  line-height: 1.5;
  position: relative;
  text-align: center;
}

.choose-sec::after {
  position: absolute;
  content: "";
  width: 60%;
  margin: auto;
  left: 0;
  right: 0;
  background-color: rgb(2 6 23 / 20%);
  height: 1px;
  top: 0;
}

.subHead::before {
  position: absolute;
  content: "";
  height: 1px;
  background-color: rgb(2 6 23 / 20%);
  left: -5rem;
  width: 50%;
  top: 0;
  bottom: 0;
  margin: auto;
}

.subHead::after {
  position: absolute;
  content: "";
  height: 1px;
  background-color: rgb(2 6 23 / 20%);
  width: 50%;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -5rem;
}

.choose-left .subHead::before {
  position: unset;
}

.choose-left .subHead::after {
  position: unset;
}

.choose-left .subHead {
  text-align: start;
}

.choose-left h2 {
  font-size: 2rem;
  font-weight: 500;
  text-transform: none;
  color: #020617;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.choose-wrapp h5 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #020617;
  line-height: 1.5;
}

/* .choose-content h3 {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.choose-content p {
  color: var(--black);
  line-height: 1.5;
}

.choose-overlay {
  position: relative;
}

.choose-wrapp {
  position: absolute;
  top: 1.25rem;
  display: flex;
  flex-direction: column;
  margin: auto;
  justify-content: space-between;
  gap: 11rem;
  left: 1.25rem;
  bottom: 1.25rem;
} */

section.choose-sec::before {
  position: absolute;
  content: "";
  height: 85%;
  width: 1px;
  background-color: rgb(2 6 23 / 20%);
  left: -2.625rem;
  right: 0;
  margin: auto;
  z-index: -1;
}

.choose-overlay + .choose-overlay {
  margin: 1.875rem 0 0;
}

/* Choose Sec Css End  */

/* Ready Sec Css Start */

.ready-sec {
  background: url(../images/readyimg.webp) center/cover fixed;
}

.ready-content h2 {
  font-size: 3.125rem;
  font-weight: 500;
  color: #020617;
  line-height: 1.16;
  margin: 2rem 0 1rem;
  letter-spacing: -4px;
}

.ready-content p {
  color: var(--black);
  line-height: 1.8;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

/* Ready Sec Css End  */

/* Investment Sec Css Start */

.investment-top h2 {
  font-size: 2rem;
  font-weight: 500;
  text-transform: none;
  color: #020617;
  line-height: 1.125;
  margin-top: 0.25rem;
}

.invest-wrapp h2 {
  font-size: 2rem;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1.375;
  color: #020617;
  letter-spacing: -2px;
}

.invest-wrapp a {
  font-size: 1rem;
  font-weight: 500;
  text-transform: capitalize;
  color: #020617;
}

.invest-wrapp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgb(2 6 23 / 20%);
  padding: 2rem 0;
}

.investment-top {
  margin-bottom: 4.5rem;
}

/* Investment Sec Css End  */

/* House Sec Css Start */

.house-sec {
  background: url(../images/sellbg.webp) center/cover fixed;
  padding-bottom: 10rem;
}

.house-content h2 {
  font-size: 3.75rem;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.2;
}

.house-content h2:nth-child(1) {
  text-align: center;
}

.house-content h2:nth-child(2) {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.house-content h2:nth-child(3) {
  text-align: end;
}

section.house-sec::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgb(185 144 55 / 50%);
}

.house-content .themeBtn i {
  margin-left: 0;
  margin-right: 0.625rem;
  transform: rotate(0);
}

/* House Sec Css End  */

/* Faq Sec Css Start */

#accordion {
  border: 0;
  border-radius: 50px;
}

.faq-wrapp #accordion .card {
  background: transparent;
  border: 1px solid rgb(2 6 23 / 20%);
  padding: 0 1rem;
  border-radius: 0;
}

#accordion .card .btn-link {
  text-transform: capitalize;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  color: #002e25;
  border: 0;
  font-size: 1.25rem;
  overflow: hidden;
  font-weight: 600;
  border-radius: 0;
  padding: 0;
  text-align: left;
}

#accordion .card .btn-link span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--height);
  margin-right: 2rem;
  font-size: 1.875rem;
}

#accordion .card .btn-link i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
  width: 32px;
  height: 32px;
  background: transparent;
  font-size: 14px;
  border-radius: 50px;
  position: absolute;
  right: 30px;
}

#accordion .card .btn-link i::before {
  content: "\f068";
}

#accordion .card .btn-link.collapsed i::before {
  content: "\f067";
}

#accordion .card .btn-link.collapsed i {
  color: #000;
}

#accordion .card + .card {
  margin-top: 1.125rem;
}

#accordion .card .card-body {
  padding: 0 1rem 0.5rem 0rem;
}

#accordion .card .card-body p {
  color: #1d1f1e;
  line-height: 1.5;
}

#accordion .bg-purple h4 {
  color: #000;
  font-size: 3.125rem;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2rem;
}

#accordion .card .btn-link[aria-expanded="true"] {
}

#accordion .card .btn-link[aria-expanded="true"] i {
  color: #000;
}

a.more {
  display: table;
  margin: 3.5rem auto 0;
  font-size: 3.125rem;
  text-transform: uppercase;
  color: var(--black);
  overflow: hidden;
  font-family: "Anton", sans-serif;
}

#accordion .card .card-body p + p {
  margin-top: 2rem;
}

.faq-page .mainHead {
  margin-bottom: 2rem;
  text-align: center;
}

section.faq-sec {
  background-color: #e5c971d9;
  padding: 7.5rem 0;
}

section.faq-sec .subHead::before {
  width: 44%;
}

section.faq-sec .subHead::after {
  width: 44%;
}

/* Faq Sec Css End  */

/* Testimonials Sec Css Start  */
section.testimonial .subHead::before {
  width: 42%;
}

section.testimonial .subHead::after {
  width: 42%;
}

.testiHeading.aos-init.aos-animate {
  margin-bottom: 4rem;
}

figure.testi-img img {
  height: 224px;
  object-fit: cover;
  width: 269px;
}

.testi-overlay .mySwiper1 .swiper-slide {
  width: 19% !important;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-align: center;
}

.testi-overlay .mySwiper1 .swiper-slide-thumb-active {
  transform: scale(1.1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.testi-overlay {
  display: flex;
  align-items: center;
  gap: 1rem;
  /* padding: 5rem 0 0; */
  width: 100%;
}

.testi-overlay .mySwiper1 .swiper-wrapper {
  /* display: flex; */
  /* align-items: center; */
  gap: 2rem;
  justify-content: end;
  /* margin-bottom: -2rem; */
}

/* .testi-overlay .mySwiper1 .swiper-slide-thumb-active .testi-img img {
  width: 1750px;
}

figure.testi-img {
  overflow: hidden;
}

.testimonial .swiper-button-next:after,
.swiper-button-prev:after {
  font-family: "Font Awesome 5 Pro";
  font-size: 1.5rem;
}

.testimonial .swiper-button-next:after {
  content: "\f105";
}

.testimonial .swiper-button-prev:after {
  content: "\f104";
}

.testimonial .swiper-button-next,
.testimonial .swiper-button-prev {
  height: 2rem;
  width: 2rem;
  border: 1px solid #020617;
  border-radius: 50px;
  color: #020617;
  z-index: 1;
  bottom: 21%;
  top: unset;
}

.testimonial .swiper-button-next {
  left: 22%;
}

.testimonial .swiper-button-prev {
  left: 20%;
} */

/* .details {
  display: flex;
  justify-content: space-between;
  margin-top: 1.875rem;
}

.rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.team_content p {
  font-size: 1.25rem;
  color: #020617;
  line-height: 1.875rem;
  margin-top: 11px;
  font-weight: 500;
  width: 94%;
}

.team_content h4 {
  color: #020617;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.team_content h5 {
  color: #475569;
  font-size: 1rem;
  font-weight: 400;
}

.rating li a {
  color: #ffc428;
} */

.testimonial {
  background: rgba(30, 59, 138, 0.11);
}

.testimonial .col-md-6 {
  margin-bottom: 30px;
}

.testiHeading h2 {
  text-align: center;
  margin-top: 2rem;
  color: #020617;
}

.testimonial-card {
  padding: 2rem;
  background-color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-card ul li a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #1e3a8a;
  font-size: 1.3rem;
}
.testimonial-card p {
  color: #2f2a2a;
  font-size: 1.125rem;
  margin: 16px 0 32px;
}

.testimonial-card figure {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card figure h5 {
  font-size: 1.125rem;
  color: #2f2a2a;
  font-weight: 600;
}
/* Testimonials Sec Css End  */

/* Footer Sec Css Start */

footer {
  padding-top: 124px;
  margin-bottom: 10px;
  border-bottom: 1px solid #e4ebf3;
  position: relative;
}

footer h3 {
  font-size: 1rem;
  font-weight: 500;
  color: #020617;
  margin-bottom: 17px;
}

.quicklist li + li {
  margin-top: 10px;
}

.border-r {
  position: relative;
}

.border-r::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 222px;
  background-color: rgba(2 6 23 / 20%);
  right: 28%;
}

.address li a span,
.quicklist li a {
  color: #020617;
  font-size: 1rem;
  font-weight: 500;
}

.address li + li {
  margin-top: 0.75rem;
}

.address li strong {
  display: block;
  color: #475569;
  font-size: 0.875rem;
  margin-bottom: 6px;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  bottom: 7rem;
  width: 100%;
}

.marquee h1 {
  display: inline-block;
  animation: slide 50s linear infinite;
  font-size: 11.25rem;
  font-weight: 600;
}

@keyframes slide {
  0% {
    transform: translateX(100%);
  }

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

.marquee h1 {
  color: #b99037;
  font-size: 180px;
  text-transform: uppercase;
}

.copyRight {
  border-top: 1px solid #e4ebf3;
  padding: 27px 0;
  text-align: center;
  margin-top: 260px;
}

.copyRight p span {
  color: #020617;
  font-weight: 500;
}

/* Footer Sec Css End  */

/* Hover Effect Css Start */
.navbar-nav .nav-item .nav-link::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 0;
  background-color: #020617;
  bottom: -2px;
}

.navbar-nav .nav-item .nav-link:hover::before {
  width: 100%;
  transition: 0.6s ease-in-out;
}

.themeBtn:hover {
  background-color: #020617;
  color: var(--white);
}

/* Hover Effect Css End  */

/* innerpages Start */

.innerBan .overlay {
  position: absolute;
  text-align: left;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
}

.innerBan h2 {
  font-size: 120px;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
}

.innerBan {
  position: relative;
}

.aboutpage1 {
  background: url(../images/readybg1.webp) center/cover no-repeat;
  padding: 7rem 0;
}

section.house-sec.aboutpage1::before {
  display: none;
}

.house-content.housecontentabt h2 {
  font-size: 50px;
  color: #020617;
  font-weight: 500;
}

.house-content.housecontentabt p {
  font-size: 20px;
  font-weight: 500;
  color: #020617;
  margin: 1rem 0 2rem 0;
}

.house-content.housecontentabt {
  text-align: center;
}

.house-content.housecontentabt .subHead {
  margin-bottom: 2rem;
}

.videoabtpage .videowrap h2 {
  width: 100%;
}

section.choose-sec.chooseservice .choose-left {
  text-align: center;
}

section.choose-sec.chooseservice .choose-left .subHead {
  text-align: center;
}

.choose-left p {
  font-size: 1rem;
  color: #020617;
  line-height: 1.7;
  margin: 1rem 0;
}

section.choose-sec.chooseservice::before {
  position: unset;
}

form.contact_form .form-control {
  background-color: #fff;
  outline: unset;
  box-shadow: unset;
  font-size: 0.938rem;
  color: #1c1c1c;
  margin-bottom: 20px;
  height: 60px;
  border-radius: 30px;
  border: 1px solid #e9eef2;
}

form.contact_form .form-control::placeholder,
form.contact_form textarea::placeholder {
  color: #1c1c1c;
}

form.contact_form {
  background: #fff;
  padding: 83px 90px;
  border-radius: 30px;
  margin-left: 4rem;
  margin-top: 7rem;
}

form.contact_form button.themeBtn {
  border-radius: 30px;
  border: unset;
  width: 100%;
}

form.contact_form h2 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 30px;
}

form.contact_form h4 {
  border: 1px solid #041f39;
  width: fit-content;
  padding: 7px 30px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.contatcback {
  background: url(../images/contactpagebg.webp) center/cover no-repeat;
  height: 750px;
  border-radius: 30px;
}

section.contact_us {
  padding: 80px 40px 0;
}

.address li a span,
.quicklist li a:hover {
  color: var(--primary);
}

.navbar-brand img {
  width: 150px;
}

.preLoader img {
  width: 450px;
}

/* ============================================
   Choose Overlay Component - Improved Styling
   ============================================ */

/* Overlay Container */
.choose-overlay {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.choose-overlay:hover {
  transform: translateY(-5px);
}

/* Overlay on main container */
.choose-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0);
  transition: background 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.choose-overlay:hover::before {
  background: rgba(255, 255, 255, 0.7);
}

/* Figure Element */
.choose-overlay .choose-img {
  position: relative;
  margin: 0;
  overflow: hidden;
}

/* Content Wrapper */
.choose-wrapp {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 11rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  pointer-events: none;
}

.choose-overlay:hover .choose-wrapp {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .choose-wrapp {
    gap: 5rem;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .choose-wrapp {
    gap: 3rem;
    top: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }
}

/* Image zoom animation */
.choose-overlay .choose-img img {
  transition: transform 0.4s ease;
  display: block;
  width: 100%;
  height: 500px;
}

.choose-overlay:hover .choose-img img {
  transform: scale(1.05);
}

.choose-content h3 {
  font-size: 2rem;
  font-weight: 600;
}

.choose-content p {
  color: #000;
}

.choose-content {
  text-align: center;
}

.choose-left {
  position: sticky;
  top: 20px;
}
