body{
    padding: 0 auto;
    margin: 0 auto;
}
   /* Banner Images Fixed Size */
        .carousel-item .banner-wrapper {
            position: relative;
            width: 100%;
            height: 850px;
            /* Fixed size */
            overflow: hidden;
        }

        .carousel-item .banner-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* Keeps aspect ratio while filling */
        }

        /* Dark Overlay */
        .carousel-item .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            /* Dark transparent shade */
        }

        /* Text on Banner */
        .carousel-caption {
            z-index: 2;
            /* Ensure text shows above overlay */
        }

        .gallery-images {
            display: none;
        }

        .active-gallery {
            display: block;
        }

        .property-card img {
            transition: transform 0.5s ease;
        }

        .property-card:hover img {
            transform: scale(1.05);
        }

        .property-card {
            height: 350px;
            /* set same height for all property boxes */
        }

        .property-card img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            /* crop image to fit box evenly */
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.55);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: #fff;
            padding: 20px;
        }

        footer {
            background: #111;
            color: #fff;
        }




        
#clients {
  border-radius: 15px;
}

.client-box {
  background-color: #f5f5f5;
  color: #555;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-box:hover {
  background-color: #e9ecef;
  transform: scale(1.05);
}

.client-logo {
  width: 120px;         /* 👈 same width for all logos */
  height: 70px;         /* 👈 uniform height */
  object-fit: contain;  /* keeps the image proportion correct */
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}

.client-logo:hover {
  filter: grayscale(0);
}

@media (max-width: 576px) {
  .client-logo {
    width: 90px;
    height: 50px;
  }
}





    .service-card {
        transition: all 0.3s ease;
        border-radius: 10px;
        overflow: hidden;
    }
    .service-card img {
        width: 100%;
        height: 180px; 
        object-fit: cover; 
    }
    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }
    .service-card h6 {
        font-weight: 600;
        font-size: 16px;
        color: #333;
    }
    .service-card p {
        font-size: 14px;
        color: #555;
        line-height: 1.5;
        margin: 0;
        text-align: left; 
    }
    .whatsapp_float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}
.whatsapp_float:hover {
    background-color: #20b358;
    transform: scale(1.1);
}
.whatsapp_float i {
    margin-top: 15px;
}
  .gallery-img {
      cursor: pointer;
      transition: transform 0.3s;
    }
    .gallery-img:hover {
      transform: scale(1.05);
    }
    .modal-img {
      width: 100%;
    }
      .testimonial-card {
      border: none;
      background-color: #f8f9fa;
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .testimonial-card img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      margin-bottom: 15px;
    }
    .testimonial-text {
      font-style: italic;
      color: #555;
    }
    .stars i {
  margin: 0 2px;
  font-size: 1.1rem;
}
    .testimonial-name {
      font-weight: bold;
      margin-top: 10px;
      color: #333;
    }
    .carousel-indicators li {
      background-color: #333;
    }


    /* achievemnt */

    .achievement-area {
    background-color: #f8f9fa;
  }

  .achievement-title {
    text-align: center;
    font-weight: 700;
    position: relative;
  }

  .achievement-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background-color: #007bff;
    margin: 10px auto 0;
    border-radius: 2px;
  }

  .achievement-slider .carousel-inner img {
    border-radius: 12px;
    height: 350px;
    object-fit: cover;
  }

  .achievement-slider .carousel-control-prev-icon,
  .achievement-slider .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
  }




  /* who we are */
    .who-we-are-section {
    background-color: #f8f9fa;
  }

  .who-title {
    text-align: center;
    font-weight: 700;
    position: relative;
  }

  .who-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background-color: #007bff;
    margin: 10px auto 0;
    border-radius: 2px;
  }

  .who-img-wrapper img {
    border-radius: 12px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .who-img-wrapper img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }