/* Sticky Header */
.sticky-header {
  position: fixed;
  top: 0px;
  z-index:1;
  width: 100%;
background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
	}

/* Sticky Header_Contact_Button*/
.menu-item.current-menu-item a.hfe-menu-item.elementor-button {
  background-color: #1A73E8!important; 
  color: #fff !important;  
}
/* Fix the column for our Services */
.fixed-column {
  position: sticky;
  top: 100px; 
  align-self: flex-start;
}
@media (max-width: 540px) {
  .fixed-column {
    position: static !important;
    top: auto !important;
    align-self: auto !important;
  }
}
/*our Company Values_Section*/
.value-hover {
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.value-hover:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}
/*Meet our team_Section*/
.profile-img {
  border-radius: 10%;
  transition: transform 0.3s ease;
}

.profile-img:hover {
  transform: scale(1.1);
}
