:root {
  --primary: #cb4154;
  --dark: #111;
  --text: #666;
  --border: #eaeaea;
  --bg: #ffffff;
}

body {
  font-family: "Inter", sans-serif;
}

.topbar {
  background: #162544;
  color: #fff;
  padding: 8px 0;
  font-size: 14px;
}

.topbar a {
  color: #fff;
}

.main-navbar {
  background: #fff;
  padding: 18px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo-text {
  font-weight: 600;
  color: #c58a6a;
  font-size: 20px;
}

.navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  margin: 0 12px;
}

.navbar-nav .nav-link:hover {
  color: #d94b5a;
}

.consult-btn {
  background: #d94b5a;
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
}
.consult-btn:hover{
	 background: #d94b5a;
  color: #fff;
}
/* HERO */
.hero {
  background: url("../img/passion-hero-banner.png") center/cover no-repeat;
  min-height: 65vh;  
  display: flex;
  align-items: center;
  position: relative;
  padding: 20px 0;  
  overflow: hidden;  
}

 
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero .container {
  position: relative;
  z-index: 2;
}

 
.glass-box {
  width: 480px;
  max-width: 100%;

  background: rgba(10, 10, 10, 0.08);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border-radius: 15px;
  padding: 25px;  

  border: 1px solid rgba(255, 255, 255, 0.25);

  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);

  color: white;
  position: relative;
}

.glass-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 15px;

  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.1),
    transparent,
    rgba(255, 255, 255, 0.1)
  );

  opacity: 0.35;
  pointer-events: none;
}

 
.hero-left {
  max-width: 520px;
  color: #fff;
  padding: 20px;  
  border-radius: 8px;
}

 
.top-text {
  letter-spacing: 3px;
  font-weight: 700;
  font-size: 16px;  
  margin-bottom: 8px;
}

 
.title {
  font-size: 42px;  
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 10px;
}

 
.strong-box {
  background: #d94b5a;
  padding: 6px 14px;
  display: inline-block;
  letter-spacing: 2px;
  font-size: 32px;  
}

 
.hero-real {
  font-size: 16px;
  font-weight: 700;
  margin-top: 8px;
}

 
.call-btn {
  background-color: #e24a57;
  color: #fff;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 6px;
  margin-top: 12px;
}

.call-btn:hover {
  background-color: #d63f4c;
  color: #fff;
}

 
.newstars {
  margin: 10px 0;
  color: #ffd700;
}

.newstars i {
  color: #ffd700;
  margin-right: 3px;
  font-size: 16px;
}

 
.hero-text {
  font-size: 14px;
  line-height: 1.5;
  max-width: 400px;
}

 
@media (max-width: 992px) {
  .hero-left {
    max-width: 100%;
    margin-bottom: 20px;
    padding: 15px;
  }

  .title {
    font-size: 34px;
  }

  .strong-box {
    font-size: 26px;
  }

  .hero-text {
    max-width: 100%;
    font-size: 15px;
  }
}

 
@media (max-width: 768px) {
  .hero {
    padding: 40px 15px;
    min-height: auto;  
  }

  .hero-left {
    padding: 15px;
  }

  .top-text {
    font-size: 12px;
  }

  .title {
    font-size: 26px;
  }

  .strong-box {
    font-size: 18px;
    padding: 5px 12px;
  }

  .hero-text {
    font-size: 13px;
    line-height: 1.4;
  }

  .newstars i {
    font-size: 12px;
  }
}
/*ticket scroll*/

.ticker-wrapper {
  width: 100%;
  overflow: hidden;
  background: #f5f5f5;
  padding: 18px 0;
}

.ticker {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: scrollTicker 25s linear infinite;
}

.ticker span {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

/* scrolling animation */
@keyframes scrollTicker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* about*/

.about-section {
  padding: 40px 0;
}
.owner-name {
  font-size: 35px;
  font-weight: 700;
  margin-top: 8px;
}
.image-wrapper {
  position: relative;
  height: 600px;
}

.img-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70%;
  height: 85%;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  z-index: 1;
  animation: fadeUp 1s ease forwards;
}

.img-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-top {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 65%;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  z-index: 2;
  animation: fadeRight 1s ease forwards;
}

.img-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.center-circle {
  position: absolute;
  bottom: 80px;
  right: 110px;
  width: 160px;
  height: 160px;
  background: #cb4154;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  z-index: 5;
  animation: zoomIn 0.8s ease forwards;
}
.center-circle h2 {
  font-size: 40px;
  font-weight: 700;
  margin: 0;
}

.center-circle p {
  font-size: 14px;
  margin: 5px 0 0 0;
}

.stars i {
  font-size: 14px;
  color: #fff;
}

.about-title {
  color: #cb4154;
  font-weight: 700;
  letter-spacing: 1px;
}
.about-extension {
  margin-top: -50px;
}
.main-heading {
  font-size: 40px;
  font-weight: 700;
}

.feature-icon {
  color: #cb4154;
  font-size: 22px;
}

.btn-custom {
  background: #cb4154;
  color: #fff;
  border: none;
  padding: 10px 28px;
  border-radius: 30px;
  transition: 0.3s;
}

.btn-custom:hover {
  background: #a83242;
  transform: translateY(-3px);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 991px) {
  .image-wrapper {
    height: auto;
  }

  .img-top,
  .img-bottom {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
  }

  .center-circle {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 20px auto 0;
  }

  .main-heading {
    font-size: 28px;
  }
}

/** why choose **/

.section-padding {
  padding: 10px 0;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-subtitle {
  max-width: 680px;
  margin: 0 auto;
  color: var(--text);
  font-size: 18px;
}

.premium-card {
  background: var(--bg);
  border-radius: 18px;
  padding: 10px 10px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  height: 100%;
}

.premium-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.icon-style-new {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--primary);
  margin: 0 auto 25px auto;
  transition: 0.3s ease;
}

.premium-card:hover .icon-style {
  background: var(--primary);
  color: #fff;
}

.premium-card h5 {
  font-weight: 600;
  margin-bottom: 12px;
}

.premium-card p {
  font-size: 16px;
  color: var(--text);
  margin: 0;
}

@media (min-width: 1200px) {
  .section-padding {
    padding: 20px 0;
  }
}

@media (max-width: 991px) {
  .section-title {
    font-size: 34px;
  }

  .premium-card {
    padding: 35px 25px;
  }
}

@media (max-width: 576px) {
  .section-padding {
    padding: 70px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .premium-card {
    padding: 30px 20px;
  }

  .icon-style-new {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }
}

.section-padding {
  padding: 20px 0;
}

.section-title {
  font-weight: 700;
  font-size: 38px;
}

.section-subtitle {
  max-width: 750px;
  margin: 0 auto;
  color: #666;
  font-size: 30px;
}

.investment-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  padding: 25px;
  text-align: left;
  height: 100%;
  transition: 0.35s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);

  display: flex;
  flex-direction: column;
  height:100%;
}

.investment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  border-color: #dcdcdc;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.card-header h6 {
  font-weight: 600;
  margin-top: 10px;
  font-size: 22px;
}
.card-image {
  margin-top:15px;
}
.icon-style {
  font-size: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(203, 65, 84, 0.1);
  color: #cb4154;
  backdrop-filter: blur(10px);
  transition: 0.4s ease;
}

.investment-card:hover .icon-style {
  background: #cb4154;
  color: #fff;
  transform: translateY(-5px);
}

.arrow-btn {
  width: 40px;
  height: 40px;
  background: #e5e5e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.arrow-btn i {
  font-size: 16px;
  color: #000;
}

.investment-card:hover .arrow-btn {
  background: #cb4154;
  color: #fff;
}

.investment-card hr {
  margin: 20px 0;
  opacity: 0.2;
}

.investment-card p {
  font-size: 17px;
  color: #555;
  margin-bottom: 20px;
   flex-grow:5;
}

.card-image img{
    width:100%;
    height:160px;
    object-fit:cover;
    border-radius:18px;
}
.investment-card .btn{
    margin-top:15px;
    align-self:flex-start;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
}

.process-section {
  width: 100%;
  padding: 20px 0;
  background: linear-gradient(to bottom, #ffffff, #f8f8f8);
  position: relative;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #111;
}

.section-subtitle {
  max-width: 650px;
  margin: 20px auto 0;
  color: #777;
  font-size: 18px;
  line-height: 1.7;
}

.timeline {
  position: relative;
  margin-top: 0px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #cb4154, #e6e6e6);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0px 60px;
  margin: 0px 0;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.timeline-item.active {
  opacity: 1;
  transform: translateY(0);
  /*padding-top:0px;*/
  margin-top:-80px;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-dot {
  position: absolute;
  top: 50px;
  width: 22px;
  height: 22px;
  background: #cb4154;
  border-radius: 50%;
  left: 100%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 6px rgba(203, 65, 84, 0.15);
}

.timeline-item:nth-child(even) .timeline-dot {
  left: 0;
  transform: translateX(-50%);
}

.step-number {
  font-size: 80px;
  font-weight: 700;
  color: #cb4154;
  opacity: 0.25;
  position: absolute;
  top: 10px;
}

.timeline-item:nth-child(odd) .step-number {
  right: 20px;
}

.timeline-item:nth-child(even) .step-number {
  left: 20px;
}

.timeline-content {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}

.timeline-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

.timeline-content h6 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  color: #111;
  font-size: 23px;
}

.timeline-content p {
  font-size: 16px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.btn-process {
  display: inline-block;
  margin-top: 20px !important;
  background: #cb4154;
  color: #fff;
  padding: 16px 55px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 15px 40px rgba(203, 65, 84, 0.25);
  transition: 0.4s ease;
}

.btn-process:hover {
  background: #a83242;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(203, 65, 84, 0.35);
}

@media (max-width: 1200px) {
  .timeline-item {
    padding: 35px 40px;
  }

  .step-number {
    font-size: 60px;
  }
}
@media (max-width: 992px) {
  .timeline {
  position: relative;
  margin-top: 0px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #cb4154, #e6e6e6);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 40px 60px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.timeline-item.active {
  opacity: 1;
  transform: translateY(0);
  padding-top:0px;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-dot {
  position: absolute;
  top: 50px;
  width: 22px;
  height: 22px;
  background: #cb4154;
  border-radius: 50%;
  left: 100%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 6px rgba(203, 65, 84, 0.15);
}

.timeline-item:nth-child(even) .timeline-dot {
  left: 0;
  transform: translateX(-50%);
}

.step-number {
  font-size: 80px;
  font-weight: 700;
  color: #cb4154;
  opacity: 0.25;
  position: absolute;
  top: 10px;
}

.timeline-item:nth-child(odd) .step-number {
  right: 20px;
}

.timeline-item:nth-child(even) .step-number {
  left: 20px;
}

.timeline-content {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}

.timeline-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

.timeline-content h6 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  color: #111;
  font-size: 23px;
}

.timeline-content p {
  font-size: 18px;
  color: #666;
  margin: 0;
  line-height: 1.8;
}
}
@media (max-width: 768px) {
  .timeline {
  position: relative;
  margin-top: 0px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #cb4154, #e6e6e6);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 40px 60px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.timeline-item.active {
  opacity: 1;
  transform: translateY(0);
  padding-top:0px;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-dot {
  position: absolute;
  top: 50px;
  width: 22px;
  height: 22px;
  background: #cb4154;
  border-radius: 50%;
  left: 100%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 6px rgba(203, 65, 84, 0.15);
}

.timeline-item:nth-child(even) .timeline-dot {
  left: 0;
  transform: translateX(-50%);
}

.step-number {
  font-size: 80px;
  font-weight: 700;
  color: #cb4154;
  opacity: 0.25;
  position: absolute;
  top: 10px;
}

.timeline-item:nth-child(odd) .step-number {
  right: 20px;
}

.timeline-item:nth-child(even) .step-number {
  left: 20px;
}

.timeline-content {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}

.timeline-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

.timeline-content h6 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  color: #111;
  font-size: 23px;
}

.timeline-content p {
  font-size: 18px;
  color: #666;
  margin: 0;
  line-height: 1.8;
}
  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .btn-process {
    padding: 12px 25px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .timeline {
    max-width: 100%;
    margin: auto;
  }

  .timeline::before {
    left: 25px;
    transform: none;
  }

  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding: 20px 15px 20px 65px;
    text-align: left !important;
  }
  
  .timeline-item.active{
	  opacity: 1;
  transform: translateY(0);
  margin-top:50px;
  }

  .timeline-dot {
    left: 25px !important;
    top: 25px;
    width: 16px;
    height: 16px;
  }

  .step-number {
    position: relative;
    font-size: 32px;
    left: 0 !important;
    top: 0;
    margin-bottom: 8px;
  }

  .timeline-content {
    padding: 18px;
    border-radius: 12px;
    width: 250px;
  }

  .timeline-content h6 {
    font-size: 18px;
  }

  .timeline-content p {
    font-size: 15px;
    line-height: 1.6;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .btn-process {
    padding: 12px 25px;
    font-size: 14px;
  }
}

.project-section {
  padding: 20px 0;
  margin-bottom:10px;
}

.section-tag {
  color: #cb4154;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
}

.all-project {
  background: #cb4154 !important;
  color: #fff !important;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  transition: 0.3s ease;
}

.all-project:hover {
  background: #a83245 !important;
  color: #fff !important;
}

.image-stack {
  position: sticky;
  top: 100px;
  height: 420px;
  min-height: 420px;
}

.stack-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.6s ease;
  transform-origin: center;
}

.stack-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: #fff;
}
.property-heading {
  font-size: 30px;
}
.overlay h5 {
  margin: 0;
  font-weight: 600;
}
.browse-property {
  font-size: 18px;
  line-height: 1.8;
}

.left-sticky {
  position: sticky;
  top: 120px;
}

@media (max-width: 991px) {
  .project-section {
    padding: 60px 0;
  }

  .left-sticky {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }

  .image-stack {
    position: relative;
    top: 0;
    height: 380px;
  }

  .stack-card {
    height: 380px;
  }

  .section-title {
    font-size: 80px;
  }
}

/**** no commission section*****/
.no-commission-section {
  background: #f9f9f9;
}

.section-heading {
  color: #cb4154;
  font-weight: 700;
  font-size: 32px;
}

.section-text {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}

.explore-btn {
  background: #cb4154;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.explore-btn:hover {
  background: #a83244;
  color: #fff;
  letter-spacing: 1px;
}

.image-box {
  overflow: hidden;
  border-radius: 15px;
}

.image-box img {
  transition: transform 0.5s ease;
}

.image-box:hover img {
  transform: scale(1.05);
}
/******no commission end ****/

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

.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgb(0 0 0 / 0.1);
  transition: transform 0.4s ease;
}
.testimonial-img img:hover {
  transform: scale(1.03);
}

.testimonial-content {
  background: #fff;
  padding: 60px 50px;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgb(0 0 0 / 0.1);
  position: relative;
  overflow: hidden;
}

.section-tag {
  color: #cb4154;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #cb4154;
}

.section-description {
  font-size: 16px;
  color: #666;
  margin-bottom: 15px;
  max-width: 450px;
}

.quote-icon {
  font-size: 50px;
  color: #cb4154;
  line-height: 1;
  user-select: none;
}

.testimonial-stars {
  margin-bottom: 15px;
}
.testimonial-stars i {
  color: #ffd700;
  margin-right: 3px;
  font-size: 18px;
}

.testimonial-slider {
  position: relative;
  min-height: 200px;
}

.testimonial-item {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  transform: scale(0.95);
  pointer-events: none;
}
.testimonial-item.active {
  opacity: 1;
  position: relative;
  transform: scale(1);
  pointer-events: auto;
}

.testimonial-text {
  font-size: 17px;
  line-height: 1.6;
  color: #444;
  font-style: italic;
}

.client-info {
  display: flex;
  align-items: center;
  margin-top: 35px;
}

.client-details {
  display: flex;
  align-items: center;
  gap: 20px;
}

.client-details img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #cb4154;
  box-shadow: 0 5px 15px rgb(255 76 96 / 0.25);
}

.client-details strong {
  font-weight: 700;
  font-size: 18px;
  color: #222;
  display: block;
}

.client-details p {
  margin: 0;
  font-size: 14px;
  color: #999;
}

.nav-arrows {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}

.nav-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid #cb4154;
  background: white;
  color: #ff4c60;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: #cb4154;
  color: white;
  box-shadow: 0 5px 15px rgb(255 76 96 / 0.5);
}

@media (max-width: 991px) {
  .testimonial-content {
    padding: 40px 30px;
    margin-top: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 0.1);
  }
  .section-title {
    font-size: 28px;
  }
  .section-description {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .testimonial-content {
    padding: 30px 20px;
  }
  .nav-btn {
    width: 38px;
    height: 38px;
  }
  .client-details img {
    width: 50px;
    height: 50px;
    border-width: 2px;
  }
  .testimonial-stars i {
    font-size: 16px;
  }
}

.section-heading {
  font-weight: 700;
  font-size: 2.8rem;
  color: #cb4154;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.3rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #7f8c8d;
  margin-bottom: 3rem;
  max-width: 600px;
}

.info-box {
  background: #fff;
  border-radius: 1rem;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  height: 100%;
}

.info-box:hover {
  border-color: #cb4154;
  box-shadow: 0 12px 30px rgba(203, 65, 84, 0.3);
  transform: translateY(-6px);
}

.icon-box {
  background: #cb4154;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.75rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(203, 65, 84, 0.4);
}

.info-text small {
  font-weight: 600;
  color: #2c3e50;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-size: 0.75rem;
  display: block;
  margin-bottom: 0.3rem;
}

.info-text h5 {
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0;
  color: #cb4154;
  line-height: 1.1;
}

.info-text h5 span {
  color: #cb4154;
  font-weight: 400;
  font-size: 0.85rem;
}
.property-highlight {
  color: #cb4154;
}

.btn-primary-custom {
  background-color: #cb4154;
  color: white;
  font-weight: 700;
  font-size: 1.3rem;
  padding: 0.85rem 3rem;
  border-radius: 2rem;
  border: none;
  box-shadow: 0 8px 20px rgba(203, 65, 84, 0.4);
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.btn-primary-custom:hover,
.btn-primary-custom:focus {
  background-color: #a83245;
  box-shadow: 0 12px 25px rgba(168, 50, 69, 0.7);
  color: white;
  text-decoration: none;
}

.btn-primary-custom i {
  font-size: 1.3rem;
}

@media (max-width: 768px) {
  section {
    padding: 50px 0;
  }
  .section-heading {
    font-size: 2rem;
  }
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .info-box {
    padding: 1.25rem 1.5rem;
  }
  .info-text h5 {
    font-size: 1.1rem;
  }
  .btn-primary-custom {
    font-size: 1.1rem;
    padding: 0.75rem 2.5rem;
  }
}

.footer-section {
  background: linear-gradient(135deg, #111, #1c1c1c);
  font-size: 15px;
 
}

.footer-title {
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-text {
  color: #bbb;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #a83245;
  padding-left: 6px;
}
.social-icons span i {
  color: #fff !important;
}
.social-icons span {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 50%;
  background: #a83245;
  color: #fff;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #a83245;
  color: #fff;
  transform: translateY(-3px);
}

.whatsapp-float {
  position: fixed;
  /* width: 116px; */
  /* height: 61px; */
  bottom: 59px;
  right: 10px;
  background: #a83245;
  color: #fff;
  padding: 1px 9px;
  border-radius: 20px;
  /* border-radius: 50%; */
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  font-size: 15px;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); */
  z-index: 9999;
  text-decoration: none;
  transition: 0.3s;
}

.whatsapp-float:hover {
  background: #20ba5a;
  transform: scale(1.1);
}

@media (min-width: 768px) and (max-width: 820px) {

  .footer-section .row {
    text-align: center;
  }

   
  .footer-section .col-lg-4,
  .footer-section .col-lg-3,
  .footer-section .col-lg-2 {
    width: 100%;
    max-width: 100%;
    margin-bottom: 25px;
  }

   
  .footer-links {
    text-align: center;
  }

   
  .social-icons {
    justify-content: center;
    display: flex;
  }

   
  .footer-section input {
    width: 80%;
    margin: 0 auto;
  }

   
  .footer-section button {
    display: block;
    margin: 10px auto;
  }

   
  .footer-section {
    padding: 40px 20px;
  }
}

/******about page*****/

.about-banner {
  height: 350px;
  position: relative;
}

.about-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

.about-banner-content {
  position: relative;
  z-index: 2;
}

.about-banner-content h1 {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 1px;
}

.about-hero {
  padding: 10px 0;
  position: relative;
  overflow: hidden;
}

.about-hero h1 {
  font-weight: 700;
  font-size: 44px;
  color: var(--dark);
}

.about-hero h3 {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 15px;
}

.about-hero p {
  line-height: 1.7;
}

.about-hero-shape {
  position: absolute;
  right: -150px;
  top: -120px;
  width: 500px;
  height: 500px;
  background: var(--primary);
  opacity: 0.08;
  border-radius: 50%;
}

.btn-brand {
  background: var(--primary);
  color: #fff;
  padding: 13px 30px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-brand:hover {
  background: #c03f4d;
  color: #fff;
}

.profile-card {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.profile-card img {
  width: 100%;
  border-radius: 10px;
}

.aboutprocess-section-title {
  text-align: center;
  margin-bottom: 60px;
}

.aboutprocess-section-title h2 {
  font-weight: 700;
  color: var(--dark);
}

.aboutprocess {
  padding: 20px 0;
  background: #fff;
}

.aboutprocess-card {
  border: none;
  border-radius: 12px;
  padding: 35px 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
  height: 100%;
}

.aboutprocess-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.aboutprocess-icon {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 20px;
}

.aboutprocess-card h5 {
  font-weight: 600;
  color: #333;
}

.aboutprocess-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .hero {
    text-align: center;
  }

  .profile-card {
    margin-top: 40px;
  }

  .hero h1 {
    font-size: 34px;
  }
}

.history-section {
  background: #0f2240;
  position: relative;
  overflow: hidden;
}

.history-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background: url("../img/house-outline.png") no-repeat left center;
  opacity: 0.08;
  background-size: contain;
}

.sub-title {
  color: #ff4d5a;
  font-weight: 600;
  letter-spacing: 1px;
}

.main-title {
  font-size: 40px;
  font-weight: 700;
}

.history-images {
  position: relative;
  display: flex;
  gap: 25px;
}

.img-box {
  width: 48%;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.history-list {
  list-style: none;
  padding: 0;
}

.history-list li {
  margin-bottom: 12px;
  padding-left: 22px;
  position: relative;
}

.history-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff4d5a;
  font-weight: bold;
}

.why-section {
  background: #f4f4f4;
  position: relative;
}

.sub-head {
  color: #e63946;
  font-weight: 600;
  letter-spacing: 1px;
}

.main-head {
  font-size: 40px;
  font-weight: 700;
  color: #0f2240;
}

.why-card {
  background: #fff;
  padding: 0px 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  height: 100%;
}
.why-card-title {
  color: #e63946;
  font-weight: 800;
}
.why-card:hover {
  transform: translateY(-10px);
}

.icon {
  font-size: 40px;
  color: #111;
}

.tl-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  transition: 0.3s ease;
}

 
.tl-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

 
.tl-img {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 75px;
  height: 75px;
  border-radius: 14px;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.tl-img1 {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 75px;
  height: 75px;
  border-radius: 14px;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

 
.tl-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;  
  object-position: center;  
  display: block;
}

 
.tl-card:hover .tl-img {
  transform: scale(1.08);
}

.tl-card:hover .tl-img img {
  transform: scale(1.15);
}

 
.card-desc {
  padding-right: 90px;
}

 
@media (max-width: 768px) {
  .tl-img {
    width: 60px;
    height: 60px;
  }

  .card-desc {
    padding-right: 70px;
  }
}

/****** partner-logo-section-start****/
.partners-section {
  background: #cb4154;
  position: relative;
  overflow: hidden;
}

.partners-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: #cb4154;
  opacity: 0.08;
  border-radius: 50%;
  top: -100px;
  left: -100px;
  filter: blur(80px);
}

.partners-section::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: #cb4154;
  opacity: 0.06;
  border-radius: 50%;
  bottom: -80px;
  right: -80px;
  filter: blur(70px);
}

.small-heading {
  color: #888;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.main-heading {
  color: #000;
  font-weight: 800;
  font-size: 34px;
  position: relative;
  display: inline-block;
}

.main-heading::after {
  content: "";
  width: 60%;
  height: 3px;
  background: #fff;
  position: absolute;
  left: 20%;
  bottom: -8px;
  border-radius: 5px;
}

.partner-box {
  padding: 25px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(203, 65, 84, 0.08);
}

.partner-box::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: rotate(25deg);
  transition: 0.6s;
}

.partner-box:hover::before {
  top: 100%;
}

.partner-box img {
  max-height: 65px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.8);
  transition: all 0.4s ease;
}

.partner-box:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 35px rgba(203, 65, 84, 0.15);
  border-color: rgba(203, 65, 84, 0.3);
}

.partner-box:hover img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .partner-box {
    padding: 20px;
  }

  /*******partner end ******/
}
/*****services page*******/

.service-top-nav {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.service-top-nav a {
  margin: 0 15px;
  font-weight: 500;
  text-decoration: none;
  color: #333;
}

.service-top-nav a:hover {
  color: #cb4154;
}

.service-section {
  padding: 40px 0;
}

.service-section:nth-child(even) {
  background: #f7f7f7;
}

.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  font-size: 17px;
}

.service-list li i {
  position: absolute;
  left: 0;
  top: 4px;
  color: #cb4154;
  font-size: 18px;
}

.service-title   {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #111;
}

.service-text {
  font-size: 18px;
  margin-bottom: 25px;
  line-height:2.1;
}

.service-list li {
  margin-bottom: 10px;
}

.service-img {
  border-radius: 20px;
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.btn-theme {
  background: #cb4154;
  color: #fff;
  padding: 12px 30px;
  border-radius: 40px;
  font-weight: 600;
}

.btn-theme:hover {
  background: #a83345;
  color: #fff;
}
/****process page***/

.processpage-hero {
  padding: 20px 0 20px;
  background: white;
  text-align: center;
}

.processpage-hero h1 {
  font-weight: 700;
  color: #c94c58;
}

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

.processpage-section:nth-child(even) {
  background: white;
}

.step-badge {
  width: 85px;
  height: 85px;
  background: #c94c58;
  color: white;
  font-size: 34px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.processpage-title {
  font-weight: 600;
  margin-bottom: 20px;
}
.process-text{
	font-size:18px;
}
.process-list{
	font-size:18px;
}
.processpage-text {
  color: #666;
  line-height: 1.9;
  margin-bottom: 20px;
}

.processpage-list li {
  margin-bottom: 10px;
  color: #555;
}

.processpage-img {
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.processpage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.processpage-img:hover img {
  transform: scale(1.08);
}

.processpage-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent);
}

.fade-up {
  opacity: 0;
  transform: translateY(60px);
  transition: 0.8s;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/****contact page****/

.contact-section {
  background: #fff;
}

.contact-card {
  background: #fff;
  padding: 30px;
  margin-bottom: 25px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.09);
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.card-title {
  font-weight: 700;
  color: #0f2240;
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}

.card-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 3px;
  background: #dc3545;
}

.contact-card i {
  color: #dc3545;
  margin-right: 10px;
}

.sub-head {
  color: #dc3545;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.main-head {
  font-weight: 700;
  color: #0f2240;
  font-size: 38px;
}

.form-label {
  font-weight: 600;
  color: #0f2240;
  margin-bottom: 6px;
}

.form-control {
  padding: 14px;
  border-radius: 6px;
  border: 1px solid #e4e6eb;
}

.form-control:focus {
  box-shadow: none;
  border-color: #dc3545;
}

.btn-danger {
  border-radius: 6px;
  font-weight: 600;
}

.wpcf7 form {
  max-width: 100%;
}

.wpcf7 label {
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
  color: #333;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 14px;
  transition: 0.3s ease;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
  border-color: #dc3545;
  outline: none;
  box-shadow: 0 0 5px rgba(231, 76, 60, 0.2);
}

.wpcf7 input[type="submit"] {
  background-color: #dc3545;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s ease;
}

.wpcf7 input[type="submit"]:hover {
  background-color: #dc3545;
}

/*********property-listing page**************/

.propertylisting-section {
  background: #f7f8fa;
}

.propertylisting-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  transition: 0.4s;
}

.propertylisting-card:hover {
  transform: translateY(-8px);
}

.propertylisting-img {
  height: 230px;
  overflow: hidden;
}

.propertylisting-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.propertylisting-card:hover img {
  transform: scale(1.08);
}

.propertylisting-body {
  padding: 22px;
}

.propertylisting-tag {
  font-size: 13px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.propertylisting-title {
  font-weight: 600;
  font-size: 18px;
  color: #0f2240;
  margin: 10px 0 15px;
  line-height: 1.4;
}

.propertylisting-price {
  font-size: 16px;
}

.old-price {
  text-decoration: line-through;
  color: #aaa;
  margin-right: 8px;
}

.new-price {
  color: #000;
  font-weight: 700;
}

.btn-outline-danger {
  border-radius: 6px;
  font-weight: 600;
}

/**** property-details****/

.propertydetails-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
}

.propertydetails-img {
  width: 100%;
  border-radius: 8px;
}

.propertydetails-title {
  font-size: 26px;
  font-weight: 600;
  color: #0f2240;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 10px;
}

.new-price {
  font-size: 24px;
  font-weight: bold;
  color: #000;
}

.propertydetails-features li {
  margin-bottom: 10px;
  list-style: none;
}

.propertydetails-features i {
  color: green;
  margin-right: 8px;
}

.btn-contact {
  background: #dc3545;
  color: #fff;
  border-radius: 5px;
  padding: 10px 20px;
  font-weight: 500;
}

.btn-contact:hover {
  background: #dc3545;
  color: #fff;
}
/****** off market comments******/

 
.comments-area {
  max-width: 850px;
  margin: 60px auto;
  padding: 40px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

 
.comments-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #111;
}

 
.comment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comment {
  margin-bottom: 25px;
}

 
.comment-body {
  display: flex;
  gap: 15px;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 14px;
  transition: 0.3s ease;
}

.comment-body:hover {
  background: #f1f1f1;
}

 
.comment-author img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

 
.comment-author .fn {
  font-weight: 600;
  color: #111;
  font-size: 16px;
    text-decoration: none;
}

.comment-author .says {
  display: none;
}

 
.comment-metadata {
  font-size: 13px;
  color: #888;
  margin-top: 4px;
    text-decoration: none;
}

 
.comment-content {
  margin-top: 10px;
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  font-weight: 700;
}

 
.reply {
  margin-top: 10px;
}

.comment-reply-link {
  display: inline-block;
  font-size: 13px;
  font-weight:700;
  color: #cb4154;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.comment-reply-link:hover {
  color: #a83242;
  text-decoration: none;
}
a {
  color: #000;
  text-decoration: none;
}

 #cancel-comment-reply-link{
	   text-decoration: none;
 }
.comment-respond {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.comment-reply-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

 
.logged-in-as {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  text-decoration: none;
}

 
.comment-form textarea {
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  resize: none;
  font-size: 14px;
  transition: 0.3s;
}

.comment-form textarea:focus {
  border-color: #cb4154;
  outline: none;
  box-shadow: 0 0 0 3px rgba(203,65,84,0.1);
}

 
.form-submit {
  margin-top: 15px;
}

#submit {
  background: #cb4154;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

#submit:hover {
  background: #a83242;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(203,65,84,0.25);
}

 
@media (max-width: 768px) {
  .comments-area {
    padding: 20px;
  }

  .comment-body {
    flex-direction: column;
  }

  .comment-author img {
    width: 40px;
    height: 40px;
  }
}

/*** off market image ***/

 
.col-lg-6.position-sticky {
  top: 100px;
}

 
.img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  margin-bottom: 15px;
}

.img:hover {
  transform: scale(1.02);
}

 
.example-image-link {
  display: inline-block;
}

 
.col-lg-6.position-sticky {
  display: grid;
  grid-template-columns: 1fr;
}

.col-lg-6.position-sticky .example-image-link:not(:first-child) {
  display: inline-block;
  width: calc(33.33% - 10px);
  margin-right: 10px;
  margin-bottom: 10px;
}

 
.small-img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
  border: 2px solid transparent;
}

.small-img:hover {
  transform: scale(1.05);
  border-color: #cb4154;
  box-shadow: 0 8px 20px rgba(203,65,84,0.25);
}

 
.small-img.active {
  border-color: #cb4154;
}

 
@media (max-width: 768px) {
  .col-lg-6.position-sticky {
    position: relative !important;
    top: 0;
  }

  .small-img {
    height: 70px;
  }
}
@media (max-width: 991px) {
  .col-lg-6.position-sticky {
    position: relative !important;
    top: 0 !important;
  }
}

/**** single market listing****/

.wa-order-button{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    width:100%;
    max-width:120px;
    height:52px;

    background:linear-gradient(135deg,#d63d57,#c92f4b);
    border:none;
    border-radius:10px;

    color:#fff;
    font-size:35px;
    font-weight:600;
    text-decoration:none;

    cursor:pointer;
    transition:0.3s ease;
    box-shadow:0 6px 18px rgba(0,0,0,0.12);
}

.wa-order-button i{
    font-size:20px;
    line-height:1;
}

.wa-order-button:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 22px rgba(0,0,0,0.18);
}

/**** privacy policy***/
 

.site-main.container{
    max-width:1200px;
    margin:70px auto;
    padding:0 20px;
}

 
.post-3{
    background:#ffffff;
    padding:60px;
    border-radius:30px;
    border:1px solid #ececec;
    box-shadow:
        0 15px 45px rgba(0,0,0,0.05),
        0 5px 15px rgba(0,0,0,0.03);
    position:relative;
    overflow:hidden;
}

 
 

 

.entry-header{
    margin-bottom:50px;
}

.entry-title{
    font-size:48px;
    font-weight:800;
    line-height:1.2;
    color:#0b1d3b;
    text-align:center;
    margin-bottom:0;
    position:relative;
    letter-spacing:-1px;
}

.entry-title::after{
    content:"";
    width:110px;
    height:5px;
    background: #c94c58;
    display:block;
    margin:20px auto 0;
    border-radius:50px;
}

 

.entry-content ol{
    padding-left:20px;
    margin-bottom:20px;
}

.entry-content ol > li{
    font-size:24px;
    font-weight:700;
    color:#0b1d3b;
    margin-bottom:20px;
    margin-top:45px;
    line-height:1.4;
}



.entry-content p{
    font-size:17px;
    line-height:1.8;
    color:#5a5f6a;
    margin:0 0 14px;
    font-weight:400;
    padding:0;
}
 
 .entry-content p:empty{
    display:none;
}

.entry-content p:has(> br:only-child){
    display:none;
}

.entry-content ul{
    margin:25px 0;
    padding-left:25px;
}

.entry-content ul li{
    margin-bottom:14px;
    color:#555;
    line-height:1.9;
    position:relative;
    padding-left:5px;
}

 

.entry-content a{
    color:#c94c58;
    font-weight:600;
    text-decoration:none;
    border-bottom:1px solid transparent;
    transition:all 0.3s ease;
}

.entry-content a:hover{
    color:#0b1d3b;
    border-color:#0b1d3b;
}

 

.entry-content strong{
    color:#0b1d3b;
    font-weight:700;
}

 

.entry-content p strong{
    display:inline-block;
    margin-bottom:8px;
    font-size:18px;
}

 

.entry-content ul,
.entry-content p{
    position:relative;
}

.entry-content ul{
    background:#fafafa;
    border:1px solid #eeeeee;
    padding:25px 25px 25px 45px;
    border-radius:18px;
}

 

.entry-content p:last-child{
    margin-bottom:0;
}

 

@media(max-width:992px){

    .post-3{
        padding:45px 35px;
    }

    .entry-title{
        font-size:40px;
    }

    .entry-content ol > li{
        font-size:22px;
    }
}

@media(max-width:768px){

    .site-main.container{
        margin:40px auto;
        padding:0 15px;
    }

    .post-3{
        padding:30px 22px;
        border-radius:20px;
    }

    .entry-title{
        font-size:32px;
    }

    .entry-title::after{
        width:80px;
        height:4px;
    }

    .entry-content ol > li{
        font-size:20px;
        margin-top:35px;
    }

    .entry-content p{
        font-size:15.8px;
        line-height:1.85;
    }

    .entry-content ul{
        padding:20px 20px 20px 35px;
    }

    .entry-content ul li{
        font-size:15px;
    }
}

@media(max-width:480px){

    .post-3{
        padding:24px 18px;
    }

    .entry-title{
        font-size:28px;
    }

    .entry-content ol > li{
        font-size:18px;
    }

    .entry-content p{
        font-size:15px;
    }
}