/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body and Font */
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
  }
  
  /* Header */
  header {
    background-color: #2d3e50;
    color: #fff;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  header .logo img {
    height: 50px;
  }
  
  header nav ul {
    list-style: none;
    display: flex;
  }
  
  header nav ul li {
    margin: 0 15px;
  }
  
  header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
  }
  
  /* Hero Section */
  .hero {
    background: url('hero-image.jpg') no-repeat center center/cover;
    color: #772020;
    text-align: center;
    padding: 100px 20px;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  .cta-btn {
    background-color: #e67e22;
    color: #7c0c0c;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
  }
  
  /* Services Section */
  .services {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
  }
  
  .services h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  
  .service-card {
    background-color: #ecf0f1;
    padding: 20px;
    margin: 15px;
    border-radius: 5px;
    display: inline-block;
    width: calc(33% - 40px);
    box-sizing: border-box;
  }
  
  .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .service-card p {
    font-size: 1rem;
  }
  
  /* Contact Section */
  .contact {
    background-color: #2d3e50;
    color: #fff;
    padding: 50px 20px;
    text-align: center;
  }
  
  .whatsapp-btn {
    background-color: #25d366;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
  }
  
  /* Footer */
  footer {
    background-color: #34495e;
    color: #fff;
    text-align: center;
    padding: 10px 0;
  }
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
  }
  
  .modal-content {
    background: #fff;
    margin: 10% auto;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    border-radius: 8px;
    text-align: left;
  }
.logo img {
  max-width: 100%;
  height: auto;
  margin-left :8px;
  border-radius: 10%;
}

  .modal-content input, .modal-content button {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 10px;
  }
  
  .close-btn {
    float: right;
    font-size: 24px;
    cursor: pointer;
  }


  @media (max-width: 900px) {
    header {
        flex-direction: column;
    }
    header nav ul {
        flex-direction: column;
        padding-top: 10px;
    }
    header nav ul li {
        margin: 10px 0;
    }
    .service-card {
        width: calc(50% - 40px);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .hero {
        padding: 60px 20px;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .service-card {
        width: 100%;
        margin: 10px 0;
    }
    .modal-content {
        width: 95%;
        margin-top: 30%;
    }
}
  
  
