body{
    padding: 0;
    margin: 0;
}
.navbar{
--bs-navbar-color: white;
}

/* Hero Section */
header {
    height: 550px; /* Increased height */
    display: flex;
    flex-direction: column; /* Stack heading and subheading */
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    background: url('image/Asset-Leaf.jpg') center/cover no-repeat;
    padding: 20px;
}

header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

header p {
    font-size: 20px;
    max-width: 80%;
}

/* Navigation Menu Fix */
nav {
    display: flex;
    /* justify-content: space-between;
    align-items: center; */
    background: #1da851;
    padding: 15px 20px;
    position: fixed;
    /* width: 100%; */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}
.navbar .container-fluid{
    justify-content: space-between;
    align-items: center;
}

nav .menu {
    display: flex;
    list-style: none;
    flex-wrap: wrap; /* Ensures items adjust on small screens */
}

nav .menu li {
    margin-left: 20px;
}

nav .menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

/* Responsive Menu */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: center;
    }

    nav .menu {
        flex-direction: column;
        text-align: center;
        padding-top: 10px;
    }

    nav .menu li {
        margin: 10px 0;
    }
}
/* About Section */
.about {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 10%;
    background-color: #f9f9f9;
}

.about img {
    width: 45%;  /* Ensures image stays on the left side */
    max-width: 500px;  /* Optional: Prevents the image from getting too large */
    border-radius: 10px;
}

.about-content {
    width: 50%;
    padding-left: 40px; /* Adds spacing between the image and text */
}

.about-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1da851;
}

.about-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}
/*#location .content h3{*/
/*    margin-top: 1.5rem;*/
/*}*/
/*#location .content p{*/
/*    border-bottom: 1px solid #1da851;*/
/*}*/

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .about {
        flex-direction: column;
        text-align: center;
    }

    .about img {
        width: 80%;
        margin-bottom: 20px;
    }

    .about-content {
        width: 100%;
        padding-left: 0;
    }
}
#contactForm input{
    padding: 5px;
    border-color: white;
    width: 100%;
}
#contactForm button{
    padding: 5px;
    background-color: white;
    border-color: white;
    color: #1da851;
    width: 100%;
    /* color: white; */
}
.floating-buttons{
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}
.floating-buttons a{
    background-color: #1da851;
    color: white;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    text-decoration: none;
    padding: 16px;
}
.floating-buttons a:hover{
    color: bisque;
}
.floating-buttons a i{
    font-size: 1.75rem;
}
.__btn{
    background-color: #1da851;
    color: white;
    border-radius: 20px;
    border: 1px solid #1da851;
    padding: 8px 16px;
    transition: all 300ms ease-in-out;
}
.__btn:hover{
    color: #1da851;
    background-color: white;
}
footer{
    padding: 20px;
    background-color: #1da851;
}




/****popup*******/
#popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  #popup-close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    color: #d11212;
    border: none;
    cursor: pointer;
    z-index: 9999;
  }
  
  #popup-form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
  }
  
  #popup-form label {
    display: block;
    text-align: left;
    margin-top: 10px;
    font-size: 16px;
  }
  
  #popup-form input[type="text"],
  #popup-form input[type="phone"],
  #popup-form input[type="email"] {
    display: block;
    margin: 10px auto;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #0E2E50;
    font-size: 16px;
  }
  
  #popup-form button[type="submit"] {
    display: block;
    margin: 10px auto;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
  }
  
  #popup-form h2 {
    margin-top: 10px;
  }
  
  #popup-form h3 {
    margin-top: 20px;
    font-size: 14px;
  }
  
  /****popup end*******/