/*--------------------------------------------------------------
# WhatsApp Button (Mobile Only)
--------------------------------------------------------------*/
@media (min-width: 768px) { /* Show only on mobile */
    .whatsapp-button{
        display: none;     /* Hide the button on smaller screens */
    }
}
@media (max-width: 768px) { /* Show only on mobile */
  .whatsapp-button {
    position: fixed;
    left: 15px;  /* Left side */
    bottom: 15px; /* Bottom side */
    z-index: 99999;
    background-color: #25D366; /* WhatsApp Green   BLUE #007bff; */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
  }

  .whatsapp-button i {
    font-size: 28px;
    color: #ffffff;
  }

  .whatsapp-button:hover {
    background-color: #1ebe5d;
  }
}


/* Default font size */
.sitename {
    font-size: 2.5em ; /* Adjust this value to your preference */
    font-family: 'Berkshire Swash', cursive;
    color: #ffffff; /* Change the color if needed */
    margin-left: 10px; /* Adjust spacing */
  }
  
.text-white {
  color: #ffffff ;
}


  #highfront
  {
      color: #ffffff;  
      text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
  }


 .highlighted-name {
  color: #007BFF;
  font-size: 1.1em;
  text-shadow: 0.5px 0.5px #ccc;
 }

.top-layer {
  position: relative; /* or 'absolute'/'fixed', depending on layout */
  z-index: 9999;      /* large value to ensure it's on top */
}


  /* Default blue color  */
  .plus-point {
    color:  #007bff;
  }

  /* Font size for smaller screens */

  @media (max-width: 768px) {
    .sitename {
      font-size: 2em !important; /* Adjust this value to your preference */
      font-family: 'Berkshire Swash', cursive;
      color: #ffffff; /* Change the color if needed */
      margin-left: 10px; /* Adjust spacing */
    }

    #about h3 {
        font-size: 20px;  /* Adjust the font size for smaller screens */
      }

    #services h2 {
        font-size: 24px;  /* Adjust the font size for smaller screens */
      }
  }
  
  
  /* Font size for extra small screens */
  @media (max-width: 480px) {
    .sitename {
      font-size: 1.45em !important; /* Adjust this value to your preference */
      font-family: 'Berkshire Swash', cursive;
      color: #ffffff; /* Change the color if needed */
      margin-left: 10px; /* Adjust spacing */
    }
  }
  
  .stats-number {
    font-size: 2rem;
  }
  
  .stats-text {
    font-size: 1.2rem;
  }
  
  @media (max-width: 576px) {
    .stats-number {
      font-size: 1.5rem;
    }
  
    .stats-text {
      font-size: 1rem;
    }
  }

  .clients-slider {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
  }
  
  .clients-track {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: -10px; /* Reduced gap between logos */
    animation: scrollClients 15s linear infinite;
    width: 200%; /* Double width for infinite scrolling effect */
  }
  
  .client-logo {
    flex: 0 0 auto;
    width: 180px; /* Increased logo width */
    height: 100px; /* Increased logo height */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Ensures logos scale properly */
  }
  
  /* Animation for infinite scrolling */
  @keyframes scrollClients {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }
  
.alert-success-new {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger-new {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-warning-new {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.col-md-12.text-center {
  display: flex;
  flex-direction: column;
  align-items: center; /* Ensures everything inside is centered */
}

button[type="submit"] {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  background-color: #007bff;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

button[type="submit"]:hover {
  background-color: #0056b3;
}

 
