body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: #f7f7f7;
    color: #333;
  }
  
  header {
    background: #0066cc;
    color: white;
    text-align: center;
    padding: 20px;
  }
  
  .hero-img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
  }
  
  section {
    background: white;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
  }
  
  .about {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  
  .about img {
    width: 200px;
    border-radius: 10px;
  }
  
  .services li {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 10px 0;
  }
  
  .services img {
    width: 30px;
    margin-right: 10px;
  }
  
  footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 15px;
  }
  a {
    color: #005a8d;
    text-decoration: none;
    font-weight: bold;
  }
  
  a:hover {
    text-decoration: underline;
  }
  .whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    z-index: 1000;
  }
  
  .whatsapp-btn:hover {
    transform: scale(1.05);
    background-color: #1ebe5d;
  }
  @media (max-width: 768px) {
    /* Stack the about section vertically */
    .about {
      flex-direction: column;
      text-align: center;
    }
  
    .about img {
      width: 100%;
      max-width: 300px;
    }
  
    /* Stack service items vertically */
    .services li {
      flex-direction: column;
      text-align: center;
      margin-bottom: 20px;
    }
  
    /* WhatsApp button adjusts slightly */
    .whatsapp-btn {
      right: 15px;
      bottom: 15px;
      padding: 10px 12px;
      font-size: 14px;
    }
  
    .whatsapp-icon {
      width: 18px;
      height: 18px;
    }
  
    /* Optional: adjust font sizes or section spacing if needed */
    body {
      font-size: 16px;
    }
  
    section {
      padding: 15px;
    }
  }
  section:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}
section {
  border-radius: 12px;
  padding: 25px;
}
body {
  background: #f0f4f8;
}

header {
  background: #0077cc;
}
footer {
  background-color: #f2f2f2;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #333;
  margin-top: 40px;
  border-top: 1px solid #ccc;
}

footer a {
  color: #0077cc;
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover {
  text-decoration: underline;
}
      