* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: var(--primary-color);
}
:root {
  --primary-color: #000000;
  --secondary-color: #ffffff;
  --tertiary-color: #feb408;
}

body,
html {
  overflow-x: hidden;
}

/* common class */

a {
  display: inline-block;
  text-decoration: none;
}
ul {
  list-style-type: none;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.col-50 {
  width: 50%;
  padding: 0 15px;
}

/* header section */

.container {
  max-width: 1850px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
.container2 {
  max-width: 1350px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}





/* topbar */
.top-bar {
  background-color: var(--primary-color);
  font-size: 14px;
}
.top-left,
.top-left2 {
  color: #cccccc;
}
.top-center,
.ms-3 {
  color: var(--secondary-color);
}
.ms-3:hover {
  cursor: pointer;
  color: var(--tertiary-color);
}
.top-left i {
  color: var(--tertiary-color);
  margin-right: 5px;
}

/* navbar   */
/* .main-navbar {
  background-image: linear-gradient(to right, #2b2b2b, #4b4b4b);
  padding: 15px 0;
} */
.main-navbar {
  background: rgba(245, 239, 239, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 15px 50px;
  border-top: 1px solid #746d6d;
  border-bottom: 1px solid #746d6d;
  padding: 15px 0;
}
.nav-logo {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 24px;
}

.nav-logo span {
  color: var(--tertiary-color);
}

.navbar-nav .nav-link {
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 500;
}
.nav-link {
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--tertiary-color);
  transition: 0.5s linear;
  transform: translateY(2px);
}
.nav-link:hover::after {
  width: 100%;
}
.nav-link:hover {
  transition: 0.5s linear;
  transform: translateY(2px);
}
.navbar-nav .nav-link.active {
  color: var(--tertiary-color);
}

.navbar-nav .nav-link:hover {
  color: var(--tertiary-color);
  transition: 0.5s linear;
  transform: translateY(2px);
}

.nav-icons i {
  color: var(--secondary-color);
  font-size: 18px;
  cursor: pointer;
  margin-right: 10px;
}

.nav-icons i:hover {
  color: var(--tertiary-color);
  transition: 0.5s linear;
  transform: translateY(2px);
}

.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  /* left: 40px; */
  max-width: 200px;
  width: 100%;
  padding: 10px 0;
  display: none;
}
/* .dropdown-content li a {
  font-size: 18px;
  /* color: var(--primary-color); */
/* font-family: "Inter", sans-serif;
  padding: 6px 0px;
  max-width: 55px;
  color: var(--tertiary-color);
}  */
.nav-links {
  color: var(--tertiary-color);
  font-size: 18px;
  font-weight: 500;
  padding: 6px 0px;
}

.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown:hover i {
  transform: rotate(180deg);
  transition: 0.5s;
}
.property-box {
  width: 260px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--secondary-color);
}

.property-box ul li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 18px;
  cursor: pointer;
}

 .property-box ul li:last-child {
  border-bottom: none;
}

.property-box ul li:hover {
  color: var(--tertiary-color);
  
}
.navbar-toggler {
  display: none;
}

/* banner section  */
.banner-sec {
  background: url("../assets/bannerimg.jpeg") no-repeat center/cover;
  min-height: 100vh;
}
.banner-sec {
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner-sec h1 {
  font-size: 100px;
  font-weight: 400;
  color: var(--secondary-color);
  text-align: center;
  margin: 0 auto;
  max-width: 1008px;
}
span {
  color: var(--tertiary-color);
}
.banner-sec p {
  font-size: 18px;
  font-weight: 400;
  color: var(--tertiary-color);
  text-align: center;
  margin: 0 auto;
  max-width: 500px;
}
.banner-btn {
  text-align: center;
  margin: 0 auto;
  padding: 20px 0px;
}
.btn-1 {
  border: 1px solid #cccccc;
  background-color: transparent;
  color: var(--secondary-color);
  text-transform: capitalize;
  padding: 12px 10px 12px 20px;
}
.arrow-box {
  background-color: var(--tertiary-color);
  padding: 10px 10px;
}
.btn-1:hover {
  cursor: pointer;
  border: 1px solid var(--tertiary-color);
  transition: 0.5s linear;
  transform: translateY(2px);
  box-shadow: 5px 5px 8px #f5c542;
}

/* category section  */
.category-sec {
  padding: 60px 0px;
  background: radial-gradient(circle at center, #1a160e, #0d0c09);
}
.row {
  margin-bottom: 20px;
}
.box {
  height: 10px;
  width: 10px;
  background: var(--tertiary-color);
  position: relative;
  top: 11%;
  left: 0%;
}

.title1 {
  font-size: 16px;
  font-weight: 700;
  color: var(--tertiary-color);
  margin-left: 23px;
}
.property-title {
  font-size: 35px;
  font-weight: 400;
  color: var(--secondary-color);
  max-width: 604px;
}
.property-description {
  font-size: 18px;
  font-weight: 400;
  color: var(--secondary-color);
  max-width: 604px;
}
.property-card {
  position: relative;
}
.count {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  z-index: 2;
}

.content h4 {
  font-size: 35px;
  color: var(--secondary-color);
  font-weight: 400;
  cursor: pointer;
}
.content h4:hover {
  color: var(--tertiary-color);
  text-decoration: underline;
  transition: 0.5s linear;
  transform: translateY(2px);
}
.content p {
  font-size: 17px;
  opacity: 0.7;
  color: var(--secondary-color);
  font-weight: 400;
}

.swiper-button-prev,
.swiper-button-next,
.swiper-pagination {
  display: none;
}
.bottom-bar {
  display: flex;
  align-items: center;
  gap: 20px;
}

.view-btn {
  border: 1px solid var(--secondary-color);
  padding: 10px 18px;
  color: var(--secondary-color);
  font-size: 14px;
}
.view-btn:hover {
  border: 1px solid var(--tertiary-color);
  transition: 0.5s linear;
  transform: translateY(2px);
  box-shadow: 5px 5px 8px #f5c542;
}

.bottom-bar .line {
  flex: 1;
  height: 1px;
  background: var(--tertiary-color);
  display: none;
}
/* shape section  */
.shape-sec {
  background: radial-gradient(circle at center, #1a160e, #0d0c09);
  padding: 60px 0px;
}
.circle-wrapper {
  width: 180px;
  height: 180px;
  position: relative;
}

.circle-svg {
  width: 100%;
  height: 100%;
}

.circle-text {
  font-size: 14px;
  letter-spacing: 4px;
  fill: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
}
#rotatingGroup.rotate {
  transform-origin: 50% 50%;
  animation: spin 10s linear infinite;
}

.center-arrow {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-size: 18px;
  cursor: pointer;
  z-index: 2;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.text-part {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 45px;
}
.text-part h2 {
  font-size: 150px;
  font-weight: 400;
  color: var(--tertiary-color);
  /* margin-top: 60px; */
}
.text-part h2:hover {
  cursor: pointer;
  transition: 0.5s ease;
  transform: translateY(2px);
}
.text-part h3 {
  font-size: 32px;
  font-weight: 400;
  max-width: 270px;
  color: var(--secondary-color);
  margin-top: 20px;
}
.text1 {
  color: #939292;
  font-weight: 400;
  font-size: 30px;
}
.text-part2 {
  font-size: 43px;
  font-weight: 300;
  max-width: 1320px;
  background: linear-gradient(90deg, #ffffff 0%, #7e7e7e 50%, #2c2b2b 100%);
  background-clip: text;
  color: transparent;
}
/* planning section  */
.planning-sec {
  padding: 60px 0px;
  background: radial-gradient(circle at center, #1a160e, #0d0c09);
  position: relative;
}
.box2 {
  height: 10px;
  width: 10px;
  background: var(--tertiary-color);
  position: absolute;
  top: 7%;
  /* left: 7%; */
}
.title2 {
  color: var(--tertiary-color);
  font-weight: 700;
  font-size: 16px;
  margin-left: 23px;
}
.planning-text h2 {
  color: var(--secondary-color);
  font-weight: 400;
  font-size: 30px;
  max-width: 500px;
}
.star-sec img {
  width: 250px;
  margin-top: 260px;
  cursor: pointer;
}
.star-sec img:hover {
  transition: 0.5s linear;
  transform: rotate(90deg);
}

.planning-wrapper {
  max-width: 800px;
  margin: auto;
  padding-left: 120px;
  position: relative;
}

.planning-line {
  position: absolute;
  left: 70px;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.4);
}
.planning-item {
  position: relative;
  margin-bottom: 40px;
}

.step-number {
  position: absolute;
  left: -120px;
  top: -8px;
  font-size: 48px;
  font-weight: 300;
  color: var(--secondary-color);
}
.step-number:hover {
  cursor: pointer;
  transition: 0.5s ease;
  transform: translateY(2px);
  color: var(--tertiary-color);
}
.step-dot {
  width: 8px;
  height: 8px;
  background: var(--tertiary-color);
  border-radius: 2px;
  margin-left: -53px;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 40px;
  font-weight: 400;
  color: var(--secondary-color);
  margin: 0px 0px 8px 20px;
}

.step-content p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 450px;
  line-height: 1.6;
  margin: 0px 0px 8px 20px;
}
/* story section  */
.story-sec {
  padding: 60px 0px;
  background: radial-gradient(circle at center, #1a160e, #0d0c09);
  /* position: relative; */
}

.story-img {
  max-width: 500px;
  box-shadow: 6px 6px 6px #f6c85f;
}
.story-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: pointer;
   animation: slowZoom 7s ease-in-out infinite alternate;
}


@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

.quote-card {
  position: absolute;
  top: 180px;
  right: 100px;
  background: #f6c85f;
  padding: 45px 0px;
  width: 250px;
  cursor: pointer;
}
.quote-card:hover {
  transition: 0.5s linear;
  transform: translateY(2px);
}
.quote-card p {
  font-size: 16px;
  color: #746d6d;
  /* margin-bottom: 15px; */
  padding: 0px 0px 0px 20px;
}

.quote-card h5 {
  font-size: 40px;
  font-weight: 400;
  color: var(--primary-color);
  padding: 0px 0px 0px 20px;
}

.quote-card small {
  font-size: 16px;
  font-weight: 500;
  color: #746d6d;
  margin: 0px 0px 100px 20px;
}

.quote-mark {
  margin: 45px 0px 0px 20px;
  color: var(--primary-color);
  font-size: 45px;
}
hr {
  margin: 25px 20px;
}

.story-title {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.3;
  max-width: 900px;
  color: var(--secondary-color);
}

.story-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 1020px;
  font-weight: 300;
  line-height: 1.6;
}
 .story-text{
  position: relative;
}
.story-text h5 {
  font-size: 30px;
  font-weight: 500;
  padding: 10px 0px;
}
.story-list {
  padding: 0;
}

.story-list li {
  position: relative;
  margin-bottom: 10px;
  font-size: 15px;
}

.story-list li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}
.dots-img{
  max-width:163.17px;
  /* position: relative; */
  
}
.dots-img img{
   position: absolute;
right: 30px;
  top: 60%;
}
 .line-img{
  max-width: 9.5px;
}
.line-img img{
  position: absolute;
  right: 220px;
  top: 78%;
} 


.secondary-btn {
  border: 1px solid #cccccc;
  color: var(--secondary-color);
  padding: 18px 10px 18px 30px;
  font-size: 24px;
  cursor: pointer;
}
.secondary-btn:hover {
  border: 1px solid var(--tertiary-color);
  transition: 0.5s linear;
  transform: translateY(2px);
  box-shadow: 5px 5px 8px #f5c542;
}
.arrow-box2 {
  background: #f6c85f;
  color: var(--primary-color);
  padding: 22px 23px;
  font-size: 12px;
  margin-left: 25px;
}
/* feature section  */

.feature-sec {
  padding: 40px 0;
  background: radial-gradient(circle at center, #1a160e, #0d0c09);
}

.auto-scroll {
  overflow: hidden;
}

.scroll-track {
  display: flex;
  width: max-content;
  animation: autoscroll 20s linear infinite;
}

.auto-scroll:hover .scroll-track {
  animation-play-state: paused;
}

@keyframes autoscroll {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0%);
  }
}

.feature-box {
  min-width: 280px;
  padding: 16px 24px;
  flex-shrink: 0;
  cursor: pointer;
}

.title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.line {
  width: 35px;
  height: 2px;
  background: #f5c451;
  flex-shrink: 0;
}

.feature-box h5 {
  margin: 0;
  font-size: 18px;
  color: #f5c451;
}

.feature-box p {
  margin: 0;
  font-size: 14px;
  color: var(--secondary-color);
  padding: 10px 0px 0px 0px;
}

/* advertisement section */
.advertisement-sec {
  padding: 40px 0;
  overflow: hidden;
  background: radial-gradient(circle at center, #1a160e, #0d0c09);
}

.advertisement-wrapper {
  overflow: hidden;
  width: 100%;
}

.advertisement-track {
  display: flex;
  width: max-content;
  animation: ad-marquee 18s linear infinite;
}

.advertisement-wrapper:hover .advertisement-track {
  animation-play-state: paused;
}

.advertisement-content {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 60px;
  flex-shrink: 0;
}

.advertisement-content h2 {
  font-size: 48px;
  font-weight: 500;
  white-space: nowrap;
  color: var(--secondary-color);
}

.star-img img {
  width: 40px;
  height: 40px;
}

/* Animation */
@keyframes ad-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* property section  */

.property-sec {
  background: radial-gradient(circle at left, #1a160d, #0f0d07);
  padding: 60px 0px;
  position: relative;
}
.featured-tag {
  color: #f4c56d;
  font-size: 16px;
  font-weight: 600;

  margin: 12px 0px 0px 23px;
}
.box4 {
  height: 10px;
  width: 10px;
  background: var(--tertiary-color);
  position: absolute;
  top: 14%;
  /* left: 7%; */
}
.section-title {
  font-size: 42px;
  font-weight: 500;
  line-height: 1.3;
  max-width: 300px;
  color: var(--secondary-color);
}

.section-text {
  color: #b9b9b9;
  font-size: 18px;
  font-weight: 500;
  max-width: 246px;
}

.slider-arrows {
  display: flex;
  gap: 20px;
} 

.arrow-btn {
  width: 58px;
  height: 30px;
  border-radius: 15px;
  background: transparent;
  border: 1px solid #b9b9b9;
  color: var(--secondary-color);
  font-size: 20px;
  text-align: center;
  margin: 70px 0px;
}
.arrow-btn:hover {
  background: #f4c56d;
  color: var(--primary-color);
  transition: 0.5s linear;
  transform: translateY(2px);
  cursor: pointer;
}
#slider {
  transition: transform 0.5s ease;
} 

 .property-card {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px;
  cursor: pointer;
   min-width: 280px;
}

.property-card:hover {
  transition: 0.5s linear;
  transform: translateY(1px);
  border-color: #f4c56d;
  box-shadow: 0 20px 40px rgba(244, 197, 109, 0.15);
}
.card-img {
  max-width: 290px;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

 .card-body h4 {
  color: #f4c56d;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 0px 0px 0px;
}

.card-body h5 {
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 400;
}

.card-body p {
  font-size: 16px;
  color: #cfcfcf;
  max-width: 230px;
  text-align: center;
  margin: 0 auto;
} 

 .price {
  display: block;
  color: #f4c56d;
  font-weight: 500;
  padding: 15px 0px 0px 0px;
}

.card-btn {
  border: 1px solid #b9b9b9;
  color: var(--secondary-color);
  background: transparent;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 0px;
  margin-bottom: 40px;
}

.card-btn:hover {
  background: #f4c56d;
  color: var(--primary-color);
  transition: 0.5s linear;
  transform: translateY(2px);
  cursor: pointer;
} 
/* company section  */
.company-sec {
  padding: 60px 0;
  position: relative;
  background: radial-gradient(circle at center, #1a160e, #0d0c09);
  position: relative;
}

.image-card {
  position: relative;
  max-width: 550px;
   
   
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 6px 6px 6px #f5c34b;
    animation: slowZoom 7s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}
.card-text {
  font-size: 16px;
  color: #cfcfcf;
  margin: 50px 0;
  max-width: 580px;
  font-weight: 400;
}

.welcome-text {
  color: #f4c56d;
  font-size: 16px;
  font-weight: 600;
  margin-left: 23px;
}
.box5 {
  height: 10px;
  width: 10px;
  background: var(--tertiary-color);
  position: absolute;
  top: 12%;
  /* left: 7%; */
}

.card-title {
  color: var(--secondary-color);
  max-width: 610px;
  margin: 30px 0px;
}

.btn-2 {
  border: 1px solid #939292;
  background-color: transparent;
  color: var(--secondary-color);
  text-transform: capitalize;
  padding: 18px 10px 18px 25px;
  font-size: 20px;
  cursor: pointer;
}
.btn-2:hover {
  transition: 0.5s linear;
  transform: translateY(2px);
  border: 1px solid var(--tertiary-color);
  box-shadow: 5px 5px 8px #f5c542;
}
.btn-2 img {
  border: 2px solid #f5c34b;
  background-color: var(--secondary-color);
  padding: 22px 23px;
  margin-left: 20px;
}

.shape1 {
  position: absolute;
  background: #ffe347;
  width: 120px;
  height: 120px;
}

.shape-left {
  top: 35%;
  right: -30px;
  border-radius: 0 0 0 100%;
}
.shape2 {
  position: absolute;
  background: var(--tertiary-color);
  width: 100px;
  height: 100px;
}
.shape-right {
  bottom: 35%;
  right: -30px;
  border-radius: 0 0 100% 0;
}
/* project section  */
.project-sec {
  background: radial-gradient(circle at top left, #1b170e, #0d0c09);
  position: relative;
}
.section-tag {
  color: #f4c56d;
  font-size: 16px;
  font-weight: 600;
  margin-left: 23px;
}
.box6 {
  height: 10px;
  width: 10px;
  background: var(--tertiary-color);
  position: absolute;
  top: 6%;
  /* left: 7%; */
}
.section-title {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.3;
  max-width: 600px;
}
.btn-3 {
  border: 1px solid #939292;
  background-color: transparent;
  color: var(--secondary-color);
  text-transform: capitalize;
  padding: 18px 10px 18px 25px;
  font-size: 20px;
  cursor: pointer;
}
.btn-3:hover {
  border: 1px solid var(--tertiary-color);
  transition: 0.5s linear;
  transform: translateY(2px);
  box-shadow: 5px 5px 8px #f5c542;
}
.btn-3 img {
  background-color: var(--tertiary-color);
  padding: 22px 23px;
  margin-left: 20px;
}

.card-image {
  max-width: 648px;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-content h5 {
  font-size: 25px;
  font-weight: 500;
  text-align: center;
  margin: 55px 0px 0px 0px;
  color: #f5c451;
  margin-bottom: 8px;
}

.card-content p {
  font-size: 16px;
  color: var(--secondary-color);
  text-align: center;
}
.card-link {
  text-align: center;
  margin: 0 auto;
}
.link1 {
  color: #f5c451;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--tertiary-color);
}
.link1:hover {
  cursor: pointer;
  transition: 0.5s linear;
  transform: translateY(2px);
}
/* testimonial section  */
.testimonial-sec {
  padding: 60px 0px;
  background: radial-gradient(circle at center, #1a160e, #0d0c09);
}

.testimonial-tag {
  color: #f4c56d;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.testimonial-title {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.3;
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
  color: var(--secondary-color);
}

.testimonial-text {
  max-width: 450px;
  font-size: 16px;
  font-weight: 500;
  color: #bdbdbd;
  text-align: center;
}

.client-name {
  font-size: 25px;
  color: #f4c56d;
  font-weight: 500;
  text-align: center;
  margin: 0 auto;
}
.client-name:hover {
  cursor: pointer;
  transition: 0.5s linear;
  transform: translateY(2px);
  text-decoration: underline;
}
.client-role {
  font-size: 18px;
  font-weight: 500;
  color: var(--secondary-color);
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.testimonial-btn {
  width: 81px;
  height: 40px;
  border: 1px solid #f6c85f;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-4 {
  color: #f6c85f;
  font-size: large;
}
.swiper-button-prev,
.swiper-button-next {
  display: none;
}
.img1 {
  width: 80px;
  height: 80px;
  margin: 25px 0px;
  cursor: pointer;
}
.img1:hover {
  transition: 0.5s linear;
  transform: translateY(2px);
  /* border-radius: 50%; 
   border: 1px solid var(--secondary-color); */
}
/* blog section  */
.blog-section {
  background: radial-gradient(circle at center, #1a160e, #0d0c09);
  padding: 60px 0px;
  position: relative;
}

.blog-tag {
  color: #f4c56d;
  font-size: 16px;
  font-weight: 600;
  margin-left: 23px;
}

.box8 {
  height: 10px;
  width: 10px;
  background: var(--tertiary-color);
  position: absolute;
  top: 8.6%;
  /* left: 7%; */
}

.blog-title {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.3;
  max-width: 450px;

  color: var(--secondary-color);
}

.blog-card {
  background: transparent;
}
.blog-img {
  max-width: 400px;
}
.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 30px;
}
.meta {
  font-size: 14px;
  color: var(--tertiary-color);
  text-transform: uppercase;
}

.blog-card h4 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  max-width: 314px;
  color: var(--secondary-color);
}

.desc {
  font-size: 12px;
  font-weight: 400;
  color: #cfcfcf;
  max-width: 300px;
  margin-bottom: 20px;
}

.btn-5 {
  display: inline-block;
  color: var(--secondary-color);
  font-size: 14px;
  letter-spacing: 1px;
}
.btn-5:hover {
  cursor: pointer;
  transition: 0.5s linear;
  transform: translateY(2px);
  color: var(--tertiary-color);
}
.swiper-button-prev,
.swiper-button-next,
.swiper-pagination {
  display: none;
}
/* footer section  */
.footer-sec {
  background: radial-gradient(circle at center, #1a160e, #0d0c09);
  padding: 60px 0px;
}
.newsletter-tag {
  color: #f4c56d;
  font-size: 16px;
  font-weight: 600;
}

.newsletter-title {
  font-size: 35px;
  font-weight: 400;
  line-height: 1.3;
  max-width: 341px;
  color: var(--secondary-color);
  text-align: center;
  margin: 0 auto;
}

.newsletter-form {
  max-width: 653px;
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  margin: 0 auto;
  margin-top: 90px;
  margin-bottom: 90px;
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--secondary-color);
  padding: 10px 0;
  outline: none;
}

.newsletter-form button {
  background: none;
  border: none;
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.newsletter-form button:hover {
  transition: 0.5s linear;
  transform: translateY(2px);
  color: var(--tertiary-color);
}
.footer-logo {
  font-size: 28px;
  font-weight: 700;
  max-width: 109px;
  color: var(--secondary-color);
   margin: 50px 0px 0px 0px;
}
.footer-logo span {
  color: #f6c85f;
}

.footer-text {
  font-size: 14px;
  color: #bcbcbc;
  margin: 50px 0;
  max-width: 400px;
}
.footer-phone {
  color: #f6c85f;
  font-weight: 400;
}
.footer-number {
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 15px;
}

.footer-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary-color);
    margin: 50px 0;
}
/* .footer-title:hover {
  transition: 0.5s linear;
  transform: translateY(2px);
  color: var(--tertiary-color);
  cursor: pointer;
} */
.footer-list {
  padding: 0;
}
.footer-links {
  font-size: 19px;
  font-weight: 400;
  color: var(--secondary-color);
  margin-bottom: 25px;
  border-bottom: 2px solid #939292;
  cursor: pointer;
}
.footer-links:hover {
  transition: 0.5s linear;
  transform: translateY(2px);
   color: var(--tertiary-color);
  cursor: pointer;
}
.footer-address {
  font-size: 18px;
  font-weight: 500;
  color: var(--secondary-color);
  max-width: 250px;
}
.footer-email {
  font-size: 18px;
  font-weight: 500;
  color: var(--secondary-color);
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--secondary-color);
  margin-right: 8px;
   margin-top: 20px;
}

.social-icons a:hover {
  background: #f6c85f;
  color: var(--primary-color);
  transition: 0.5s linear;
  transform: translateY(2px);
}

.footer-line {
  border: 1px solid #939292;
}

.copyright {
  font-size: 16px;
  font-weight: 400;
  color: #bcbcbc;
  cursor: pointer;
  margin: 30px 0px;
}
.copyright:hover {
  color: var(--tertiary-color);
  transition: 0.5s linear;
  transform: translateY(2px);
}
/* topbar media section  */
@media screen and (max-width: 993px) {
  .top-bar .container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .top-left {
    font-size: 14px;
    margin-top: 10px;
  }

  .top-center {
    font-size: 14px;
  }
  .top-right {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-top: 6px;
  }
  .top-right .ms-3 {
    margin-left: 0;
  }
}
/* navbar media section   */

@media screen and (max-width: 993px) {
  .navbar-toggler {
    display: block;
  }

  .navbar-toggler-icon {
    filter: invert(1);
  }
  .navbar-collapse {
    background-color: var(--primary-color);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    margin-top: 15px;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: center;
  }

  .dropdown-content {
    position: static;
    display: none;
    text-align: center;
  }

  .dropdown.show .dropdown-content {
    display: block;
  }
  .dropdown-content ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .nav-links {
    font-size: 16px;
  }
  .nav-icon {
    /* justify-content: center;
    margin-top: 15px;  */
    display: none;
  }
}

/* banner media section  */
@media screen and (max-width: 1200px) {
  .banner-sec h1 {
    font-size: 60px;
  }
  .banner-sec p {
    font-size: 15px;
    margin-top: 15px;
    max-width: 400px;
  }
}
@media screen and (max-width: 576px) {
  .banner-sec h1 {
    font-size: 40px;
  }
  .banner-sec p {
    font-size: 13px;
    margin-top: 15px;
    max-width: 350px;
  }
}
/* category media section  */
@media screen and (max-width: 993px) {
  .box {
    display: none;
  }
  .title1 {
    text-align: center;
    margin: 0 auto;
  }
  .category-label {
    text-align: center;
    margin: 0 auto;
  }
  .property-title {
    text-align: center;
    margin: 0 auto;
    font-size: 24px;
    margin-top: 10px;
    max-width: 470px;
  }
  .property-description {
    text-align: center;
    margin: 0 auto;
    font-size: 14px;
    margin-top: 10px;
    max-width: 500px;
  }
  .view-btn {
    text-align: center;
    margin: 0 auto;
  }
}
@media screen and (max-width: 576px) {
  .property-title {
    text-align: center;
    margin: 0 auto;
    font-size: 20px;
    margin-top: 10px;
    max-width: 440px;
  }
  .property-description {
    text-align: center;
    margin: 0 auto;
    font-size: 14px;
    margin-top: 15px;
    max-width: 450px;
  }
  .property-card img {
    max-width: 260px;
  }
  .content h4 {
    font-size: 27px;
  }
}

/* shape media section  */
@media screen and (max-width: 1200px) {
  .circle-wrapper {
    margin: 0 auto;
    width: 180px;
    height: 180px;
  }

  .circle-svg text {
    font-size: 13px;
    letter-spacing: 4px;
  }

  .text-part {
    margin: 0 auto;
    text-align: center;
    margin-top: 20px;
  }

  .text-part h2 {
    font-size: 90px;
    line-height: 1;
  }

  .text-part h3 {
    font-size: 26px;
    /* max-width: 100%; */
    margin-top: 10px;
  }

  .text1 {
    font-size: 24px;
  }
  .text-part2 {
    font-size: 30px;
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
    margin-top: 15px;
  }
}

@media screen and (max-width: 576px) {
  .circle-wrapper {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
  }

  .circle-svg text {
    font-size: 15px;
    letter-spacing: 4px;
  }

  .text-part {
    flex-direction: column;
    text-align: center;
    margin-top: 20px;
  }

  .text-part h2 {
    font-size: 80px;
    line-height: 1;
  }

  .text-part h3 {
    font-size: 20px;
    max-width: 100%;
    margin-top: 10px;
  }

  .text1 {
    font-size: 18px;
  }
  .text-part2 {
    font-size: 22px;
    max-width: 450px;
    text-align: center;
    margin: 0 auto;
    margin-top: 15px;
  }
}
/* planning media section  */

@media screen and (max-width: 993px) {
  .box2 {
    display: none;
  }
  .planning-text h3 {
    text-align: center;
    margin: 0 auto;
  }

  .planning-text h2 {
    font-size: 22px;
    text-align: center;
    margin: 0 auto;
    max-width: 400px;
    margin-top: 15px;
  }
  .star-sec {
    text-align: center;
    margin: 0 auto;
  }
  .star-sec img {
    width: 180px;
    margin-top: 40px;
  }
  .planning-wrapper {
    padding-left: 80px;
    max-width: 100%;
    margin-top: 15px;
  }

  .planning-line {
    left: 60px;
    margin-top: 30px;
  }

  .step-number {
    left: -80px;
    font-size: 36px;
    margin-top: 20px;
  }

  .step-dot {
    margin-left: -23px;
    width: 7px;
    height: 7px;
    margin-top: 25px;
  }

  .step-content h4 {
    font-size: 25px;
    margin-left: 30px;
    margin-top: 20px;
  }

  .step-content p {
    font-size: 15px;
    margin-left: 30px;
  }
}
@media screen and (max-width: 576px) {
  .step-number {
    left: -80px;
    font-size: 32px;
    margin-top: 20px;
  }

  .step-dot {
    margin-left: -23px;
    width: 7px;
    height: 7px;
    margin-top: 25px;
  }

  .step-content h4 {
    font-size: 22px;
    margin-left: 25px;
    margin-top: 20px;
  }

  .step-content p {
    font-size: 14px;
    margin-left: 25px;
  }
}

/* story media section  */
@media screen and (max-width: 993px) {
  .about-img {
    text-align: center;
    margin: 0 auto;
  }
  .about-img img {
    max-width: 450px;
  }
  .quote-card {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    max-width: 400px;
    margin: 30px auto;
    padding: 30px 20px;
    text-align: center;
  }

  .quote-card p,
  .quote-card h5,
  .quote-card small {
    padding-left: 0;
  }

  .quote-card h5 {
    font-size: 28px;
  }

  .quote-card p {
    font-size: 15px;
  }

  .quote-mark {
    margin: 0 auto 15px;
    font-size: 36px;
  }

  .story-text h3 {
    text-align: center;
    margin: 0 auto;
    margin-top: 20px;
  }
  .story-title {
    text-align: center;
    margin: 0 auto;
    font-size: 22px;
  }
  .story-desc {
    text-align: center;
    margin: 0 auto;
    font-size: 12px;
    max-width: 800px;
  }
  .story-text h5 {
    text-align: center;
    margin: 0 auto;
    font-size: 24px;
  }
  .story-list {
    text-align: center;
    margin: 0 auto;
  }
.dots-img img {
    right: auto;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .learn-btn {
    text-align: center;
    margin: 0 auto;
  margin-top: 100px;
  }
  .secondary-btn {
    padding: 10px 10px 10px 20px;
    
  }
  .arrow-box2 {
    padding: 10px 10px;
  
  }
  .story-img{
    text-align: center;
    margin: 0 auto;
    max-width: 450px;
  }
.line-img img {
   display: none;
  }

}

@media screen and (max-width: 576px) {
  .about-img {
    text-align: center;
    margin: 0 auto;
  }
  .about-img img {
    max-width: 300px;
  }
.dots-img img {
    right: auto;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .learn-btn {
    text-align: center;
    margin: 0 auto;
  margin-top: 120px;
  }

}
@media screen and (max-width: 420px){
  .dots-img img {
    right: auto;
    top: 84%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .learn-btn {
    text-align: center;
    margin: 0 auto;
  margin-top: 120px;
  }
}






/* feature media section */
@media screen and (max-width: 993px) {
  .feature-box h5 {
    width: 50%;
    margin: 0 auto;
    text-align: center;
  }
  .feature-box p {
    width: 50%;
    margin: 0 auto;
    text-align: center;
    margin-top: 10px;
  }
}
@media screen and (max-width: 576px) {
  .feature-box h5 {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .feature-box p {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
  }
}
/* advertisement media section  */
@media screen and (max-width: 1200px) {
  .advertisement-content h2 {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    flex-direction: column;
    align-items: center;
    font-size: 60px;
  }
  .star-img img {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
}
@media screen and (max-width: 758px) {
  .advertisement-content h2 {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    flex-direction: column;
    align-items: center;
    font-size: 40px;
  }
  .star-img img {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
}
@media screen and (max-width: 576px) {
  .advertisement-content h2 {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    flex-direction: column;
    align-items: center;
    font-size: 30px;
  }
  .star-img img {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
}
/* property media section   */
@media screen and (max-width: 993px) {
  .box4 {
    display: none;
  }
  .featured-tag {
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  .section-title {
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  .section-text {
    width: 100%;

    text-align: center;
    margin: 0 auto;
  }
   .slider-arrows {
    display: flex;
    justify-content: center;
    /* align-items: center; */
   }
   .property-card {
    width: 100%;
    text-align: center;
    margin: 0 auto;
  } 

}

 @media screen and (max-width: 758px) {
 
    .property-card {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    flex-direction: column;

  }  
.card-img {
   text-align: center;
    margin: 0 auto;
}

}

/* company media section */
@media screen and (max-width: 993px) {
  .box5 {
    display: none;
  }
  .image-card {
    text-align: center;
    margin: 0 auto;
    max-width: 500px;
  }
  .card-text {
    text-align: center;
    margin: 0 auto;
    margin-top: 25px;
    max-width: 500px;
  }
  .explore-btn {
    text-align: center;
    margin: 0 auto;
    margin-top: 20px;
  }
  .welcome-text {
    text-align: center;
    margin: 0 auto;
    margin-top: 30px;
  }
  .card-title {
    text-align: center;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .shape1 {
    width: 80px;
    height: 80px;
    right: -20px;
    top: 40%;
  }
  .shape2 {
    width: 70px;
    height: 70px;
    right: -20px;
    top: 40%;
  }
}
@media screen and (max-width: 576px) {
  .image-card {
    text-align: center;
    margin: 0 auto;
    max-width: 450px;
  }
  .card-text {
    text-align: center;
    margin: 0 auto;
    margin-top: 25px;
    max-width: 450px;
  }
  .explore-btn {
    text-align: center;
    margin: 0 auto;
    margin-top: 20px;
  }
  .welcome-text {
    text-align: center;
    margin: 0 auto;
    margin-top: 30px;
  }
  .card-title {
    text-align: center;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .shape1 {
    width: 60px;
    height: 60px;
    right: -15px;
  }
  .shape2 {
    width: 50px;
    height: 50px;
    right: -15px;
  }
  .btn-2 {
    padding: 12px 10px 12px 20px;
  }
  .btn-2 img {
    padding: 8px 8px;
  }
}
/* project media section  */
@media screen and (max-width: 993px) {
  .box6 {
    display: none;
  }
  .d-flex.justify-content-between {
    flex-direction: column;
    align-items: center;
  }
  .section-tag {
    text-align: center;
  }
  .property-btn {
    margin-top: 20px;
  }
  .card-image {
    max-width: 500px;
    text-align: center;
    margin: 0 auto;
  }
}
@media screen and (max-width: 576px) {
  .d-flex.justify-content-between {
    flex-direction: column;
    align-items: center;
  }
  .section-tag {
    text-align: center;
  }
  .section-title {
    font-size: 35px;
  }
  .property-btn {
    margin-top: 20px;
  }
  .btn-3 {
    padding: 4px 4px;
    font-size: 18px;
  }
  .card-image {
    max-width: 400px;
    text-align: center;
    margin: 0 auto;
  }
  .btn-3 {
    padding: 12px 10px 12px 20px;
  }
  .btn-3 img {
    padding: 8px 8px;
  }
}
/* testimonial media section  */
@media screen and (max-width: 993px) {
  .testimonial-sec {
    padding: 40px 15px;
  }

  .testimonial-title {
    font-size: 28px;
    line-height: 1.4;
    max-width: 100%;
  }

  .testimonial-text {
    font-size: 15px;
    max-width: 100%;
  }

  .swiper {
    margin-top: 20px;
  }

  .img1 {
    width: 60px;
    height: 60px;
    margin: 15px 0;
  }

  .client-name {
    font-size: 20px;
    margin-top: 15px;
  }

  .client-role {
    font-size: 15px;
    margin-top: 5px;
  }
  .swiper-slide {
    display: flex;
    justify-content: center;
  }
  .swiper-pagination {
    margin-top: 15px;
  }
}

/* blog media section  */
@media screen and (max-width: 1200px) {
  .box8 {
    display: none;
  }
  .blog-tag {
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  .blog-title {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    font-size: 35px;
  }
  .blog-card h4 {
    font-size: 20px;
  }
}
@media screen and (max-width: 576px) {
  .blog-title {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    font-size: 25px;
    max-width: 300px;
    margin-top: 15px;
  }
  .blog-img {
    max-width: 360px;
    text-align: center;
    margin: 0 auto;
  }
  .meta {
    text-align: center;
    margin: 0 auto;
  }
  .blog-card h4 {
    text-align: center;
    margin: 0 auto;
    font-size: 18px;
    margin-top: 15px;
  }
  .desc {
    text-align: center;
    margin: 0 auto;
    margin-top: 15px;
  }
  .read-more {
    text-align: center;
    margin: 0 auto;
    margin-top: 10px;
  }
}
/* footer media section  */
@media screen and (max-width: 993px) {
  .newsletter-title {
    font-size: 28px;
    margin-top: 10px;
  }
  hr {
    display: none;
  }
  .footer-logo {
    text-align: center;
    margin: 0 auto;
  }
  .footer-text {
    text-align: center;
    margin: 0 auto;
    margin-top: 15px;
  }
  .footer-number {
    text-align: center;
    margin: 0 auto;
    margin-top: 15px;
  }
  .footer-title {
    text-align: center;
    margin: 0 auto;
    margin-top: 10px;
  }
  .footer-list {
    text-align: center;
    margin: 0 auto;
    margin-top: 12px;
  }
  .footer-address {
    text-align: center;
    margin: 0 auto;
    margin-top: 10px;
  }
  .footer-email {
    text-align: center;
    margin: 0 auto;
    margin-top: 10px;
  }
  .social-icons {
    display: flex;
    justify-content: center;
  }
  .social-icons a {
    padding: 10px 10px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 576px) {
  .newsletter-form button {
    font-size: 12px;
  }
  .footer-title {
    font-size: 18px;
  }
  .footer-links {
    font-size: 16px;
  }
  .footer-address {
    font-size: 16px;
    margin-top: 10px;
  }
  .footer-email {
    font-size: 16px;
  }
}
