[data-icon]::before {
  content: attr(data-icon); /* Use the value of the data-icon attribute */
  font-family: Arial, sans-serif; /* Ensure a font that supports the icons */
  margin-right: 5px; /* Add spacing between the icon and text */
}
.et_pb_menu__logo-wrap {
  display: inline-block;  /* Keeps the container size intact */
}

.et_pb_menu__logo {
  position: relative;  
  max-width:200px ;   /* Needed for the zoom effect */
  overflow: hidden;       /* Hides overflow when zooming */
}

.zoomed-image {
  width: 100%;            /* Keeps the image responsive */
  height: auto;           /* Maintain aspect ratio */
  transition: transform 0.3s ease;  /* Smooth transition when zooming */
}





@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css");
#main-content{
  margin-top: 80px;
}
/* Social media icons - consolidated */
.et-social-facebook a.icon:before {
  content: "\e093"; /* Custom icon Unicode */
  font-family: "CustomIcons";
}

.et-social-twitter a.icon:before {
  content: "\e094"; /* Example Unicode for Twitter icon */
  font-family: "CustomIcons";
}

.et-social-linkedin a.icon:before {
  content: "\e096"; /* Example Unicode for LinkedIn icon */
  font-family: "CustomIcons";
}

.footer {
  background: #f8f9fa;
  padding: 40px 20px;
  width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.containe{
  max-width: 100%;
}
.offices-container {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.office {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  text-align: center;
}

.office h2 {
  color: #ff6600;
  font-size: 1.5em;
  margin-bottom: 15px;
  text-align: center;
}

.office p {
  color: #555;
  margin: 5px 0;
  line-height: 1.1;
}

.office a {
  color: #0066cc;
  text-decoration: none;
  display: block;
  margin: 5px 0;
}

.office a:hover {
  text-decoration: underline;
}

.map-container {
  width: 100%;
  height: 400px;
  background-color: aqua;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  background-color: aqua;
}

.contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0;
}

.icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;
}

.view-location-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff6600;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  margin: 15px 0;
  transition: all 0.3s ease;
}

.view-location-btn:hover {
  background: #e65c00;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-decoration: none;
}

.view-location-btn .icon {
  margin-right: 8px;
}

@media (max-width: 768px) {
  .offices-container {
      flex-direction: column;
  }
  
  .office {
      width: 100%;
  }
}


  .contact-container {
    max-width: 500px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }
  
.form-group {
    margin-bottom: 15px;
  }
  
.inputbox{
    display: flex;
    gap: 16px;
    width: 100%;
 }
input, textarea {
    width: 100%;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
  }


textarea {
    height: 100px;
    resize: none;
  }
  
  input:focus, textarea:focus {
    border-color: #ff6600;
    outline: none;
  }
  
  .contact-form button {
    display: block;
    width: 100%;
    padding: 10px;
  background-color: transparent;
    
    color: #fff;
    font-weight: 900;
    font-size: 16px;
    border: #fff solid 2px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .submit-btn:hover {
    background-color: #e05500;
  }
  
  @media (max-width: 600px) {
    .contact-container {
      margin: 20px;
    }
  }
  