/* General Styles */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
  }
  
  header {
    background-color: #171e2e;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    flex-wrap: wrap;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .logo img {
    width: 100px;
    height: auto;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    padding: 0;
    margin: 0;
  }
  
  nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  nav a:hover {
    text-decoration: underline;
    color: #00bfff;
  }
  
  .hero {
    background-color: #2e3d4e;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .cta-button {
    display: inline-block;
    margin-top: 1rem;
    background-color: #0077cc;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #005fa3;
  }
  
  .about, .contact {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #ffffff;
    margin-bottom: 2rem;
    border-radius: 10px;
  }
  
  h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1e2a38;
  }
  
  .service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  
  .service {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  }
  
  .gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .about p {
    font-size: 1.1rem;
    text-align: center;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
  }
  
  input, textarea, button {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
  }
  
  button {
    background-color: #0077cc;
    color: white;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #005fa3;
  }
  
  footer {
    background-color: #1e2a38;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
  }
  
  /* WhatsApp Floating Button */
  .whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    font-size: 24px;
    text-align: center;
    z-index: 1000;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .whatsapp-button:hover {
    background-color: #1ebc59;
    transform: scale(1.1);
  }
  
  /* Responsive Navigation */
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  @media (max-width: 768px) {
    header {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .logo h1 {
      font-size: 1.5rem;
    }
  
    nav ul {
      flex-direction: column;
      gap: 0.5rem;
      align-items: flex-start;
      margin-top: 1rem;
    }
  
    .service-list {
      flex-direction: column;
      align-items: center;
    }
  
    form {
      width: 90%;
    }
  }
  
  /* Animations */
  .service, .gallery p, .about p, form {
    animation: fadeIn 1s ease-in-out;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .hero .quote-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  }
  
  .hero .quote-button:hover {
    background-color: #1ebc59;
    transform: scale(1.08);
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
  }
  