.residential-section {
  padding: 80px 20px;
  background-color: #f5f8fa;
  color: #333;
  font-family: "Poppins", sans-serif;
}

.residential-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.residential-content {
  flex: 1;
  min-width: 300px;
}

.residential-content h2 {
  color: #007ba0;
  font-size: 32px;
  margin-bottom: 20px;
}

.residential-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.residential-image {
  flex: 1;
  min-width: 300px;
}

.residential-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
  .residential-section .container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .residential-image img {
    max-width: 80%;
    margin: 0 auto;
  }
}

/*2nd*/
.residential-highlight-section {
  padding: 80px 20px;
  background-color: #eaf2f7;
  color: #333;
  font-family: "Poppins", sans-serif;
}

.residential-highlight-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.highlight-content {
  flex: 1;
  min-width: 300px;
}

.highlight-content h2 {
  color: #007ba0;
  font-size: 32px;
  margin-bottom: 20px;
}

.highlight-content p {
  font-size: 16px;
  line-height: 1.8;
}

.highlight-image {
  flex: 1;
  min-width: 300px;
}

.highlight-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
  .residential-highlight-section .container {
    flex-direction: column;
    text-align: center;
  }

  .highlight-image img {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

/*3rd*/

.residential-phases-section {
  padding: 80px 20px;
  background-color: #f5f8fa;
  color: #333;
  font-family: "Poppins", sans-serif;
}

.residential-phases-section .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.residential-phases-section h2 {
  color: #007ba0;
  font-size: 32px;
  margin-bottom: 50px;
}

.phases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.phase-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phase-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.phase-icon {
  font-size: 40px;
  color: #007ba0;
  margin-bottom: 20px;
}

.phase-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #007ba0;
}

.phase-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .residential-phases-section h2 {
    font-size: 28px;
  }
}

/*Commercial*/
.commercial-overview-section {
  padding: 80px 20px;
  background-color: #eaf2f7;
  color: #333;
  font-family: "Poppins", sans-serif;
}

.commercial-overview-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.overview-content {
  flex: 1;
  min-width: 300px;
}

.overview-content h2 {
  color: #007ba0;
  font-size: 32px;
  margin-bottom: 25px;
}

.overview-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.overview-image {
  flex: 1;
  min-width: 300px;
}

.overview-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
  .commercial-overview-section .container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .overview-image img {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

/*2nd*/
.commercial-highlight-section {
  position: relative;
  background: url("images/commercial-bg.jpg") center/cover no-repeat;
  color: #fff;
  padding: 100px 20px;
  font-family: "Poppins", sans-serif;
}

.commercial-highlight-section .overlay {
  background: rgba(0, 123, 160, 0.7); /* semi-transparent overlay */
  padding: 80px 20px;
  border-radius: 12px;
}

.commercial-highlight-section .container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.commercial-highlight-section h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #055a74; /* Gold accent for emphasis */
}

.commercial-highlight-section h2 i {
  margin-right: 10px;
}

.commercial-highlight-section p {
  font-size: 18px;
  line-height: 1.8;
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .commercial-highlight-section h2 {
    font-size: 28px;
  }

  .commercial-highlight-section p {
    font-size: 16px;
  }
}
