.header-3 .mega-menu-wrapper .header-main .main-menu ul li a,
.header-3 .mega-menu-wrapper .header-main .main-menu ul li a i {
  color: rgb(255, 255, 255) !important;
}

.project-location-section {
  padding: 80px 0;
  background: #fde6a5; /* same light yellow theme as your example */
  font-family: "Poppins", sans-serif;
}
.location-box {
  background: #fff;
  padding: 25px 5px;
  /* border-radius: 20px; */
  display: flex;
  align-items: center;
  justify-content: start;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.274);
  transition: 0.3s ease;
  height: 230px;
  overflow-y: auto;
}
.location-box .left-icon {
  height: 200px;
  width: 30%;
}
.location-content{
    width:50%;
}
.location-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.left-icon img {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  margin-right: 20px;
  display:block;
  margin:auto;
}

.location-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 5px;
}

.location-content p {
  font-size: 15px;
  color: #555;
  margin: 0;
line-height: 1.6;
}

.map-btn {
  width: 20%;
  height: 120px;
  /* border-radius: 50%; */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: #111;
  text-decoration: none;
  transition: 0.3s ease;
}
.map-btn img {
  height: 100%;
 width: fit-content;
  margin-left: 0;
}

.map-btn:hover {
  transform: scale(1.2);
}
.location-tag {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.tag-link {
  padding: 10px 20px;
  border: 1px solid rgb(252, 90, 17);
  border-radius: 50%;
  font-weight: 600;
}
.tag-link:hover {
  background-color: #f9c339;
  border-color: #f9c339;
}
@media (max-width: 768px) {
  .location-box {
    flex-direction: column;
    /*text-align: center;*/
    gap: 10px;
    padding: 10px 8px;
    height:auto;
  }

  .map-btn {
    margin-top: 10px;
  }
}
@media (max-width: 768px) {

  .map-btn {
    width: 60px;
    height: 60px;
    margin-right: auto;
  }
   .map-btn {
    margin-top: 0;
  }
.location-box .left-icon ,.location-content {
      width:100%;
  }
  .location-content p {
      font-size:12px !important;
  }
  


}
