/* Global Styles */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #333;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

.hero-banner {
  height: 60vh; /* full height of screen */
  overflow: hidden;
  position: relative;
}

.banner-img {
  height: 60vh;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-banner .overlay {
  /*background-color: rgba(255, 102, 0, 0.4); 
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;*/
}

.hero-banner .container {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* Responsive text sizing */
@media (max-width: 768px) {
  .hero-banner h1 {
    font-size: 2rem;
  }

  .hero-banner p {
    font-size: 1rem;
  }

  .hero-banner .btn {
    font-size: 1rem;
    padding: 0.5rem 1.2rem;
  }
}
.hero-banner h1 {
  font-size: 3rem;
  font-weight: bold;
}

.hero-banner p {
  font-size: 1.2rem;
}

/* Responsive Typography */
@media (max-width: 768px) {
  .hero-banner h1 {
    font-size: 2rem;
  }

  .hero-banner p {
    font-size: 1rem;
  }
}

/* Property Cards */
.property-card {
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
footer a:hover {
  text-decoration: underline !important;
  color: #ffa94d !important;
}
.about-img {
  height: 100px; /* or 350px depending on your design */
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Optional tweak for smaller devices */
@media (max-width: 768px) {
  .about-img {
    height: 200px;
  }
}

/* contact us page css  */

.text-orange {
  color: #ff6600 !important;
}

.text-shadow {
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}

/* Form Input Focus Styling */
.form-control:focus {
  border-color: #ff6600;
  box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.25);
}

/* Button Styling Override */
.btn-primary {
  background-color: #ff6600;
  border-color: #ff6600;
}

.btn-primary:hover {
  background-color: #e65c00;
  border-color: #e65c00;
}
.text-orange {
  color: #ff6600;
}

.counter-box {
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.counter-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
}

