.highlighted-projects {
  padding: 72px 24px 88px;
  background:
    radial-gradient(circle at top right, rgba(200, 150, 12, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfaf6 100%);
}

.projects-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.projects-title {
  line-height: 1;
    color: var(--navy);
    margin: 0;
    font-weight: 900;
}

.projects-underline {
  width: 82px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #84312b 0%, #ab4234 100%);
  display: inline-block;
  margin-top: 12px;
}

.projects-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #84312b;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  transition: transform 0.2s ease, color 0.2s ease;
}

.projects-link:hover {
  color: #662621;
  transform: translateX(2px);
}

.projects-slider {
  position: relative;
}

.projects-track-wrap {
  overflow: hidden;
}

.projects-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  padding: 4px 0;
}

.projects-track::-webkit-scrollbar {
  display: none;
}

.project-card {
  position: relative;
  flex: 0 0 calc((100% - 32px) / 3);
  min-height: 314px;
  border-radius: 22px;
  overflow: hidden;
  background: #d8dfe8;
  scroll-snap-align: start;
  box-shadow: 0 18px 40px rgba(17, 34, 64, 0.12);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 28%, rgba(0, 0, 0, 0.68) 100%);
}

.project-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  padding: 22px 16px 18px;
  color: #ffffff;
}

.project-card-content h3 {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 6px;
}

.project-card-content p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.project-card-content strong {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.projects-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(17, 34, 64, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(17, 34, 64, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  transform: translateY(-50%);
}

.projects-nav:hover {
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 14px 30px rgba(17, 34, 64, 0.16);
}

.projects-nav:disabled {
  opacity: 0.45;
  cursor: default;
  transform: translateY(-50%);
  box-shadow: 0 8px 18px rgba(17, 34, 64, 0.08);
}

.projects-nav-prev {
  left: -30px;
}

.projects-nav-next {
  right: -30px;
}

.popular-properties {
  padding: 0 24px 88px;
  background: linear-gradient(180deg, #fbfaf6 0%, #ffffff 100%);
}

.popular-slider {
  position: relative;
}

.popular-track {
  gap: 18px;
}

.popular-card {
  flex: 0 0 calc((100% - 54px) / 4);
  background: #ffffff;
  border: 1px solid rgba(17, 34, 64, 0.12);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(17, 34, 64, 0.08);
  scroll-snap-align: start;
}

.popular-card img {
  width: 100%;
  height: 178px;
  object-fit: cover;
  display: block;
}

.popular-card-body {
  padding: 14px 16px 12px;
}

.popular-card-type {
  display: inline-block;
  font-size: 13px;
  color: #2c2f38;
  margin-bottom: 6px;
}

.popular-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #141924;
}

.popular-card p {
  margin: 0;
  font-size: 15px;
  color: #6b7280;
}

.popular-card-footer {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.popular-card-footer span {
  font-size: 14px;
  color: #1c2230;
}

.popular-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 18px;
  border-radius: 999px;
  background: #84312b;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

.popular-card-btn:hover {
  background: #692722;
  transform: translateY(-1px);
}

.why-us .why-us-slider {
  position: relative;
}

.why-us .features-grid {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  padding: 4px 0;
}

.why-us .features-grid::-webkit-scrollbar {
  display: none;
}

.why-us .feature-card {
  flex: 0 0 calc((100% - 72px) / 4);
  scroll-snap-align: start;
}

.top-locations {
  padding: 0 24px 88px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf6 100%);
}

.top-locations-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.top-locations-slider {
  position: relative;
}

.top-locations-track {
  gap: 16px;
}

.top-location-card {
  flex: 0 0 calc((100% - 48px) / 4);
  background: #ffffff;
  border: 1px solid rgba(17, 34, 64, 0.12);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(17, 34, 64, 0.08);
  scroll-snap-align: start;
}

.top-location-card img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  display: block;
}

.top-location-card-body {
  padding: 16px;
}

.top-location-card h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: #1b1f28;
}

@media (max-width: 1024px) {
  .project-card {
    flex-basis: calc((100% - 16px) / 2);
    min-height: 280px;
  }

  .popular-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .why-us .feature-card {
    flex-basis: calc((100% - 24px) / 2);
  }

  .top-location-card {
    flex-basis: calc((100% - 16px) / 2);
  }

  .projects-nav-prev {
    left: -18px;
  }

  .projects-nav-next {
    right: -18px;
  }
}

@media (max-width: 768px) {
  .highlighted-projects {
    padding: 52px 0 64px;
  }

  .popular-properties {
    padding: 0 0 64px;
  }

  .popular-properties .section-inner {
    max-width: 100%;
    padding: 0 0 0 10px;
    margin: 0;
  }

  .highlighted-projects .section-inner {
    max-width: 100%;
    padding: 0 0 0 16px;
    margin: 0;
  }

  .projects-head {
    align-items: center;
    margin-bottom: 18px;
    padding-right: 16px;
  }

  .projects-title {
    font-size: 18px;
  }

  .projects-underline {
    width: 62px;
    height: 5px;
    margin-top: 8px;
  }

  .projects-link {
    font-size: 0;
    gap: 0;
    width: 28px;
    justify-content: center;
  }

  .projects-link span:first-child {
    display: none;
  }

  .projects-link span:last-child {
    font-size: 28px;
    line-height: 1;
  }

  .projects-track {
    gap: 10px;
    padding-right: 16px;
  }

  .project-card {
    flex-basis: 40%;
    min-width: 122px;
    min-height: 190px;
    border-radius: 15px;
  }

  .project-card-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 10px 12px;
  }

  .project-card-content h3 {
    font-size: 17px;
    margin-bottom: 4px;
  }

  .project-card-content p {
    font-size: 11px;
  }

  .project-card-content strong {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    max-width: 100%;
    padding: 4px 7px;
    border-radius: 7px;
    background: rgba(10, 22, 40, 0.72);
    color: #ffffff;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
  }

  .projects-nav {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  .projects-nav-prev {
    left: -12px;
  }

  .projects-nav-next {
    right: 4px;
  }

  .popular-properties-head {
    padding: 0 10px 0 6px;
    margin-bottom: 12px;
  }

  .popular-track {
    gap: 8px;
    padding-right: 10px;
  }

  .popular-card {
    flex-basis: 41%;
    min-width: 126px;
    border-radius: 12px;
  }

  .popular-card img {
    height: 92px;
  }

  .popular-card-body {
    padding: 8px 8px 10px;
  }

  .popular-card-type {
    font-size: 11px;
    margin-bottom: 3px;
  }

  .popular-card h3 {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .popular-card p {
    font-size: 11px;
  }

  .popular-card-footer {
    margin-top: 8px;
    gap: 8px;
  }

  .popular-card-footer span {
    font-size: 10px;
  }

  .popular-card-btn {
    min-height: 26px;
    font-size: 11px;
    padding: 0 12px;
  }

  .why-us .features-grid {
    gap: 12px;
    margin-top: 28px;
    padding-right: 12px;
  }

  .why-us .feature-card {
    flex-basis: calc((100% - 18px) / 2.5);
    min-width: 128px;
    padding: 18px 14px;
    border-radius: 14px;
  }

  .why-us .feature-icon {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .why-us .feature-title {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .why-us .feature-desc {
    font-size: 12px;
  }

  .why-us-nav.projects-nav-prev {
    left: -10px;
  }

  .why-us-nav.projects-nav-next {
    right: 2px;
  }

  .top-locations {
    padding: 0 0 64px;
  }

  .top-locations .section-inner {
    max-width: 100%;
    padding: 0 0 0 10px;
    margin: 0;
  }

  .top-locations-head {
    padding: 0 10px 0 6px;
    margin-bottom: 12px;
  }

  .top-locations-track {
    gap: 8px;
    padding-right: 10px;
  }

  .top-location-card {
    flex-basis: 41%;
    min-width: 126px;
    border-radius: 10px;
  }

  .top-location-card img {
    height: 88px;
  }

  .top-location-card-body {
    padding: 10px 10px 12px;
  }

  .top-location-card h3 {
    font-size: 12px;
  }

  .top-locations-nav.projects-nav-prev {
    left: -10px;
  }

  .top-locations-nav.projects-nav-next {
    right: 2px;
  }
}



.mahamumbai-section {
      padding: 80px 0;
      background: var(--gray);
    }
    .mahamumbai-content {
      display: flex;
      align-items: center;
      gap: 40px;
    }
    .mahamumbai-text {
      flex: 1;
    }
    .mahamumbai-text h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      color: var(--navy);
      margin-bottom: 20px;
    }
    .mahamumbai-text p {
      margin-bottom: 15px;
      line-height: 1.6;
    }
    .mahamumbai-text ul {
      margin-bottom: 20px;
      padding-left: 20px;
    }
    .mahamumbai-text li {
      margin-bottom: 5px;
    }
    .mahamumbai-btn {
      display: inline-block;
      padding: 12px 24px;
      background: var(--gold);
      color: var(--white);
      text-decoration: none;
      border-radius: 5px;
      font-weight: 600;
    }
    .mahamumbai-image {
      flex: 1;
    }
    .mahamumbai-image img {
      width: 100%;
      height: auto;
      border-radius: 10px;
    }
    @media (max-width: 768px) {
      .mahamumbai-content {
        flex-direction: column;
      }
    }
    
    
    .mahamumbai-section {
      padding: 80px 0;
      background: var(--gray);
    }
    .mahamumbai-content {
      display: flex;
      align-items: center;
      gap: 40px;
    }
    .mahamumbai-text {
      flex: 1;
    }
    .mahamumbai-text h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      color: var(--navy);
      margin-bottom: 20px;
    }
    .mahamumbai-text p {
      margin-bottom: 15px;
      line-height: 1.6;
    }
    .mahamumbai-text ul {
      margin-bottom: 20px;
      padding-left: 20px;
    }
    .mahamumbai-text li {
      margin-bottom: 5px;
    }
    .mahamumbai-btn {
      display: inline-block;
      padding: 12px 24px;
      background: var(--gold);
      color: var(--white);
      text-decoration: none;
      border-radius: 5px;
      font-weight: 600;
    }
    .mahamumbai-image {
      flex: 1;
    }
    .mahamumbai-image img {
      width: 100%;
      height: auto;
      border-radius: 10px;
    }
    @media (max-width: 768px) {
      .mahamumbai-content {
        flex-direction: column;
      }
    }
  
