/* Social Media Styles */
    ul.social-icon-three {
    list-style: none;
    padding: 0;
}

ul.social-icon-three li {
    display: inline-block;
    margin-right: 5px;
}

.btn-social {
    padding: 4px 6px;
    font-size: 12px;
    line-height: 1;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    border-radius: 50%;
}

.btn-social i {
    font-size: 14px;
}

.btn-social img {
    width: 14px;
    height: 14px;
}


 /* Preloader styles */
.preloader_text {
  font-size: 30px;              /* Set font size */
  font-weight: bold;            /* Make the text bold */
  color: #333;                  /* Text color */
  position: fixed;              /* Fixed positioning */
  top: 50%;                     /* Position in the middle */
  left: 50%;                    /* Center the text horizontally */
  transform: translate(-50%, -50%); /* Center the text */
  animation: rotateText 2s linear infinite; /* Apply rotation */

  z-index: 9999; /* Ensure it's on top of everything */
  /* background-color: rgba(255, 255, 255, 0.8);  Optional background */
}

/* Text rotation animation */
@keyframes rotateText {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);  /* Start rotation */
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg); /* Full rotation */
  }
}

/* Image styling */
.loader_image {
  width: 100px;   /* Adjust the width */
  height: 100px;  /* Adjust the height */
  border-radius: 50%; /* Perfect circle */
}

/* Optional: Hide preloader after it's done loading */
.preloader.hidden {
  display: none;  /* Hide preloader when done */
}

