.hero {
  background: url('../assets/images/moving-bg.jpg') no-repeat center center;
  background-size: cover;
  color: #fff;
}

.card-title {
  color: #0d6efd;
}

footer a {
  text-decoration: none;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  background-color: #25d366;
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fixed-phone-footer {
  background-color: #39ff14; /* Electric Lime */
  color: #121212; /* Midnight Black */
  text-align: center;
  padding: 12px 0;
  font-size: 18px;
  font-weight: bold;
  position: fixed;
  bottom: 70px; /* Position above the footer */
  left: 50%; /* Center it horizontally */
  transform: translateX(-50%); /* Shift it back by 50% of its own width */
  width: 50%; /* Take up only 50% of the screen width */
  z-index: 1000;
  border-radius: 5px; /* Optional: Adding a little rounded corner effect */
}
/* Style the map container */
.map-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#map {
    margin-top: 50px;
}
/* Social Icons - Position Sticky on the Side */
.social-icons {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 10px; /* Distance from the right edge */
    z-index: 9999;
}

/* Social Icon Styles */
.social-icon {
    display: block;
    background-color: #333; /* Dark background for icons */
    color: #fff;
    padding: 12px;
    margin-bottom: 10px;
    text-align: center;
    border-radius: 50%;
    font-size: 24px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #39ff14; /* Electric Lime hover effect */
    color: #121212; /* Midnight Black */
}

/* Specific Icon Colors */
.social-icon.facebook { background-color: #3b5998; }
.social-icon.twitter { background-color: #1DA1F2; }
.social-icon.instagram { background-color: #E4405F; }
.social-icon.linkedin { background-color: #0077b5; }
.social-icon.whatsapp { background-color: #25D366; }

.social-icon i {
    display: block;
    font-size: 20px;
}


