@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@500&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

body{
    overflow-x: hidden;
}

#nav-bar{
     /* position: sticky;  */

    
    top: 0;
    right: 0;
    
    /* z-index: 10; */
}

.nav-item a{
    font-size: 1.1rem;
    text-decoration: none;
    color: rgb(0, 0, 0);
}

.nav-item a:hover{
    color: rgb(30, 182, 53);
    font-weight: 600;
}

.img-cont {
    position: relative;
    margin-top: -150px; /* Adjust this to pull the image up */
    z-index: 500;
}

.img-cont img {
    width: 100%;
    position: relative;
    top: -50px; /* Adjust as needed to overlap */
}

.banner{
    margin-left: -100px;
}
.pbanner{
    margin-left: -100px;
}
/* .bannerbut{
    margin-left: -100px;
}

.bannerbut:hover{
    background-color: green;
} */
.bannerbut {
    background-color: rgb(35, 175, 91);
    color: white;
    font-weight: bolder;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    margin-left: -100px;
    transition: 0.2s ease;
}

.bannerbut:hover {
    background-color: rgb(63, 159, 78);
}

.fheading{
    display: flex;
    align-items: center;
    justify-content: center; 
    color: rgb(65, 174, 82);
    font-weight: bold;
    margin-bottom: 20px;
    
}

.features{
    margin-left: 150px;
}


.fimg {
    transition: transform 0.3s ease-in-out;
}

.fimg:hover {
    transform: scale(1.1);
}


/* 
body {
    background-color: #f0f4ff;
    color: #333;
} */

h1 {
    font-weight: bold;
    font-size: 3.5rem; /* Increased font size */
}

h2 {
    font-weight: bold;
    font-size: 2.5rem; /* Increased font size */
    margin-top: 1rem;
}

ul {
    padding-left: 0;
}

li {
    font-size: 2rem; /* Increased font size */
    margin-bottom: 1.5rem; /* Increased gap between list items */
}

.img-fluid {
    max-width: 100%;
    height: auto;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.bouncing-image {
    animation: bounce 1.5s infinite;
}




.quote-section {
    display: flex;
    align-items: center;
    background-color: #d2ffe8;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
}

.quote-image {
    flex: 1;
    max-width: 300px; /* Adjust as needed */
    margin-right: 20px; /* Spacing between image and quote */
}

.quote {
    flex: 2;
    font-size: 24px;
    font-style: italic;
    color: #343a40;
    animation: fadeIn 2s ease-in-out, bounce 1s infinite;
}

.author {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #5ecf39;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* 
BLOG */

#blog{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    /* border-bottom: 1px solid black; */
    margin-bottom: -80px;
}

.blog-heading{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.blog-heading span{
    color:#5ecf39;
}

.blog-heading h3{
    font-size: 2.5rem;
    color: black;
    font-weight: 600;
}

.blog-container{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0px;
    flex-wrap: wrap;
}

.blog-box{
    width: 350px;
    background-color: #d2ffe8;
    border: 1px solid rgb(154, 244, 173);
    border-radius: 2%;
    margin-right: 50px;
    margin-left: 50px;
}

.blog-img {
    width: 100%;
    height: 200px; /* Fixed height for all images */
    overflow: hidden; /* Ensure images don't overflow */
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center;
}

.blog-text{
    padding: 30px;
    display: flex;
    flex-direction: column;
}
.blog-text span{
    color:#000000;
    font-size: 0.8rem;
}

.blog-text .blog-title{
    font-size: 1.3rem;
    font-weight: 500;
    color:#52b431;
    text-decoration: none;
}

.blog-text .blog-title:hover{
    color:#027575;
    transition: all ease 0.3s;
}

.blog-text p{
    color: black;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 20px 0px;
}

.blog-text a{
    color: black;
}

.blog-text a:hover{
    color: rgb(0, 164, 85);
    transition: all ease 0.3s;
}

@media(max-width:1250px){
    .blog-box{
        width: 300px;
    }
}


/* ////FOOTER */

f footer {
    font-family: "Poppins", sans-serif;
    position: absolute;
    margin-bottom: 0 auto;
    height: auto;
    min-height: 290px;
    overflow: auto;
  }
  
  @media (max-height:880px) {
    footer {
        position: static;
    }
    header {
        padding-top: 40px;
    }
  }
  
  .footer-distributed {
    color: #f3fcf7;
    background-color: #7dd3a7;
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    font: bold 16px "Poppins", sans-serif;
    padding: 50px 50px 60px 50px;
    margin-top: 170px;
  }
  
  .footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right {
    display: inline-block;
    vertical-align: top;
  }
  
  /* Footer left */
  
  .footer-distributed .footer-left {
    width: 30%;
    padding-bottom: 20px;
  }
  
  .footer-distributed h3 {
    color: #000000;
    font: normal 36px 'Cookie', cursive;
    margin: 0;
  }
  
  
  .footer-distributed h3 span {
    color: #000000;
  }
  
  /* Footer links */
  
  .footer-distributed .footer-links {
    color: #000000;
    margin-top: 40px;
    margin: 20px 0 12px;
  }
  
  .footer-distributed .footer-links a {
    display: inline-block;
    line-height: 1.8;
    text-decoration: none;
    color: inherit;
  }
  
  .footer-distributed .footer-company-name {
    color: #000000;
    font-size: 14px;
    font-weight: normal;
    margin: 0;
  }
  
  /* Footer Center */
  
  .footer-distributed .footer-center {
    width: 35%;
  }
  
  .footer-distributed .footer-center i {
    background-color: #ffffff;
    color: #000000;
    font-size: 25px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-align: center;
    line-height: 42px;
    margin: 10px 15px;
    vertical-align: middle;
  }
  
  .footer-distributed .footer-center i.fa-envelope {
    font-size: 17px;
    line-height: 38px;
  }
  
  .footer-distributed .footer-center p {
    display: inline-block;
    color: #000000;
    vertical-align: middle;
    margin: 0;
  }
  
  .footer-distributed .footer-center p span {
    display: block;
    /* font-weight: normal; */
    font-size: 14px;
    line-height: 2;
  }
  
  .footer-distributed .footer-center p a {
    color: #012b2e;
    text-decoration: none;
    ;
  }
  
  /* Footer Right */
  
  .footer-distributed .footer-right {
    width: 30%;
  }
  
  .footer-distributed .footer-company-about {
    line-height: 20px;
    color: #000204;
    font-size: 13px;
    font-weight: normal;
    margin: 0;
  }
  
  .footer-distributed .footer-company-about span {
    display: block;
    color: #000000;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .footer-distributed .footer-icons {
    margin-top: 25px;
  }
  
  .footer-distributed .footer-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    cursor: pointer;
    /* background-color: #ffffff; */
    border-radius: 2px;
    font-size: 20px;
    /* color: #000000; */
    text-align: center;
    line-height: 35px;
    margin-right: 3px;
    margin-bottom: 5px;
  }
  
  .footer-distributed .footer-icons a:hover {
    background-color: #ffffff;
  }
  
  .footer-links a:hover {
    color: #027575;
  }
  
  @media (max-width: 880px) {
    .footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right {
        display: block;
        width: 100%;
        margin-bottom: 40px;
        text-align: center;
    }
    .footer-distributed .footer-center i {
        margin-left: 0;
    }
  }       
     