/* ===== GLOBAL CONTAINER FIX ===== */
.container {
  margin: 20px 30px;
  padding: 0 20px;
}
.page-banner {
  background: linear-gradient(
    rgba(15, 31, 68, 0.85),
    rgba(15, 31, 68, 0.85)
  ),
  url("../images/services.jpeg") center/cover no-repeat;
  color: #ffffff;
  padding: 120px 20px;
  text-align: center;
}

.page-banner h1 {
  font-size: 46px;
  margin-bottom: 12px;
}

.page-banner p {
  font-size: 20px;
  color: #e0a730;
  max-width: 700px;
  margin: 0 auto 25px;
}

/* Hero buttons */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn{
  background-color: #e0a730;
  color: #0f1f44;
  font-weight: bolder;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 18px;
}
.property-types {
  padding: 30px 0;
  background: #f7f7f7;
}
.section-title h2{
  font-size: 36px;
color: #0f1f44;
text-align: center;
}
.section-title p{
  text-align: center;
  margin-top:10px ;
}
.property-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 30px;
}

.property-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.12);
}

.property-card h3 {
  font-size: 20px;
  color: #0f1f44;
  margin-bottom: 10px;
}

.property-card p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.6;
}
.property-why {
  padding: 30px 20px;
  background: #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 50px;
  align-items: center;
}

.why-text h2 {
  font-size: 34px;
  margin-bottom: 15px;
  color: #0f1f44;
}

.why-text p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
  max-width: 520px;
}

.why-text ul {
  list-style: none;
  padding: 0;
}

.why-text li {
  font-size: 15px;
  margin-bottom: 10px;
}

.why-card {
  background: linear-gradient(135deg, #0f1f44, #1f3c88);
  color: #ffffff;
  padding: 60px 35px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(15,31,68,0.4);
}

.why-card h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 15px;
  margin-bottom: 25px;
  color: #eaeaea;
}
.property-cta {
  position: relative;
  background: url("../images/cta-bg.jpeg") center/cover no-repeat;
  padding: 90px 20px;
  text-align: center;
  color: #ffffff;
}

.property-cta .overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,31,68,0.85);
}

.property-cta .container {
  position: relative;
  z-index: 2;
}

.cta-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
 .property-why{
  padding: 0px;
 }
 .container{
  margin: 20px 3px;
 }
  .why-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .why-text{
    order: 2;
  }
  .why-card{
    order: 1;
  }

  .why-text p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 576px) {
  .page-banner h1 {
    font-size: 32px;
  }

  .page-banner p {
    font-size: 18px;
  }

  .property-grid {
    grid-template-columns: 1fr;
  }
}

