    *{
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }
    body {
      font-family: 'Roboto', sans-serif;
       margin: 0;
      padding: 0;
    
    }

/* start of the hero contact section*/
.section-contact {
  background: url('../images/service.png') no-repeat center center;
  background-size: cover;
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.section-contact .container-fluid {
  position: relative;
  z-index: 2;
  height: 100%;
}

.section-contact h1 {
  font-family: 'Merriweather', serif;
  font-size: 3rem;
  color: #fff;
}


.section-contact p.lead {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: #f3f3f3;
}

.custom-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.custom-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: #fff;
}

.custom-underline::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -3px;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
}


@media (max-width: 768px) {
  .section-contact h1 {
    font-size: 2rem;
    text-align: left;
  }

  .section-contact p.lead {
    text-align: left;
  }
  .section-contact {
  min-height: 50vh;

}
}

@media (max-width: 968px) {
      .section-contact {
  min-height: 50vh;

}

}

/* End of the hero contact section*/

/*start of service realstate*/

.text-gold {
  color: #e4aa34;
}



.realestate-list {
  list-style: none;
  padding-left: 0;     
  margin-left: 0;     
}

.realestate-list .fa-li {
  left: -0.5em;        
}

.realestate-list li {
  position: relative;
  padding-left: 1.5rem;  
  margin-bottom: 10px;
  color: #444;
  font-size: 15px;
  line-height: 1.5;
}

/*End of service realstate*/

/*start of service tourism*/

.tourism-section {
  background-color: #f7c552; 
  color: #222;
}

.text-golde {
  color: white; 
}


.travel-list {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.travel-list .fa-li {
  left: -0.5em;
}

.travel-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 10px;
  font-size: 15px;
  color: #222;
}
/*start of service tourism*/

/* start of service hospitality */
.hospitality-section {
  background-color: #f9f9f2; 
  color: #222;
}

.text-gold {
  color: #e4aa34;
}

.hospitality-list {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.hospitality-list .fa-li {
  left: -0.5em;
}

.hospitality-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 10px;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}
/* end of service hospitality */


/* start of service Cta */
.cta-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 350px;
  position: relative;
  
}

.cta-section p{
    font-size: 16px;
}

.cta-section .overlay {
  background: rgba(0, 0, 0, 0); /* dark transparent overlay */
}

.text-gold {
  color: #e0a524;
}

.service-btn {
  background-color: #e0a524;
  border: none;
  font-size: 16px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}


.service-btn:hover {
  background-color: #cf9800;
}

@media (max-width: 768px){
    .cta-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  position: relative;
  
}
}

/* start of service Cta */

/* start for image gallaery*/


.realestate-gallery .gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  transition: all 0.4s ease;
}

.realestate-gallery img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Hover Effect */
.realestate-gallery .gallery-card:hover img {
  transform: scale(1.1);
}

.realestate-gallery .gallery-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.realestate-gallery .gallery-card:hover::after {
  opacity: 1;
}

/* Mobile height adjustment */
@media (max-width: 575px) {
  .realestate-gallery img {
    height: 180px;
  }
}


/* End for image gallaery*/

