/* bootstrap strat */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Rozha+One&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  color: #fff;
}

p {
  font-family: var(--font-s);
  font-size: clamp(15px, 3vw, 20px);
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
  /* all: unset; */
  font-weight: unset;
  line-height: inherit;
}

button {
  outline: none;
  background: none;
  background-color: none;
  border: none;
  color: inherit;
  font-size: inherit;
  transition: all 0.3s ease-in-out;
}

/* 
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  border: 2px solid #cb188b;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, transform 0.2s ease;
  opacity: 1;
}

.custom-cursor.dissolve {
  opacity: 0;
  transform: scale(0.8) translate(-50%, -50%);
}

@media screen and (max-width:992px){
	.custom-cursor {
		display:none;
	}
} */

input:hover,
input:focus,
textarea:hover,
textarea:focus,
input,
textarea {
  outline: none;
  /* border: none; */
}

dl,
ol,
ul {
  margin-bottom: 0;
}

ol,
ul {
  padding-left: 0;
}

p {
  margin-bottom: 0;
}

a:hover {
  text-decoration: none !important;
}

a {
  text-decoration: none;
}

.upper {
  text-transform: uppercase;
}

.mt-50px {
  margin-top: 50px;
}

.mx-80px {
  margin-top: 80px;
  margin-bottom: 80px;
}

.mx-20px {
  margin-top: 20px;
  margin-bottom: 20px;
}

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

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

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

.px-15px {
  padding-left: 15px;
  padding-right: 15px;
}

a:focus {
  outline: none !important;
}

.w-80 {
  width: 80%;
}

.w-60 {
  width: 60%;
}

.align-center {
  align-items: center;
}

.img-wp img {
  width: 100%;
}

.img-wp {
  width: 100%;
}

.mt-80px {
  margin-top: 80px;
}

.mt-30px {
  margin-top: 30px;
}

.mt-60px {
  margin-top: 60px;
}

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

.pb-10px {
  padding-bottom: 10px;
}

.pb-20px {
  padding-bottom: 20px;
}

.px-150 {
  padding: 0 150px;
}

img {
  height: auto;
}

/* bootstrap end */

/* fonts */

:root {
  --font-p: "Instrument Sans", sans-serif;
  --font-sec: "Rozha One", serif;
  --p-color: #fff;
  --gray: #555555;
  --black: #000000;
  --sec-color: #fecd00;
  --background: #ffffff;
  --light: #e6baba;
  --dark: #991b1e;
  --blue: #242730;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: var(--light);
}

::-webkit-scrollbar-thumb {
  background-color: var(--dark);
  border-radius: 6px;
  border: 3px solid var(--light);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--sec-color);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--dark) var(--background);
}

@supports (-ms-overflow-style: none) {
  * {
    -ms-overflow-style: scrollbar;
  }
}


a {
  transition: all 0.3s ease-in-out;
}

a:hover {
  cursor: pointer;
  color: var(--sec-color);
}

body {
  background-color: var(--background) !important;
  scroll-behavior: smooth;
}

html,
body {
  font-family: var(--font-p);
  /* background-color: var(--background); */
  max-width: 100%;
  overflow-x: hidden;
  margin-bottom: 0 !important;
  padding: 0 !important;
}

.site-header,
#masthead2 {
  /* background-color: var(--background); */
  background-color: transparent;
  color: var(--black);
  transition: all 0.4s ease;
  backdrop-filter: none;
}

.site-header.scrolled::before,
#masthead2.scrolled::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(54, 54, 54, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: -1;
  pointer-events: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}



.container-custom-gap {
  padding-left: clamp(1rem, 7vw, 160px);
  padding-right: clamp(1rem, 7vw, 160px);
  width: 100%;
  max-width: 100%;
}

/* Main menu links only */
.nav>li>a {
  font-family: var(--font-p);
  font-weight: 500;
  color: var(--background) !important;
  font-size: clamp(15px, 3vw, 18px);
  transition: color 0.3s ease-in-out;
  text-decoration: none;
  position: relative;
  display: inline-block;
}

.nav>li>a:hover {
  color: var(--sec-color) !important;
}

/* Underline animation ONLY for top-level links */
.nav>li>a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: var(--sec-color);
  transition: width 0.3s ease-in-out;
}

.nav>li>a:hover::after {
  width: 100%;
}

/* Active state */
.nav>li.current-menu-item>a,
.nav>li.current_page_item>a,
.nav>li.current-menu-ancestor>a,
.nav>li.current_page_ancestor>a {
  color: var(--sec-color) !important;
}

.nav>li.current-menu-item>a::after,
.nav>li.current_page_item>a::after,
.nav>li.current-menu-ancestor>a::after,
.nav>li.current_page_ancestor>a::after {
  width: 100%;
  color: var(--sec-color);
}


.nav>li.menu-item-has-children>a::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0d7";
  font-size: 14px;
  margin-left: 6px;
  position: relative;
  top: -2px;
  color: #000;
  background-color: transparent !important;
  transition: color 0.3s ease;
}


.nav>li.menu-item-has-children:hover>a::after {
  color: var(--dark);
}


.menu-gap {
  gap: 2rem;
}



.nav .sub-menu {
  background-color: #c927284f;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  min-width: 180px;
  position: absolute;
  z-index: 999;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav li {
  position: relative;
}

.nav .sub-menu li {
  list-style: none;
}

.nav .sub-menu a {
  font-family: var(--font-p);
  font-weight: 500;
  font-size: 15px;
  color: var(--black) !important;
  padding: 8px 16px;
  display: block;
  position: relative;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.nav .sub-menu li:first-child>a {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.nav .sub-menu li:last-child>a {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.nav li:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav .sub-menu a:hover {
  color: var(--background) !important;
  background-color: var(--dark);
}

.nav .sub-menu li.current-menu-item>a,
.nav .sub-menu li.current_page_item>a {
  color: var(--background) !important;
  background-color: var(--dark);
}

.nav .sub-menu .sub-menu {
  background-color: var(--sec-color);
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  min-width: 180px;
  position: absolute;
  left: 100%;
  top: 0;
  z-index: 999;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav .sub-menu li:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav .sub-menu .sub-menu a {
  font-family: var(--font-p);
  font-weight: 500;
  font-size: 15px;
  color: var(--black) !important;
  padding: 8px 16px;
  display: block;
  position: relative;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.nav .sub-menu .sub-menu li:first-child>a {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.nav .sub-menu .sub-menu li:last-child>a {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.nav .sub-menu .sub-menu a:hover {
  color: var(--black) !important;
  background-color: #f0c396;
}

.nav .sub-menu .sub-menu li.current-menu-item>a,
.nav .sub-menu .sub-menu li.current_page_item>a {
  color: var(--background) !important;
  background-color: var(--dark);
}









@media (min-width: 1250px) {
  .menu-gap {
    gap: 1.1rem;
  }
}

@media (min-width: 1650px) {
  .menu-gap {
    gap: 2rem;
  }
}

@media (min-width: 1900px) {
  .menu-gap {
    gap: 3rem;
  }
}

.custom-logo {
  height: auto;
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}

.custom-logo {
  transition: all 0.3s ease-in-out;
}

.site-header .custom-logo {
  width: 247px;
  padding: 20px 0 !important;
}

.site-header.scrolled .custom-logo {
  width: 210px;
  padding: 10px 0 !important;
}

#masthead2 .custom-logo {
  width: 115px;
  padding: 20px 0;
}

#masthead2.scrolled .custom-logo {
  width: 100px;
  padding: 25px 0;
}

.site-header .custom-logo:hover,
#masthead2 .custom-logo:hover {
  filter: drop-shadow(0 0 2px var(--sec-color)) drop-shadow(0 0 0px var(--sec-color));
}

#masthead.scrolled::after,
#masthead2.scrolled::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(54, 54, 54, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(216, 214, 214, 0.08);
  z-index: -1;
}

#masthead,
#masthead2 {

  z-index: 10;
}

.phone-number {
  display: flex;
  align-items: center;
  gap: 0px;
  transition: all 0.3s ease-in-out;
}


.icon-circle i {
  font-size: 14px;
  color: var(--background);
  transition: all 0.3s ease-in-out;
}

.phone-number a {
  font-family: var(--font-p);
  font-size: clamp(17px, 3vw, 20px);
  font-weight: 600;
  color: var(--background);
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

/* ✅ When hovering over the entire .phone-number container */
.phone-number:hover .icon-circle {
  border-color: #fff;
  background: linear-gradient(135deg, #1877f2, #3b5998);
  /* or var(--sec-color) */
}

.phone-number:hover .icon-circle i {
  color: #fff;
}

.phone-number:hover a {
  color: var(--sec-color);
}


.button1 {
  position: relative;
  overflow: hidden;
  color: var(--background);
  padding: 10px 20px;
  font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(15px, 3vw, 20px);
  border-radius: 50px;
  background-color: rgba(36, 39, 48, 0.8);
  z-index: 1;
  transition: color 0.4s ease;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 165px;
  min-height: 40px;
  border:2px solid #fff;
}

.button1::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  aspect-ratio: 1 / 1;
  background-color: var(--sec-color);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease;
  z-index: -1;
}

.button1:hover {
  color: var(--black);
}

.button1:hover::before {
  width: 500px;
}

.button2 {
  position: relative !important;
  overflow: hidden !important;
  color: var(--blue) !important;
  border: 2px solid var(--sec-color) !important;
  padding: 10px 20px !important;
  font-family: var(--font-p) !important;
  font-weight: 600 !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(13px, 3vw, 18px) !important;
  border-radius: 50px !important;
  background-color: var(--sec-color) !important;
  z-index: 1 !important;
  transition: color 0.4s ease, background-color 0.4s ease !important;
  cursor: pointer !important;
  min-width: 150px;
  min-height: 40px;
}

.button2::before {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 0 !important;
  aspect-ratio: 1 / 1 !important;
  background-color: var(--blue) !important;
  border-radius: 50% !important;
  transform: translate(-50%, -50%) !important;
  transition: width 0.6s ease !important;
  z-index: -1 !important;
}

.button2:hover {
  border: 2px solid var(--blue) !important;
  color: var(--background) !important;
  background-color: transparent !important;
}

.button2:hover::before {
  width: 500px !important;
}

.button3 {
  position: relative !important;
  overflow: hidden !important;
  color: var(--blue) !important;
  border: 2px solid var(--sec-color) !important;
  padding: 10px 20px !important;
  font-family: var(--font-p) !important;
  font-weight: 600 !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(13px, 3vw, 18px) !important;
  border-radius: 50px !important;
  background-color: var(--sec-color) !important;
  z-index: 1 !important;
  transition: color 0.4s ease, background-color 0.4s ease !important;
  cursor: pointer !important;
  min-width: 150px;
  min-height: 40px;
}

.button3:hover {
  border: 2px solid var(--blue) !important;
  color: var(--background) !important;
  background-color: var(--blue) !important;
}


/* Banner */
.dual-banner {
  display: flex;
  width: 100%;
  min-height: 650px;
  position: relative;
}

/* Left section */
.banner-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 60px 60px 60px 140px;
  display: flex;
  align-items: center;
  border-bottom-right-radius: 35px;
}

.banner-left .banner-content {
  position: relative;
  z-index: 6;
  max-width: 600px;
}

.overlay-red {
  border-bottom-right-radius: 35px;
  background-color: #991b1e;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  z-index: 1;
}

/* Right section */
.banner-right {
  position: absolute;
  top: -120px;
  right: 0;
  width: 70%;
  height: calc(100% + 20px);
  background-size: cover;
  background-position: center;
  border-bottom-left-radius: 35px;
  z-index: 3;
  overflow: hidden;
}

.overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(36, 39, 48, 0.5), rgba(36, 39, 48, 0.3), rgba(36, 39, 48, 0.1));
}


/* Text styling */
.banner-left h1 {
  z-index: 6;
  position: relative;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 25px;
  font-family: var(--font-sec);
  font-size: clamp(40px, 7vw, 150px);
  color: #fff;
  text-align:left;
}

.banner-left .button2 {
  z-index: 6 !important;
  position: relative;
}

/* --- RESPONSIVENESS --- */

/* Large tablets and small desktops */
@media (max-width: 1200px) {
  .banner-left {
    width: 85%;
    padding: 30px;
  }

  .banner-right {
    width: 75%;
  }

  .banner-left h1 {
    font-size: 80px;
  }

  #masthead2 .custom-logo {
    width: 165px;
    padding: 20px 0;
  }

  #masthead2.scrolled .custom-logo {
    width: 135px;
    padding: 25px 0;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .dual-banner {
    min-height: 500px;
  }

  .banner-left {
    width: 85%;
    padding: 20px;
  }

  .banner-left h1 {
    font-size: 80px;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .dual-banner {
    min-height: 500px;
  }

  .banner-left {
    width: 100%;
    padding: 40px 20px;
  }

  .banner-left {
    width: 75%;
    padding: 20px;
  }

  .banner-right {
    width: 70%;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .dual-banner {
    min-height: 250px;
  }

  .banner-left {
    padding: 30px 15px;
    height: 250px;
  }

  .banner-right {
    width: 67%;
    height: 330px;
  }

  .banner-left h1 {
    font-size: 40px;
    margin-bottom: 20px;
  }
}


/* Home design */

.home_about_heading {
  font-family: var(--font-sec);
  font-size: clamp(30px, 4vw, 50px);
  color: var(--blue);
  line-height: 1.2;
  margin: 5px 0 10px;
}

.home_about_subheading p {
  font-family: var(--font-p);
  color: var(--dark);
  font-size: clamp(18px, 3vw, 24px);
  line-height: 1.2;
  font-weight: 500;
}

.home_about_desc p {
  font-family: var(--font-p);
  color: var(--blue);
  font-size: clamp(15px, 3vw, 18px);
  line-height: 1.5;
  font-weight: 500;
}

.property-rent-section {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 50px 0;
}

.property-rent-section {
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}


.property-content {
  padding: 20px;
}

.rent-title {
  font-family: var(--font-sec);
  color: var(--blue);
  font-size: clamp(40px, 5vw, 80px);
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1;
}

.rent-desc p {
  font-family: var(--font-p);
  color: var(--gray);
  font-size: clamp(18px, 3vw, 24px);
  line-height: 1.5;
  font-weight: 500;
  max-width: 80%;
}
.rent-desc ul{margin-left:1.2rem;}

.rent-desc ul li {
  font-family: var(--font-p);
  color: var(--gray);
  font-size: clamp(15px, 3vw, 18px);
  line-height: 1.5;
  font-weight: 500;
  max-width: 80%;
}

.property-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.property-image img {
  border-radius: 20px;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.233) !important;
}


/* About page design */

.statistics-section {
  background: #fff;
}

.section-title {
  position: relative;
  display: inline-block;
  font-family: var(--font-sec);
  font-size: clamp(28px, 3vw, 35px);
  color: var(--dark);
}

.section-title::before,
.section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100px;
  height: 1px;
  background: #dadada;
}

.section-title::before {
  right: 100%;
  margin-right: 20px;
}

.section-title::after {
  left: 100%;
  margin-left: 20px;
}

.stat-item .counter {
  font-weight: 700;
  font-family: var(--font-sec);
  color: var(--blue);
  font-size: clamp(30px, 3vw, 45px);
  display: inline-block;
  margin-right: 5px;
}

.stat-item .suffix {
  font-weight: 700;
  font-family: var(--font-sec);
  color: var(--blue);
  font-size: clamp(30px, 3vw, 45px);
}

.stat-item p {
  font-family: var(--font-p);
  font-weight: 500;
  color: var(--blue);
  font-size: clamp(15px, 3vw, 18px);
  margin-top: 8px;
}

.about-us {
  background-color: #f3f3f3;
  padding: 60px 20px;
}

.about-image img {
  border-radius: 20px;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.233) !important;
}

.about-title {
  font-family: var(--font-sec);
  color: var(--blue);
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 700;
}

.about-desc p {
  font-family: var(--font-p);
  font-weight: 500;
  color: var(--blue);
  font-size: clamp(15px, 3vw, 18px);
  line-height: 1.8;
}

.about-desc .red-text {
  color: var(--dark) !important;
  font-family: var(--font-p);
  font-weight: 500;
  color: var(--blue);
  font-size: clamp(18px, 3vw, 24px);
  line-height: 1.4 !important;
}

.testimonial-section {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 80px 0 132px;
  color: #fff;
}

.testimonial-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(153, 27, 30, 0.85);
  z-index: 1;
}

.testimonial-section .container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.testimonial-heading {
  font-weight: 500;
  font-family: var(--font-sec);
  font-size: clamp(22px, 5vw, 50px);
  color: #fff;
}

.testimonial-slider {
  margin: 0 -10px;
}

.testimonial-slider .slick-slide {
  padding: 0 10px;
  box-sizing: border-box;
}

.testimonial-slider .slick-track {
  display: flex;
  gap: 20px;
}

.testimonial-card {
  background: #fff;
  color: #000;
  border-radius: 10px;
  padding: 20px !important;
  width: 100%;
  text-align: left;
  display: flex !important;
  flex-direction: column;
  min-height: 300px !important;
  box-sizing: border-box;
}

.client-info {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.client-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.client-initials {
  width: 50px;
  height: 50px;
  background: #ececec;
  color: var(--blue);
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  border: 1px solid #e6e4e4;
  font-size: clamp(14px, 3vw, 18px);
}

.client-name {
  font-family: var(--font-sec);
  font-size: clamp(19px, 3vw, 21px);
  color: #100e17;
  font-weight: 500;
}

.client-details {
  font-family: var(--font-p);
  font-size: 16px;
  color: #777777;
}

.client-feedback p {
  font-size: clamp(15px, 3vw, 16px);
  line-height: 1.6;
  font-family: var(--font-p);
  color: var(--blue);
}


/* Hide default Slick arrows (with slick-prev and slick-next classes) */
.slick-prev,
.slick-next {
  display: none !important;
}

/* Style your custom arrows */
.custom-prev-arrow,
.custom-next-arrow {
  position: absolute;
  top: auto !important;
  bottom: -70px;
  width: 40px;
  height: 40px;
  background: #d3494baf;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
}

.custom-prev-arrow i,
.custom-next-arrow i {
  font-size: 18px;
}

/* Position left custom arrow */
.custom-prev-arrow {
  left: 49%;
  transform: translateX(-100%);
}

/* Position right custom arrow */
.custom-next-arrow {
  left: 51%;
  transform: translateX(0);
}

.custom-prev-arrow:hover,
.custom-next-arrow:hover {
  background: var(--sec-color);
  color: #000;
}


/* Timeline section */

.our-story {
  background: #fff;
}

.our-story .section-title {
  font-weight: 700;
  color: #000;
  font-size: clamp(32px, 4vw, 50px);
}

.timeline-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  padding-top: 350px;
  padding-bottom: 350px;
}

.timeline-item {
  position: relative;
  margin: 20px;
  display: flex;
  align-items: center;
}

.timeline-circle {
  width: 140px;
  height: 140px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  z-index: 2;
  position: relative;
}

.highlight-circle {
  background-color: var(--dark);
  color: #fff;
  transform: rotate(45deg);
}

.regular-circle {
  width: 80px;
  height: 80px;
  background-color: var(--sec-color);
  color: #000;
  border-radius: 0 100% 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Rotate based on top or bottom */
.regular-circle.drop-top {
  transform: rotate(45deg);
}

.regular-circle.drop-bottom {
  transform: rotate(225deg);
}


.timeline-circle .timeline-year {
  display: inline-block;
  transform: rotate(-45deg);
  font-family: var(--font-sec);
  font-size: clamp(16px, 3vw, 21px);
}

.regular-circle.drop-bottom .timeline-year {
  transform: rotate(-225deg);
}



.timeline-content {
  max-width: 350px;
  margin-bottom: 20px;
  width: 100%;
}

.timeline-content.top {
  position: absolute;
  top: -260%;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-content.bottom {
  position: absolute;
  top: 160px;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-title {
  font-family: var(--font-sec);
  font-size: clamp(16px, 4vw, 25px);
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.2;
}

.timeline-description p {
  font-family: var(--font-p);
  font-size: clamp(13px, 3vw, 16px);
  color: var(--blue);
}

.regular-circle .timeline-year {
  color: #000 !important;
}


/* Responsive Adjustments */

@media (max-width: 1500px) {
  .timeline-content.top {
    top: -226px;
  }

  .timeline-title {
    font-size: 20px;
  }
}


.timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-image: repeating-linear-gradient(to right,
      #991b1e,
      #991b1e 10px,
      transparent 10px,
      transparent 20px);
  transform: translateY(-50%);
  z-index: 1;
  width: 80%;
  margin: 0 auto;
}

@media (max-width: 1178px) {
  .timeline-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }

  .regular-circle {
    border-radius: 50%;
  }

  .timeline-item {
    display: flex;
    align-items: center;
    flex-direction: row;
    width: 100%;
    max-width: 600px;
    margin-bottom: 60px;
    text-align: left;
    position: relative;
  }

  .timeline-item .timeline-circle {
    width: 80px;
    height: 80px;
    margin-right: 20px;
    flex-shrink: 0;
  }

  .timeline-item .timeline-year {
    font-size: 17px;
  }

  .timeline-item .timeline-content {
    margin: 0;
    max-width: 100%;
    text-align: left;
  }

  .timeline-title {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .timeline-description {
    font-size: 14px;
    color: #444;
  }

  /* Hide vertical line */
  .timeline-wrapper::after {
    display: none;
  }

  /* Reset top/bottom content positioning */
  .timeline-content.top,
  .timeline-content.bottom {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    margin: 0;
  }

  .timeline-line {
    display: none;
  }

  .timeline-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 10px;
    background-image: repeating-linear-gradient(to bottom,
        #991b1e,
        #991b1e 1px,
        transparent 1px,
        transparent 20px);
    transform: translateX(-50%);
    z-index: 0;
  }

  .highlight-circle {
    width: 100px !important;
    height: 100px !important;
  }
}

































/* Contact Design */

.contact-title {
  font-family: var(--font-sec);
  font-size: clamp(32px, 4vw, 50px);
  color: #242730;
}

.contact-desc p {
  font-family: var(--font-p);
  font-size: clamp(14px, 3vw, 18px);
  color: var(--gray);
}

.company-meta {
  margin-left: 0;
	margin-top:15px;
}

.company-meta li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.company-meta .meta-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--dark);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.company-meta .meta-text a, .company-meta .meta-text p {
  color: var(--blue);
  font-family: var(--font-p);
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
	margin-bottom:0;
}

.company-meta .meta-text a:hover {
  color: #a6192e;
}

.contact-heading{
  color: var(--blue);
  font-family: var(--font-p);
  font-size: 19px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-section .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--dark);
  border: 2px solid var(--dark);
  transition: all 0.3s ease;
  font-size: 18px;
}

/* ===== Contact Form Wrapper ===== */
.wpcf7 form {
  background: #f7f7f7;
  border-radius: 15px;
  padding: 60px 50px 40px;
  box-shadow: 0 0 19px 0px #b6b5b5c4;
}

.wpcf7 br {
  display: none;
}

/* ===== Form Fields ===== */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  width: 100%;
  border: 1px solid #e5e6e7;
  background: #fff;
  padding: 12px 15px;
  margin-bottom: 20px;
  color: var(--blue);
  font-family: var(--font-p);
  font-size: clamp(15px, 3vw, 18px);
  box-shadow: inset 0 0 0 1px #ddd;
  transition: box-shadow 0.3s ease;
}

.wpcf7 textarea {
  border-radius: 20px;
  resize: none;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
  border-radius: 50px;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
  outline: none;
  box-shadow: inset 0 0 0 1.5px #a6192e;
}

/* Align two fields side-by-side */
.wpcf7 .field-half {
  width: 48%;
  float: left;
}

.wpcf7 .field-half+.field-half {
  float: right;
}

/* Clear floats after each row */
.wpcf7 form p:after {
  content: "";
  display: block;
  clear: both;
}

.wpcf7 form label {
  display: block;
  color: var(--blue);
  font-family: var(--font-p);
  font-size: clamp(15px, 3vw, 18px);
  margin-bottom: 6px;
  font-weight: 500;
}

.wpcf7 form .required {
  color: #e63946;
  margin-left: 3px;
  font-weight: 600;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ffb900;
  color: #000;
}

.contact-divider {
  border-color: rgba(255, 255, 255, 0.15);
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.map-wrapper iframe {
  width: 100%;
  height: 550px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}




/* Location design */


.location-card {
  height: 400px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  background-color: var(--dark);
  /* fallback color */
}

.location-image-wrapper {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}



.location-image {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.location-card:hover .location-image {
  transform: scale(1.1);
}

.location-archive-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 25%, rgba(0, 0, 0, 0.3) 75%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}


.location-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 20px;
  background: transparent;
}

.location-heading {
  font-weight: 700;
  font-family: var(--font-sec);
  font-size: clamp(30px, 4vw, 50px);
  color: var(--blue);
  margin: 5px 0;
  line-height: 1.2;
}

.location-subheading,
.location-subheading p {
  font-family: var(--font-p);
  font-weight: 500;
  color: var(--gray) !important;
  font-size: clamp(15px, 3vw, 20px);
  color: var(-);
}


.location-name {
  font-weight: 500;
  font-family: var(--font-sec);
  font-size: clamp(22px, 4vw, 30px);
  color: #fff;
  line-height: 1.2;
}

.location-place {
  font-family: var(--font-p);
  font-weight: 500;
  color: var(--background) !important;
  font-size: clamp(15px, 3vw, 18px);
}

.location-excerpt {
  font-family: var(--font-p);
  font-weight: 500;
  color: var(--background) !important;
  font-size: clamp(13px, 3vw, 16px);
}

.single-location .location-excerpt {
  color: var(--blue) !important;
  font-size: clamp(13px, 3vw, 18px);
}

.rent-price {
  font-family: var(--font-sec);
  font-size: clamp(18px, 4vw, 22px);
  color: var(--sec-color);
  font-weight: 600;
}


.post-type-archive-location .property-rent-section {
  background-color: #fff;
}


.overlay-box {
  position: relative;
  display: inline-block;
  width: 100%;
}

.overlay-box .overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
}


.location-single-images {
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.233);
}

.gallery-box {
  height: 400px;
}


.shadow-custom {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}


.object-cover {
  object-fit: cover;
  object-position: center;
}

.gallery-box {
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  position: relative;
  height: 100%;
}

.gallery-box img {
  transition: transform 0.4s ease;
  will-change: transform;
}

.gallery-box:hover img {
  transform: scale(1.1);
}



.object-cover {
  object-fit: cover;
  object-position: center;
}

.overlay-black {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  z-index: 2;
  text-align: center;
}



@media (max-width: 768px) {
  .gallery-box {
    height: auto;
  }
}

.fancybox__caption {
  font-family: var(--font-sec);
  font-weight: 500;
  color: var(--background) !important;
  font-size: clamp(15px, 3vw, 20px);
}

.f-button {
  background: linear-gradient(135deg, #fecd00, #ff8c00) !important;
  color: #000 !important;
  border: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.f-button:hover {
  background: linear-gradient(135deg, #ffce3a, #ffaa00) !important;
  color: #000 !important;
}


.location-title {
  font-weight: 700;
  font-family: var(--font-sec);
  font-size: clamp(30px, 4vw, 50px);
  color: var(--blue);
  margin: 5px 0;
  line-height: 1.2;
}

.location-area {
  font-family: var(--font-p);
  font-weight: 500;
  color: var(--blue) !important;
  font-size: clamp(13px, 3vw, 18px);
}

.location-area i {
  color: var(--dark);
}

.last-date {
  font-family: var(--font-p);
  font-weight: 500;
  color: var(--blue) !important;
  font-size: clamp(13px, 3vw, 18px);
}

.rent-single-price {
  font-weight: 700;
  font-family: var(--font-sec);
  font-size: clamp(30px, 4vw, 50px);
  color: var(--blue);
  margin: 5px 0;
  line-height: 1.2;
}

.rent-single-price .rent-single-type {
  font-family: var(--font-sec);
  font-weight: 500;
  color: var(--blue) !important;
  font-size: clamp(19px, 3vw, 25px);
}

.place-nearby-section {
  border: 2px solid #e0e0e0;
  border-radius: 20px;
}

.location-titles {
  font-family: var(--font-sec);
  font-weight: 500;
  color: var(--blue) !important;
  font-size: clamp(19px, 3vw, 26px);
}

.location-titles-lg {
  font-family: var(--font-sec);
  font-weight: 500;
  color: var(--blue) !important;
  font-size: clamp(21px, 3vw, 30px);
}

.place-nearby-section {
  background-color: #fff;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  transition: box-shadow 0.3s ease;
}

.place-nearby-section:hover {
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

.location-titles {
  font-size: 1.5rem;
  font-weight: 700;
  color: #212529;
  letter-spacing: 0.03em;
}

.location-area {
  font-size: 1rem;
  color: #6c757d;
  font-weight: 500;
}


.places-nearby-list .place-item {
  flex: 0 0 auto;
  border: 1px solid #e0e0e0;
  border-radius: 11px;
  padding: 0.375rem 1rem;
  font-family: var(--font-sec);
  font-weight: 500;
  color: var(--blue) !important;
  font-size: clamp(14px, 3vw, 17px);
  transition: all 0.3s ease-in-out;
  cursor: default;
  user-select: none;
}

.places-nearby-list .place-item:hover {
  background-color: #eaeaea;
  border-color: #fecd00;
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25) !important;
}

.places-nearby-list .place-item img {
  display: block;
  filter: drop-shadow(0 0 0 #fecd00);
}


.place-nearby-section h1,
.place-nearby-section h2,
.place-nearby-section h3,
.place-nearby-section h4,
.place-nearby-section h5,
.place-nearby-section h6 {
  font-family: var(--font-sec, inherit);
  font-weight: 600;
  color: var(--blue) !important;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  font-size: clamp(18px, 2.5vw, 25px);
}

.place-nearby-section p {
  font-family: var(--font-p, inherit);
  font-weight: 500;
  color: var(--blue) !important;
  font-size: clamp(15px, 3vw, 18px);
  margin-bottom: 1rem;
}

.place-nearby-section ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.place-nearby-section ul li {
  font-family: var(--font-p, inherit);
  font-weight: 500;
  font-size: clamp(13px, 2.5vw, 16px);
  background-color: #fff;
  border: 1px solid #e0e0e0;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--blue);
  transition: all 0.2s ease;
}

.place-nearby-section ul li:hover {
  background-color: #fff8e1;
  border-color: #fecd00;
}

.amenity-item {
  border-radius: 10px;
}

/* Ensure overlay and button are hidden initially */
.location-card .location-overlay::after {
    content: '';
    background-color: rgba(36, 39, 48, 0.7);
    position: absolute;
    inset: 15px;
    border-radius: 20px;
    opacity: 0;
    transform: scale(0.95); /* start smaller */
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 1;
}

.location-card .location-overlay .button1 {
    opacity: 0;
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease 0.1s; /* slight delay for polish */
}

/* Hover animation */
.location-card:hover .location-overlay::after {
    opacity: 1;
    transform: scale(1); /* smooth zoom */
}

.location-card:hover .location-overlay .button1 {
    opacity: 1;
}







/* Footer Design */


.site-footer {
  background-color: #141e2d;
  color: #fff;
  font-size: 14px;
  line-height: 1.7;
}

.site-footer .footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(20, 30, 45, 0.69), rgba(20, 30, 45, 0.76));
  z-index: 1;
}

/* Ensure footer content appears above overlay */
.footer-content {
  position: relative;
  z-index: 2;
}

.site-footer a {
  font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(14px, 3vw, 16px);
  color: #fff;
  transition: all 0.3s ease-in-out;
}



.site-footer a:hover {
  color: var(--sec-color);
}

.web-design {
  color: var(--sec-color) !important;
  transition: all 0.3s ease-in-out;
}

.web-design:hover {
  color: var(--black) !important;
}


#menu-footer-menu .current-menu-item>a {
  color: var(--sec-color) !important;
}

.footer-top {
  padding: 50px 0;
}


.footer-details,
.hours-text {
  font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(14px, 3vw, 16px);
  color: #fff;
}

.footer-heading {
  font-family: var(--font-p);
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  margin: 25px 0 22px;
}

.footer-logo img {
  max-height: 70px;
}

.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  min-width: 35px;
  min-height: 35px;
  border-radius: 50%;
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  font-size: 16px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-contact ul,
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li,
.footer-links li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu a {
  color: #fff;
  text-decoration: none;
}

.footer-menu a:hover {
  color: #c92728;
}

.footer-bottom {
  background-color: #c92728;
  text-align: center;
  padding: 15px 0;
  font-size: 15px;
}

.copyright,
.copyright a {
  font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(14px, 3vw, 15px);
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.copyright a:hover {
  color: var(--sec-color) !important;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  border: 2px solid #fff;
  transition: all 0.3s ease;
  font-size: 18px;
}

/* Facebook hover */
.social-icons a.facebook:hover {
  border-color: #fff;
  background: linear-gradient(135deg, #1877f2, #3b5998);
  color: #fff;
}

/* Instagram hover (gradient) */
.social-icons a.instagram:hover {
  border-color: #fff;
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  color: #fff;
}

/* LinkedIn hover */
.social-icons a.linkedin:hover {
  border-color: #fff;
  background: linear-gradient(135deg, #0077b5, #0a66c2);
  color: #fff;
}




.entry-title {
  font-weight: 500;
  font-family: var(--font-sec);
  font-size: clamp(22px, 4vw, 50px);
  color: #fff;
  text-align: center;
}

.site-main a {
  color: var(--sec-color);
  transition: all 0.3s ease-in-out;
}

.site-main a:hover {
  color: var(--p-color);
}


/* pagination */

/* Container */
.text-center.mt-5 nav.navigation.pagination {
  margin: 2rem 0;
  font-family: var(--font-p);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Pagination list */
nav.navigation.pagination ul.page-numbers {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 0;
  list-style: none;
  margin: 0;
}

/* Pagination items */
nav.navigation.pagination ul.page-numbers li {
  display: inline-block;
}

/* Page links & spans */
nav.navigation.pagination ul.page-numbers li a,
nav.navigation.pagination ul.page-numbers li span {
  display: inline-block;
  padding: 10px 16px;
  min-width: 42px;
  font-size: 1rem;
  color: var(--p-color);
  background-color: var(--dark);
  border-radius: 8px;
  border: 2px solid transparent;
  text-align: center;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}

/* Hover effect for links */
nav.navigation.pagination ul.page-numbers li a:hover {
  background-color: var(--sec-color);
  color: var(--black);
  border-color: var(--sec-color);
  text-decoration: none;
}

/* Current page */
nav.navigation.pagination ul.page-numbers li span.current {
  background-color: var(--sec-color);
  color: var(--black);
  font-weight: 700;
  border-color: var(--sec-color);
  cursor: default;
}

/* Disabled page links */
nav.navigation.pagination ul.page-numbers li span.dots,
nav.navigation.pagination ul.page-numbers li span.disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

/* Font awesome icons in prev/next */
nav.navigation.pagination ul.page-numbers li a i {
  vertical-align: middle;
  font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  nav.navigation.pagination ul.page-numbers li a,
  nav.navigation.pagination ul.page-numbers li span {
    padding: 8px 12px;
    min-width: 36px;
    font-size: 0.9rem;
  }
}


.wpcf7-response-output {
    display: block;
    background: #e6ffed;         /* soft green background */
    border: 1px solid #34d399;   /* green border */
    color: #065f46;              /* dark green text */
    font-size: 16px;
    font-weight: 500;
    padding: 16px 20px;
    border-radius: 10px;
    margin: 20px 0;
    line-height: 1.6;            /* spacing for <br> lines */
    box-shadow: 0px 3px 8px rgba(0,0,0,0.08);
    animation: fadeInUp 0.5s ease forwards;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output{color:red;}
/* Optional subtle animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}