/*there coding for phone icon and whatsappp*/

	/* Phone icon styling */
.phone-icon {
  position: fixed; /* Stay in a fixed position on the screen */
  bottom: 70px;    /* Distance from the bottom */
  right: 20px;     /* Distance from the right */
  background-color: #34495e; /* Blue background */
  color: white;    /* White text color */
  font-size: 20px; /* Icon size */
  text-decoration: none; /* Remove underline */
  padding: 5px;   /* Add padding around the icon */
  border-radius: 50%; /* Make it circular */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  transition: transform 0.3s ease, background-color 0.3s ease; /* Smooth hover effect */
  z-index: 1000;
}
.phone-icon img{
  width: 30px;
  height: 30px;
}

.phone-icon:hover {
  background-color: #007336; /* Darker blue on hover */
  transform: scale(1.1); /* Slight zoom effect */
}

/* Make the icon responsive */
@media (max-width: 768px) {
  .phone-icon {
    font-size: 5%; /* Adjust font size for smaller screens */
    padding: 5px;   /* Adjust padding for smaller screens */
    }
 .phone-icon img{
  width: 30px;
  height: 30px;
}
}
.phonew-icon {
  position: fixed; /* Stay in a fixed position on the screen */
  bottom: 20px;    /* Distance from the bottom */
  right: 20px;     /* Distance from the right */
  background-color: #34495e; /* Blue background */
  color: white;    /* White text color */
  font-size: 5px; /* Icon size */
  text-decoration: none; /* Remove underline */
  padding: 0px;   /* Add padding around the icon */
  border-radius: 50%; /* Make it circular */
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  transition: transform 0.3s ease, background-color 0.3s ease; /* Smooth hover effect */
  z-index: 1000;
}

.phonew-icon:hover {
  background-color: #007336; /* Darker blue on hover */
  transform: scale(1.1); /* Slight zoom effect */
}

/* Make the icon responsive */
@media (max-width: 768px) {
  .phonew-icon {
    font-size: 5px; /* Adjust font size for smaller screens */
    padding: 0px;   /* Adjust padding for smaller screens */
  }
}
