* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;

}
body {
    font-family: Arial, sans-serif;
    background-color: #f0f8ea;
    padding-top: 80px;
    padding-top: calc(80px + 20px);
}
/* Header styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white; /* Ensures visibility */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Adds a slight shadow */
    z-index: 10;
   
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Prevent image overflow */
}
.logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensure logo fits well*/
}
.logo span {
    font-weight: bold;
    font-size: 20px;
    text-shadow: 4px 4px 5px rgba(0, 0, 0, 0.3);
}
nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav a {
    text-decoration: none;
    color: black;
}

nav a:hover {
    /* background-color: #2d6a4f; */
    color:#2d6a4f;
}

/* Hero section styles */
.Home {
    position: relative;
    height: 500px;
}

.Home-content {
    position: absolute;
    left: 40px;
    top: 25%;
    max-width: 500px;
    background-color: rgba(240, 240, 240, 0.95);
    padding: 32px;
    border-radius: 12px;
    z-index: 1;
}

.Home-content h1 {
    margin-bottom: 20px;
    font-size: 24px;
}

.Home-content p {
    color: #444;
    line-height: 1.5;
}

.Home-image {
    height: 100%;
    overflow: hidden;
}

.Home-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.services {
    text-align: center;
    padding: 2rem;
    background-color: #f9f9f9; 
    background-color: #f0f8ea;
  } 
  
  .services h2, .values-grid {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
  }
  
  .service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 items per row */
    grid-template-rows: repeat(2, auto); /* 2 rows */
    gap: 1.5rem;
    padding: 0 1rem;
    justify-content: center;
  }
  
  .service-item {
    background: #fff;
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease; /* Smooth animation */
  }
  
  .service-item i {
    font-size: 2rem;
    color: #2ecc71;
    margin-bottom: 0.5rem;
  }
  
  .service-item h3, .values-grid h3 {
    font-size: 1.5 em;
    margin: 0.5rem 0;
    color: #333;
  }
  
  .service-item p, .values-grid p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
  }

  i {
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900; /* Required for solid icons */
  }

  .service-item:hover {
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

/* Packages section */
.packages {
    padding: 40px 0;
}

.packages h2 {
    text-align: center;
    margin-bottom: 40px;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
} 

.package-card {
    background: #A3D9A5;
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    text-align: center;
} 
/* Hover effect */
.package-card:hover {
    background: #77C788;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.package-card h3 {
    margin-bottom: 20px;
}
.package-card ul {
    list-style: none;
} 

.package-card li {
    margin-bottom: 10px;
    line-height: 1.4;
}
/*Values section */
.values {
    padding: 100px 40px;
}
.values h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.value-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease; /* Smooth animation */
}
.value-card:hover {
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}
.value-card h3 {
    font-size: 20px;
    color: #333;
}
.value-card p {
    font-size: 16px;
    color: #666;
}

  
/* Contact Section */
.contact {
    background-color: #f0f8ea;
    padding: 50px 20px;
    text-align: center;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Contact Info */
.contact-info {
    flex: 1;
    text-align: left;
    max-width: 350px;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: #2d6a4f;
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 1rem;
    margin: 8px 0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: #2d6a4f;
}

/* Contact Form */
.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 400px;
}

.contact-form label {
    font-weight: bold;
    text-align: left;
    margin-top: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form button {
    background: #2d6a4f;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 15px;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #1b4332;
}
footer {
    background-color: #1e1e1e;
    color: white;
    padding: 40px 0;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    text-align: center;
    max-width: 250px;
}

.footer-logo img {
    width: 60px;
    margin-bottom: 10px;
}

.footer-links {
    min-width: 200px;
} 

.footer-links ul {
    list-style: none;
    padding: 0;
} 

.footer-links li {
    margin: 5px 0;
}

.footer-links a {
    text-decoration: none;
    color: #bbb;
}

.footer-links a:hover {
    color: white;
} 

/* Responsive Design for Mobile app */
@media (max-width: 480px) {
    .logo span {
        font-size: 18px; 
    }

    nav ul {
        flex-direction: column;
        gap: 12px;
    }

    .service-grid, .package-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        padding: 12px;
    }

    .contact-form button {
        width: 100%;
    }
}
