 :root {
            --primary-green: #26A69A; /* Teal green from image */
            --light-gray: #E0E0E0;
            --text-gray: #9E9E9E;
            --white: #FFFFFF;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #F5F5F5;
        }

        /* Navbar Styling */
        .navbar {
            background-color: var(--white);
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-green);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .navbar-brand .bi-house {
            font-size: 2rem;
            color: var(--primary-green);
        }

        .navbar-brand .subtitle {
            font-size: 0.7rem;
            color: var(--text-gray);
            font-weight: normal;
            margin-left: 0.2rem;
            line-height: 1;
        }

        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            position: relative;
            padding: 0.5rem 1rem !important;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--primary-green);
        }

        .navbar-nav .nav-link .dropdown-toggle::after {
            border-top-color: #333;
            margin-left: 0.5rem;
        }

        .navbar-nav .nav-link:hover .dropdown-toggle::after {
            border-top-color: var(--primary-green);
        }

        /* Right side icons */
        .navbar .navbar-nav-right {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .navbar .nav-icon {
            font-size: 1.2rem;
            color: var(--text-gray);
            position: relative;
        }

        .navbar .nav-icon .badge {
            position: absolute;
            top: -5px;
            right: -5px;
            font-size: 0.7rem;
            background-color: var(--primary-green);
            color: white;
        }

        .btn-add-property {
            background-color: var(--primary-green);
            color: white;
            border: none;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-weight: 500;
        }

        .btn-add-property:hover {
            background-color: #1D7F76;
            color: white;
        }


        /* Responsive */
        @media (max-width: 768px) {
            .navbar-collapse {
                background-color: var(--white);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
                box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            }

            .navbar-nav-right {
                flex-direction: column;
                gap: 0.5rem;
                margin-top: 1rem;
            }

            
        }


    .hero {

    padding: 50px 0 10px;
    background: linear-gradient(rgba(50, 50, 50, 0.6), rgba(100, 100, 100, 0.6)), url(../images/rumah.jpg)center center / cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
}

.carousel-item  h1 
{
    font-size: 30px;
    color: white;
}

.carousel-item p
{
    color: white;
}
.carousel-item img
{
    width: 80%;
}




.about-section {
  position: relative;
  background-color: #fff;
}

.about-images {
  position: relative;
}

.about-images .main-img {
  width: 70%;
  z-index: 2;
  position: relative;
}

.about-images .decor-img {
  position: absolute;
  width: 180px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  z-index: 1;
}

.text-hijau
{
color: rgb(38, 166, 154);
}
.text-orange
{
color:  rgb(255, 165, 0);
}
/* Posisi overlay */
.decor-top-right {
  top: 0;
  right: 10%;
}

.decor-bottom-left {
  bottom: -20px;
  left: 5%;
}

.decor-bottom-right {
  bottom: -40px;
  right: 0;
}
.properties-section {
  background-color: #0d2b45;
}

.property-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
}

.property-card:hover {
  transform: translateY(-5px);
}

.property-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.status-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #00c292;
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 5px;
}

.popular-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #0dcaf0;
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 5px;
}

.property-body h6 {
  font-size: 1rem;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  border: none;
}
.dot.active, .dot:hover {
  background-color: #007bff;
}


.dot.active {
  background-color: #00c292;
}
.property-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease-in-out;
}
.property-card:hover {
  transform: translateY(-5px);
}
.property-image {
  flex: 0 0 40%;
}
.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.property-content {
  flex: 1;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.property-title {
  font-size: 1.1rem;
  font-weight: 600;
}
.property-meta {
  display: flex;
  gap: 15px;
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 10px;
}
.property-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonial-section {
  background-color: #000; /* hitam */
  color: #fff;
}

.section-title {
  font-family: 'Cursive', sans-serif;
  font-size: 2rem;
  color: #fff;
}

.testimonial-card {
  background: #fffaf3;
  border-radius: 15px;
  position: relative;
  text-align: left;
  color: #333;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  overflow: visible;
}

.testimonial-img {
  position: absolute;
  top: -50px;
  left: 20px;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(45deg, #ff9800, #ff5722);
}

.testimonial-img img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
}

.testimonial-text {
  font-style: italic;
  margin-top: 40px;
  position: relative;
  padding-left: 30px;
}

.testimonial-text::before {
  content: "“";
  font-size: 3rem;
  color: #ff9800;
  position: absolute;
  left: 0;
  top: -10px;
}

.testimonial-footer {
  margin-top: 15px;
}

.testimonial-footer .name {
  font-weight: bold;
  margin: 0;
}

.testimonial-footer .designation {
  font-size: 0.85rem;
  color: #777;
}

.rating {
  color: #ff9800;
  font-size: 1rem;
}
.partner-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.partner-track {
  display: flex;
  width: calc(100%); /* karena isi digandakan */
  animation: scrollLeft 25s linear infinite;

}

.partner-item {
  flex: 0 0 auto;
  width: 200px; /* lebar tiap logo */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.partner-item img {
  max-width: 100%;
  max-height: 80px;
  filter: grayscale(100%);
  transition: 0.3s;
}
.partner-item img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* Section Background Shape */
.category-section .bg-shape {
  position: absolute;
  top: -50px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0,128,0,0.15), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}


.bg-rumah
{
    background: 
        linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), /* overlay hitam transparan */
        url("../images/bgrumah.jpg") no-repeat center center / cover ;
    background-attachment: fixed; /* ⬅ ini yang bikin diam */

}


/* Category Card */
.category-card {
  background: rgba(255, 255, 255, 0.2); /* putih dengan transparansi 15% */
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(8px);
  z-index: 1;
   border: 1px solid rgba(255, 255, 255, 0.2); /* biar lebih elegan */
}

.category-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

/* Category Image with overlay */
.category-img {
  position: relative;
  z-index: 2;
}

.category-img img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Overlay Accent Shape */




        @media (max-width: 576px) {
            

            .navbar-brand {
                font-size: 1.5rem;
            }
        }