/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background: #f9f9f9;
    color: #333;
  }
  
  /* Container */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  /* Header */
  header {
    background: #2e7d32; /* Green */
    padding: 20px 0;
  }
  header .logo {
    font-size: 24px;
    color: white;
    font-weight: bold;
  }
  header .logo span {
    color: #81c784; /* Lighter green */
  }
  header nav {
    float: right;
  }
  header nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 500;
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('./images/Image3.jpg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    margin: 0;
    padding: 0;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
  }
  
  .hero h1 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in-out;
  }
  
  .hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    animation: fadeIn 1.5s ease-in-out;
  }
  
  .btn-cta {
    background-color: #4CAF50;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  .btn-cta:hover {
    background-color: #388E3C;
  }
  
  /* Fade In Animation */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Services Section */
  .services {
    padding: 60px 20px;
    background: white;
    text-align: center;
  }
  
  .services h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
  }
  
  .service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
  }
  
  .card {
    flex: 1;
    min-width: 280px;
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  .card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  
  .card h3 {
    font-size: 1.5rem;
    color: #333;
  }
  
  .card p {
    font-size: 1rem;
    color: #555;
  }
  
  /* Gardening Card Styling */
  .card.gardening {
    background: #f1f8e9;
    border-left: 5px solid #4CAF50;
  }
  
  /* About Section */
  .about {
    background: #e6f7ff;
    padding: 60px 20px;
    text-align: center;
  }
  
  .about h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
  }
  
  .about p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
  }
  
  /* Service Area Section */
  .service-area {
    background: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
  }
  
  .service-area h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
  }
  
  .service-area p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  .map-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 500px;
    overflow: hidden;
  }
  
  .map-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #ddd;
    display: block;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .map-image:hover {
    transform: scale(1.05);
  }
  
  /* Contact Section */
  .contact {
    background: white;
    padding: 60px 20px;
  }
  
  .contact form {
    max-width: 600px;
    margin: auto;
  }
  
  .contact input,
  .contact textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  
  .contact .btn {
    background: #2e7d32;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
  }
  
  /* Contact Details Block */
  .contact-details {
    max-width: 500px;
    margin: 2rem auto;
    padding: 2rem;
    background: #f9f9f9;
    border-left: 5px solid #4CAF50;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
  }
  
  .contact-details h3 {
    font-size: 1.8rem;
    color: #2e7d32;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .contact-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .contact-details li {
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  
  .contact-details a {
    color: #1e88e5;
    text-decoration: none;
  }
  
  .contact-details a:hover {
    text-decoration: underline;
  }
  
  /* Book a Job Section */
  .book-job {
    background: #e8f5e9;
    padding: 60px 20px;
    text-align: center;
  }
  
  .book-job h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2e7d32;
  }
  
  .book-job p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #4e654f;
  }
  
  .book-job a.btn-cta {
    background-color: #43a047;
    padding: 15px 30px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .book-job a.btn-cta:hover {
    background-color: #2e7d32;
  }
  
  /* Footer */
  footer {
    background: #2e7d32;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .service-cards {
      flex-direction: column;
    }
  
    header nav {
      float: none;
      text-align: center;
      margin-top: 10px;
    }
  }
  