body{
    font-family: "Montserrat", sans-serif;
    width: 100%;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}
.hero-nav{
    background: #D7F5DC;
}
/* navbar */
.navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 50px;
}
.nav-list{
    list-style: none;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}
.nav-item a{
    text-decoration: none;
    color: black;
    font-weight: 400;
    font-size: 16px;
}
/* logo */
.logo-design{
    font-weight: 700;
    font-size: 24px;
}
.logo-agency{
    color: #EA7B40;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 24px;
}
/* nav buttons */
.login-btn a{
    padding: 10px 16px;
    border: 1px solid #20B15A;
    border-radius: 5px;
}
.register-btn a{
    padding: 10px 16px;
    border: 1px solid #20B15A;
    border-radius: 5px;
    color: white;
    background-color: #20B15A;
}
/* hero section */
.hero{
    display: flex;
    width: 80%;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    padding:0  50px;
}
.hero-content{
    width: 42%;
}
.hero-content h1{
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
}
.hero-content p{
    line-height: 1.4;
    margin: 10px 0 40px 0;
    font-size: 18px;
}
.hero-cta-btn{
    padding: 20px 30px;
    border: 1px solid #20B15A;
    border-radius: 5px;
    color: white;
    background-color: #20B15A;
    text-decoration: none;
    font-weight: 500;
}
.hero-img{
    width: 45%;
}
/* logo feature */
.logo-feature{
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
    padding: 25px 150px;
    background-color: white;
    margin: 30px 0;
    flex-wrap: wrap;
}
.green-span{
    height: 50px;
}

/* services feature */
.services-section{
    width: 80%;
    margin: 20px auto;
    padding-top: 50px;
}
.subhead{
    text-transform: uppercase;
    color: #20B15A;
}
.heading{
    max-width: 600px;
    font-size: 30px;
    font-weight: 700;
}
.services-feature{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 120px 0;
    gap: 50px;
    flex-wrap: wrap;
}
.service-card{
    width: 25%;
    min-width: 300px;
}
.service-card h3{
    margin: 20px 0;
    font-size: 24px;
}
.service-card p{
    line-height: 1.4;
    font-size: 18px;
}
.service-card img{
    width: 95px;
}
.service-card button{
    font-weight: 500;
    margin-top: 30px;
    font-size: 18px;
    border: none;
    background-color: white;
}
.service-card button a{
    text-decoration: none;
    color: black;
}
.service-card button a i{
    margin-left: 10px;
}
/* stats */
.stats{
    background-color: #FAFFFB;
    width: 100%;
    margin: 0;
}
.stats-cards{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    max-width: 60%;
    margin: 0 auto;
    flex-wrap: wrap;
}
.line{
    height: 200px;
    width: 1px;
    background-color: lightgray;
}

.stat-card{
    text-align: center;
}
.stats-card img{
    width: 70px;
}
.stat-card h3{
    font-size: 16px;
    margin: 20px 0;
}
.stat-num{
    font-size: 40px;
    font-weight: 700;
    color: #20B15A;
}

/* portfolio */
.portfolio-section{
    width: 80%;
    margin: 20px auto;
    padding-top: 50px;
}
.portfolio-feature{
    column-count: 2;
    column-gap: 30px;
}
.portfolio-card{
    break-inside: avoid; 
    margin-bottom: 30px; 
    display: inline-block; 
    width: 100%;
}
.portfolio-card img{
    width: 100%;
    border-radius: 5px;
}


/* testimonial */
.testimonials-section{
    width: 80%;
    margin: 0 auto;
    padding-top: 50px;
}
.tes-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}
.tes-heading{
    max-width: 500px;
}
.tes-arrows{
    display: flex;
    gap: 20px;
    max-width: 30%;
}
.arrow1{
    padding: 20px 15px;
    border: 1px solid lightgray;
    border-radius: 100px;
    cursor: pointer;
}
.arrow2{
    padding: 20px 15px;
    border: 1px solid #D7F5DC;
    border-radius: 100px;
    cursor: pointer;
    background-color: #D7F5DC;
}
.fa-angle-left, .fa-angle-right{
    font-size: 40px;
}
.testimonial-feature{
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.testimonial-card{
    width: 25%;
    background-color: #FAFFFB;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 4px 5px 5px rgba(157, 157, 157, 0.5);
    font-size: 16px;
    min-width: 200px;
}
.testimonial-client{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}
.client-img{
    width: 50px;
    border-radius: 100px;
}
.client-name{
    font-size: 20px;
    font-weight: 600;
}
.client-title{
    font-size: 18px;
}
/* newsletter */
.newsletter-section{    
    width: 80%;
    margin: 50px auto;
    padding-top: 50px;
    text-align: center;
}
.news-heading{
    margin: 0 auto;
}
.news-para{
    margin: 20px auto;
    max-width: 600px;
    font-size: 16px;
    line-height: 1.4;
    color: gray;
}
.email-input{
    width: 100%;
    padding: 20px 20px;
    border-radius: 10px;
    border: 1px solid black;
}
.email-form{
    position: relative;
    width: 100%;
    margin: 30px auto;
    max-width: 600px;
}
.subscribe-btn{
    position: absolute;
    right: -38px;
    display: inline-block;
    margin: 0;
    top: 3px;
    padding: 16px 30px;
    border: none;
    background-color: #F55F1D;
    color: white;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
}
/* footer */
.footer-section{
    background-color: #00CA72;
    padding: 50px 0;
    margin: 0;
}
.footer{
    width: 80%;
    margin: 50px auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-col{
    width: 25%;
    min-width: 200px;

}
.footer-logo{
    font-size:50px;
}
.footer-para{
    line-height: 1.4;
    margin-top: 20px;
    font-size: 18px;
}
.socials{
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.social-icon{
    text-decoration: none;
    color: white;
    font-size: 20px;
    border-radius: 50px;
    background-color: #20B15A;
    padding: 5px;
}
.footer-links{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
    margin: 0;
}
.footer-links a{
    text-decoration: none;
    color: black;
    font-size: 18px;
}
.col2 p{
    font-size: 24px;
    font-weight: 500;
}
.col3 h3{
    font-size: 24px;
    font-weight: 500;
}
.copywright{
    width: 80%;
    margin: 0 auto;
}


@media  screen and (max-width:768px) {
    body{
        overflow-x: hidden;
    }
    .line{
            display: none;
        }
        .hero-img{
            display: none;
        }
    .hero-content{
        width: 80%;
    }
    .logo-feature{
        padding: 25px 50px;
        display: block;
        column-count: 2;
        column-gap: 20px;
    }
    .logo-feature img{
        margin-bottom: 20px;
    }
    .portfolio-feature{
        column-count: 1;
    }
    .fa-angle-left, .fa-angle-right{
        font-size: 30px;
    }
    .stats-cards{
        flex-direction: column;
    }
    .testimonial-feature{
        flex-direction: column;
    }
    .testimonial-card{
        width: 80%;
        margin: 0 auto;
    }
}
