/* Featured Property Section */
#feature_property {
  padding: 80px 0;
  background: #ffffff; /* Pure White Background */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Container */
.feature3 {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95); /* Soft White Background */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* h1.feature-title {
    color: #1d4e7d !important;
} */

/* Title */
.feature-title {
  font-size: 32px ;
  font-weight: 600;
  -webkit-background-clip: text;
  margin-bottom: 15px;
  color: #1d4e7d !important;
  display: flex;
  align-items: flex-start;
}

.feature-title i {
  margin-right: 10px;
  color: #1d4e7d !important;
  margin-top: 8px;
}

/* Location */
.feature-location {
  font-size: 21px !important;
  font-weight: 500;
  color: #1d4e7d;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.feature-location i {
  color: red;
  margin-right: 8px;
}

/* Description */
.feature-description {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  padding: 20px;
  border-left: 5px solid #1d4e7d;
  background: rgba(245, 245, 245, 0.8); /* Very Light Gray Background */
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease-in-out;
}

/* Hover Effect */
.feature-description:hover {
  background: #1d4e7d;
  color: white;
  border-left: 5px solid white;
}

/* Image Styling */
.feature-image {
  position: relative;
  text-align: center;
  border-radius: 10px;
  /* overflow: hidden; ⛔ Remove this */
  padding: 25px;
}

.feature-image:hover img {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Caption */
.feature-caption {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  font-weight: bold;
  color: white;
  background: rgba(0, 0, 0, 0.7);
  padding: 8px 12px;
  border-radius: 5px;
  transition: background 0.3s ease-in-out;
}

.feature-image:hover .feature-caption {
  background: rgba(0, 0, 0, 0.9);
}



h2.our_top_pro_heading {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1e3a8a;
}
p.section-subtitle {
  margin: 0px;
  font-size: 18px;
  color: #000;
  font-weight: 400;
}
.our_top_pro_col {
  margin-bottom: 20px;
}
.history-text h2 {
  font-size: 32px;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 20px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 5px;
}
.history-text i.fas.fa-building {
  font-weight: 600;
  font-size: 24px;
}
.history-text_col strong {
  font-weight: 600;
  color: #444;
}
.row.history_rw_comp {
  justify-content: space-between;
}
.image-summary h5 {
  font-size: 22px;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 12px;
}
.image-summary h5 strong {
  font-weight: 600;
}
.image-summary p {
  font-size: 18px;
  color: #000;
  line-height: 1.7;
  text-align: justify;
  font-weight: 400;
}
.image-summary p strong {
  font-weight: 600;
  color: #444;
}

.history-text p {
  font-size: 18px;
  color: #222;
  line-height: 1.9;
  margin-bottom: 15px;
  text-align: justify;
  font-weight: 400;
}


.section-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1e3a8a;
}
.service-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1e3a8a;
}
.service-icon {
  font-size: 32px;
  color: #1e3a8a;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}
.service-description {
  font-size: 18px;
  font-weight: 400;
  color: #444;
  margin-bottom: 0px;
}
.services-section {
  background-color: #f7f9fc;
  padding: 60px 0;
}

.team-section {
  background: #f4f6fa;
  padding: 60px 0;
}

.section-title h2 {
  font-weight: 600;
  font-size: 32px;
  margin-bottom: 40px;
  color: #1e3a8a;
}

/* Responsive */
@media (max-width: 768px) {
  #feature_property {
    padding: 50px 20px;
  }

  .feature-title {
    font-size: 28px;
  }

  .feature-description {
    font-size: 16px;
    padding: 15px;
  }

  .feature-image img {
    max-width: 100%;
  }
}


