
/*==================================
        WHY CHOOSE US START
===================================*/

.why-choose{
    padding:50px 0;
    background:#fff;
    position:relative;
    overflow:hidden;
}

.why-choose .container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/*Section Heading*/

.section-title{
    text-align:center;
    max-width:750px;
    margin:0 auto 60px;
}

.section-title .sub-title{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#69A41A;
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:18px;
}

.section-title .sub-title i{
    font-size:14px;
}

.section-title h2{
    font-size:40px;
    font-weight:700;
    color:#111;
    line-height:1.25;
    margin-bottom:18px;
}

.section-title h2 span{
    color:#69A41A;
}

.section-title p{
    font-size:15px;
    color:#666;
    line-height:1.8;
}

/*Cards Grid*/

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

/*  Card*/

.why-card{
    background:#fff;
    border:1px solid #e8efd8;
    border-radius:18px;
    padding:28px 22px;
    text-align:center;
    transition:.35s;
    min-height:260px;
}

.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border-color:#69A41A;
}

/*Icon*/


.why-icon{
    width:72px;
    height:72px;
    margin:0 auto 18px;
    border:2px solid #69A41A;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#69A41A;
    font-size:28px;
    transition:.35s;
}

.why-card:hover .why-icon{
    background:#69A41A;
    color:#fff;
    transform:rotateY(180deg);
}

/* Card Text*/

.why-card h3{
    font-size:24px;
    color:#111;
    margin-bottom:15px;
    font-weight:700;
}

.why-card p{
    color:#666;
    font-size:16px;
    line-height:1.8;
}

/* LIGHT BACKGROUND EFFECT*/

.why-choose::before{
    content:"";
    position:absolute;
    width:550px;
    height:550px;
    background:radial-gradient(circle,
    rgba(105,164,26,.12) 0%,
    rgba(105,164,26,0) 70%);
    top:-220px;
    left:-180px;
    border-radius:50%;
    z-index:0;
}

.why-choose::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(circle,
    rgba(105,164,26,.10) 0%,
    rgba(105,164,26,0) 70%);
    right:-180px;
    bottom:-180px;
    border-radius:50%;
    z-index:0;
}

.why-choose .container{
    position:relative;
    z-index:2;
}

/*   CARD HOVER*/

.why-card{
    position:relative;
    overflow:hidden;
}

.why-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:4px;
    background:#69A41A;
    transition:.4s;
}

.why-card:hover::before{
    left:0;
}

.why-card:hover h3{
    color:#69A41A;
}

/* TABLET*/

@media (max-width:991px){

.why-choose{
    padding:80px 0;
}

.section-title{
    margin-bottom:45px;
}

.section-title h2{
    font-size:38px;
}

.section-title p{
    font-size:16px;
}

.why-grid{
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.why-card{
    padding:35px 25px;
}

.why-icon{
    width:80px;
    height:80px;
    font-size:34px;
}

.why-card h3{
    font-size:22px;
}

}

/* MOBILE*/

@media (max-width:767px){

.why-choose{
    padding:60px 0;
}

.section-title{
    margin-bottom:35px;
}

.section-title .sub-title{
    font-size:13px;
}

.section-title h2{
    font-size:30px;
    line-height:1.3;
}

.section-title p{
    font-size:15px;
    line-height:1.8;
    padding:0 10px;
}

.why-grid{
    grid-template-columns:1fr;
    gap:20px;
}

.why-card{
    padding:30px 22px;
}

.why-icon{
    width:75px;
    height:75px;
    font-size:30px;
    margin-bottom:20px;
}

.why-card h3{
    font-size:20px;
}

.why-card p{
    font-size:15px;
}

}

/*  SMALL MOBILE*/

@media (max-width:480px){

.section-title h2{
    font-size:26px;
}

.section-title p{
    font-size:14px;
}

.why-card{
    border-radius:15px;
}

}


/*==================================
        WHY CHOOSE US END
===================================*/


/*==================================
      LET'S GROW TOGETHER START
===================================*/

.grow-section{
    padding:50px 0;
    background:#fff;
    position:relative;
    overflow:hidden;
}

.grow-section .container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Wrapper*/

.grow-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
}

/* Left Image*/

.grow-image{
    position:relative;
    overflow:hidden;
    border-radius:25px;
    min-height:500px;
}

.grow-image img{
    width:100%;
    height:500px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.grow-image:hover img{
    transform:scale(1.08);
}

/*  Gradient Overlay*/

.grow-image::after{
    content:"";
    position:absolute;
    inset:0;
   
}

/* Right Content*/

.grow-content{
    position:relative;
    z-index:2;
}

.grow-subtitle{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#69A41A;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.grow-subtitle i{
    font-size:15px;
}

/* Heading*/

.grow-content h2{
    font-size:52px;
    line-height:1.2;
    color:#111;
    font-weight:700;
    margin-bottom:22px;
}

.grow-content h2 span{
    color:#69A41A;
}

/*   Paragraph*/

.grow-content p{
    font-size:17px;
    color:#666;
    line-height:1.9;
    margin-bottom:35px;
}

/*  Buttons*/

.grow-btns{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.grow-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:15px 34px;
    border-radius:8px;
    font-size:16px;
    font-weight:600;
    text-decoration:none;
    transition:.35s;
}

/* Green Button*/

.grow-btn-primary{
    background:#69A41A;
    color:#fff;
    border:2px solid #69A41A;
}

.grow-btn-primary:hover{
    background:#fff;
    color:#69A41A;
}

/*  White Button*/

.grow-btn-outline{
    background:#fff;
    color:#69A41A;
    border:2px solid #69A41A;
}

.grow-btn-outline:hover{
    background:#69A41A;
    color:#fff;
}

/*TABLET*/

@media (max-width:991px){

.grow-section{
    padding:70px 0;
}

.grow-wrapper{
    grid-template-columns:1fr;
    gap:45px;
}

.grow-image{
    min-height:380px;
}

.grow-image img{
    height:380px;
}

.grow-image::after{
    background:linear-gradient(
        180deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,.25) 40%,
        rgba(255,255,255,.90) 100%
    );
}

.grow-content{
    text-align:center;
}

.grow-content h2{
    font-size:40px;
}

.grow-content p{
    font-size:16px;
}

.grow-btns{
    justify-content:center;
}

}


/* MOBILE*/

@media (max-width:767px){

.grow-section{
    padding:60px 0;
}

.grow-wrapper{
    gap:35px;
}

.grow-image{
    min-height:280px;
    border-radius:18px;
}

.grow-image img{
    height:280px;
}

.grow-subtitle{
    font-size:13px;
}

.grow-content h2{
    font-size:30px;
    line-height:1.3;
}

.grow-content p{
    font-size:15px;
    line-height:1.8;
    margin-bottom:28px;
}

.grow-btns{
    display:flex;
    flex-direction:row;
    justify-content:center;
    align-items:center;
    gap:12px;
    flex-wrap:nowrap;
}

.grow-btn{
    flex:1;
    padding:12px 10px;
    font-size:14px;
    justify-content:center;
    white-space:nowrap;
}

.grow-btn i{
    font-size:13px;
}


}


/*SMALL MOBILE*/

@media (max-width:480px){

.grow-content h2{
    font-size:26px;
}

.grow-content p{
    font-size:14px;
}

.grow-image{
    min-height:240px;
}

.grow-image img{
    height:240px;
}

}

/*==================================
      LET'S GROW TOGETHER  end
===================================*/