html {
      scroll-behavior: smooth;
    }

    body {
       font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
     background-image: url("images/about.jpg");
    background-size: cover;

    background-position: center;
    background-attachment: fixed;
    }

       header {
  background-color: rgba(0, 0, 0, 0.9); /* Black with 60% transparency */
  color: white;                         /* Text color */
  padding: 20px;
  text-align: center;
}

header h1 {
  font-weight: bold;    /* Makes text bold */
  font-size: 2em;       /* Makes it stand out */
}

    .quick-find {
      background: #333;
      padding: 10px 0;
      text-align: center;
    }

    .quick-find a {
      color: white;
      margin: 0 15px;
      text-decoration: none;
      font-weight: bold;
    }

    .quick-find a:hover {
      text-decoration: underline;
       transform: scale(1.05); /* zoom on hover */
    filter: brightness(1.1);
    transition: 0.3s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
    }

    .container {
      width: 90%;
      max-width: 1000px;
      margin: auto;
      padding: 10px;
    }

    .services {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 20px;
    }

    .service {
      background: rgba(255, 255, 255, 0.849);
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      flex: 1 1 300px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3),
      0 20px 40px rgba(0, 0, 0, 0.2),
      0 30px 60px rgba(0, 0, 0, 0.1);
    }

    .service h3 {
      margin-top: 0;
      color: #000000;
      text-align: center;}
    
    .container h2{
        margin-top: 0;
      color: #fffdfd;
      text-align: left;
      font-size: 42px;
    }

    .service p{
        margin-top: 0;
      color: #000000;
    }



 footer {
      text-align: center;
      padding: 20px;
      background: #333;
      color: white;
      margin-top: 40px;
    }

.top-btn {
    background-color: #ff8800;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
  }

  .top-btn:hover {
    background-color: #45a049;
  }


   /* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;  /* distance from bottom */
  right: 20px;   /* distance from right */
  z-index: 100;
  width: 60px;   /* icon size */
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #25D366; /* WhatsApp green */
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.whatsapp-float img {
  width: 35px;  /* icon size inside button */
  height: 35px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-badge {
  position: absolute;
  top: 5px;
  right: 5px;
  background: red;
  color: white;
  font-size: 14px;
  font-weight: bold;
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 18px;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

