/* Mobile layout fix: Stack testimonial image above its content */
@media (max-width: 576px) {
  .testimonial-area .rounded-4.d-flex {
    flex-direction: column !important;
    height: auto !important; /* container can grow; image sizes unchanged */
    align-items: center !important; /* center children horizontally */
  }
  .testimonial-area .rounded-4.d-flex .flex-shrink-0 {
    order: 0; /* image first */
    margin-left: auto;
    margin-right: auto;
  }
  .testimonial-area .rounded-4.d-flex .p-4 {
    order: 1; /* content second */
    margin-left: auto;
    margin-right: auto;
  }
}
/* Property Swiper Mobile Styles */
.property-swiper {
  padding: 0 0 50px 0;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.property-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
  padding-bottom: 10px;
}

.property-swiper .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
  padding: 0 5px;
}

.property-swiper .swiper-pagination {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.property-swiper .swiper-pagination-bullet {
  background-color: #7065F0;
  opacity: 0.3;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 !important;
}

.property-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
  background-color: #7065F0;
}

/* Navigation arrows for better UX */
.property-swiper .swiper-button-next,
.property-swiper .swiper-button-prev {
  color: #7065F0;
  background: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.property-swiper .swiper-button-next:hover,
.property-swiper .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

.property-swiper .swiper-button-next:after,
.property-swiper .swiper-button-prev:after {
  font-size: 16px;
  font-weight: bold;
}

.property-swiper .swiper-button-next {
  right: 10px;
}

.property-swiper .swiper-button-prev {
  left: 10px;
}

/* Ensure swiper is only visible on mobile */
@media (min-width: 768px) {
  .property-swiper {
    display: none !important;
  }
  .property-card-mobile .product-title-sm{
    font-size: 9px !important;
  }
}


/* Mobile Property Card Styles */
.property-card-mobile .property-card-sm {
  margin-bottom: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
}

.property-card-mobile .product-img-sm {
  flex-shrink: 0;
}

.property-card-mobile .product-img-sm img {
  width: 100% !important;
  height: 90px !important;
  object-fit: cover;
}

.property-card-mobile .product-details-sm {
  padding: 12px !important;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.property-card-mobile .product-title-sm {
  font-size: 14px !important;
  line-height: 1.2;
  margin-bottom: 8px !important;
}

.property-card-mobile .product-title-sm a {
  font-size: 11px !important;
  line-height: 1.2;
}

.property-card-mobile .new-price {
  font-size: 9px !important;
  font-weight: 700;
}

.property-card-mobile .text-muted {
  font-size: 7px !important;
}

.property-card-mobile .product-info {
  margin-top: -6px !important;
}

.property-card-mobile .product-info li {
  font-size: 10px !important;
  margin-right: 8px;
}

.property-card-mobile .property-icon {
  font-size: 10px !important;
}

.property-card-mobile .property-feature-text {
  font-size: 7px !important;
}

.property-card-mobile .btn-wishlist-sm {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(112, 101, 240, 0.1);
}

.property-card-mobile .btn-wishlist-sm i {
  font-size: 12px !important;
}

/* Hide navigation buttons on very small screens */
@media (max-width: 480px) {
  .property-swiper .swiper-button-next,
  .property-swiper .swiper-button-prev {
    display: none;
  }
  
  .property-swiper .swiper-pagination {
    bottom: 10px;
  }
}

/* Tablet adjustments for property cards */
@media (min-width: 768px) and (max-width: 991px) {
  .property-card-mobile .product-img-sm img {
    height: 200px !important;
  }
  
  .property-card-mobile .product-details-sm {
    padding: 18px !important;
  }
  
  .property-card-mobile .product-title-sm {
    font-size: 17px !important;
  }
  
  .property-card-mobile .new-price {
    font-size: 20px !important;
  }
}

/* Tablet-only tweaks for desktop/grid cards (do not affect mobile or desktop) */
@media (min-width: 768px) and (max-width: 991px) {
  /* Make card fit its Bootstrap column and reduce overall height */
  .property-card-sm {
    width: 100% !important;
    height: auto !important;
  }

  /* Shorter image to shrink visual height */
  .product-img-sm img {
    height: 180px !important;
  }

  /* Slightly tighter padding inside */
  .product-details-sm {
    padding: 12px !important;
  }

  /* Tablet font-size reductions for grid cards */
  .product-details-sm .new-price {
    font-size: 18px !important;
  }

  .product-title-sm,
  .product-title-sm a {
    font-size: 18px !important;
    line-height: 1.3 !important;
  }

  .product-details-sm .text-muted,
  .product-details-sm .text-muted.small {
    font-size: 14px !important;
  }

  .product-info li {
    font-size: 12px !important;
  }

  .property-icon {
    font-size: 12px !important;
  }

  .property-feature-text {
    font-size: 12px !important;
  }
}

/* Apply the same structure for slightly larger tablets (992px–1024px) */
@media (min-width: 992px) and (max-width: 1024px) {
  .property-card-sm {
    width: 100% !important;
    height: auto !important;
  }

  .product-img-sm img {
    height: 180px !important;
  }

  .product-details-sm {
    padding: 12px !important;
  }

  .product-details-sm .new-price {
    font-size: 18px !important;
  }

  .product-title-sm,
  .product-title-sm a {
    font-size: 18px !important;
    line-height: 1.3 !important;
  }

  .product-details-sm .text-muted,
  .product-details-sm .text-muted.small {
    font-size: 14px !important;
  }

  .product-info li {
    font-size: 12px !important;
  }

  .property-icon {
    font-size: 12px !important;
  }

  .property-feature-text {
    font-size: 12px !important;
  }
}

/* Home Page Responsive Styles - Desktop styles remain unchanged */

/* Cities Section Desktop Styles */
.cities-container {
  position: relative;
}

.cities-slider {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: nowrap;
}

.city-card {
  flex-shrink: 0;
  text-align: center;
}

.city-card h5 {
  letter-spacing: 0.2em !important;
}

.slider-controls {
  display: none;
}

/* Home banner base styles */
.home-banner-1 {
  background-color: #E0DEF7;
}

/* Desktop-only top margin for banner */
@media (min-width: 1025px) {
  .home-banner-1 {
    margin-top: 7rem !important;
  }
}

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  .home-banner-1 .container {
    padding: 0 20px;
  }
  
  .bannertitle {
    font-size: 2.5rem !important;
  }
  
  .hero-image {
    max-width: 100%;
    height: auto;
  }

  .banner-filter-form {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-search {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    flex-direction: column;
    gap: 1rem;
  }
  
  .search-fields {
    flex-direction: row;
    gap: 1rem;
  }
  .banner-filter-form{
    margin-left: 50% !important;
    top: 3rem;
  }
  .search-fields .field {
    width: 100%;
  }
  .home-banner{
    padding-top:none!important;
    margin-top:none!important;
  }
  .search-fields .divider {
    display: none;
  }
  
  /* Property Section */
  .product-area {
    width: 100% !important;
    padding: 0 20px;
  }
  
  .section-title .title {
    font-size: 2rem !important;
  }
  
  /* Counter Section */
  .counter-card {
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
  }
  
  /* Cities Section */
  .gallery-area {
    width: 100% !important;
    padding: 0 20px;
  }
  
  /* Cities Slider for Tablet */
  .cities-container {
    position: relative;
    overflow: hidden;
  }
  
  .cities-slider {
    display: flex;
    transition: transform 0.3s ease-in-out;
  }
  
  .city-card {
    flex: 0 0 50%;
    margin-bottom: 1rem;
    padding: 0 10px;
  }
  
  .slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .slider-btn {
    background: #7065f0;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .slider-dots {
    display: none;
  }
  
  /* Featured Properties */
  .new-featured-psec .container {
    width: 100% !important;
    padding: 0 20px;
  }
  
  .new-featured-psec .carousel-inner .single-page {
    max-width: 95%;
  }
  
  .new-featured-psec .property-img {
    padding: 0 6px;
  }
  
  .new-featured-psec .property-img img {
    height: 340px !important;
  }
  
  .new-featured-psec .property-content {
    padding: 18px;
    left: 31%;
    width: 78%;
    max-width: 270px;
  }
  
  .new-featured-psec h5 {
    font-size: 17px;
    margin-bottom: 12px;
  }
  
  .new-featured-psec .details {
    font-size: 12px;
    margin-bottom: 8px;
  }
  
  .new-featured-psec .agent {
    font-size: 12px;
    margin-bottom: 10px;
  }
  
  .new-featured-psec .price {
    font-size: 19px;
  }
  
  .new-featured-psec .carousel-indicators {
    margin-top: 15px;
  }
  
  /* About Section */
  .about-area {
    width: 100% !important;
    padding: 0 20px;
  }
  
  /* Why Choose Us */
  .choose-area .container {
    width: 100% !important;
    padding: 0 20px !important;
  }
  
  .why-scroll {
    overflow-x: auto;
    padding-bottom: 1rem;
  }
  
  .why-item {
    min-width: 280px;
    margin-right: 1rem;
  }
  
  /* Blog Section */
  .blog-area .container {
    width: 100% !important;
    padding: 0 20px;
  }
  
  /* Vendor Section */
  .agent-area {
    width: 100% !important;
    padding: 0 20px;
  }
  
  /* Testimonial Section */
  .testimonial-area .container {
    width: 100% !important;
    padding: 0 20px;
  }
  
  /* Newsletter Section */
  .newsletter-area {
    width: 100% !important;
    padding: 0 20px;
  }
}

/* Mobile Styles (max-width: 768px) */
@media (max-width: 768px) {
  /* Hero Section */
  .home-banner-1 {
    margin-top: 5rem !important;
    padding: 2rem 0;
  }
  
  .home-banner-1 .container {
    padding: 0 15px;
  }
  
  .bannertitle {
    font-size: 2rem !important;
    line-height: 1.2;
  }
  
  .hero-description {
    width: 100% !important;
    font-size: 16px !important;
    padding: 0 10px;
  }
  
  .hero-image {
    width: 100% !important;
    height: 433px;
    margin-top: -2rem;
    margin-bottom: -45px;
  }
  
  .banner-filter-form {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin-top: 0;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /* Disable Bootstrap grid columns on mobile and enable Swiper */
@media (max-width: 767.98px) {
  .swiper .row {
      flex-wrap: nowrap; /* Prevent wrapping so they stay in one line */
      overflow-x: auto;  /* Allow horizontal scrolling if Swiper is not used */
  }

  .swiper-slide {
      width: 80% !important; /* Adjust slide width for mobile view */
      margin-right: 15px; /* Add some spacing between cards */
  }
}
@media (max-width: 767.98px) {
  .banner-filter-form {
    position: static !important;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    margin: 0 auto;
    padding: 0;
  }

  .hero-search {
    position: static;
    transform: none;
    width: 100%;
    max-width: 980px;
    padding: 14px 16px 16px;
    border-radius: 16px;
    max-height: none;
  }
  
  .hero-search .search-tabs {
    justify-content: center;
    margin-bottom: 10px;
    gap: 16px;
  }
  
  .hero-search .search-fields {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  
  .hero-search .field-label {
    font-size: 13px;
    margin-bottom: 2px;
    text-align: left;
  }
  
  .hero-search .form-control,
  .hero-search .form-select {
    font-size: 13px;
    padding: 8px 0;
    height: 48px;
    text-align: left;
    width: 100%;
  }
  
  .hero-search .search-btn {
    width: 120px;
    height: 48px;
    font-size: 14px;
    margin-right: 0;
    align-self: center;
  }
  
  .hero-search .tab-btn {
    padding: 8px 18px;
    font-size: 13px;
  }
  
  .search-fields .field {
    width: 100%;
  }
  
  .search-fields .divider {
    display: none;
  }
}
  
  /* Property Section */
  .product-area {
    width: 100% !important;
    padding: 0 15px;
    margin-top: 2rem !important;
  }
  
  .section-title .title {
    font-size: 1.8rem !important;
    text-align: center;
  }
  
  .tabs-navigation {
    justify-content: center;
    margin-top: 1rem;
  }
  
  .nav-tabs {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-tabs .nav-link {
    font-size: 14px;
    padding: 8px 16px;
  }
  
  /* Counter Section */
  .counter-area {
    padding: 2rem 0 !important;
  }
  
  .counter-card {
    width: 100% !important;
    height: auto !important;
    margin: 0 0 1rem 0 !important;
    padding: 1.5rem !important;
  }
  
  .counter-icon i {
    font-size: 2.5rem !important;
  }
  
  .counter-title {
    font-size: 1.2rem;
  }
  
  /* Cities Section */
  .gallery-area {
    width: 90% !important;
    padding: 2rem 15px;
  }
  
  .gallery-area .section-title .title {
    font-size: 1.8rem !important;
    text-align: center;
  }
  
  /* Cities Slider Styles */
  .cities-container {
    position: relative;
    overflow: hidden;
    width: 90%;
  }
  
  .cities-slider {
    display: flex;
    transition: transform 0.3s ease-in-out;
    width: 100%;
  }
  
  .city-card {
    flex: 0 0 100%;
    margin-bottom: 1rem;
    padding: 0 10px;
  }
  
  .city-card img {
    width: 236px !important;
    height: 362px !important;
    border-radius: 10.21px !important;
    object-fit: cover;
  }
  
  .city-card h5 {
    letter-spacing: 0.2em !important;
  }
  
  .slider-controls {
    display: none !important;
  }
  
  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }
  
  .slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .slider-dots .dot.active {
    background: var(--color-primary);
    width: 24px;
    border-radius: 4px;
  }
  
  /* Featured Properties */
  .featured-properties-section {
    padding: 2rem 0 !important;
  }
  
  .featured-properties-section .container {
    width: 100% !important;
    padding: 0 15px;
  }
  
  .featured-properties-section .section-title .title {
    font-size: 1.8rem !important;
    text-align: center;
  }
  
  .featured-property-card {
    height: 300px !important;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
  }
  
  .property-image {
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    top: 0;
    left: 0;
  }
  
  .property-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
  }
  
  .property-card-overlay {
    position: absolute !important;
    width: 75% !important;
    height: auto !important;
    top: auto !important;
    left: 50% !important;
    bottom: 20px !important;
    transform: translateX(-50%) !important;
    margin-top: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(5px);
    min-height: 80px;
    max-height: 166px;
    overflow: visible;
  }
  
  .property-details {
    width: 100% !important;
    height: auto !important;
    padding: 0.6rem !important;
    overflow: visible;
  }
  
  .property-details * {
    font-size: 0.8rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0.2rem !important;
  }
  
  .property-details .property-title {
    font-size: 0.85rem !important;
    margin-bottom: 0.3rem !important;
    font-weight: 600 !important;
  }
  
  .property-details .property-price {
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    margin-bottom: 0 !important;
  }
  
  .property-details .property-specs {
    margin-bottom: 0.2rem !important;
  }
  
  .property-details .property-contact {
    font-size: 0.75rem !important;
    margin-bottom: 0.1rem !important;
  }
  
  .navigation-arrows {
    position: absolute !important;
    right: 15px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    justify-content: center;
    margin-top: 0;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .navigation-arrows .btn {
    width: 35px !important;
    height: 35px !important;
  }
  
  /* Projects Section */
  .projects-showcase {
    padding: 2rem 0 !important;
  }
  
  .projects-showcase .container {
    width: 100% !important;
    padding: 0 15px;
  }
  
  .projects-showcase .title {
    font-size: 1.8rem !important;
    width: 100% !important;
  }
  
  .project-card img {
    height: 250px !important;
    width: 100% !important;
  }
  
  /* About Section */
  .about-area {
    width: 100% !important;
    padding: 2rem 15px;
  }
  
  .about-area .title {
    font-size: 1.8rem !important;
  }
  
  .img-content .image {
    margin-bottom: 2rem;
  }
  
  .img-content .image img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
  }
  
  /* Why Choose Us */
  .choose-area {
    padding: 2rem 0 !important;
  }
  
  .choose-area .container {
    width: 100% !important;
    padding: 0 15px !important;
  }
  
  .why-title {
    font-size: 1.8rem !important;
    text-align: center;
  }
  
  .why-scroll {
    overflow-x: auto;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
  }
  
  .why-item {
    min-width: 250px;
    margin-right: 1rem;
  }
  
  .why-card {
    padding: 1.5rem;
    text-align: center;
  }
  
  .why-card-title {
    font-size: 1.1rem;
  }
  
  .why-dots {
    justify-content: center;
    margin-top: 1rem;
  }
  
  /* Blog Section */
  .blog-area {
    padding: 2rem 0 !important;
  }
  
  .blog-area .container {
    width: 100% !important;
    padding: 0 15px;
  }
  
  .blog-area .title {
    font-size: 1.8rem !important;
    text-align: center;
  }
  
  .blog-card {
    margin-bottom: 1.5rem;
  }
  
  .blog-image {
    height: 180px !important;
    width: 100% !important;
  }
  
  .blog-image img {
    width: 100% !important;
    height: 100% !important;
  }
  
  .blog-content {
    width: 100% !important;
    padding: 1rem !important;
  }
  
  .blog-title {
    font-size: 1rem !important;
    line-height: 1.4;
  }
  
  /* Vendor Section */
  .agent-area {
    width: 100% !important;
    padding: 2rem 15px;
  }
  
  .agent-area .title {
    font-size: 1.8rem !important;
    text-align: center;
  }
  
  .agent-box {
    margin-bottom: 1.5rem;
  }
  
  /* Testimonial Section */
  .testimonial-area {
    padding: 2rem 0 !important;
  }
  
  .testimonial-area .container {
    width: 100% !important;
    padding: 0 15px;
  }
  
  .testimonial-area .title {
    font-size: 1.8rem !important;
    text-align: center;
  }
  
  .testimonial-area .text {
    font-size: 14px !important;
    text-align: center;
  }
  
  .testimonial-card {
    height: auto !important;
    flex-direction: column;
    margin-bottom: 1rem;
  }
  
  .testimonial-card img {
    width: 100% !important;
    height: 200px !important;
    border-radius: 8px !important;
  }
  
  .testimonial-content {
    width: 100% !important;
    height: auto !important;
    padding: 1rem !important;
  }
  
  /* Newsletter Section */
  .newsletter-area {
    width: 100% !important;
    padding: 2rem 15px;
  }
  
  .newsletter-area .title {
    font-size: 1.8rem !important;
    text-align: center;
  }
  
  .newsletter-form {
    margin-top: 1rem;
  }
  
  .newsletter-form .input-group {
    flex-direction: column;
  }
  
  .newsletter-form .form-control {
    margin-bottom: 1rem;
    border-radius: 8px;
  }
  
  .newsletter-form .btn {
    width: 100%;
    border-radius: 8px;
  }
  .property-sec-title{
    font-size: 18px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/* Small Mobile Styles (max-width: 576px) */
@media (max-width: 576px) {
  /* Hero Section */
  .home-banner-1 {
    margin-top: 4rem !important;
  }
  .property-sec-title{
    font-size: 18px;
    text-align: center;
   margin: 0 auto 20px auto;
  }
  .bannertitle {
    font-size: 1.5rem !important;
  }
  
  .hero-description {
    font-size: 14px !important;
    margin:0 0 60px 0;
  }
  
  .search-tabs .tab-btn {
    font-size: 14px;
    padding: 8px 12px;
    background-color: #ccc;
  }
  
  /* Property Section */
  .section-title .title {
    font-size: 1.5rem !important;
  }
  
  .nav-tabs .nav-link {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  /* Counter Section */
  .counter-card {
    padding: 1rem !important;
  }
  
  .counter-icon i {
    font-size: 2rem !important;
  }
  
  .counter-title {
    font-size: 1rem;
  }
  
  /* Cities Section */
  .gallery-area .section-title .title {
    font-size: 1.5rem !important;
  }
  
  .city-card img {
    width: 236px !important;
    height: 362px !important;
    border-radius: 10.21px !important;
    object-fit: cover;
  }
  
  .city-card h5 {
    letter-spacing: 0.2em !important;
  }
  
  /* Featured Properties */
  .featured-properties-section .section-title .title {
    font-size: 1.5rem !important;
  }
  
  .featured-property-card {
    height: 250px !important;
  }
  
  .property-card-overlay {
    width: 80% !important;
    bottom: 15px !important;
    min-height: 70px;
    max-height: 166px;
    background: rgba(255, 255, 255, 0.9) !important;
    overflow: visible;
  }
  
  .property-details {
    padding: 0.5rem !important;
    overflow: visible;
  }
  
  .property-details * {
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
    margin-bottom: 0.15rem !important;
  }
  
  .property-details .property-title {
    font-size: 0.8rem !important;
    margin-bottom: 0.25rem !important;
    font-weight: 600 !important;
  }
  
  .property-details .property-price {
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    margin-bottom: 0 !important;
  }
  
  .property-details .property-specs {
    margin-bottom: 0.15rem !important;
  }
  
  .property-details .property-contact {
    font-size: 0.7rem !important;
    margin-bottom: 0.1rem !important;
  }
  
  .property-title {
    font-size: 1.1rem !important;
  }
  
  .property-specs {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .spec-item {
    font-size: 11px;
  }
  
  .navigation-arrows .btn {
    width: 30px !important;
    height: 30px !important;
  }
  
  /* Projects Section */
  .projects-showcase .title {
    font-size: 1.5rem !important;
  }
  
  .project-card img {
    height: 200px !important;
  }
  
  /* About Section */
  .about-area .title {
    font-size: 1.5rem !important;
  }
  
  /* Why Choose Us */
  .why-title {
    font-size: 1.5rem !important;
  }
  
  .why-item {
    min-width: 200px;
  }
  
  .why-card {
    padding: 1rem;
  }
  
  .why-card-title {
    font-size: 1rem;
  }
  
  /* Blog Section */
  .blog-area .title {
    font-size: 1.5rem !important;
  }
  
  .blog-image {
    height: 150px !important;
  }
  
  .blog-title {
    font-size: 0.9rem !important;
  }
  
  /* Vendor Section */
  .agent-area .title {
    font-size: 1.5rem !important;
  }
  
  /* Testimonial Section */
  .testimonial-area .title {
    font-size: 1.5rem !important;
  }
  
  .testimonial-card img {
    height: 150px !important;
  }
  
  /* Newsletter Section */
  .newsletter-area .title {
    font-size: 1.5rem !important;
  }
}

/* Header Responsive Adjustments */
@media (max-width: 768px) {
  .main-navbar {
    padding: 0.5rem 0;
  }
  
  .navbar-brand img {
    max-height: 55px;
  }
  
  .more-option {
    gap: 0.5rem !important;
  }
  
  .more-option .item {
    margin-bottom: 0.5rem;
  }
  
  .btn-login,
  .btn-signup {
    font-size: 9px;
    padding: 6px 12px;
  }
  
  .nice-select,
  .form-control {
    font-size: 12px;
    padding: 4px 8px;
  }
}

/* Utility Classes for Mobile */
@media (max-width: 768px) {
  .mobile-center {
    text-align: center;
  }
  
  .mobile-full-width {
    width: 100% !important;
  }
  
  .mobile-padding {
    padding: 0 15px;
  }
  
  .mobile-margin {
    margin: 1rem 0;
  }
}

/* iPad Mini */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .home-single-section {
    max-width: 1143px !important;
    margin: 12px auto !important;
  }
}

/* iPad 11 inch */
@media only screen and (min-width: 834px) and (max-width: 1200px) {
  .home-single-section {
    max-width: 1143px !important;
    margin: 12px auto !important;
  }
}

/* iPad 13 inch */
@media only screen and (min-width: 1024px) and (max-width: 1366px) {
  .home-single-section {
    max-width: 1143px !important;
    margin: 12px auto !important;
  }
}