/*** Spinner Start ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }

/*** Spinner End ***/


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-md-square {
    width: 46px;
    height: 46px;
}

.btn-lg-square {
    width: 58px;
    height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/*** Button End ***/


/*** Topbar Start ***/

.top-info small {
  color: #fff;
  font-size: 14px;
}

.top-link .btn-sm-square {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 576px) {
  .top-info small {
    font-size: 13px;
  }
}


.topbar .top-info {
    letter-spacing: 1px;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

#note {
    overflow: hidden;
}

#note small {
    position: relative;
    display: inline-block;
    animation: mymove 5s infinite;
    animation-timing-function: all;
}

@keyframes mymove {
    from {left: -100%;}
    to {left: 100%;}
}

/*** Topbar End ***/

/* Sticky header */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1030; /* Higher than content */
  background: #fff;
}

/* Optional shadow on scroll */
.sticky-header {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}


/*** Navbar Start ***/
.navbar .navbar-nav {
    padding: 15px 0;
}

.navbar .navbar-nav .nav-link {
    padding: 10px;
    color: var(--bs-primary);
    font-size: 18px;
    outline: none;
    
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
}

/*** Navbar End ***/


/*** Carousel Start ***/

.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .6);
}

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-item p {
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.carousel-control-prev {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 0;
    background: var(--bs-primary);
    border-radius: 0 50px 50px 0;
    opacity: 1;
}

.carousel-control-prev:hover {
    background: var(--bs-secondary);
    transition: .8s;
}

.carousel-control-next {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    right: 0;
    background: var(--bs-primary);
    border-radius: 50px 0 0 50px;
    opacity: 1;
}

.carousel-control-next:hover {
    background: var(--bs-secondary);
    transition: .8s;
}

.carousel-caption .carousel-content a button.carousel-content-btn1 {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn1:hover {
    background: var(--bs-primary);
    color: #ffffff;
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2 {
    background: var(--bs-primary);
    color: var(--bs-white);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2:hover {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

#carouselId .carousel-indicators li {
    width: 30px;
    height: 10px;
    background: var(--bs-primary);
    margin: 10px;
    border-radius: 30px;
    opacity: 1;
}

#carouselId .carousel-indicators li:hover {
    background: var(--bs-secondary);
    opacity: 1;
}

@media (max-width: 992px) {
    .carousel-item {
        min-height: 500px;
    }
    
    .carousel-item img {
        min-height: 500px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 40px !important;
    }

    .carousel-item p {
        font-size: 16px !important;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        min-height: 400px;
    }
    
    .carousel-item img {
        min-height: 400px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 28px !important;
    }

    .carousel-item p {
        font-size: 14px !important;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../image/project_1.webp) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
}

/*** Carousel End ***/

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2d465e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #2986cc; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}


/*--------------------------------------------------------------
# Featured Properties Section
--------------------------------------------------------------*/
.featured-properties .featured-property-main {
  background-color: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.featured-properties .featured-property-main:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.featured-properties .featured-property-main .property-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.featured-properties .featured-property-main .property-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-properties .featured-property-main .property-hero:hover img {
  transform: scale(1.08);
}

.featured-properties .featured-property-main .property-hero .property-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 25px;
}

.featured-properties .featured-property-main .property-hero .property-overlay .property-badge-main {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: var(--contrast-color);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.featured-properties .featured-property-main .property-hero .property-overlay .property-badge-main.premium {
  background: linear-gradient(135deg, #6f42c1, #8e44ad);
  box-shadow: 0 4px 15px rgba(111, 66, 193, 0.3);
}

.featured-properties .featured-property-main .property-hero .property-overlay .property-stats {
  display: flex;
  gap: 20px;
}

.featured-properties .featured-property-main .property-hero .property-overlay .property-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--contrast-color);
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 14px;
  border-radius: 20px;
}

.featured-properties .featured-property-main .property-hero .property-overlay .property-stats .stat-item i {
  font-size: 16px;
}

.featured-properties .featured-property-main .property-hero-content {
  padding: 30px;
}

.featured-properties .featured-property-main .property-hero-content .property-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.featured-properties .featured-property-main .property-hero-content .property-header .property-info {
  flex: 1;
}

.featured-properties .featured-property-main .property-hero-content .property-header .property-info h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.3;
}

.featured-properties .featured-property-main .property-hero-content .property-header .property-info h2 a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.featured-properties .featured-property-main .property-hero-content .property-header .property-info h2 a:hover {
  color: var(--accent-color);
}

.featured-properties .featured-property-main .property-hero-content .property-header .property-info .property-address {
  display: flex;
  align-items: center;
  gap: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 16px;
  font-weight: 500;
}

.featured-properties .featured-property-main .property-hero-content .property-header .property-info .property-address i {
  color: var(--accent-color);
  font-size: 18px;
}

.featured-properties .featured-property-main .property-hero-content .property-header .property-price-main {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), blue 20%));
  color: var(--contrast-color);
  padding: 15px 25px;
  border-radius: 25px;
  font-size: 24px;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(54, 144, 231, 0.3);
}

.featured-properties .featured-property-main .property-hero-content .property-description {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 25px;
}

.featured-properties .featured-property-main .property-hero-content .property-actions-main {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.featured-properties .featured-property-main .property-hero-content .property-actions-main .btn-primary-custom {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), blue 20%));
  color: var(--contrast-color);
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(54, 144, 231, 0.3);
}

.featured-properties .featured-property-main .property-hero-content .property-actions-main .btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(54, 144, 231, 0.4);
}

.featured-properties .featured-property-main .property-hero-content .property-actions-main .btn-outline-custom {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.featured-properties .featured-property-main .property-hero-content .property-actions-main .btn-outline-custom:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.featured-properties .featured-property-main .property-hero-content .property-actions-main .property-listing-info {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.featured-properties .featured-property-main .property-hero-content .property-actions-main .property-listing-info .listing-status {
  background-color: color-mix(in srgb, #28a745, transparent 85%);
  color: #28a745;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.featured-properties .featured-property-main .property-hero-content .property-actions-main .property-listing-info .listing-status.for-sale {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
}

.featured-properties .featured-property-main .property-hero-content .property-actions-main .property-listing-info .listing-date {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.featured-properties .properties-sidebar .sidebar-property-card {
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.featured-properties .properties-sidebar .sidebar-property-card:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-image:hover img {
  transform: scale(1.05);
}

.featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-image .sidebar-property-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--contrast-color);
}

.featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-image .sidebar-property-badge.hot {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-image .sidebar-property-badge.new {
  background: linear-gradient(135deg, #28a745, #20c997);
}

.featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-image .sidebar-property-badge.featured {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), blue 20%));
}

.featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-content {
  padding: 20px;
}

.featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-content h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}

.featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-content h4 a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-content h4 a:hover {
  color: var(--accent-color);
}

.featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-content .sidebar-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 13px;
  margin-bottom: 12px;
}

.featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-content .sidebar-location i {
  color: var(--accent-color);
  font-size: 14px;
}

.featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-content .sidebar-specs {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-content .sidebar-specs span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-content .sidebar-specs span i {
  color: var(--accent-color);
  font-size: 11px;
}

.featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-content .sidebar-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-content .sidebar-price-row .sidebar-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--heading-color);
}

.featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-content .sidebar-price-row .sidebar-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-content .sidebar-price-row .sidebar-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.featured-properties .property-card-horizontal {
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}

.featured-properties .property-card-horizontal:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.featured-properties .property-card-horizontal .property-image-horizontal {
  position: relative;
  width: 200px;
  min-width: 200px;
  overflow: hidden;
}

.featured-properties .property-card-horizontal .property-image-horizontal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-properties .property-card-horizontal .property-image-horizontal:hover img {
  transform: scale(1.05);
}

.featured-properties .property-card-horizontal .property-image-horizontal .property-badge-horizontal {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--contrast-color);
}

.featured-properties .property-card-horizontal .property-image-horizontal .property-badge-horizontal.exclusive {
  background: linear-gradient(135deg, #6f42c1, #8e44ad);
}

.featured-properties .property-card-horizontal .property-image-horizontal .property-badge-horizontal.new {
  background: linear-gradient(135deg, #28a745, #20c997);
}

.featured-properties .property-card-horizontal .property-content-horizontal {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.featured-properties .property-card-horizontal .property-content-horizontal h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.featured-properties .property-card-horizontal .property-content-horizontal h3 a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.featured-properties .property-card-horizontal .property-content-horizontal h3 a:hover {
  color: var(--accent-color);
}

.featured-properties .property-card-horizontal .property-content-horizontal .property-location-horizontal {
  display: flex;
  align-items: center;
  gap: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 15px;
}

.featured-properties .property-card-horizontal .property-content-horizontal .property-location-horizontal i {
  color: var(--accent-color);
  font-size: 15px;
}

.featured-properties .property-card-horizontal .property-content-horizontal .property-features {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 13px;
}

.featured-properties .property-card-horizontal .property-content-horizontal .property-features .feature {
  display: flex;
  align-items: center;
  gap: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.featured-properties .property-card-horizontal .property-content-horizontal .property-features .feature i {
  color: var(--accent-color);
  font-size: 12px;
}

.featured-properties .property-card-horizontal .property-content-horizontal p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 20px;
  flex: 1;
}

.featured-properties .property-card-horizontal .property-content-horizontal .property-footer-horizontal {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.featured-properties .property-card-horizontal .property-content-horizontal .property-footer-horizontal .property-price-horizontal {
  font-size: 22px;
  font-weight: 800;
  color: var(--heading-color);
}

.featured-properties .property-card-horizontal .property-content-horizontal .property-footer-horizontal .btn-view-horizontal {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.featured-properties .property-card-horizontal .property-content-horizontal .property-footer-horizontal .btn-view-horizontal:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .featured-properties .property-card-horizontal {
    flex-direction: column;
  }

  .featured-properties .property-card-horizontal .property-image-horizontal {
    width: 100%;
    height: 200px;
  }

  .featured-properties .property-card-horizontal .property-content-horizontal {
    padding: 20px;
  }

  .featured-properties .property-card-horizontal .property-content-horizontal .property-features {
    flex-wrap: wrap;
  }

  .featured-properties .property-card-horizontal .property-content-horizontal .property-footer-horizontal {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }

  .featured-properties .property-card-horizontal .property-content-horizontal .property-footer-horizontal .btn-view-horizontal {
    text-align: center;
  }
}

@media (max-width: 992px) {
  .featured-properties .featured-property-main .property-hero-content .property-header {
    flex-direction: column;
    gap: 20px;
  }

  .featured-properties .featured-property-main .property-hero-content .property-header .property-price-main {
    align-self: flex-start;
  }

  .featured-properties .featured-property-main .property-hero-content .property-actions-main .property-listing-info {
    margin-left: 0;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .featured-properties .featured-property-main .property-hero {
    height: 300px;
  }

  .featured-properties .featured-property-main .property-hero .property-overlay {
    padding: 20px;
  }

  .featured-properties .featured-property-main .property-hero .property-overlay .property-stats {
    flex-direction: column;
    gap: 10px;
  }

  .featured-properties .featured-property-main .property-hero-content {
    padding: 25px;
  }

  .featured-properties .featured-property-main .property-hero-content .property-header .property-info h2 {
    font-size: 24px;
  }

  .featured-properties .featured-property-main .property-hero-content .property-header .property-price-main {
    font-size: 20px;
    padding: 12px 20px;
  }

  .featured-properties .featured-property-main .property-hero-content .property-actions-main {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .featured-properties .featured-property-main .property-hero-content .property-actions-main .property-listing-info {
    flex-direction: row;
    justify-content: space-between;
  }

  .featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-content .sidebar-specs {
    flex-wrap: wrap;
  }
}

.detail-icon {
    font-size: 20px;
    color: #06bbe3;
    margin-right: 12px;
    margin-top: 4px;
}

.project-details strong {
    font-size: 12px;
    color: #777;
    display: block;
}

.project-details p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.side-by-side {
    display: flex;
    gap: 20px;
}

/* Image takes 40% width */
.blog-image-wrapper {
    width: 50%;
}

.blog-image-wrapper img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}

/* Content takes 60% width */
.blog-content {
    width: 60%;
}

/* Optional: Make it responsive */
@media (max-width: 768px) {
    .side-by-side {
        flex-direction: column;
    }
    .blog-image-wrapper,
    .blog-content {
        width: 100%;
    }
}


/* WhatsApp & Phone icon buttons */
.icon-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-right: 8px;
    font-size: 18px;
    color: #000;
    background: #fff;
    text-decoration: none;
}

/* Price on Request button */
.btn-read-more {
    background: #7c6f54;
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
}

.btn-read-more span {
    margin-right: 8px;
}

/*** About ***/
.about-img {
    position: relative;
    padding-left: 45px;
}

.about-img::before {
    position: absolute;
    content: "";
    width: 200px;
    height: 300px;
    top: 0;
    left: 0;
    border: 5px solid var(--bs-primary);
    animation: animateUpDown 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes animateUpDown { 
    0% { 
        top: -25px;
    }
    50% { 
        top: -45px;
    }
    100% { 
        top: -25px;
    } 
}




/*--------------------------------------------------------------
# Featured Projects Section
--------------------------------------------------------------*/
.featured-posts {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  background-color: #212529;
}

.featured-posts .blog-posts-slider .swiper-wrapper {
  height: auto !important;
}

.featured-posts .blog-posts-slider .swiper-pagination {
  position: relative;
  margin-top: 50px;
}

.featured-posts .blog-posts-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
  transition: all 0.3s ease;
}

.featured-posts .blog-posts-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  transform: scale(1.2);
}

.featured-posts .project-card {
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* .featured-posts .blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
} */

.featured-posts .blog-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.featured-posts .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-posts .blog-image .category-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.featured-posts .blog-image:hover img {
  transform: scale(1.05);
}

.featured-posts .blog-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .featured-posts .blog-content {
    padding: 25px;
  }
}

.featured-posts .author-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.featured-posts .author-info .author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.featured-posts .author-info .author-details {
  display: flex;
  flex-direction: column;
}

.featured-posts .author-info .author-details .author-name {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 14px;
  margin-bottom: 2px;
}

.featured-posts .author-info .author-details .publish-date {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.featured-posts h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .featured-posts h3 {
    font-size: 18px;
  }
}

.featured-posts h3 a {
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.featured-posts h3 a:hover {
  color: var(--accent-color);
}

.featured-posts p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 25px;
  flex: 1;
}

.featured-posts .blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
  .featured-posts .blog-footer {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

.featured-posts .reading-time {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.featured-posts .reading-time i {
  margin-right: 5px;
  font-size: 14px;
}

.featured-posts .btn-read-more {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 10%));
  color: var(--contrast-color);
  padding: 10px 20px;
  /* border-radius: 25px; */
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.featured-posts .btn-read-more span {
  margin-right: 8px;
}

.featured-posts .btn-read-more i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.featured-posts .btn-read-more:hover {
  transform: translateX(5px);
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), #000 10%), var(--accent-color));
  color: var(--contrast-color);
}

.featured-posts .btn-read-more:hover i {
  transform: translateX(3px);
}

@media (max-width: 576px) {
  .featured-posts .btn-read-more {
    align-self: flex-end;
  }
}

/* Project Card Layout */
.blog-item {
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* Image Wrapper */
.blog-image-wrapper {
  min-height: 260px;
}

.blog-image-wrapper img {
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-item:hover img {
  transform: scale(1.05);
}

/* Detail Icons */
.detail-icon {
  font-size: 18px;
  color: var(--accent-color);
  margin-right: 12px;
  margin-top: 4px;
}

/* Footer */
.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

/* Contact Icons */
.icon-btn {
  width: 36px;
  height: 36px;
  background: var(--accent-color);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 8px;
  transition: transform 0.3s ease;
}

.icon-btn:hover {
  transform: scale(1.1);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .blog-image-wrapper {
    min-height: 220px;
  }
}

@media (max-width: 576px) {
  .blog-content {
    padding: 20px;
  }

  .blog-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-read-more {
    align-self: flex-end;
  }
}


/* STRUCTURE */
.project-card {
    padding: 0;
}

.project-layout {
    display: flex;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* IMAGE SECTION */
.project-image {
    width: 45%;
    min-height: 280px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT SECTION */
.project-content {
    width: 55%;
    padding: 30px;
}

/* DETAILS */
.detail-row {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
}

.detail-row i {
    font-size: 22px;
    color: #8C6A40;
}

/* FOOTER */
.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
}

.price-btn {
    background: #8C6A40;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
}

/*** RESPONSIVE ***/
@media (max-width: 991px) {
    .project-layout {
        flex-direction: column;
    }
    .project-image, 
    .project-content {
        width: 100%;
    }
    .project-image {
        height: 260px;
    }
}



/*** Services Start ***/

.services {
  background-color: #f8f8f9 !important;
}

.services .services-item {
    box-shadow: 0 0 60px rgba(0, 0, 0, .2);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 10px 0;
    position: relative;
}


.services-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px 10px 0 0;
    background: rgba(3, 43, 243, 0.8);
    transition: .5s;
}

.services-content::after {
    top: 0;
    bottom: auto;
    border-radius: 10px 10px 10px 10px;
}

.services-item:hover .services-content::after {
    height: 100%;
    opacity: 1;
    transition: .5s;
}

.services-item:hover .services-content-icon {
    position: relative;
    z-index: 2;
}

.services-item .services-content-icon i,
.services-item .services-content-icon p {
    transition: .5s;
}

.services-item:hover .services-content-icon i {
    color: var(--bs-secondary) !important;
}

.services-item:hover .services-content-icon p {
    color: var(--bs-white);
}

/*** Services End ***/


/*** Project Start ***/

.project {
  background-color: #f8f8f9 !important;
}

.project-img {
    position: relative;
    padding: 15px;
}

.project-img::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: 0;
    left: 0;
    background: var(--bs-secondary);
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-img::after {
    content: "";
    width: 150px;
    height: 150px;
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--bs-primary);
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.project-content a {
    display: inline-block;
    padding: 20px 25px;
    background: var(--bs-primary);
    border-radius: 10px;
}

.project-item:hover .project-content {
    opacity: 1;
    transition: .5s;
}

.project-item:hover .project-img::before,
.project-item:hover .project-img::after {
    opacity: 0;
}

/*** Project End ***/


/*** Blog Start ***/

.blog {
  background-color: #f8f8f9 !important;
}

.blog-item .blog-btn {
    z-index: 2;
}

.blog-btn .blog-btn-icon {
    height: 50px;
    position: relative;
    overflow: hidden;
}

.blog-btn-icon .blog-icon-2 {
    display: flex;
    position: absolute;
    top: 6px;
    left: -140px;
    
}

.blog-btn-icon:hover .blog-icon-2 {
    transition: 1s;
    left: 5px;
    top: 6px;
    padding-bottom: 5px;
}
.blog-icon-1 {
    position: relative;
    top: -4px;
}
.blog-btn-icon:hover .blog-icon-1 {
    top: 0;
    right: -140px;
    transition: 1s;
}

/*** Blog End ***/


/*** Team Start ***/

.team-item {
    border-top: 30px solid var(--bs-secondary) !important;
    background: rgba(239, 239, 241, 0.8);
}

.team-content::before {
    height: 200px;
    display: block;
    content: "";
    position: relative;
    top: -101px;
    background: var(--bs-secondary);
    clip-path: polygon(50% 50%, 100% 50%, 50% 100%, 0% 50%);
    padding: 60px;
    opacity: 1;
}

.team-img-icon {
    position: relative;
    margin-top: -200px;
    padding: 30px;
    padding-bottom: 0;
}

.team-img {
    border: 15px solid var(--bs-white);
}

.team-img img {
    border: 10px solid var(--bs-secondary);
    transition: .5s;
}

.team-item:hover h4 {
    color: var(--bs-primary);
    transition: .5s;
}

.team-item:hover .team-img img {
    transform: scale(1.05);
    border: 10px solid var(--bs-secondary);
}

.team-carousel .owl-stage {
    position: relative;
    width: 100%;
    height: 100%;
}

.team-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 50px;
    display: flex;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
    width: 56px;
    height: 56px;
    border-radius: 56px;
    margin-left: 15px;
    background: var(--bs-secondary);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (max-width: 992px) {
    .team-carousel {
        margin-top: 3rem;
    }

    .team-carousel .owl-nav {
        top: -85px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        margin-left: -15px;
    }
}

/*** Team End ***/


/*** Testimonial Start ***/

.testimonial{
    background-color: #f8f8f9 !important;
}

.testimonial-item {
    background: #e3f0eb;

}

.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #c1dad0;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--bs-primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}

/*** Testimonial End ***/


/*** Contact Start ***/

.testimonial{
    background-color: #f8f8f9 !important;
}

/*** Testimonial Scroll + Responsive Fix (using .testimonial only) ***/

.testimonial .testimonial-item {
  background: #e3f0eb;
  border-radius: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Image size fix */
.testimonial .testimonial-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
}

/* Make testimonial content scrollable */
.testimonial .testimonial-item .border-top {
  max-height: 140px;        /* desktop */
  overflow-y: auto;
  padding-right: 8px;
}

/* Smooth scrollbar */
.testimonial .testimonial-item .border-top::-webkit-scrollbar {
  width: 5px;
}

.testimonial .testimonial-item .border-top::-webkit-scrollbar-thumb {
  background: var(--bs-primary);
  border-radius: 10px;
}

/* Prevent Owl carousel height jump */
.testimonial .owl-item {
  display: flex;
}

/* Center item highlight */
.testimonial .owl-item.center .testimonial-item {
  background: #ffffff !important;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.12);
}

/* Tablet */
@media (max-width: 768px) {
  .testimonial .testimonial-item img {
    width: 60px;
    height: 60px;
  }

  .testimonial .testimonial-item .border-top {
    max-height: 110px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .testimonial .testimonial-item {
    padding: 20px;
  }

  .testimonial .testimonial-item .border-top {
    max-height: 95px;
  }
}


.contact-detail::before {
    position: absolute;
    content: "";
    height: 50%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgb(210, 243, 235, 1), rgba(230, 250, 245, .3)), url(../img/background.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 10px;
    z-index: -1;
}

.contact {
    background: #2986cc;
}

.contact-form {
    background: #2986cc;
}

/*** Contact End ***/


/*** Footer Start ***/

.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
    transition: .5s;
}

.footer .short-link a:hover,
.footer .help-link a:hover,
.footer .contact-link a:hover {
    letter-spacing: 1px;
}

.footer .hightech-link a:hover {
    background: var(--bs-secondary);
    border: 0;
}

/*** Footer End ***/

/* Services Section */
.services-section {
  background: #f8f9fa;
}

/* Section Title */
.section-subtitle {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bs-primary);
  margin-bottom: 10px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
}

/* Service Card */
.service-card {
  background: #fff;
  padding: 40px 30px;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bs-primary), #0d6efd);
  opacity: 0;
  transition: 0.4s;
  z-index: 0;
}

.service-card:hover::before {
  opacity: 0.05;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Icon */
.icon-box {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: rgba(13, 110, 253, 0.1);
  color: var(--bs-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: 0.3s;
}

.service-card:hover .icon-box {
  background: var(--bs-primary);
  color: #fff;
}

/* Text */
.service-card h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-card p {
  color: #6c757d;
  font-size: 15px;
  margin-bottom: 25px;
}

/* Link */
.service-link {
  font-weight: 600;
  color: var(--bs-primary);
  text-decoration: none;
  transition: 0.3s;
}

.service-link i {
  margin-left: 5px;
  transition: transform 0.3s;
}

.service-link:hover i {
  transform: translateX(5px);
}

/* Projects Section */
.projects-section {
  background: #1e1f20;
}

/* Section Title */
.section-subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bs-primary);
  margin-bottom: 8px;
  display: inline-block;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
}

/* ================================
   GLOBAL ICON COLOR (PRIMARY)
================================ */
:root {
  --icon-color: var(--bs-primary);
}

/* ================================
   PROJECT DETAILS (Left Section)
================================ */
.project-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.project-info li i {
  font-size: 1.1rem;
  color: var(--icon-color);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ================================
   AMENITIES SECTION
================================ */
.service-process .row > div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.service-process i {
  font-size: 1.1rem;
  color: var(--icon-color);
}

/* ================================
   NEARBY FACILITIES
================================ */
.service-stats ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.service-stats ul li i {
  font-size: 1.1rem;
  color: var(--icon-color);
}

/* ================================
   SERVICE BADGE
================================ */
.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.service-badge i {
  font-size: 1.1rem;
  color: var(--icon-color);
}

/* ================================
   SIDEBAR – QUICK FACTS
================================ */
.info-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.info-list li i {
  font-size: 1.2rem;
  color: var(--icon-color);
  flex-shrink: 0;
}

/* ================================
   RELATED SERVICES LINKS
================================ */
.service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  text-decoration: none;
  color: #212529;
  border-bottom: 1px solid #eee;
}

.service-link i {
  font-size: 1.2rem;
  color: var(--icon-color);
}

.service-link span {
  flex-grow: 1;
  font-weight: 500;
}

/* Right arrow animation */
.service-link i.bi-arrow-right {
  transition: transform 0.3s ease;
}

.service-link:hover i.bi-arrow-right {
  transform: translateX(6px);
}

/* ================================
   PROJECT GALLERY ICON FIX (If Any)
================================ */
.swiper-button-next,
.swiper-button-prev {
  color: var(--icon-color);
}


/* Project Card */
.projects-section .project-card {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
}

.projects-section .project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.projects-section .project-card:hover img {
  transform: scale(1.1);
}

/* Overlay */
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.1)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  color: #fff;
  opacity: 0;
  transition: 0.4s ease;
}

.projects-section .project-card:hover .project-overlay {
  opacity: 1;
}

.project-overlay h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
}

.project-overlay p {
  font-size: 14px;
  opacity: 0.9;
}
/* About Section */
.about-section {
  background: #dbc0e7;
}

/* Section Title */
.section-subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6c757d;
  margin-bottom: 8px;
  display: inline-block;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
}

/* Image Wrapper */
.about-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.12),
    0 0 0 2px rgba(13, 110, 253, 0.15);
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: brightness(1.1) contrast(1.05) saturate(1.15);
  transition: transform 0.5s ease;
}

.about-image-wrapper:hover img {
  transform: scale(1.05);
}

/* Content */
.about-content h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-content p {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Button */
.about-content .btn {
  padding: 12px 28px;
  border-radius: 50px;
}
/* Blog Section */
.blog-section {
  background: #f8f9fa;
}

/* Section Title */
.blog-section .section-subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6c757d;
}

.blog-section .section-title {
  font-size: 36px;
  font-weight: 700;
  margin-top: 5px;
}

/* Blog Card */
.blog-section .blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-section .blog-card:hover {
  transform: translateY(-6px);
}

.blog-section .blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Blog Content */
.blog-section .blog-body {
  padding: 22px;
}

.blog-section .blog-tag {
  display: inline-block;
  font-size: 12px;
  background: rgba(13, 110, 253, 0.1);
  color: var(--bs-primary);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.blog-section .blog-body h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.blog-section .blog-date {
  font-size: 13px;
  color: #6c757d;
}

.blog-section .blog-body p {
  font-size: 15px;
  color: #6c757d;
  margin: 12px 0 18px;
  line-height: 1.6;
}

/* Read More */
.read-more {
  font-weight: 600;
  color: var(--bs-primary);
  text-decoration: none;
}

.read-more i {
  margin-left: 6px;
  transition: transform 0.3s;
}

.read-more:hover i {
  transform: translateX(5px);
}
/*--------------------------------------------------------------
# Blog Hero Section
--------------------------------------------------------------*/
.blog-hero {
  padding: 0;
}

.blog-hero .blog-hero-slider {
  position: relative;
  overflow: hidden;
}

.blog-hero .blog-hero-item {
  position: relative;
  height: 80vh;
  min-height: 600px;
}

.blog-hero .blog-hero-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-hero .blog-hero-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.blog-hero .blog-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  padding: 60px;
  color: var(--contrast-color);
  text-align: center;
  max-width: 800px;
  width: 100%;
}

.blog-hero .blog-hero-content .category {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-hero .blog-hero-content h1 {
  color: var(--contrast-color);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (max-width: 991px) {
  .blog-hero .blog-hero-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .blog-hero .blog-hero-content h1 {
    font-size: 28px;
  }
}

.blog-hero .blog-hero-content .meta {
  margin-bottom: 30px;
  font-size: 14px;
}

.blog-hero .blog-hero-content .meta span {
  display: inline-block;
  margin-right: 20px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.blog-hero .blog-hero-content .meta span:last-child {
  margin-right: 0;
}

.blog-hero .blog-hero-content .meta span a {
  color: var(--contrast-color);
  font-weight: 600;
}

.blog-hero .blog-hero-content .meta span a:hover {
  color: var(--accent-color);
}

@media (max-width: 767px) {
  .blog-hero .blog-hero-content .meta span {
    display: block;
    margin: 0 0 10px 0;
  }
}

.blog-hero .blog-hero-content .read-more {
  display: inline-flex;
  align-items: center;
  color: var(--contrast-color);
  font-weight: 500;
}

.blog-hero .blog-hero-content .read-more i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.blog-hero .blog-hero-content .read-more:hover {
  color: var(--accent-color);
}

.blog-hero .blog-hero-content .read-more:hover i {
  transform: translateX(5px);
}

@media (max-width: 767px) {
  .blog-hero .blog-hero-content {
    padding: 30px;
  }
}

.blog-hero .swiper-button-prev,
.blog-hero .swiper-button-next {
  color: var(--contrast-color);
  width: 60px;
  height: 60px;
}

.blog-hero .swiper-button-prev::after,
.blog-hero .swiper-button-next::after {
  font-size: 32px;
}

.blog-hero .swiper-button-prev:hover,
.blog-hero .swiper-button-next:hover {
  color: var(--accent-color);
}

.blog-hero .swiper-wrapper {
  height: auto !important;
}
.about-founder-section {
  background: #f9fafc;
}

.section-tag {
  font-size: 14px;
  letter-spacing: 2px;
  color: #6c757d;
  text-transform: uppercase;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: #0d6efd;
  margin-top: 10px;
}

.section-subtitle {
  max-width: 600px;
  margin: 10px auto 0;
  color: #666;
  font-size: 16px;
}

.image-stack {
  position: relative;
}

.image-stack .main-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.image-stack .overlay-img {
  position: absolute;
  width: 55%;
  bottom: -30px;
  right: -20px;
  border-radius: 18px;
  border: 6px solid #fff;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.content-box h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.content-box h4 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 10px;
}

.content-box h5 {
  font-size: 16px;
  color: #0d6efd;
  font-weight: 600;
  margin-bottom: 15px;
}

.content-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

.divider {
  width: 60px;
  height: 3px;
  background: #0d6efd;
  margin: 25px 0;
}

/* Responsive */
@media (max-width: 991px) {
  .image-stack .overlay-img {
    position: relative;
    width: 70%;
    right: 0;
    bottom: 0;
    margin-top: 20px;
  }
}
.about-founder-section {
  background: #f9fafc;
}

/* Section Header */
.section-tag {
  font-size: 14px;
  letter-spacing: 2px;
  color: #6c757d;
  text-transform: uppercase;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: #0d6efd;
}

.section-subtitle {
  max-width: 600px;
  margin: 10px auto 0;
  color: #666;
}

/* Main Image */
.about-image-clean img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  object-fit: cover;
}

/* Content */
.content-box h3 {
  font-size: 28px;
  font-weight: 700;
}

.content-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* Founder Card */
.founder-card {
  display: flex;
  gap: 15px;
  background: #ffffff;
  padding: 15px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  align-items: center;
}

.founder-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #0d6efd;
}

.founder-card h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.founder-card span {
  font-size: 13px;
  color: #0d6efd;
  font-weight: 500;
}

.founder-card p {
  margin-top: 5px;
  font-size: 14px;
  color: #666;
}

/* Mobile */
@media (max-width: 768px) {
  .founder-card {
    flex-direction: column;
    text-align: center;
  }
}

/* Icons wrapper */
.contact-icons {
    display: flex;
    gap: 12px;
}

/* Default icon button (phone) */
.icon-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--bs-primary);
    background: #f2f4f7;
    transition: all 0.3s ease;
}

/* WhatsApp – Green Gradient */
.icon-btn .bi-whatsapp {
    color: #fff;
}

.icon-btn:has(.bi-whatsapp) {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 8px 18px rgba(37, 211, 102, 0.45);
}

/* Hover */
.icon-btn:hover {
    transform: translateY(-3px) scale(1.05);
}

/* WhatsApp hover glow */
.icon-btn:has(.bi-whatsapp):hover {
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.6);
}
.blog-footer {
    gap: 18px; /* space between left icons & right button */
}

.btn-read-more {
    margin-left: 10px;
}

/* Section */
.stats-section {
    background: #f8f9fb;
}

/* Section */
.stats-section .primary{
    color: #0d6efd;
}

/* Title */
.stats-title {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.3;
}

/* Card */

.stats-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 30px 22px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.stats-card:hover {
    transform: translateY(-6px);
}

.stats-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    /* PRIMARY COLOR */
    color: var(--bs-primary);

    background: rgba(var(--bs-primary-rgb), 0.12);
    font-size: 26px;
    transition: all 0.3s ease;
}

.stats-card:hover .stats-icon {
    background: var(--bs-primary);
    color: #ffffff;
}

.stats-card h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 6px;
}

.stats-card h3 span {
    font-size: 18px;
}

.stats-card h5 {
    font-weight: 600;
    margin-bottom: 12px;
}

.stats-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}


/* ----------------- MOBILE RESPONSIVE ----------------- */

@media (max-width: 991px) {
    .stats-title {
        font-size: 1.9rem;
    }

    .stats-card {
        padding: 28px 22px;
    }
}

@media (max-width: 767px) {
    .stats-title {
        font-size: 1.6rem;
        padding: 0 15px;
    }

    .stats-card {
        padding: 24px 20px;
    }

    .stats-icon {
        font-size: 40px;
    }

    .stats-card h3 {
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .stats-title {
        font-size: 1.4rem;
    }

    .stats-card {
        padding: 22px 18px;
        border-radius: 14px;
    }

    .stats-card h3 {
        font-size: 32px;
    }

    .stats-card p {
        font-size: 13px;
    }
}
/* Content */
.blog-hero-content {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    max-width: 540px;
    color: #fff;
    z-index: 2;
    text-align: left; /* force left alignment */
    font-weight: 700; /* base bold */
}

/* Category */
.blog-hero-content .category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    /* border-radius: 20px; */
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
}

/* Title */
.blog-hero-content h1 {
    font-size: 44px;
    font-weight: 800; /* extra bold */
    line-height: 1.15;
    margin-bottom: 16px;
}

/* Hero Description – BOLD */
.hero-description {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.55;
    margin-bottom: 12px;
}

/* Sub Description – still bold but lighter hierarchy */
.hero-sub-description {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 24px;
}

/* CTA */
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 30px;
    background: var(--bs-primary);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more:hover {
    background: #0a58ca;
    transform: translateX(6px);
}
.hero-banner {
    position: relative;
    overflow: hidden;
}
.hero-title,
.hero-title span {
    color: #ffffff !important;
}
.hero-banner {
    position: relative;
    overflow: hidden;
}

/* Image */
.hero-banner img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

/* Dark overlay for readability */
.hero-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.4) 45%,
        rgba(0, 0, 0, 0.15) 100%
    );
}

/* Text container */
.hero-overlay {
    position: absolute;
    left: 60px;
    bottom: 180px;
    max-width: 850px;
    color: #fff;
    z-index: 2;
    text-align: left;
    font-weight: 800;
}

/* Main Title */
.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 18px;
}

.hero-title span {
    font-weight: 900;
}

/* Description */
.hero-desc {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
}

/* Sub description */
.hero-sub-desc {
    font-size: 26px;
    font-weight: 800;
}


/* Dark overlay for readability */
.hero-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.4) 45%,
        rgba(0, 0, 0, 0.15) 100%
    );
}

/* Text container */
.hero-overlay {
    position: absolute;
    left: 60px;
    bottom: 180px;
    max-width: 850px;
    color: #fff;
    z-index: 2;
    text-align: left;
    font-weight: 800;
}

/* Main Title */
.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 18px;
}

.hero-title span {
    font-weight: 900;
}

/* Description */
.hero-desc {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
}

/* Sub description */
.hero-sub-desc {
    font-size: 26px;
    font-weight: 800;
}
@media (max-width: 768px) {
    .hero-banner img {
        height: 420px;
    }

    .hero-overlay {
        left: 20px;
        right: 20px;
        bottom: 30px;
        max-width: 100%;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-desc {
        font-size: 18px;
    }

    .hero-sub-desc {
        font-size: 16px;
    }
}
.project-card {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
}

.project-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Overlay */
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.2)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.project-overlay h4 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 4px;
}

.project-overlay p {
  color: #eaeaea;
  font-size: 14px;
  font-weight: 500;
}

/* Hover effect */
.project-card:hover img {
  transform: scale(1.08);
}

/* Swiper spacing fix */
.project-swiper {
  padding-bottom: 10px;
}
/* Bigger project cards */
.project-card img {
  height: 420px;      /* INCREASE SIZE */
  object-fit: cover;
}

/* Optional: give more depth */
.project-card {
  border-radius: 16px;
  overflow: hidden;
}

/* Improve text visibility */
.project-overlay {
  padding: 24px;
}

.project-overlay h4 {
  font-size: 22px;
  font-weight: 700;
}

.project-overlay p {
  font-size: 15px;
  opacity: 0.9;
}

/* Desktop enhancement */
@media (min-width: 992px) {
  .project-card img {
    height: 480px;    /* EVEN BIGGER ON DESKTOP */
  }
}

.about-highlight {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.stat-box {
  background: #fff;
  padding: 25px;
  text-align: center;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}
.stat-box h2 {
  color: #c79b63;
  font-weight: 700;
}
.pillar-box {
  padding: 30px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}
.pillar-box i {
  font-size: 40px;
  color: #c79b63;
  margin-bottom: 15px;
}
/* Hero Section */
.about-hero {
    background: #f9f9f9;
    padding: 60px 0;
    border-bottom: 3px solid #ddd;
}
.about-hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
}
.about-hero .subtext {
    font-size: 18px;
    color: #666;
}

/* Company Profile */
.company-profile img {
    max-height: 400px;
}
.company-stats {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}
.company-stats li {
    font-size: 18px;
    font-weight: 500;
    margin: 10px 0;
    color: #444;
}

/* Founder Section */
.founder-img {
    width: auto;
    height: auto;
    object-fit: cover;
    border: 5px solid #f0f0f0;
}

/* Journey / Story */
.journey .story-content {
    background: #fff;
    border-left: 4px solid #c79b63;
    padding: 20px 25px;
    font-size: 16px;
    color: #555;
}

/* Vision Mission */
.vision-mission h3 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}
.vision-mission p {
    color: #555;
    font-size: 15px;
}

/* MD Message */
.md-message blockquote {
    font-size: 18px;
    font-style: italic;
    color: #444;
    border-left: 4px solid #c79b63;
    padding-left: 20px;
}
.md-message footer {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}
/*--------------------------------------------------------------
# Properties Section
--------------------------------------------------------------*/
.properties .search-bar .search-wrapper {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 88%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.properties .search-bar .search-wrapper .search-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.properties .search-bar .search-wrapper .search-field .form-control,
.properties .search-bar .search-wrapper .search-field .form-select {
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  background-color: transparent;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.properties .search-bar .search-wrapper .search-field .form-control:focus,
.properties .search-bar .search-wrapper .search-field .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.properties .search-bar .search-wrapper .search-field .form-control::placeholder,
.properties .search-bar .search-wrapper .search-field .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.properties .search-bar .search-wrapper .search-field .bedroom-quick {
  display: flex;
  gap: 4px;
}

.properties .search-bar .search-wrapper .search-field .bedroom-quick .bed-btn {
  flex: 1;
  padding: 12px 8px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  background: transparent;
  color: var(--default-color);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.properties .search-bar .search-wrapper .search-field .bedroom-quick .bed-btn:hover,
.properties .search-bar .search-wrapper .search-field .bedroom-quick .bed-btn.active {
  border-color: var(--accent-color);
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.properties .search-bar .search-wrapper .search-field .search-btn {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #0066cc 20%));
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 14px;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.properties .search-bar .search-wrapper .search-field .search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.properties .results-header .results-info h5 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 5px;
}

.properties .results-header .results-info .text-muted {
  color: color-mix(in srgb, var(--default-color), transparent 40%) !important;
  font-size: 14px;
}

.properties .results-header .results-controls .sort-dropdown .form-select {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 13px;
  padding: 8px 12px;
  min-width: 180px;
}

.properties .results-header .results-controls .sort-dropdown .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.properties .results-header .results-controls .view-toggle {
  display: flex;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 6px;
  overflow: hidden;
}

.properties .results-header .results-controls .view-toggle .view-btn {
  padding: 8px 12px;
  border: none;
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: all 0.3s ease;
  cursor: pointer;
}

.properties .results-header .results-controls .view-toggle .view-btn:not(:last-child) {
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.properties .results-header .results-controls .view-toggle .view-btn.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.properties .results-header .results-controls .view-toggle .view-btn:hover:not(.active) {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.properties .properties-container .view-masonry,
.properties .properties-container .view-rows {
  display: none;
}

.properties .properties-container .view-masonry.active,
.properties .properties-container .view-rows.active {
  display: block;
}



.properties .property-row-item {
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
  margin-bottom: 24px;
}

.properties .property-row-item:hover {
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 88%);
}

.properties .property-row-item .property-row-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.properties .property-row-item .property-row-link:hover {
  text-decoration: none;
  color: inherit;
}

.properties .property-row-item .property-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin: 20px;
}

.properties .property-row-item .property-image-wrapper img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.properties .property-row-item .property-image-wrapper:hover img {
  transform: scale(1.05);
}

.properties .property-row-item .property-image-wrapper .property-status {
  position: absolute;
  top: 12px;
  left: 12px;
}

.properties .property-row-item .property-image-wrapper .property-status .status-badge {
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 20px;
  margin-right: 6px;
}

.properties .property-row-item .property-image-wrapper .property-status .status-badge.featured {
  background: linear-gradient(135deg, #ff6b35, #ff8e53);
  color: white;
}

.properties .property-row-item .property-image-wrapper .property-status .status-badge.new {
  background: linear-gradient(135deg, #10b981, #34d399);
  color: white;
}

.properties .property-row-item .property-row-content {
  padding: 20px 20px 20px 0;
}

.properties .property-row-item .property-row-content .property-info .property-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.properties .property-row-item .property-row-content .property-info .property-header .property-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
}

.properties .property-row-item .property-row-content .property-info .property-header .property-type-price {
  text-align: right;
}

.properties .property-row-item .property-row-content .property-info .property-header .property-type-price .property-type {
  display: block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.properties .property-row-item .property-row-content .property-info .property-header .property-type-price .property-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
}

.properties .property-row-item .property-row-content .property-info .property-header .property-type-price .property-price small {
  font-size: 14px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.properties .property-row-item .property-row-content .property-info .property-address {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 14px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.properties .property-row-item .property-row-content .property-info .property-address i {
  color: var(--accent-color);
}

.properties .property-row-item .property-row-content .property-info .property-specs {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}

.properties .property-row-item .property-row-content .property-info .property-specs span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--default-color);
}

.properties .property-row-item .property-row-content .property-info .property-specs span i {
  color: var(--accent-color);
  font-size: 15px;
}

.properties .property-row-item .property-row-content .property-info .property-agent {
  display: flex;
  align-items: center;
  gap: 10px;
}

.properties .property-row-item .property-row-content .property-info .property-agent .agent-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.properties .property-row-item .property-row-content .property-info .property-agent span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-weight: 500;
}

.properties .property-row-item .property-row-content .property-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

.properties .property-row-item .property-row-content .property-actions .action-buttons {
  display: flex;
  gap: 8px;
}

.properties .property-row-item .property-row-content .property-actions .action-buttons .action-btn {
  padding: 8px 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  background-color: transparent;
  color: var(--default-color);
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.properties .property-row-item .property-row-content .property-actions .action-buttons .action-btn:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.properties .property-row-item .property-row-content .property-actions .action-buttons .action-btn.favorite-btn:hover {
  border-color: #ef4444;
  color: #ef4444;
}

.properties .property-row-item .property-row-content .property-actions .view-details-btn {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.properties .property-row-item .property-row-content .property-actions .view-details-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
  color: var(--contrast-color);
}

.properties .pagination-wrapper .pagination-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  font-size: 14px;
}

.properties .pagination-wrapper .pagination-info p strong {
  color: var(--default-color);
  font-weight: 600;
}

.properties .pagination-wrapper .pagination .page-link {
  color: var(--default-color);
  background-color: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 10px 16px;
  margin: 0 2px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.properties .pagination-wrapper .pagination .page-link:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.properties .pagination-wrapper .pagination .page-item.active .page-link {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.properties .pagination-wrapper .pagination .page-item.disabled .page-link {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
}

.properties .pagination-wrapper .pagination .page-item.disabled .page-link:hover {
  background-color: transparent;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

@media (max-width: 992px) {
  .properties .search-bar .search-wrapper .search-field .bedroom-quick .bed-btn {
    font-size: 12px;
    padding: 10px 6px;
  }

  .properties .property-row-item .property-row-content .property-info .property-header {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .properties .property-row-item .property-row-content .property-info .property-header .property-type-price {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .properties .property-row-item .property-row-content .property-info .property-header .property-type-price .property-type {
    margin-bottom: 0;
  }

  .properties .property-row-item .property-row-content .property-info .property-specs {
    gap: 16px;
  }

  .properties .property-row-item .property-row-content .property-actions {
    margin-top: 20px;
    align-items: flex-start;
  }

  .properties .property-row-item .property-row-content .property-actions .action-buttons {
    width: 100%;
    justify-content: space-between;
  }

  .properties .property-row-item .property-row-content .property-actions .view-details-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .properties .search-bar .search-wrapper {
    padding: 20px;
  }

  .properties .search-bar .search-wrapper .search-field .bedroom-quick {
    flex-wrap: wrap;
  }

  .properties .search-bar .search-wrapper .search-field .bedroom-quick .bed-btn {
    min-width: calc(20% - 3px);
  }

  .properties .results-header .results-controls {
    margin-top: 20px;
  }

  .properties .results-header .results-controls .d-flex {
    justify-content: space-between;
    width: 100%;
  }

  .properties .property-row-item .row {
    flex-direction: column;
  }

  .properties .property-row-item .property-image-wrapper {
    margin: 20px 20px 0 20px;
  }

  .properties .property-row-item .property-row-content {
    padding: 20px;
  }

  .properties .pagination-wrapper .row {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .properties .pagination-wrapper .pagination {
    justify-content: center;
  }
}

/* ----------------------------
   Project Card Improvements
-----------------------------*/
.property-item {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.property-item:hover {
  transform: translateY(-6px);
}

/* Image alignment */
.property-image-wrapper {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
}

.property-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* KEY FOR ALIGNMENT */
}

/* Status badge */
.property-status {
  position: absolute;
  top: 12px;
  left: 12px;
}

.status-badge {
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
}

.status-badge.featured { background: #198754; }
.status-badge.new { background: #0d6efd; }
.status-badge.sale { background: #fd7e14; }

/* Card content */
.property-details {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Header */
.property-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.property-price {
  font-weight: 700;
  color: #0d6efd;
  font-size: 14px;
}

.property-type {
  font-size: 12px;
  background: #f1f5ff;
  padding: 4px 10px;
  border-radius: 20px;
  color: #0d6efd;
}

/* Title */
.property-title {
  font-size: 18px;
  font-weight: 700;
  margin: 6px 0 4px;
}

/* Address */
.property-address {
  font-size: 14px;
  color: #6c757d;
  display: flex;
  gap: 6px;
  align-items: center;
}

/* Specs */
.property-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 14px 0;
}

.spec-item {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: #333;
}

.spec-item i {
  color: #0d6efd;
  font-size: 15px;
}

/* Footer */
.property-agent-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #eee;
}

.agent-details span {
  font-size: 12px;
  color: #6c757d;
}

.contact-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0d6efd;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #084298;
}

/* Responsive fix */
@media (max-width: 767px) {
  .property-image-wrapper {
    height: 200px;
  }
  .property-specs {
    grid-template-columns: 1fr 1fr;
  }
}
.main{
  background: linear-gradient(135deg, var(--surface-color) 0%,
 color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  background-color: #000000;
}
/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details {
  background: linear-gradient(135deg, var(--surface-color) 0%,
 color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  background-color: #000000;
}


.service-details .service-content .service-hero {
  position: relative;
  margin-bottom: 2rem;
}

.service-details .service-content .service-hero img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-details .service-content .service-hero .service-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-details .service-content .service-hero .service-badge i {
  font-size: 16px;
}

.service-details .service-content .service-overview {
  margin-bottom: 3rem;
}

.service-details .service-content .service-overview h2 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  font-weight: 700;
}

.service-details .service-content .service-overview .lead {
  font-size: 1.2rem;
  color: var(--default-color);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-details .service-content .service-overview p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-details .service-content .service-features {
  margin-bottom: 3rem;
}

.service-details .service-content .service-features h3 {
  color: var(--heading-color);
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 600;
}

.service-details .service-content .service-features .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-details .service-content .service-features .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-details .service-content .service-features .feature-item .feature-icon {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-details .service-content .service-features .feature-item .feature-icon i {
  font-size: 20px;
}

.service-details .service-content .service-features .feature-item .feature-content h5 {
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.service-details .service-content .service-features .feature-item .feature-content p {
  color: var(--default-color);
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.service-details .service-content .service-process {
  margin-bottom: 3rem;
}

.service-details .service-content .service-process h3 {
  color: var(--heading-color);
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 600;
}

.service-details .service-content .service-process .process-steps .process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.service-details .service-content .service-process .process-steps .process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 45px;
  width: 2px;
  height: calc(100% + 10px);
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-details .service-content .service-process .process-steps .process-step .step-number {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.service-details .service-content .service-process .process-steps .process-step .step-content h5 {
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.service-details .service-content .service-process .process-steps .process-step .step-content p {
  color: var(--default-color);
  margin: 0;
  line-height: 1.5;
}

.service-details .service-content .service-stats {
  margin-bottom: 3rem;
}

.service-details .service-content .service-stats h3 {
  color: var(--heading-color);
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 600;
}

.service-details .service-content .service-stats .stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-details .service-content .service-stats .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  display: block;
}

.service-details .service-content .service-stats .stat-item .stat-label {
  color: var(--default-color);
  font-size: 14px;
  font-weight: 500;
}

.service-details .sidebar .contact-form-widget,
.service-details .sidebar .quick-info-widget,
.service-details .sidebar .testimonial-widget,
.service-details .sidebar .related-services-widget {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.service-details .sidebar .contact-form-widget h4,
.service-details .sidebar .quick-info-widget h4,
.service-details .sidebar .testimonial-widget h4,
.service-details .sidebar .related-services-widget h4 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.service-details .sidebar .contact-form-widget p {
  color: var(--default-color);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.service-details .sidebar .contact-form-widget .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 5px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.service-details .sidebar .contact-form-widget .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 75%);
  outline: 0;
}

.service-details .sidebar .contact-form-widget .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.service-details .sidebar .contact-form-widget .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.service-details .sidebar .contact-form-widget .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  transform: translateY(-2px);
}

.service-details .sidebar .quick-info-widget .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-details .sidebar .quick-info-widget .info-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .sidebar .quick-info-widget .info-list li:last-child {
  border-bottom: none;
}

.service-details .sidebar .quick-info-widget .info-list li i {
  color: var(--accent-color);
  font-size: 16px;
  width: 20px;
}

.service-details .sidebar .quick-info-widget .info-list li span {
  color: var(--default-color);
  font-size: 14px;
}

.service-details .sidebar .testimonial-widget .testimonial-item .testimonial-content {
  margin-bottom: 1rem;
}

.service-details .sidebar .testimonial-widget .testimonial-item .testimonial-content p {
  color: var(--default-color);
  font-style: italic;
  margin: 0;
  line-height: 1.5;
}

.service-details .sidebar .testimonial-widget .testimonial-item .testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-details .sidebar .testimonial-widget .testimonial-item .testimonial-author img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.service-details .sidebar .testimonial-widget .testimonial-item .testimonial-author .author-info h6 {
  color: var(--heading-color);
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.service-details .sidebar .testimonial-widget .testimonial-item .testimonial-author .author-info span {
  color: var(--default-color);
  font-size: 12px;
}

.service-details .sidebar .related-services-widget .service-links .service-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: var(--default-color);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: color 0.3s ease;
}

.service-details .sidebar .related-services-widget .service-links .service-link:last-child {
  border-bottom: none;
}

.service-details .sidebar .related-services-widget .service-links .service-link:hover {
  color: var(--accent-color);
}

.service-details .sidebar .related-services-widget .service-links .service-link:hover .bi-arrow-right {
  transform: translateX(5px);
}

.service-details .sidebar .related-services-widget .service-links .service-link .bi:first-child {
  color: var(--accent-color);
  font-size: 16px;
  width: 20px;
}

.service-details .sidebar .related-services-widget .service-links .service-link span {
  flex: 1;
  font-size: 14px;
}

.service-details .sidebar .related-services-widget .service-links .service-link .bi-arrow-right {
  font-size: 14px;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .service-details .service-content .service-overview h2 {
    font-size: 2rem;
  }

  .service-details .service-content .service-overview .lead {
    font-size: 1.1rem;
  }

  .service-details .service-content .service-process .process-steps .process-step:not(:last-child)::after {
    left: 17px;
  }

  .service-details .service-content .service-process .process-steps .process-step .step-number {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .service-details .sidebar {
    margin-top: 2rem;
  }

  .service-details .sidebar .contact-form-widget,
  .service-details .sidebar .quick-info-widget,
  .service-details .sidebar .testimonial-widget,
  .service-details .sidebar .related-services-widget {
    padding: 1.5rem;
  }
}
.project-gallery img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .project-gallery img {
    height: 280px;
  }
}

.project-sidebar {
  position: sticky;
  top: 100px;
}

.project-hero {
  position: relative;
  margin-bottom: 20px;
}

.project-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: #0d6efd;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
}

.project-info-list {
  list-style: none;
  padding: 0;
}

.project-info-list li {
  margin-bottom: 10px;
  font-size: 15px;
}

.project-info-list i {
  color: #0d6efd;
  margin-right: 8px;
}

.project-amenities i {
  color: #198754;
  margin-right: 6px;
}

.enquiry-widget,
.related-projects-widget {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.related-projects-list {
  list-style: none;
  padding: 0;
}

.related-projects-list li {
  margin-bottom: 8px;
}

.related-projects-list a {
  color: #333;
  text-decoration: none;
}

.project-gallery img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
}
.contact-detail {
  border-radius: 24px;
}

.contact-form input {
  font-size: 14px;
}

.contact-form button {
  font-size: 14px;
}
/* IMAGE */
.blog-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DETAIL ICON */
.detail-icon {
  font-size: 18px;
  color: var(--bs-primary);
  margin-right: 10px;
  margin-top: 3px;
}

/* TEXT FIX */
.project-details p {
  margin-bottom: 0;
  font-size: 14px;
  color: #555;
}

.project-details strong {
  font-size: 12px;
  color: #222;
}

/* FOOTER */
.blog-footer {
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f5f5f5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  color: var(--bs-primary);
  font-size: 18px;
}

.btn-read-more {
  background: var(--bs-primary);
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

/* 🔥 MOBILE FIXES */
@media (max-width: 576px) {
  .blog-content h3 {
    font-size: 20px;
  }

  .btn-read-more {
    width: 100%;
    justify-content: center;
  }

  .contact-icons {
    display: flex;
    justify-content: center;
  }
}
