* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f5f7fb;
}

/* ✅ MAIN SECTION */
.residential-section {
  width: 100%;
  padding: 70px 80px;
  background: #ffffff;
}

/* ✅ TITLE */
.residential-title {
  font-family: Poppins;
  font-weight: 600;
  font-size: 36px;
  line-height: 100%;
  color: #053b9c;
  margin-bottom: 10px;
}

.residential-title span {
  color: crimson;
}

/* ✅ SUBTITLE */
.residential-subtitle {
  font-family: Poppins;
  font-weight: 400;
  font-size: 19px;
  line-height: 100%;
  color: #1c3f94;
  margin-bottom: 50px;
}

/* ✅ GRID */
.residential-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
}

/* ✅ CARD */
.residential-card {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  transition: 0.3s;
}

.residential-card:hover {
  transform: translateY(-6px);
}

.residential-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ✅ CONTENT */
.residential-content h3 {
  margin-bottom: 8px;
  font-family: Poppins;
  font-weight: 600;
  font-size: 24px;
  /* line-height: 100%; */
  padding-top: 6px;
}

.red {
  color: #ee1b22;
}

.blue {
  color: #1c3f94;
}

.residential-content p {
  font-family: Poppins;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
}

/* ✅ RESPONSIVE */
@media (max-width: 992px) {
  .residential-section {
    padding: 50px 30px;
  }

  .residential-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .residential-title {
    font-size: 28px;
  }

  .residential-card img {
    /* height: 200px; */
  }
}
