@font-face {
  font-family: DmSans;
  src: url("../font/DMSans-Regular.ttf");
}

@font-face {
  font-family: SangBleuSunriseTrial-Regular;
  src: url("../font/SangBleuSunriseTrial-Regular.otf");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary-color: #aa6aaa;
  --secondary-color: #eae4ea;
  --text-color: #18212d;
  --DmSans-family: DmSans;
  --SangBleu-family: SangBleuSunriseTrial-Regular;
}
html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: var(--DmSans-family), sans-serif;
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

ul {
  list-style-type: none;
}
button {
  all: unset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn-contact {
  background: var(--secondary-color);
  color: var(--text-color);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background: var(--primary-color);
  color: #ffffff;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--secondary-color);
  box-shadow: 0 12px 25px rgba(170, 106, 170, 0.35);
  color: var(--primary-color);
}
.container {
  max-width: 1424px;
}

header {
  position: relative;
  z-index: 1055;
}

.toggle-menu {
  position: relative;
  z-index: 1060;
}
.toggle-menu {
  position: absolute;
  top: 14px;
  right: 20px;
  width: 30px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toggle-menu span {
  display: inline-block;
  height: 3px;
  width: 30px;
  background: var(--primary-color);
  transition: 0.5s linear;
}

.toggle-menu::before,
.toggle-menu::after {
  position: absolute;
  content: "";
  height: 3px;
  width: 30px;
  background: var(--primary-color);
  transition: 0.5s linear;
}

.toggle-menu::before {
  top: 0;
}

.toggle-menu::after {
  bottom: 0;
}

.toggle-menu.animate span {
  transform: translateX(-50px);
  opacity: 0;
}

.toggle-menu.animate::before {
  transform: rotate(-45deg);
  top: 8px;
}

.toggle-menu.animate::after {
  transform: rotate(45deg);
  top: 8px;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}
.navbar-nav {
  margin-right: 40px !important;
}
.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}
.nav-item {
  margin-left: 55px;
}
.nav-link {
  padding: 0 !important;
  color: var(--text-color);
}

.offcanvas {
  flex-direction: row;
}

.navbar-brand {
  position: absolute;
  top: -25px;
  left: 40px;
  max-width: 224px;
  height: 224px;
  display: inline-block;
}
.navbar-brand > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.navbar {
  padding: 45px 0 0;
}

.banner-section {
  padding: 50px 0;
  margin-top: -35px;
}

.banner-wrapper {
  background-image: url("../assestes/banner-background.png");
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  padding: 80px 60px 0;
}

.banner-title {
  font-family: var(--SangBleu-family);
  font-size: 3rem;
  color: var(--text-color);
  line-height: 1.2;
}

.banner-desc {
  max-width: 817px;
  margin: 0 auto;
  color: #717175;
  line-height: 1.7;
}

.property-section {
  padding: 120px 0;
}

.property-section .row {
  margin: 0 auto;
}

.property-title {
  font-family: var(--SangBleu-family);
  font-size: 50px;
  color: var(--text-color);
  letter-spacing: 1px;
}

.property-image-left img {
  width: 100%;
  max-width: 475px;
  height: 609px;
  object-fit: cover;
  border-radius: 28px;
}

.property-image-right img {
  width: 100%;
  max-width: 440px;
  height: 415px;
  object-fit: cover;
  border-radius: 28px;
}

.property-text {
  max-width: 500px;
  color: #717175;
  line-height: 1.8;
  font-size: 16px;
}

.build-section {
  background: #f8f7f6;
  padding: 120px 0;
}

.build-heading {
  font-family: var(--SangBleu-family);
  font-size: 50px;
  color: #18212d;
  margin-bottom: 47px;
}

.build-card {
  border-radius: 20px;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 356px;
  object-fit: cover;
}

.text-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: 356px;
}

.text-card .sub-heading {
  font-family: var(--SangBleu-family);
  font-size: 28px;
}

.text-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #717175;
}

.light-card {
  background: var(--secondary-color);
}

.purple-card {
  background: var(--primary-color);
  color: white;
}

.purple-card p {
  color: white;
}

.purple-card a {
  color: white;
}

.text-card a {
  font-weight: 500;
}

.testimonial-section {
  padding: 120px 0;
}

.testimonial-badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid #ddd;
  border-radius: 50px;
  font-size: 14px;
  color: #717175;
  margin-bottom: 35px;
}
.testimonial-badge:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
}

.testimonial-heading h2 {
  font-family: var(--SangBleu-family);
  font-size: 48px;
  color: #18212d;
  margin-bottom: 70px;
}

.testimonialSwiper {
  padding: 40px 0;
}

.testimonialSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.avatar-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.swiper-slide-active .avatar-img {
  transform: scale(1.6);
}

.swiper-slide-prev .avatar-img,
.swiper-slide-next .avatar-img {
  opacity: 0.7;
}

.custom-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.next-filled {
  background: var(--primary-color);
}

.next-filled::after {
  color: white !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  color: var(--primary-color);
}

.testimonial-text-wrapper {
  margin-top: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

#testimonialText {
  color: #717175;
  font-size: 16px;
}

#testimonialName {
  margin-top: 14px;
  color: var(--primary-color);
  font-family: var(--SangBleu-family);
}

#testimonialRole {
  font-size: 12px;
  color: #666666;
}

.swiper-container-custom {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-slider-wrapper {
  position: relative;
}

.swiper-button-prev {
  left: 5px;
}

.swiper-button-next {
  right: 5px;
}

.footer-section {
  position: relative;
  background: linear-gradient(to right, #0e1a2b, #13273f);
  color: white;
  padding-top: 180px;
  padding-bottom: 60px;
}

.footer-cta-wrapper {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 945px;
}

.footer-cta-card {
  background: #8a737d;
  border-radius: 8px;
  padding: 40px 60px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.footer-cta-card .touch-card {
  font-family: var(--SangBleu-family);
  font-size: 50px;
}

.footer-logo {
  max-width: 195px;
  height: 165px;
  display: inline-block;
}

.footer-logo > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-content .quick-links {
  margin-top: 30px;
  margin-bottom: 30px;
  font-family: var(--SangBleu-family);
}

.footer-content ul li {
  margin-bottom: 24px;
}

.footer-content ul li a {
  color: white;
  transition: 0.3s ease;
}

.footer-content ul li a:hover {
  color: var(--primary-color);
}

.newsletter-wrapper {
  width: 100%;
  border: 1px solid #eef0f8;
  border-radius: 50px;
  padding: 6px;
}

.newsletter-field {
  flex: 1;
  border: none;
  background: transparent;
  color: white;
  padding: 12px 18px;
  outline: none;
}

.newsletter-field::placeholder {
  color: #bfc5cf;
}

.newsletter-submit {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid #3b4a5a;
  margin-top: 60px;
  padding-top: 20px;
  text-align: center;
  color: #9aa5b1;
  font-size: 14px;
}
.company-name {
  cursor: pointer;
  text-decoration: underline;
}
.company-name:hover {
  color: var(--primary-color);
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-4px);
  color: var(--primary-color);
}

@media (max-width: 992px) {
  .offcanvas {
    flex-direction: column;
    padding-top: 25px;
  }
  .navbar {
    padding-top: 30px;
  }

  .navbar-brand {
    width: 150px;
    height: 150px;
    top: -10px;
    left: 10px;
  }

  .nav-item {
    margin-left: 0;
    margin-bottom: 20px;
  }

  .navbar-nav {
    margin-right: 0 !important;
  }

  .banner-wrapper {
    padding: 60px 30px 0;
    text-align: center;
  }

  .banner-title {
    font-size: 2.2rem;
  }

  .property-section {
    padding: 80px 0;
  }

  .property-image-left img,
  .property-image-right img {
    max-width: 100%;
    height: auto;
  }

  .property-title {
    font-size: 34px;
  }

  .build-heading {
    font-size: 34px;
    text-align: center;
  }

  .text-card {
    height: auto;
  }

  .testimonial-heading h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .navbar-brand {
    width: 120px;
    height: 120px;
    top: -5px;
  }

  .banner-section {
    padding: 30px 0;
  }

  .banner-wrapper {
    padding: 40px 20px 0;
  }

  .banner-title {
    padding-top: 50px;
    font-size: 1.9rem;
  }

  .banner-desc {
    font-size: 14px;
  }

  .property-title {
    font-size: 30px;
    text-align: center;
  }

  .property-text {
    font-size: 14px;
    text-align: center;
  }

  .build-heading {
    font-size: 30px;
  }

  .text-card .sub-heading {
    font-size: 22px;
  }

  .testimonial-heading h2 {
    font-size: 30px;
  }

  .footer-cta-card {
    padding: 30px 20px;
    height: 200px;
  }

  .footer-cta-card .touch-card {
    font-size: 32px;
    text-align: center;
  }
}

@media (max-width: 320px) {
  .banner-title {
    font-size: 1.4rem;
  }

  .banner-desc {
    font-size: 12px;
  }

  .property-title {
    font-size: 22px;
  }

  .build-heading {
    font-size: 22px;
  }

  .testimonial-heading h2 {
    font-size: 22px;
  }

  .text-card {
    padding: 20px;
  }
  .quick-links{
    text-align: center;
  }
}
