

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
  }
  
  /* Header */
  header {
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
  }
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
  }
  header h1 {
    font-size: 2rem;
  }
  header nav ul {
    list-style: none;
    display: flex;
  }
  header nav ul li {
    margin: 0 1rem;
  }
  header nav ul li a {
    color: #fff;
    text-decoration: none;
  }
  
  /* Hero Section */
  .hero {
    background: url('pexels-polina-tankilevitch-3738349.jpg') no-repeat center center/cover;
    color: #020202;
    text-align: center;
    padding: 4rem 2rem;
  }
  .hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  .hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
  .hero .btn {
    background-color: #ff6347;
    color: #fff;
    padding: 0.5rem 2rem;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
  }
  
  /* Services Section */
  .services {
    padding: 4rem 2rem;
    background-color: #fff;
    text-align: center;
  }
  .services h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .service-list {
    display: flex;
    justify-content: space-around;
  }
  .service-item {
    background-color: #f0f0f0;
    padding: 1.5rem;
    width: 30%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  .service-item h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }
  
  /* Testimonials Section */
  .testimonials {
    background-color: #f9f9f9;
    padding: 4rem 2rem;
    text-align: center;
  }
  .testimonials h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .testimonial {
    background-color: #fff;
    padding: 1.5rem;
    margin: 1rem auto;
    width: 60%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  .testimonial h4 {
    margin-top: 1rem;
    font-weight: bold;
  }
  
  /* Contact Section */
  .contact {
    padding: 4rem 2rem;
    background-color: #fff;
    text-align: center;
  }
  .contact h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .contact form {
    max-width: 600px;
    margin: 0 auto;
  }
  .contact input, .contact textarea {
    width: 100%;
    padding: 1rem;
    margin: 0.5rem 0;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  .contact .btn {
    background-color: #ff6347;
    color: #fff;
    padding: 0.75rem 2rem;
    border: none;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
  }
  .contact .btn:hover {
    background-color: #e5533d;
  }
  
  /* Footer Section */
  footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
  }
  
  /* whatsapp-button */
  .whatsapp-button {
            margin-left: 78vh;
            height: 9vh;
            justify-content: end;
            background-color: #25D366;
            text-emphasis-color: white;
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 18px;
            border-radius: 100vh;
            cursor: pointer;
            transition: background-color 0.3s ease;
           
        }
  .whatsapp-button:hover {
            background-color: #128C7E;
  
  }